From 952ebe4c1dc80a4dc37aa74aca7da3405f04a5ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=99=E7=A9=8F=E9=9D=84?= <170472707+seionmoya@users.noreply.github.com> Date: Thu, 29 Aug 2024 06:17:24 +0200 Subject: [PATCH] Update location model --- .../Models/EFT/Bots/EBotRole.cs | 99 +- .../Models/EFT/Locations/AirdropParameters.cs | 41 + .../Models/EFT/Locations/Banner.cs | 15 + .../Models/EFT/Locations/BossSpawn.cs | 25 +- .../EFT/Locations/BotLocationModifier.cs | 8 +- .../Models/EFT/Locations/Location.cs | 45 +- .../Models/EFT/Locations/SpawnPointParam.cs | 3 + .../Models/EFT/Locations/Transit.cs | 35 + .../Models/EFT/Locations/Wave.cs | 2 + .../embedded/database/locations/bigmap.json | 69127 +++---- .../database/locations/factory4_day.json | 25931 +-- .../database/locations/interchange.json | 107155 +++++----- .../database/locations/lighthouse.json | 128179 ++++++------ .../database/locations/rezervbase.json | 123725 +++++------ .../embedded/database/locations/sandbox.json | 67085 +++--- .../embedded/database/locations/shorline.json | 105921 +++++----- .../database/locations/tarkovstreets.json | 160445 ++++++++------- .../embedded/database/locations/woods.json | 64929 +++--- 18 files changed, 426439 insertions(+), 426331 deletions(-) create mode 100644 Fuyu.Platform.Common/Models/EFT/Locations/AirdropParameters.cs create mode 100644 Fuyu.Platform.Common/Models/EFT/Locations/Banner.cs create mode 100644 Fuyu.Platform.Common/Models/EFT/Locations/Transit.cs diff --git a/Fuyu.Platform.Common/Models/EFT/Bots/EBotRole.cs b/Fuyu.Platform.Common/Models/EFT/Bots/EBotRole.cs index 1f3070b9..1955e3c8 100644 --- a/Fuyu.Platform.Common/Models/EFT/Bots/EBotRole.cs +++ b/Fuyu.Platform.Common/Models/EFT/Bots/EBotRole.cs @@ -3,51 +3,58 @@ namespace Fuyu.Platform.Common.Models.EFT.Bots // Assembly-CSharp.dll: EFT.WildSpawnType public enum EBotRole { - marksman, - assault, - bossTest, - bossBully, - followerTest, - followerBully, - bossKilla, - bossKojaniy, - followerKojaniy, - pmcBot, - cursedAssault, - bossGluhar, - followerGluharAssault, - followerGluharSecurity, - followerGluharScout, - followerGluharSnipe, - followerSanitar, - bossSanitar, - test, - assaultGroup, - sectantWarrior, - sectantPriest, - bossTagilla, - followerTagilla, - exUsec, - gifter, - bossKnight, - followerBigPipe, - followerBirdEye, - bossZryachiy, - followerZryachiy, - bossBoar = 32, - followerBoar, - arenaFighter, - arenaFighterEvent, - bossBoarSniper, - crazyAssaultEvent, - peacefullZryachiyEvent, - sectactPriestEvent, - ravangeZryachiyEvent, - followerBoarClose1, - followerBoarClose2, - bossKolontay, - followerKolontayAssault, - followerKolontaySecurity, - shooterBTR + marksman, + assault, + bossTest, + bossBully, + followerTest, + followerBully, + bossKilla, + bossKojaniy, + followerKojaniy, + pmcBot, + cursedAssault, + bossGluhar, + followerGluharAssault, + followerGluharSecurity, + followerGluharScout, + followerGluharSnipe, + followerSanitar, + bossSanitar, + test, + assaultGroup, + sectantWarrior, + sectantPriest, + bossTagilla, + followerTagilla, + exUsec, + gifter, + bossKnight, + followerBigPipe, + followerBirdEye, + bossZryachiy, + followerZryachiy, + bossBoar = 32, + followerBoar, + arenaFighter, + arenaFighterEvent, + bossBoarSniper, + crazyAssaultEvent, + peacefullZryachiyEvent, + sectactPriestEvent, + ravangeZryachiyEvent, + followerBoarClose1, + followerBoarClose2, + bossKolontay, + followerKolontayAssault, + followerKolontaySecurity, + shooterBTR, + bossPartisan, + spiritWinter, + spiritSpring, + peacemaker, + pmcBEAR, + pmcUSEC, + skier } } diff --git a/Fuyu.Platform.Common/Models/EFT/Locations/AirdropParameters.cs b/Fuyu.Platform.Common/Models/EFT/Locations/AirdropParameters.cs new file mode 100644 index 00000000..c959be08 --- /dev/null +++ b/Fuyu.Platform.Common/Models/EFT/Locations/AirdropParameters.cs @@ -0,0 +1,41 @@ +using System.Runtime.Serialization; + +namespace Fuyu.Platform.Common.Models.EFT.Locations +{ + [DataContract] + public struct AirdropParameters + { + [DataMember] + public string id; + + [DataMember] + public int PlaneAirdropStartMin; + + [DataMember] + public int PlaneAirdropStartMax; + + [DataMember] + public int PlaneAirdropEnd; + + [DataMember] + public float PlaneAirdropChance; + + [DataMember] + public int PlaneAirdropMax; + + [DataMember] + public int PlaneAirdropCooldownMin; + + [DataMember] + public int PlaneAirdropCooldownMax; + + [DataMember] + public int AirdropPointDeactivateDistance; + + [DataMember] + public int MinPlayersCountToSpawnAirdrop; + + [DataMember] + public int UnsuccessfulTryPenalty; + } +} \ No newline at end of file diff --git a/Fuyu.Platform.Common/Models/EFT/Locations/Banner.cs b/Fuyu.Platform.Common/Models/EFT/Locations/Banner.cs new file mode 100644 index 00000000..20957d7c --- /dev/null +++ b/Fuyu.Platform.Common/Models/EFT/Locations/Banner.cs @@ -0,0 +1,15 @@ +using System.Runtime.Serialization; +using Fuyu.Platform.Common.Models.EFT.Common; + +namespace Fuyu.Platform.Common.Models.EFT.Locations +{ + [DataContract] + public struct Banner + { + [DataMember] + public string id; + + [DataMember] + public BundleAddress pic; + } +} \ No newline at end of file diff --git a/Fuyu.Platform.Common/Models/EFT/Locations/BossSpawn.cs b/Fuyu.Platform.Common/Models/EFT/Locations/BossSpawn.cs index 7d0a7c4a..a144c3a6 100644 --- a/Fuyu.Platform.Common/Models/EFT/Locations/BossSpawn.cs +++ b/Fuyu.Platform.Common/Models/EFT/Locations/BossSpawn.cs @@ -11,6 +11,9 @@ public struct BossSpawn [DataMember] public int BossChance; + [DataMember] + public string BossZone; + [DataMember] public bool BossPlayer; @@ -29,25 +32,29 @@ public struct BossSpawn [DataMember] public int Time; - [DataMember] - public string TriggerId; - - [DataMember] - public string TriggerName; - [DataMember(EmitDefaultValue = false)] public BossSupport[] Supports; [DataMember] public bool RandomTimeSpawn; - [DataMember(EmitDefaultValue = false)] - public int Delay; - [DataMember(EmitDefaultValue = false)] public bool ForceSpawn; [DataMember(EmitDefaultValue = false)] public bool IgnoreMaxBots; + + [DataMember] + public string TriggerName; + + [DataMember] + public string TriggerId; + + [DataMember(EmitDefaultValue = false)] + public int Delay; + + // NOTE: server-side only + [DataMember] + public string[] SpawnMode; } } \ No newline at end of file diff --git a/Fuyu.Platform.Common/Models/EFT/Locations/BotLocationModifier.cs b/Fuyu.Platform.Common/Models/EFT/Locations/BotLocationModifier.cs index cf28b7bc..baaebdc5 100644 --- a/Fuyu.Platform.Common/Models/EFT/Locations/BotLocationModifier.cs +++ b/Fuyu.Platform.Common/Models/EFT/Locations/BotLocationModifier.cs @@ -21,16 +21,16 @@ public struct BotLocationModifier public float VisibleDistance; [DataMember] - public float DistToSleep; + public float DistToPersueAxemanCoef; [DataMember] - public float DistToActivate; + public float DistToSleep; [DataMember] - public float MagnetPower; + public float DistToActivate; [DataMember] - public float DistToPersueAxemanCoef; + public float MagnetPower; [DataMember] public float KhorovodChance; diff --git a/Fuyu.Platform.Common/Models/EFT/Locations/Location.cs b/Fuyu.Platform.Common/Models/EFT/Locations/Location.cs index 1ae44810..bf3e19c7 100644 --- a/Fuyu.Platform.Common/Models/EFT/Locations/Location.cs +++ b/Fuyu.Platform.Common/Models/EFT/Locations/Location.cs @@ -81,10 +81,6 @@ public struct Location [DataMember] public bool IsSecret; - // TODO: proper type - [DataMember] - public object[] doors; - [DataMember] public int MaxDistToFreePoint; @@ -169,30 +165,6 @@ public struct Location [DataMember] public long UnixDateTime; - [DataMember] - public int users_gather_seconds; - - [DataMember] - public int users_spawn_seconds_n; - - [DataMember] - public int users_spawn_seconds_n2; - - [DataMember] - public int users_summon_seconds; - - [DataMember] - public int sav_summon_seconds; - - [DataMember] - public int matching_min_seconds; - - [DataMember] - public bool GenerateLocalLootCache; - - [DataMember] - public int PlayersRequestCount; - [DataMember] public GroupScenario NonWaveGroupScenario; @@ -208,8 +180,9 @@ public struct Location [DataMember] public MinMaxBot[] MinMaxBots; + // TODO: update BotLocationModifier type [DataMember] - public BotLocationModifier BotLocationModifier; + public object BotLocationModifier; [DataMember] public Exit[] exits; @@ -218,24 +191,22 @@ public struct Location public bool DisabledForScav; [DataMember] - public SpawnPointParam[] spawnPointParams; + public MaxItemCount[] maxItemCountInLocation; - // TODO: proper type [DataMember] - public object[] AirdropParameters; + public BossSpawn[] BossLocationSpawn; [DataMember] - public MaxItemCount[] maxItemCountInLocation; + public SpawnPointParam[] spawnPointParams; [DataMember] - public BossSpawn[] BossLocationSpawn; + public AirdropParameters[] AirdropParameters; [DataMember(EmitDefaultValue = false)] public MatchMakerWaitTime[] MatchMakerMinPlayersByWaitTime; - // TODO: proper type [DataMember] - public object[] transits; + public Transit[] transits; [DataMember] public string Id; @@ -248,6 +219,6 @@ public struct Location public object[] Loot; [DataMember] - public BundleAddress[] Banners; + public Banner[] Banners; } } \ No newline at end of file diff --git a/Fuyu.Platform.Common/Models/EFT/Locations/SpawnPointParam.cs b/Fuyu.Platform.Common/Models/EFT/Locations/SpawnPointParam.cs index 83e517d1..18ef9c72 100644 --- a/Fuyu.Platform.Common/Models/EFT/Locations/SpawnPointParam.cs +++ b/Fuyu.Platform.Common/Models/EFT/Locations/SpawnPointParam.cs @@ -32,5 +32,8 @@ public struct SpawnPointParam [DataMember] public string BotZoneName; + + [DataMember] + public int CorePointId; } } \ No newline at end of file diff --git a/Fuyu.Platform.Common/Models/EFT/Locations/Transit.cs b/Fuyu.Platform.Common/Models/EFT/Locations/Transit.cs new file mode 100644 index 00000000..f41b7b52 --- /dev/null +++ b/Fuyu.Platform.Common/Models/EFT/Locations/Transit.cs @@ -0,0 +1,35 @@ +using System.Runtime.Serialization; + +namespace Fuyu.Platform.Common.Models.EFT.Locations +{ + [DataContract] + public struct Transit + { + [DataMember] + public int id; + + [DataMember] + public bool active; + + [DataMember] + public string name; + + [DataMember] + public string location; + + [DataMember] + public string description; + + [DataMember] + public int activateAfterSec; + + [DataMember] + public string target; + + [DataMember] + public int time; + + [DataMember] + public string conditions; + } +} \ No newline at end of file diff --git a/Fuyu.Platform.Common/Models/EFT/Locations/Wave.cs b/Fuyu.Platform.Common/Models/EFT/Locations/Wave.cs index eb5aaf56..b3392c89 100644 --- a/Fuyu.Platform.Common/Models/EFT/Locations/Wave.cs +++ b/Fuyu.Platform.Common/Models/EFT/Locations/Wave.cs @@ -35,6 +35,8 @@ public struct Wave [DataMember] public string WildSpawnType; + // Tracks which waves to send for which game mode + // NOTE: server-side only [DataMember] public string[] SpawnMode; } diff --git a/Fuyu.Platform.Server/embedded/database/locations/bigmap.json b/Fuyu.Platform.Server/embedded/database/locations/bigmap.json index 5df1029e..9b88652f 100644 --- a/Fuyu.Platform.Server/embedded/database/locations/bigmap.json +++ b/Fuyu.Platform.Server/embedded/database/locations/bigmap.json @@ -1,36614 +1,36617 @@ { - "serverId": "PVE_OFFLINE_659885_26_08_2024_01_52_52", - "serverSettings": { - "TraderServerSettings": { - "TraderServices": { - "ExUsecLoyalty": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ExUsecLoyalty", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966ff54c3ef01b6f3ffad8" + "err": 0, + "data": { + "serverId": "PVE_OFFLINE_659885_26_08_2024_01_52_52", + "serverSettings": { + "TraderServerSettings": { + "TraderServices": { + "ExUsecLoyalty": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ExUsecLoyalty", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966ff54c3ef01b6f3ffad8" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.09 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.09 + }, + "ServiceItemCost": { + "569668774bdc2da2298b4568": { + "Count": 2500 + }, + "61bf7c024770ee6f9c6b8b53": { + "Count": 2 } - } - }, - "ServiceItemCost": { - "569668774bdc2da2298b4568": { - "Count": 2500 }, - "61bf7c024770ee6f9c6b8b53": { - "Count": 2 - } - }, - "UniqueItems": [] - }, - "ZryachiyAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ZryachiyAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "6396701b9113f06a7c3b2379" + "UniqueItems": [] + }, + "ZryachiyAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ZryachiyAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "6396701b9113f06a7c3b2379" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.18 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.18 + }, + "ServiceItemCost": { + "62a0a16d0b9d3c46de5b6e97": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 2000 } - } - }, - "ServiceItemCost": { - "62a0a16d0b9d3c46de5b6e97": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 2000 - } - }, - "UniqueItems": [] - }, - "CultistsAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "CultistsAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966fccac6f8f3c677b9d89" + "UniqueItems": [] + }, + "CultistsAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "CultistsAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966fccac6f8f3c677b9d89" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.03 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.03 + }, + "ServiceItemCost": { + "5c12613b86f7743bbe2c3f76": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 1000 } - } - }, - "ServiceItemCost": { - "5c12613b86f7743bbe2c3f76": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 1000 - } - }, - "UniqueItems": [ - "64d0b40fbe2eed70e254e2d4" - ] - }, - "PlayerTaxi": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "PlayerTaxi", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrBotCover": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrBotCover", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "TransitItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "TransitItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + "UniqueItems": [ + "64d0b40fbe2eed70e254e2d4" + ] + }, + "PlayerTaxi": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "PlayerTaxi", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrBotCover": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrBotCover", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "TransitItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "TransitItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + } } - } - }, - "BTRServerSettings": { - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.77, - "BodySwingIntensity": 0.506, - "ServerMapBTRSettings": { - "Develop": { - "MapID": "develop", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "TarkovStreets": { - "MapID": "TarkovStreets", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "Woods": { - "MapID": "Woods", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 180.0, - "y": 360.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 + "BTRServerSettings": { + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.77, + "BodySwingIntensity": 0.506, + "ServerMapBTRSettings": { + "Develop": { + "MapID": "develop", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "TarkovStreets": { + "MapID": "TarkovStreets", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "Woods": { + "MapID": "Woods", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 180.0, + "y": 360.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + } } } - } - }, - "profile": { - "insuredItems": [] - }, - "locationLoot": { - "Enabled": true, - "EnableCoop": true, - "ForceOnlineRaidInPVE": false, - "Locked": false, - "Insurance": true, - "SafeLocation": false, - "Name": "Customs", - "Description": "Very Big Map", - "Scene": { - "path": "maps\/customs_preset.bundle", - "rcid": "bigmap.scenespreset.asset" - }, - "Area": 0.0, - "RequiredPlayerLevelMin": 0, - "RequiredPlayerLevelMax": 100, - "PmcMaxPlayersInGroup": 5, - "ScavMaxPlayersInGroup": 4, - "MinPlayers": 10, - "MaxPlayers": 12, - "MaxCoopGroup": 12, - "exit_count": 2, - "exit_access_time": 60, - "exit_time": 1, - "Preview": { - "path": "", - "rcid": "" }, - "IconX": 550, - "IconY": 460, - "filter_ex": [], - "waves": [ - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneBrige", - "BotSide": "Savage", - "BotPreset": "easy", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 2, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "ZoneDormitory", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 3, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZoneGasStation", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 4, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "ZoneFactoryCenter", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 5, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneFactorySide", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 6, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneOldAZS", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 7, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 1, - "SpawnPoints": "ZoneSnipeBrige", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "marksman", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 8, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 1, - "SpawnPoints": "ZoneSnipeTower", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "marksman", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 9, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 1, - "SpawnPoints": "ZoneSnipeFactory", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "marksman", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 10, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneBlockPost", - "BotSide": "Savage", - "BotPreset": "easy", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 11, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneBlockPostSniper", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "marksman", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 13, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneBlockPostSniper3", - "BotSide": "Savage", - "BotPreset": "easy", - "WildSpawnType": "marksman", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 14, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneCrossRoad", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 15, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneBlockPost", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 16, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneTankSquare", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 17, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneWade", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - } - ], - "limits": [], - "AveragePlayTime": 25, - "AveragePlayerLevel": 20, - "EscapeTimeLimit": 40, - "EscapeTimeLimitPVE": 40, - "EscapeTimeLimitCoop": 25, - "Rules": "AvoidAllPmc", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 30, - "MaxDistToFreePoint": 200, - "MinDistToFreePoint": 60, - "MaxBotPerZone": 4, - "OpenZones": "ZoneBrige,ZoneCrossRoad,ZoneDormitory,ZoneGasStation,ZoneFactoryCenter,ZoneFactorySide,ZoneOldAZS,ZoneSnipeBrige,ZoneSnipeTower,ZoneSnipeFactory,ZoneBlockPost,ZoneBlockPostSniper,ZoneBlockPostSniper3,ZoneBlockPost,ZoneTankSquare,ZoneWade,ZoneCustoms", - "OcculsionCullingEnabled": false, - "GlobalLootChanceModifier": 0.4, - "GlobalLootChanceModifierPvE": 0.9, - "OldSpawn": true, - "OfflineOldSpawn": true, - "NewSpawn": true, - "OfflineNewSpawn": true, - "BotMax": 30, - "BotMaxPvE": 30, - "BotStart": 20, - "BotStartPlayer": 0, - "BotStop": 1500, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 260, - "BotSpawnTimeOnMax": 320, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOffMax": 30, - "BotMaxPlayer": 0, - "BotEasy": 10, - "BotNormal": 50, - "BotHard": 40, - "BotImpossible": 0, - "BotAssault": 80, - "BotMarksman": 20, - "DisabledScavExits": "", - "MinPlayerLvlAccessKeys": 0, - "AccessKeys": [], - "UnixDateTime": 1636382469, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "sav_summon_seconds": 60, - "matching_min_seconds": 60, - "GenerateLocalLootCache": true, - "PlayersRequestCount": -1, - "NonWaveGroupScenario": { - "MinToBeGroup": 2, - "MaxToBeGroup": 3, - "Chance": 50.0, - "Enabled": true + "profile": { + "insuredItems": [] }, - "BotSpawnCountStep": 4, - "BotSpawnPeriodCheck": 15, - "GlobalContainerChanceModifier": 1.0, - "MinMaxBots": [ - { - "min": 2, - "max": 10, - "WildSpawnType": "marksman" - } - ], - "BotLocationModifier": { - "AccuracySpeed": 1.0, - "Scattering": 1.0, - "GainSight": 1.0, - "MarksmanAccuratyCoef": 1.0, - "VisibleDistance": 1.0, - "DistToActivate": 265.0, - "DistToSleep": 300.0, - "MagnetPower": 44.0, - "DistToPersueAxemanCoef": 1.0, - "KhorovodChance": 0, - "MinExfiltrationTime": 1200.0, - "MaxExfiltrationTime": 1800.0, - "DistToActivatePvE": 265.0, - "DistToSleepPvE": 300.0, - "AdditionalHostilitySettings": [ + "locationLoot": { + "Enabled": true, + "EnableCoop": true, + "ForceOnlineRaidInPVE": false, + "Locked": false, + "Insurance": true, + "SafeLocation": false, + "Name": "Customs", + "Description": "Very Big Map", + "Scene": { + "path": "maps\/customs_preset.bundle", + "rcid": "bigmap.scenespreset.asset" + }, + "Area": 0.0, + "RequiredPlayerLevelMin": 0, + "RequiredPlayerLevelMax": 100, + "PmcMaxPlayersInGroup": 5, + "ScavMaxPlayersInGroup": 4, + "MinPlayers": 10, + "MaxPlayers": 12, + "MaxCoopGroup": 12, + "exit_count": 2, + "exit_access_time": 60, + "exit_time": 1, + "Preview": { + "path": "", + "rcid": "" + }, + "IconX": 550, + "IconY": 460, + "filter_ex": [], + "waves": [ { - "BotRole": "pmcBEAR", - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 90 - }, - { - "BotRole": "pmcUSEC", - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 75 - } - ] - }, - "exits": [ - { - "Name": "Crossroads", - "EntryPoints": "Boiler Tanks", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Smuggler's Boat", - "EntryPoints": "Boiler Tanks", - "Chance": 50.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 50.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "RUAF Roadblock", - "EntryPoints": "Boiler Tanks", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "ZB-1012", - "EntryPoints": "Customs", - "Chance": 50.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 50.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "ZB-1011", - "EntryPoints": "Customs", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Trailer Park", - "EntryPoints": "Boiler Tanks", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Old Gas Station", - "EntryPoints": "Customs", - "Chance": 50.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 50.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Dorms V-Ex", - "EntryPoints": "Customs,Boiler Tanks", - "Chance": 50.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 4, - "ExfiltrationTime": 60.0, - "PassageRequirement": "TransferItem", - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "Count": 5000, - "RequirementTip": "EXFIL_Item", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 50.0, - "CountPVE": 5000, - "ExfiltrationTimePVE": 60.0, - "PlayersCountPVE": 4 - }, - { - "Name": "EXFIL_ZB013", - "EntryPoints": "Customs,Boiler Tanks", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "WorldEvent", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - } - ], - "DisabledForScav": false, - "BossLocationSpawn": [ - { - "BossName": "bossPartisan", - "BossChance": 10.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": true, - "DependKarmaPVE": false - }, - { - "BossName": "bossKnight", - "BossChance": 25.0, - "BossZone": "ZoneScavBase", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2", - "Time": -1.0, - "Supports": [ - { - "BossEscortType": "followerBigPipe", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "1" - }, - { - "BossEscortType": "followerBirdEye", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "1" - }, - { - "BossEscortType": "followerGluharScout", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "0" - } - ], - "RandomTimeSpawn": true, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "bossBully", - "BossChance": 25.0, - "BossZone": "ZoneDormitory,ZoneGasStation,ZoneScavBase", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "followerBully", - "BossEscortDifficult": "normal", - "BossEscortAmount": "4", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "sectantPriest", - "BossChance": 10.0, - "BossZone": "ZoneScavBase", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossEscortDifficult": "normal", - "BossEscortAmount": "4", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - } - ], - "SpawnPointParams": [ - { - "Id": "0321a8fe-1219-4574-9557-4d7cb2ae1c0e", - "Position": { - "x": 5.87000275, - "y": 1.37882686, - "z": -90.5099945 - }, - "Rotation": 229.912613, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 164.4 - } - }, - "BotZoneName": "ZoneWade", - "CorePointId": 5 - }, - { - "Id": "0327c5d1-cc7f-432f-92dc-f95fb4719f1b", - "Position": { - "x": 571.41, - "y": 1.49, - "z": -53.4799957 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneBrige", + "BotSide": "Savage", + "BotPreset": "easy", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "06305c94-bdc3-4355-b2df-4b9060f54ed2", - "Position": { - "x": 584.06, - "y": 9.66, - "z": 146.22 - }, - "Rotation": 230.030014, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 2, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "ZoneDormitory", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "06609aab-bf3d-4a8e-9c0f-ba60366663ad", - "Position": { - "x": -170.240021, - "y": 1.063748, - "z": -46.4629974 - }, - "Rotation": 273.068, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "number": 3, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZoneGasStation", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "06da51ee-f83e-47f3-a947-8d0e6254edce", - "Position": { - "x": -329.382019, - "y": 1.01902342, - "z": -211.054 - }, - "Rotation": 99.65997, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "number": 4, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "ZoneFactoryCenter", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "0a780428-48e0-4268-9ef8-0a7f999cc632", - "Position": { - "x": -220.212, - "y": 1.0710001, - "z": -141.936 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 5, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneFactorySide", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0b6da56b-3e12-49e9-adfe-d33d4bd56d34", - "Position": { - "x": 420.47, - "y": 1.14899969, - "z": 22.5500011 - }, - "Rotation": 126.588921, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77.17 - } + { + "number": 6, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneOldAZS", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 25 - }, - { - "Id": "0bfe7760-902e-4b79-8722-7ce2ad0a970c", - "Position": { - "x": 288.068, - "y": 1.718, - "z": -201.166 - }, - "Rotation": 17.73762, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } + { + "number": 7, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 1, + "SpawnPoints": "ZoneSnipeBrige", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "marksman", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0f054aeb-dae4-4de4-8f19-e96baac1def6", - "Position": { - "x": 531.88, - "y": 9.52, - "z": 195.790009 - }, - "Rotation": 225.49, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 8, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 1, + "SpawnPoints": "ZoneSnipeTower", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "marksman", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0fd52df3-8419-4644-917f-efd18d99c85a", - "Position": { - "x": 546.888, - "y": 2.208, - "z": 45.5639954 - }, - "Rotation": 342.4109, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 9, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 1, + "SpawnPoints": "ZoneSnipeFactory", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "marksman", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "105e161c-c1ad-4004-8c02-f3c95164a75e", - "Position": { - "x": 574.0, - "y": 1.46, - "z": -114.85 - }, - "Rotation": 283.46, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 10, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneBlockPost", + "BotSide": "Savage", + "BotPreset": "easy", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "10a75815-d786-43e2-9639-6b94071433f8", - "Position": { - "x": 101.76799, - "y": 1.18800008, - "z": 11.8939972 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "number": 11, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneBlockPostSniper", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "marksman", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "10b76618-8674-4b79-ad6b-ce258f54bb73", - "Position": { - "x": 175.290009, - "y": 1.21891308, - "z": -5.380005 - }, - "Rotation": 38.0980873, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "number": 13, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneBlockPostSniper3", + "BotSide": "Savage", + "BotPreset": "easy", + "WildSpawnType": "marksman", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneCrossRoad", - "CorePointId": 7 - }, - { - "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", - "Position": { - "x": 569.208, - "y": -0.322000027, - "z": -8.846008 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "number": 14, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneCrossRoad", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "11d4887b-54a6-40bf-87cf-f70d0721da0c", - "Position": { - "x": 291.5036, - "y": 2.35399628, - "z": -169.449524 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "number": 15, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneBlockPost", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneOldAZS", - "CorePointId": 13 - }, - { - "Id": "11e7dc8d-ee50-4800-a400-a2f2761b6e9f", - "Position": { - "x": -195.952, - "y": 1.458, - "z": -234.646 - }, - "Rotation": 17.2243824, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "number": 16, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneTankSquare", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "12463505-23d7-4b12-afe7-4e540c04373a", - "Position": { - "x": 513.6549, - "y": 1.21008575, - "z": -55.33365 - }, - "Rotation": 100.786774, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "number": 17, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneWade", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "12b8a48c-1b41-4e9f-a2e4-197d9c469d61", - "Position": { - "x": -157.741013, - "y": 1.60435379, - "z": -190.766 - }, - "Rotation": 273.068, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] + } + ], + "limits": [], + "AveragePlayTime": 25, + "AveragePlayerLevel": 20, + "EscapeTimeLimit": 40, + "EscapeTimeLimitPVE": 40, + "EscapeTimeLimitCoop": 25, + "Rules": "AvoidAllPmc", + "IsSecret": false, + "doors": [], + "tmp_location_field_remove_me": 0, + "MinDistToExitPoint": 30, + "MaxDistToFreePoint": 200, + "MinDistToFreePoint": 60, + "MaxBotPerZone": 4, + "OpenZones": "ZoneBrige,ZoneCrossRoad,ZoneDormitory,ZoneGasStation,ZoneFactoryCenter,ZoneFactorySide,ZoneOldAZS,ZoneSnipeBrige,ZoneSnipeTower,ZoneSnipeFactory,ZoneBlockPost,ZoneBlockPostSniper,ZoneBlockPostSniper3,ZoneBlockPost,ZoneTankSquare,ZoneWade,ZoneCustoms", + "OcculsionCullingEnabled": false, + "GlobalLootChanceModifier": 0.4, + "GlobalLootChanceModifierPvE": 0.9, + "OldSpawn": true, + "OfflineOldSpawn": true, + "NewSpawn": true, + "OfflineNewSpawn": true, + "BotMax": 30, + "BotMaxPvE": 30, + "BotStart": 20, + "BotStartPlayer": 0, + "BotStop": 1500, + "BotMaxTimePlayer": 0, + "BotSpawnTimeOnMin": 260, + "BotSpawnTimeOnMax": 320, + "BotSpawnTimeOffMin": 20, + "BotSpawnTimeOffMax": 30, + "BotMaxPlayer": 0, + "BotEasy": 10, + "BotNormal": 50, + "BotHard": 40, + "BotImpossible": 0, + "BotAssault": 80, + "BotMarksman": 20, + "DisabledScavExits": "", + "MinPlayerLvlAccessKeys": 0, + "AccessKeys": [], + "UnixDateTime": 1636382469, + "users_gather_seconds": 0, + "users_spawn_seconds_n": 120, + "users_spawn_seconds_n2": 200, + "users_summon_seconds": 0, + "sav_summon_seconds": 60, + "matching_min_seconds": 60, + "GenerateLocalLootCache": true, + "PlayersRequestCount": -1, + "NonWaveGroupScenario": { + "MinToBeGroup": 2, + "MaxToBeGroup": 3, + "Chance": 50.0, + "Enabled": true }, - { - "Id": "130a034a-5c2d-4d81-a04f-728f20421cc2", - "Position": { - "x": 255.4663, - "y": 1.21224034, - "z": -108.379227 - }, - "Rotation": 135.08139, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + "BotSpawnCountStep": 4, + "BotSpawnPeriodCheck": 15, + "GlobalContainerChanceModifier": 1.0, + "MinMaxBots": [ + { + "min": 2, + "max": 10, + "WildSpawnType": "marksman" + } + ], + "BotLocationModifier": { + "AccuracySpeed": 1.0, + "Scattering": 1.0, + "GainSight": 1.0, + "MarksmanAccuratyCoef": 1.0, + "VisibleDistance": 1.0, + "DistToActivate": 265.0, + "DistToSleep": 300.0, + "MagnetPower": 44.0, + "DistToPersueAxemanCoef": 1.0, + "KhorovodChance": 0, + "MinExfiltrationTime": 1200.0, + "MaxExfiltrationTime": 1800.0, + "DistToActivatePvE": 265.0, + "DistToSleepPvE": 300.0, + "AdditionalHostilitySettings": [ + { + "BotRole": "pmcBEAR", + "AlwaysEnemies": [ + "pmcBot", + "exUsec", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar", + "bossKnight" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcUSEC" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 75, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 90 + }, + { + "BotRole": "pmcUSEC", + "AlwaysEnemies": [ + "pmcBot", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcBEAR" + }, + { + "EnemyChance": 15, + "Role": "exUsec" + }, + { + "EnemyChance": 15, + "Role": "bossKnight" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 90, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 75 } - }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 16 + ] }, - { - "Id": "158ea18b-12e5-4495-8774-0cb185ce83ba", - "Position": { - "x": 587.85, - "y": 8.89, - "z": 141.949982 - }, - "Rotation": 216.79, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + "exits": [ + { + "Name": "Crossroads", + "EntryPoints": "Boiler Tanks", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "15a5b4ce-8d57-41b8-8f2b-bcf806a8e803", - "Position": { - "x": -223.232, - "y": 1.118, - "z": -147.516 - }, - "Rotation": 13.3819723, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "Smuggler's Boat", + "EntryPoints": "Boiler Tanks", + "Chance": 50.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 50.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "16894fca-9b05-4c00-956e-1e352ab68131", - "Position": { - "x": 133.786285, - "y": 1.74224031, - "z": -82.02922 - }, - "Rotation": 189.840561, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "RUAF Roadblock", + "EntryPoints": "Boiler Tanks", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 4 - }, - { - "Id": "16ac5894-aca4-435f-8646-53a2ed3b17df", - "Position": { - "x": 430.815033, - "y": 1.88306046, - "z": 54.8594666 - }, - "Rotation": 343.038422, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 62.3 - } + { + "Name": "ZB-1012", + "EntryPoints": "Customs", + "Chance": 50.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 50.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 11 - }, - { - "Id": "181f7000-df70-4bc7-bff3-a709291c907f", - "Position": { - "x": 100.158005, - "y": 1.18800008, - "z": 11.9940033 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Name": "ZB-1011", + "EntryPoints": "Customs", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1a39d596-25e4-4b63-b6da-325aa8409576", - "Position": { - "x": 570.06, - "y": 1.49, - "z": -54.9799957 - }, - "Rotation": 191.11, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "Trailer Park", + "EntryPoints": "Boiler Tanks", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", - "Position": { - "x": 569.347961, - "y": -0.322000027, - "z": -10.6060028 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Name": "Old Gas Station", + "EntryPoints": "Customs", + "Chance": 50.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 50.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1b202f92-51b5-4888-acfd-8784a130e14c", - "Position": { - "x": 339.321442, - "y": 1.189998, - "z": -190.771988 - }, - "Rotation": 52.6828651, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Name": "Dorms V-Ex", + "EntryPoints": "Customs,Boiler Tanks", + "Chance": 50.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 4, + "ExfiltrationTime": 60.0, + "PassageRequirement": "TransferItem", + "ExfiltrationType": "SharedTimer", + "Id": "5449016a4bdc2d6f028b456f", + "Count": 5000, + "RequirementTip": "EXFIL_Item", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 50.0, + "CountPVE": 5000, + "ExfiltrationTimePVE": 60.0, + "PlayersCountPVE": 4 }, - "BotZoneName": "ZoneOldAZS", - "CorePointId": 13 - }, - { - "Id": "1b636e5b-ae6d-4df3-93ea-159f5a2437fd", - "Position": { - "x": -132.9, - "y": -1.66999984, - "z": 39.8999939 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "EXFIL_ZB013", + "EntryPoints": "Customs,Boiler Tanks", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "WorldEvent", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 + } + ], + "DisabledForScav": false, + "BossLocationSpawn": [ + { + "BossName": "bossPartisan", + "BossChance": 10.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "sectantWarrior", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "PARTISAN_TRIGGER", + "TriggerName": "botEvent", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": true, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", - "Position": { - "x": -133.812, - "y": 0.718000054, - "z": 14.2939911 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1b70ff23-343f-4f57-a21b-b9c22b98a6db", - "Position": { - "x": 185.443283, - "y": 2.83624029, - "z": 182.801788 - }, - "Rotation": 168.224945, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "BotZoneName": "ZoneDormitory", - "CorePointId": 1 - }, - { - "Id": "1b9fddbc-f667-4344-98ef-3d198229bd41", - "Position": { - "x": -151.782, - "y": 1.258, - "z": -129.81601 - }, - "Rotation": 135.46, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "BossName": "bossKnight", + "BossChance": 25.0, + "BossZone": "ZoneScavBase", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2", + "Time": -1.0, + "Supports": [ + { + "BossEscortType": "followerBigPipe", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "1" + }, + { + "BossEscortType": "followerBirdEye", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "1" + }, + { + "BossEscortType": "followerGluharScout", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "0" + } + ], + "RandomTimeSpawn": true, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1c26a886-b1f5-490e-8fdd-153d991dc393", - "Position": { - "x": 363.248, - "y": 12.698, - "z": 155.594 - }, - "Rotation": 180.91, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "BossName": "bossBully", + "BossChance": 25.0, + "BossZone": "ZoneDormitory,ZoneGasStation,ZoneScavBase", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "followerBully", + "BossEscortDifficult": "normal", + "BossEscortAmount": "4", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1cb1e3f5-0718-4178-95cf-39f3a5bbddfd", - "Position": { - "x": 213.6, - "y": 1.24984646, - "z": 1.949997 - }, - "Rotation": 327.055481, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "BossName": "sectantPriest", + "BossChance": 10.0, + "BossZone": "ZoneScavBase", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "sectantWarrior", + "BossEscortDifficult": "normal", + "BossEscortAmount": "4", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "ZoneCrossRoad", - "CorePointId": 7 - }, - { - "Id": "1d0f26c8-85e5-42d0-b115-7d8f325f97d4", - "Position": { - "x": -130.65, - "y": -2.11, - "z": 38.9100037 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1d5a53ba-2b64-4915-9de8-826f06c7ba97", - "Position": { - "x": 6.49000549, - "y": 1.26882577, - "z": -95.06 - }, - "Rotation": 168.0339, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "ZoneWade", - "CorePointId": 5 - }, - { - "Id": "1d80614c-e211-42d5-b661-8e2bb1aeae79", - "Position": { - "x": 100.598007, - "y": 1.168, - "z": -110.826004 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1fb2eba7-250e-4fd1-ba2a-75fb3d640ed7", - "Position": { - "x": -131.27, - "y": -2.09, - "z": 42.6900024 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "20495255-3094-4add-8744-14efc6e05308", - "Position": { - "x": 525.62, - "y": 8.88, - "z": 199.0 - }, - "Rotation": 225.49, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2051eb7b-3ae8-49b8-adcb-c13f0ddc7972", - "Position": { - "x": 317.338, - "y": 1.128, - "z": -78.756 - }, - "Rotation": 11.5521812, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false + } + ], + "SpawnPointParams": [ + { + "Id": "0321a8fe-1219-4574-9557-4d7cb2ae1c0e", + "Position": { + "x": 5.87000275, + "y": 1.37882686, + "z": -90.5099945 + }, + "Rotation": 229.912613, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 164.4 + } + }, + "BotZoneName": "ZoneWade", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", - "Position": { - "x": 569.537964, - "y": -0.322000027, - "z": -12.9960022 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "0327c5d1-cc7f-432f-92dc-f95fb4719f1b", + "Position": { + "x": 571.41, + "y": 1.49, + "z": -53.4799957 + }, + "Rotation": 180.13, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "232e59b2-edec-429d-99e3-06f70241ce28", - "Position": { - "x": 260.2963, - "y": 1.21224034, - "z": -91.08922 - }, - "Rotation": 283.470825, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "06305c94-bdc3-4355-b2df-4b9060f54ed2", + "Position": { + "x": 584.06, + "y": 9.66, + "z": 146.22 + }, + "Rotation": 230.030014, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 7 - }, - { - "Id": "253e504c-4d28-4aa0-926d-14dcbdeebc1c", - "Position": { - "x": -309.95, - "y": 0.99, - "z": -94.51 - }, - "Rotation": 141.8, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "06609aab-bf3d-4a8e-9c0f-ba60366663ad", + "Position": { + "x": -170.240021, + "y": 1.063748, + "z": -46.4629974 + }, + "Rotation": 273.068, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "27aa4110-1b16-4454-b505-35026255b7f9", - "Position": { - "x": -147.872, - "y": 1.678, - "z": -135.636 - }, - "Rotation": 21.67, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "06da51ee-f83e-47f3-a947-8d0e6254edce", + "Position": { + "x": -329.382019, + "y": 1.01902342, + "z": -211.054 + }, + "Rotation": 99.65997, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2810239e-d13d-4738-9be9-a7289f29ab82", - "Position": { - "x": 568.8878, - "y": -1.46942234, - "z": -25.5359821 - }, - "Rotation": 343.038422, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "0a780428-48e0-4268-9ef8-0a7f999cc632", + "Position": { + "x": -220.212, + "y": 1.0710001, + "z": -141.936 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBlockPost", - "CorePointId": 8 - }, - { - "Id": "28635a4e-a46b-4880-a081-714bd9d14e2d", - "Position": { - "x": 119.710007, - "y": 1.10880566, - "z": -34.1 - }, - "Rotation": 309.78418, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "0b6da56b-3e12-49e9-adfe-d33d4bd56d34", + "Position": { + "x": 420.47, + "y": 1.14899969, + "z": 22.5500011 + }, + "Rotation": 126.588921, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77.17 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 25 }, - "BotZoneName": "ZoneTankSquare", - "CorePointId": 4 - }, - { - "Id": "287bf35f-5cdc-44dc-97b6-c035d5054bfa", - "Position": { - "x": 100.664017, - "y": 1.18800008, - "z": 16.3029938 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "0bfe7760-902e-4b79-8722-7ce2ad0a970c", + "Position": { + "x": 288.068, + "y": 1.718, + "z": -201.166 + }, + "Rotation": 17.73762, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 75 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2953587e-0cbb-49b1-9189-951adb63a277", - "Position": { - "x": 171.889282, - "y": 2.83300018, - "z": 172.208786 - }, - "Rotation": 46.6169, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "0f054aeb-dae4-4de4-8f19-e96baac1def6", + "Position": { + "x": 531.88, + "y": 9.52, + "z": 195.790009 + }, + "Rotation": 225.49, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneDormitory", - "CorePointId": 1 - }, - { - "Id": "2b5a6af0-0e2e-4fa1-bbf3-a390276b0b13", - "Position": { - "x": -216.552, - "y": -1.46199989, - "z": -2.10600281 - }, - "Rotation": 138.324036, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "0fd52df3-8419-4644-917f-efd18d99c85a", + "Position": { + "x": 546.888, + "y": 2.208, + "z": 45.5639954 + }, + "Rotation": 342.4109, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2c286540-f748-4719-9a6d-6bd0e9a3c143", - "Position": { - "x": 13.0980072, - "y": 1.19800007, - "z": -125.625992 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "105e161c-c1ad-4004-8c02-f3c95164a75e", + "Position": { + "x": 574.0, + "y": 1.46, + "z": -114.85 + }, + "Rotation": 283.46, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2c5cc586-9010-4b6c-8a67-fbfacb76a225", - "Position": { - "x": 518.3, - "y": 8.35, - "z": 187.459991 - }, - "Rotation": 225.49, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "10a75815-d786-43e2-9639-6b94071433f8", + "Position": { + "x": 101.76799, + "y": 1.18800008, + "z": 11.8939972 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2cb9950d-20ec-484e-919c-5489bb7abd5c", - "Position": { - "x": 478.0, - "y": 2.7, - "z": -83.14 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "10b76618-8674-4b79-ad6b-ce258f54bb73", + "Position": { + "x": 175.290009, + "y": 1.21891308, + "z": -5.380005 + }, + "Rotation": 38.0980873, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneCrossRoad", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2d9d53d3-4263-4911-b76f-7a4fb678898a", - "Position": { - "x": 365.1455, - "y": 1.32006228, - "z": -108.90036 - }, - "Rotation": 277.4024, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 114.7 - } + { + "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", + "Position": { + "x": 569.208, + "y": -0.322000027, + "z": -8.846008 + }, + "Rotation": 270.218658, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactoryCenter", - "CorePointId": 21 - }, - { - "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", - "Position": { - "x": -133.631989, - "y": 0.718000054, - "z": 8.393997 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "11d4887b-54a6-40bf-87cf-f70d0721da0c", + "Position": { + "x": 291.5036, + "y": 2.35399628, + "z": -169.449524 + }, + "Rotation": 147.656372, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneOldAZS", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2f311383-6639-46da-a804-ae43bf804a6a", - "Position": { - "x": 41.7462921, - "y": 1.23424029, - "z": -143.6092 - }, - "Rotation": 135.08139, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "11e7dc8d-ee50-4800-a400-a2f2761b6e9f", + "Position": { + "x": -195.952, + "y": 1.458, + "z": -234.646 + }, + "Rotation": 17.2243824, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 5 - }, - { - "Id": "31d79ff8-4b21-448a-866d-289775a7f5dd", - "Position": { - "x": -17.1999969, - "y": 0.0100492239, - "z": -140.959991 - }, - "Rotation": 333.506073, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } + { + "Id": "12463505-23d7-4b12-afe7-4e540c04373a", + "Position": { + "x": 513.6549, + "y": 1.21008575, + "z": -55.33365 + }, + "Rotation": 100.786774, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 }, - "BotZoneName": "ZoneWade", - "CorePointId": 5 - }, - { - "Id": "33cd6564-129e-444f-91b7-1fc3bfee4f87", - "Position": { - "x": 255.2391, - "y": 53.4429932, - "z": -27.01771 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 1700.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } + { + "Id": "12b8a48c-1b41-4e9f-a2e4-197d9c469d61", + "Position": { + "x": -157.741013, + "y": 1.60435379, + "z": -190.766 + }, + "Rotation": 273.068, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "ZoneSnipeTower", - "CorePointId": 10 - }, - { - "Id": "34e059d8-8d8c-4b35-a747-4d08d3e28561", - "Position": { - "x": 411.6, - "y": 0.96478796, - "z": 0.100000381 - }, - "Rotation": 209.40004, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77.17 - } + { + "Id": "130a034a-5c2d-4d81-a04f-728f20421cc2", + "Position": { + "x": 255.4663, + "y": 1.21224034, + "z": -108.379227 + }, + "Rotation": 135.08139, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneScavBase", + "CorePointId": 16 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 25 - }, - { - "Id": "3735903c-ebbd-407d-ba27-46129dc360c3", - "Position": { - "x": 539.688, - "y": 2.948, - "z": 48.0039978 - }, - "Rotation": 342.4109, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "158ea18b-12e5-4495-8774-0cb185ce83ba", + "Position": { + "x": 587.85, + "y": 8.89, + "z": 141.949982 + }, + "Rotation": 216.79, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "38a13157-f0cd-48d5-bada-dff42472b410", - "Position": { - "x": 569.75, - "y": 1.49, - "z": -52.54001 - }, - "Rotation": 180.26, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "15a5b4ce-8d57-41b8-8f2b-bcf806a8e803", + "Position": { + "x": -223.232, + "y": 1.118, + "z": -147.516 + }, + "Rotation": 13.3819723, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "38aaf44a-c4a7-49a0-a669-96520c28332d", - "Position": { - "x": 582.31, - "y": 9.79, - "z": 147.5 - }, - "Rotation": 216.79, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "16894fca-9b05-4c00-956e-1e352ab68131", + "Position": { + "x": 133.786285, + "y": 1.74224031, + "z": -82.02922 + }, + "Rotation": 189.840561, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneScavBase", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3a7db815-a833-40e2-a297-5f2d08c6489c", - "Position": { - "x": 236.2663, - "y": 1.21224034, - "z": -95.11922 - }, - "Rotation": 111.995163, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "16ac5894-aca4-435f-8646-53a2ed3b17df", + "Position": { + "x": 430.815033, + "y": 1.88306046, + "z": 54.8594666 + }, + "Rotation": 343.038422, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 62.3 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 11 }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 16 - }, - { - "Id": "3b128730-ba41-4ac8-9c08-517655a787dd", - "Position": { - "x": 570.45, - "y": 1.48, - "z": -111.76 - }, - "Rotation": 192.38, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "181f7000-df70-4bc7-bff3-a709291c907f", + "Position": { + "x": 100.158005, + "y": 1.18800008, + "z": 11.9940033 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3b54601a-2e4b-4991-988e-962f1ee45668", - "Position": { - "x": 96.1380157, - "y": 1.18800008, - "z": 13.3840027 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "1a39d596-25e4-4b63-b6da-325aa8409576", + "Position": { + "x": 570.06, + "y": 1.49, + "z": -54.9799957 + }, + "Rotation": 191.11, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3bb03dcc-70b9-455d-ab44-058121da9469", - "Position": { - "x": -221.702, - "y": -0.741999865, - "z": -3.35600281 - }, - "Rotation": 149.69, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", + "Position": { + "x": 569.347961, + "y": -0.322000027, + "z": -10.6060028 + }, + "Rotation": 270.218658, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3e792359-d3d3-4d42-8b3f-83d81721e9fe", - "Position": { - "x": -183.647, - "y": 1.60172462, - "z": -190.065 - }, - "Rotation": 75.66953, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "1b202f92-51b5-4888-acfd-8784a130e14c", + "Position": { + "x": 339.321442, + "y": 1.189998, + "z": -190.771988 + }, + "Rotation": 52.6828651, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneOldAZS", + "CorePointId": 13 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "3ef3c5d0-afaf-44cb-82c5-530c0e6300ab", - "Position": { - "x": 385.709961, - "y": 1.12, - "z": -116.17 - }, - "Rotation": 188.39, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1b636e5b-ae6d-4df3-93ea-159f5a2437fd", + "Position": { + "x": -132.9, + "y": -1.66999984, + "z": 39.8999939 + }, + "Rotation": 180.13, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3feedcc0-c2be-4462-a242-222e23072c69", - "Position": { - "x": -162.957016, - "y": 3.21176076, - "z": -168.46 - }, - "Rotation": 273.068, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } + { + "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", + "Position": { + "x": -133.812, + "y": 0.718000054, + "z": 14.2939911 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "413a6ac7-3f9d-4a38-9652-f3c68505dcc0", - "Position": { - "x": -154.35199, - "y": 1.038, - "z": -128.096008 - }, - "Rotation": 7.197772, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "1b70ff23-343f-4f57-a21b-b9c22b98a6db", + "Position": { + "x": 185.443283, + "y": 2.83624029, + "z": 182.801788 + }, + "Rotation": 168.224945, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZoneDormitory", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "41440b15-7ff8-42fa-893a-5b4b59eaf13b", - "Position": { - "x": -313.92, - "y": 0.940000057, - "z": -88.66 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1b9fddbc-f667-4344-98ef-3d198229bd41", + "Position": { + "x": -151.782, + "y": 1.258, + "z": -129.81601 + }, + "Rotation": 135.46, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "426e619c-f5a9-4529-b10b-4796f82d9f6d", - "Position": { - "x": -190.972, - "y": 1.518, - "z": -236.686 - }, - "Rotation": 3.01640677, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "1c26a886-b1f5-490e-8fdd-153d991dc393", + "Position": { + "x": 363.248, + "y": 12.698, + "z": 155.594 + }, + "Rotation": 180.91, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "42904c13-d45a-4375-9bd1-67a9da6cdb2e", - "Position": { - "x": -218.681992, - "y": 1.072, - "z": -148.428009 - }, - "Rotation": 13.3557768, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1cb1e3f5-0718-4178-95cf-39f3a5bbddfd", + "Position": { + "x": 213.6, + "y": 1.24984646, + "z": 1.949997 + }, + "Rotation": 327.055481, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneCrossRoad", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "42933fa9-9478-4db3-a97f-7d120afa4ca9", - "Position": { - "x": 503.2, - "y": 1.18, - "z": -59.83 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1d0f26c8-85e5-42d0-b115-7d8f325f97d4", + "Position": { + "x": -130.65, + "y": -2.11, + "z": 38.9100037 + }, + "Rotation": 180.13, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4293a264-a66e-4d7d-8ce7-65cade015117", - "Position": { - "x": 585.74, - "y": 9.53, - "z": 145.81 - }, - "Rotation": 216.79, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1d5a53ba-2b64-4915-9de8-826f06c7ba97", + "Position": { + "x": 6.49000549, + "y": 1.26882577, + "z": -95.06 + }, + "Rotation": 168.0339, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZoneWade", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4309052b-e7f7-41d1-89b0-6060c57d06b5", - "Position": { - "x": 654.803955, - "y": 1.11981535, - "z": -164.4396 - }, - "Rotation": 265.8543, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "1d80614c-e211-42d5-b661-8e2bb1aeae79", + "Position": { + "x": 100.598007, + "y": 1.168, + "z": -110.826004 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "43e9c231-d666-402f-a8ed-9d946cd3d8ce", - "Position": { - "x": 410.909271, - "y": 1.38835239, - "z": -112.0087 - }, - "Rotation": 308.3462, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1fb2eba7-250e-4fd1-ba2a-75fb3d640ed7", + "Position": { + "x": -131.27, + "y": -2.09, + "z": 42.6900024 + }, + "Rotation": 180.13, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactoryCenter", - "CorePointId": 21 - }, - { - "Id": "468b8eec-29bd-430f-920b-e32d89e2beda", - "Position": { - "x": 548.068, - "y": 2.838, - "z": 47.554 - }, - "Rotation": 342.4109, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "20495255-3094-4add-8744-14efc6e05308", + "Position": { + "x": 525.62, + "y": 8.88, + "z": 199.0 + }, + "Rotation": 225.49, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "471799c4-3aed-4c0e-9489-fabc2e76dd06", - "Position": { - "x": -14.371994, - "y": -7.74200058, - "z": 126.363983 - }, - "Rotation": 137.37, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } + { + "Id": "2051eb7b-3ae8-49b8-adcb-c13f0ddc7972", + "Position": { + "x": 317.338, + "y": 1.128, + "z": -78.756 + }, + "Rotation": 11.5521812, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "48d0dd2c-206e-40a6-ba44-08410446439a", - "Position": { - "x": 323.287872, - "y": 1.64894223, - "z": -98.48353 - }, - "Rotation": 179.388351, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", + "Position": { + "x": 569.537964, + "y": -0.322000027, + "z": -12.9960022 + }, + "Rotation": 270.218658, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactoryCenter", - "CorePointId": 21 - }, - { - "Id": "48d1cef3-efce-4d8f-a67b-31ddbbc28f47", - "Position": { - "x": -286.342, - "y": 0.228545427, - "z": -232.641 - }, - "Rotation": 320.675232, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "232e59b2-edec-429d-99e3-06f70241ce28", + "Position": { + "x": 260.2963, + "y": 1.21224034, + "z": -91.08922 + }, + "Rotation": 283.470825, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneScavBase", + "CorePointId": 7 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "4ba3ef50-0c41-4f25-9419-58152197b15b", - "Position": { - "x": 315.797, - "y": 1.128, - "z": -82.132 - }, - "Rotation": 187.420029, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "253e504c-4d28-4aa0-926d-14dcbdeebc1c", + "Position": { + "x": -309.95, + "y": 0.99, + "z": -94.51 + }, + "Rotation": 141.8, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4c18262a-245d-47ee-99c9-f4d36a095d56", - "Position": { - "x": 645.31, - "y": 1.5, - "z": 46.22 - }, - "Rotation": 293.47, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "27aa4110-1b16-4454-b505-35026255b7f9", + "Position": { + "x": -147.872, + "y": 1.678, + "z": -135.636 + }, + "Rotation": 21.67, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4d2e6d0c-078c-4918-8227-8df098a47a39", - "Position": { - "x": 478.86, - "y": 2.7, - "z": -79.23001 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2810239e-d13d-4738-9be9-a7289f29ab82", + "Position": { + "x": 568.8878, + "y": -1.46942234, + "z": -25.5359821 + }, + "Rotation": 343.038422, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneBlockPost", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4d5a42f3-50a8-457a-ad94-7e4c451681e8", - "Position": { - "x": 587.9925, - "y": 1.09995508, - "z": -64.35727 - }, - "Rotation": 4.26114464, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "28635a4e-a46b-4880-a081-714bd9d14e2d", + "Position": { + "x": 119.710007, + "y": 1.10880566, + "z": -34.1 + }, + "Rotation": 309.78418, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZoneTankSquare", + "CorePointId": 4 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "4d676699-1243-452b-b4d7-3353616854fb", - "Position": { - "x": 614.44, - "y": -0.3499999, - "z": -102.62 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "287bf35f-5cdc-44dc-97b6-c035d5054bfa", + "Position": { + "x": 100.664017, + "y": 1.18800008, + "z": 16.3029938 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4e108f92-cd14-4d0a-915c-f2ca6d5611f9", - "Position": { - "x": 141.97, - "y": 1.14876676, - "z": -14.9800034 - }, - "Rotation": 25.7275429, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "2953587e-0cbb-49b1-9189-951adb63a277", + "Position": { + "x": 171.889282, + "y": 2.83300018, + "z": 172.208786 + }, + "Rotation": 46.6169, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZoneDormitory", + "CorePointId": 1 }, - "BotZoneName": "ZoneTankSquare", - "CorePointId": 4 - }, - { - "Id": "4e876370-2396-4517-81c1-c535811d18e0", - "Position": { - "x": -133.722, - "y": 0.718000054, - "z": 12.6239929 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "2b5a6af0-0e2e-4fa1-bbf3-a390276b0b13", + "Position": { + "x": -216.552, + "y": -1.46199989, + "z": -2.10600281 + }, + "Rotation": 138.324036, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4f865c11-d533-4fce-9833-fe41a6cb52af", - "Position": { - "x": 101.408005, - "y": 1.21600008, - "z": 17.673996 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "2c286540-f748-4719-9a6d-6bd0e9a3c143", + "Position": { + "x": 13.0980072, + "y": 1.19800007, + "z": -125.625992 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4fb0d413-cf19-4580-8217-b2d6ca431e91", - "Position": { - "x": 101.599991, - "y": 1.18800008, - "z": 19.0269928 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "2c5cc586-9010-4b6c-8a67-fbfacb76a225", + "Position": { + "x": 518.3, + "y": 8.35, + "z": 187.459991 + }, + "Rotation": 225.49, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4fb8d6d8-c158-42f5-b4d2-5e28feb8c675", - "Position": { - "x": 503.829956, - "y": 1.19, - "z": -55.25 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2cb9950d-20ec-484e-919c-5489bb7abd5c", + "Position": { + "x": 478.0, + "y": 2.7, + "z": -83.14 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "51169827-146f-4993-af37-0de3ccec8d45", - "Position": { - "x": 291.65802, - "y": 1.45800006, - "z": -197.106 - }, - "Rotation": 17.73762, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } + { + "Id": "2d9d53d3-4263-4911-b76f-7a4fb678898a", + "Position": { + "x": 365.1455, + "y": 1.32006228, + "z": -108.90036 + }, + "Rotation": 277.4024, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 114.7 + } + }, + "BotZoneName": "ZoneFactoryCenter", + "CorePointId": 21 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "51940f3f-de97-4aea-a31f-29ea6ee3861c", - "Position": { - "x": 27.54927, - "y": -1.12046, - "z": 127.26 - }, - "Rotation": 183.768738, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } + { + "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", + "Position": { + "x": -133.631989, + "y": 0.718000054, + "z": 8.393997 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrige", - "CorePointId": 4 - }, - { - "Id": "519599b1-5b4d-4c91-8530-13042c3a3a37", - "Position": { - "x": -197.232, - "y": 1.508, - "z": -233.506 - }, - "Rotation": 358.432373, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "2f311383-6639-46da-a804-ae43bf804a6a", + "Position": { + "x": 41.7462921, + "y": 1.23424029, + "z": -143.6092 + }, + "Rotation": 135.08139, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZoneScavBase", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "52e74209-8ff4-4121-85ef-a54b5b6689be", - "Position": { - "x": 391.589966, - "y": 1.32, - "z": -117.73 - }, - "Rotation": 177.74, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "31d79ff8-4b21-448a-866d-289775a7f5dd", + "Position": { + "x": -17.1999969, + "y": 0.0100492239, + "z": -140.959991 + }, + "Rotation": 333.506073, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 + } + }, + "BotZoneName": "ZoneWade", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "53635fda-547d-4b4c-af82-e9adfd93daf2", - "Position": { - "x": -217.642, - "y": 1.06800008, - "z": -144.936 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "33cd6564-129e-444f-91b7-1fc3bfee4f87", + "Position": { + "x": 255.2391, + "y": 53.4429932, + "z": -27.01771 + }, + "Rotation": 147.656372, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 1700.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 + } + }, + "BotZoneName": "ZoneSnipeTower", + "CorePointId": 10 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "537c1307-b83a-4c57-8c51-21380f5605a1", - "Position": { - "x": 641.47, - "y": 1.27, - "z": 43.53 - }, - "Rotation": 324.43, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "34e059d8-8d8c-4b35-a747-4d08d3e28561", + "Position": { + "x": 411.6, + "y": 0.96478796, + "z": 0.100000381 + }, + "Rotation": 209.40004, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77.17 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 25 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "54991d80-f85d-49fd-8ae0-f686d6fdf828", - "Position": { - "x": -1.93199158, - "y": -5.042, - "z": 126.95401 - }, - "Rotation": 147.73, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } + { + "Id": "3735903c-ebbd-407d-ba27-46129dc360c3", + "Position": { + "x": 539.688, + "y": 2.948, + "z": 48.0039978 + }, + "Rotation": 342.4109, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5621e44b-9f44-494b-9695-143a88146d43", - "Position": { - "x": 294.288025, - "y": 1.398, - "z": -195.736008 - }, - "Rotation": 17.73762, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } + { + "Id": "38a13157-f0cd-48d5-bada-dff42472b410", + "Position": { + "x": 569.75, + "y": 1.49, + "z": -52.54001 + }, + "Rotation": 180.26, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "582b9ea6-4404-4af1-8443-da3db48fcaad", - "Position": { - "x": 480.55, - "y": 2.7, - "z": -81.46 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "38aaf44a-c4a7-49a0-a669-96520c28332d", + "Position": { + "x": 582.31, + "y": 9.79, + "z": 147.5 + }, + "Rotation": 216.79, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "58a91424-a24c-44e1-9f8a-c5cc6c66489f", - "Position": { - "x": 314.128, - "y": 1.20800006, - "z": -90.7260056 - }, - "Rotation": 196.37, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3a7db815-a833-40e2-a297-5f2d08c6489c", + "Position": { + "x": 236.2663, + "y": 1.21224034, + "z": -95.11922 + }, + "Rotation": 111.995163, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneScavBase", + "CorePointId": 16 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5a551a12-ca0e-41af-9845-270ffce6808a", - "Position": { - "x": 620.14, - "y": -0.3499999, - "z": -96.98 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3b128730-ba41-4ac8-9c08-517655a787dd", + "Position": { + "x": 570.45, + "y": 1.48, + "z": -111.76 + }, + "Rotation": 192.38, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5caf5e1b-0113-41fc-9867-007e37ffe906", - "Position": { - "x": 95.968, - "y": 1.18800008, - "z": 11.6539917 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "3b54601a-2e4b-4991-988e-962f1ee45668", + "Position": { + "x": 96.1380157, + "y": 1.18800008, + "z": 13.3840027 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5d1bbc44-9b97-4a35-9bc3-acfbbe8eae52", - "Position": { - "x": 476.11853, - "y": 14.7500124, - "z": -71.85715 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 1700.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "3bb03dcc-70b9-455d-ab44-058121da9469", + "Position": { + "x": -221.702, + "y": -0.741999865, + "z": -3.35600281 + }, + "Rotation": 149.69, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSnipeFactory", - "CorePointId": 9 - }, - { - "Id": "5de7ed5d-918f-4433-bedf-d7444fc4e82d", - "Position": { - "x": 19.3312683, - "y": -0.88446, - "z": 36.432 - }, - "Rotation": 104.141586, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "3e792359-d3d3-4d42-8b3f-83d81721e9fe", + "Position": { + "x": -183.647, + "y": 1.60172462, + "z": -190.065 + }, + "Rotation": 75.66953, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "ZoneBrige", - "CorePointId": 4 - }, - { - "Id": "5fe0d0c8-d429-4f54-96f6-33fff540c2ca", - "Position": { - "x": 29.8222656, - "y": 1.11054, - "z": -29.4749985 - }, - "Rotation": 168.0339, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "3ef3c5d0-afaf-44cb-82c5-530c0e6300ab", + "Position": { + "x": 385.709961, + "y": 1.12, + "z": -116.17 + }, + "Rotation": 188.39, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrige", - "CorePointId": 4 - }, - { - "Id": "60c4be2a-82b8-4cf1-b8c4-fdd4f95ee3cb", - "Position": { - "x": -273.483, - "y": 0.9775678, - "z": -72.127 - }, - "Rotation": 151.257034, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } + { + "Id": "3feedcc0-c2be-4462-a242-222e23072c69", + "Position": { + "x": -162.957016, + "y": 3.21176076, + "z": -168.46 + }, + "Rotation": 273.068, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 131.24 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", - "Position": { - "x": 569.368, - "y": -0.491999865, - "z": -6.98600769 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "413a6ac7-3f9d-4a38-9652-f3c68505dcc0", + "Position": { + "x": -154.35199, + "y": 1.038, + "z": -128.096008 + }, + "Rotation": 7.197772, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "61e3a2a4-55af-4b66-bf4f-302f9cdac5b2", - "Position": { - "x": 348.438, - "y": 8.858, - "z": 152.824 - }, - "Rotation": 171.7, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "41440b15-7ff8-42fa-893a-5b4b59eaf13b", + "Position": { + "x": -313.92, + "y": 0.940000057, + "z": -88.66 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "62a46181-d31d-4abb-855d-3e24886e171b", - "Position": { - "x": -323.862, - "y": 1.16, - "z": -225.596008 - }, - "Rotation": 85.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "426e619c-f5a9-4529-b10b-4796f82d9f6d", + "Position": { + "x": -190.972, + "y": 1.518, + "z": -236.686 + }, + "Rotation": 3.01640677, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "62f5b14d-cb51-4529-b572-f5a8f5815bb5", - "Position": { - "x": 104.246017, - "y": 1.21600008, - "z": 18.7420044 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "42904c13-d45a-4375-9bd1-67a9da6cdb2e", + "Position": { + "x": -218.681992, + "y": 1.072, + "z": -148.428009 + }, + "Rotation": 13.3557768, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "63fef3bf-fd73-4d4f-99d2-50d26f8e8bc6", - "Position": { - "x": -179.40802, - "y": 1.42873216, - "z": -235.034 - }, - "Rotation": 350.38678, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "42933fa9-9478-4db3-a97f-7d120afa4ca9", + "Position": { + "x": 503.2, + "y": 1.18, + "z": -59.83 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "659377dd-2b6a-4ffa-8a5d-43b104196ad9", - "Position": { - "x": -9.670734, - "y": -6.85845947, - "z": 127.67 - }, - "Rotation": 176.0234, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117.5 - } + { + "Id": "4293a264-a66e-4d7d-8ce7-65cade015117", + "Position": { + "x": 585.74, + "y": 9.53, + "z": 145.81 + }, + "Rotation": 216.79, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrige", - "CorePointId": 4 - }, - { - "Id": "66ab21e5-21b1-42aa-bb0a-e7525f793536", - "Position": { - "x": 569.89, - "y": 1.49, - "z": -50.4499969 - }, - "Rotation": 182.67, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4309052b-e7f7-41d1-89b0-6060c57d06b5", + "Position": { + "x": 654.803955, + "y": 1.11981535, + "z": -164.4396 + }, + "Rotation": 265.8543, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "66ff3527-a97e-4ffe-97c9-35c9ab38ef46", - "Position": { - "x": 225.976288, - "y": 1.10224032, - "z": -80.73921 - }, - "Rotation": 189.840561, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "43e9c231-d666-402f-a8ed-9d946cd3d8ce", + "Position": { + "x": 410.909271, + "y": 1.38835239, + "z": -112.0087 + }, + "Rotation": 308.3462, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneFactoryCenter", + "CorePointId": 21 }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 16 - }, - { - "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", - "Position": { - "x": 569.378, - "y": -0.322000027, - "z": -11.9060059 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "468b8eec-29bd-430f-920b-e32d89e2beda", + "Position": { + "x": 548.068, + "y": 2.838, + "z": 47.554 + }, + "Rotation": 342.4109, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "67995511-8d08-4bdc-ba17-d38e81aad1d0", - "Position": { - "x": 603.5282, - "y": 1.14991, - "z": -139.339142 - }, - "Rotation": 265.8543, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "471799c4-3aed-4c0e-9489-fabc2e76dd06", + "Position": { + "x": -14.371994, + "y": -7.74200058, + "z": 126.363983 + }, + "Rotation": 137.37, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 95 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "6889bd40-9338-4297-8c15-0f1af8f4f74f", - "Position": { - "x": 15.9580078, - "y": 1.30800009, - "z": -126.866005 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "48d0dd2c-206e-40a6-ba44-08410446439a", + "Position": { + "x": 323.287872, + "y": 1.64894223, + "z": -98.48353 + }, + "Rotation": 179.388351, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneFactoryCenter", + "CorePointId": 21 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6a77d0e8-8b88-462a-8138-df49da8d21a6", - "Position": { - "x": -311.924, - "y": 0.966500759, - "z": -124.966 - }, - "Rotation": 93.0682755, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "48d1cef3-efce-4d8f-a67b-31ddbbc28f47", + "Position": { + "x": -286.342, + "y": 0.228545427, + "z": -232.641 + }, + "Rotation": 320.675232, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "6d8626ec-449b-4d63-a066-38e802756ec9", - "Position": { - "x": 480.24, - "y": 2.7, - "z": -84.47 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4ba3ef50-0c41-4f25-9419-58152197b15b", + "Position": { + "x": 315.797, + "y": 1.128, + "z": -82.132 + }, + "Rotation": 187.420029, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6df008d3-3928-4213-b05b-8285bd15e7c2", - "Position": { - "x": 377.708, - "y": 1.418, - "z": -93.356 - }, - "Rotation": 94.4417953, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "4c18262a-245d-47ee-99c9-f4d36a095d56", + "Position": { + "x": 645.31, + "y": 1.5, + "z": 46.22 + }, + "Rotation": 293.47, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6e2300c9-e9ff-48ff-be43-44c13e8b138d", - "Position": { - "x": 487.64, - "y": 1.68252087, - "z": 41.11 - }, - "Rotation": 186.6658, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "4d2e6d0c-078c-4918-8227-8df098a47a39", + "Position": { + "x": 478.86, + "y": 2.7, + "z": -79.23001 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBlockPost", - "CorePointId": 19 - }, - { - "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", - "Position": { - "x": 569.588, - "y": -0.322000027, - "z": -14.1759949 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "4d5a42f3-50a8-457a-ad94-7e4c451681e8", + "Position": { + "x": 587.9925, + "y": 1.09995508, + "z": -64.35727 + }, + "Rotation": 4.26114464, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6fbb2585-70d7-4f2f-9242-11f88d8dc2f3", - "Position": { - "x": 647.48, - "y": 1.88, - "z": 48.3699951 - }, - "Rotation": 297.33, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4d676699-1243-452b-b4d7-3353616854fb", + "Position": { + "x": 614.44, + "y": -0.3499999, + "z": -102.62 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "70ddd35e-f67e-473c-97b5-d16f0c8da170", - "Position": { - "x": 580.0, - "y": -0.594014168, - "z": 33.12 - }, - "Rotation": 343.038422, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "4e108f92-cd14-4d0a-915c-f2ca6d5611f9", + "Position": { + "x": 141.97, + "y": 1.14876676, + "z": -14.9800034 + }, + "Rotation": 25.7275429, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneTankSquare", + "CorePointId": 4 }, - "BotZoneName": "ZoneBlockPost", - "CorePointId": 15 - }, - { - "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", - "Position": { - "x": -133.528992, - "y": 0.85800004, - "z": 6.78999329 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "4e876370-2396-4517-81c1-c535811d18e0", + "Position": { + "x": -133.722, + "y": 0.718000054, + "z": 12.6239929 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "75b634c6-60a6-4846-8d15-c8e79cab0c78", - "Position": { - "x": -134.19, - "y": -1.37000012, - "z": 38.11 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4f865c11-d533-4fce-9833-fe41a6cb52af", + "Position": { + "x": 101.408005, + "y": 1.21600008, + "z": 17.673996 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "76b57ba8-351e-4d24-a7b5-9a91d226080a", - "Position": { - "x": 569.0529, - "y": 1.46199012, - "z": -54.5297432 - }, - "Rotation": 100.786774, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "4fb0d413-cf19-4580-8217-b2d6ca431e91", + "Position": { + "x": 101.599991, + "y": 1.18800008, + "z": 19.0269928 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "7994d5ba-6c84-44fc-a66e-a16a169fbaed", - "Position": { - "x": -206.282, - "y": -1.28199983, - "z": 2.2440033 - }, - "Rotation": 150.1406, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "4fb8d6d8-c158-42f5-b4d2-5e28feb8c675", + "Position": { + "x": 503.829956, + "y": 1.19, + "z": -55.25 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "79e06ada-a5df-4109-8f48-3b44bec2e4c5", - "Position": { - "x": -335.62, - "y": 0.307707071, - "z": -159.7 - }, - "Rotation": 276.286957, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "51169827-146f-4993-af37-0de3ccec8d45", + "Position": { + "x": 291.65802, + "y": 1.45800006, + "z": -197.106 + }, + "Rotation": 17.73762, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 75 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "7afa635c-296e-42be-8a76-26be3f736827", - "Position": { - "x": 375.088, - "y": 1.418, - "z": -88.7960052 - }, - "Rotation": 15.8534, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "51940f3f-de97-4aea-a31f-29ea6ee3861c", + "Position": { + "x": 27.54927, + "y": -1.12046, + "z": 127.26 + }, + "Rotation": 183.768738, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 + } + }, + "BotZoneName": "ZoneBrige", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7bf576fa-4a6f-48dc-90a8-8ddd3029816f", - "Position": { - "x": 519.84, - "y": 7.7699995, - "z": 204.15 - }, - "Rotation": 225.49, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "519599b1-5b4d-4c91-8530-13042c3a3a37", + "Position": { + "x": -197.232, + "y": 1.508, + "z": -233.506 + }, + "Rotation": 358.432373, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7c349cb6-2e80-4166-919d-63ae486f618c", - "Position": { - "x": 98.088, - "y": 1.138, - "z": -107.216 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "52e74209-8ff4-4121-85ef-a54b5b6689be", + "Position": { + "x": 391.589966, + "y": 1.32, + "z": -117.73 + }, + "Rotation": 177.74, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7ca0eb6c-dae2-49e0-9eba-b4668dfdac90", - "Position": { - "x": 663.252441, - "y": 1.21781647, - "z": -99.46105 - }, - "Rotation": 265.8543, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "53635fda-547d-4b4c-af82-e9adfd93daf2", + "Position": { + "x": -217.642, + "y": 1.06800008, + "z": -144.936 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "7cb21772-a203-4587-a28a-4716a6c59e27", - "Position": { - "x": 19.389267, - "y": 1.14054, - "z": -66.09 - }, - "Rotation": 287.111938, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 85.4 - } + { + "Id": "537c1307-b83a-4c57-8c51-21380f5605a1", + "Position": { + "x": 641.47, + "y": 1.27, + "z": 43.53 + }, + "Rotation": 324.43, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrige", - "CorePointId": 5 - }, - { - "Id": "7d47b29d-9758-4925-a614-3e70ed1374f4", - "Position": { - "x": -148.302, - "y": 1.608, - "z": -143.646 - }, - "Rotation": 123.844284, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "54991d80-f85d-49fd-8ae0-f686d6fdf828", + "Position": { + "x": -1.93199158, + "y": -5.042, + "z": 126.95401 + }, + "Rotation": 147.73, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 95 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7d4d2abe-e2b8-4973-a478-1783dd79f7c4", - "Position": { - "x": 190.702286, - "y": -0.1337597, - "z": 175.85379 - }, - "Rotation": 355.9929, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "5621e44b-9f44-494b-9695-143a88146d43", + "Position": { + "x": 294.288025, + "y": 1.398, + "z": -195.736008 + }, + "Rotation": 17.73762, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 75 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneDormitory", - "CorePointId": 1 - }, - { - "Id": "807a3df0-eebb-4f16-ac08-64e3644a40dc", - "Position": { - "x": 294.9489, - "y": 2.10008216, - "z": -160.2394 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "582b9ea6-4404-4af1-8443-da3db48fcaad", + "Position": { + "x": 480.55, + "y": 2.7, + "z": -81.46 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOldAZS", - "CorePointId": 13 - }, - { - "Id": "8189ba85-9253-4f28-8bf1-781506302bef", - "Position": { - "x": -161.647, - "y": 3.21376324, - "z": -126.492004 - }, - "Rotation": 273.068, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } + { + "Id": "58a91424-a24c-44e1-9f8a-c5cc6c66489f", + "Position": { + "x": 314.128, + "y": 1.20800006, + "z": -90.7260056 + }, + "Rotation": 196.37, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "81fa9972-7d9f-4ad9-9f86-6db8656e211c", - "Position": { - "x": 544.698, - "y": 2.898, - "z": 48.0639954 - }, - "Rotation": 342.4109, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "5a551a12-ca0e-41af-9845-270ffce6808a", + "Position": { + "x": 620.14, + "y": -0.3499999, + "z": -96.98 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8408652f-55cb-400c-95b3-244aa72b112f", - "Position": { - "x": 172.51001, - "y": 1.22871351, - "z": -6.28000259 - }, - "Rotation": 0.00353926537, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "5caf5e1b-0113-41fc-9867-007e37ffe906", + "Position": { + "x": 95.968, + "y": 1.18800008, + "z": 11.6539917 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneTankSquare", - "CorePointId": 7 - }, - { - "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", - "Position": { - "x": -133.682, - "y": 0.718000054, - "z": 9.783997 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "5d1bbc44-9b97-4a35-9bc3-acfbbe8eae52", + "Position": { + "x": 476.11853, + "y": 14.7500124, + "z": -71.85715 + }, + "Rotation": 147.656372, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 1700.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZoneSnipeFactory", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "84d13ed5-5ee0-4154-bded-1fc68d0cc7da", - "Position": { - "x": 536.939453, - "y": 1.38835239, - "z": -114.267776 - }, - "Rotation": 100.786774, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "5de7ed5d-918f-4433-bedf-d7444fc4e82d", + "Position": { + "x": 19.3312683, + "y": -0.88446, + "z": 36.432 + }, + "Rotation": 104.141586, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneBrige", + "CorePointId": 4 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "85efb186-180f-4fdc-9d1b-abf4b1b07696", - "Position": { - "x": 394.927979, - "y": 1.418, - "z": -84.026 - }, - "Rotation": 163.583008, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "5fe0d0c8-d429-4f54-96f6-33fff540c2ca", + "Position": { + "x": 29.8222656, + "y": 1.11054, + "z": -29.4749985 + }, + "Rotation": 168.0339, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneBrige", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "864f381c-9fde-4553-87ff-07b68e8c1e60", - "Position": { - "x": 467.41, - "y": 1.56773758, - "z": 60.0600052 - }, - "Rotation": 232.230225, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "60c4be2a-82b8-4cf1-b8c4-fdd4f95ee3cb", + "Position": { + "x": -273.483, + "y": 0.9775678, + "z": -72.127 + }, + "Rotation": 151.257034, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 131.24 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 11 - }, - { - "Id": "870ab421-0541-44e6-9965-e1b8816bf103", - "Position": { - "x": 178.5893, - "y": -0.1337597, - "z": 181.282791 - }, - "Rotation": 132.05188, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", + "Position": { + "x": 569.368, + "y": -0.491999865, + "z": -6.98600769 + }, + "Rotation": 270.218658, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneDormitory", - "CorePointId": 1 - }, - { - "Id": "8878252a-9516-4f33-a54d-56f9705098b6", - "Position": { - "x": 617.51, - "y": -0.3499999, - "z": -103.12 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "61e3a2a4-55af-4b66-bf4f-302f9cdac5b2", + "Position": { + "x": 348.438, + "y": 8.858, + "z": 152.824 + }, + "Rotation": 171.7, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "898d0b69-ee35-4d07-9072-991ab93e0678", - "Position": { - "x": 226.41, - "y": -0.861175954, - "z": 121.28 - }, - "Rotation": 186.911575, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "62a46181-d31d-4abb-855d-3e24886e171b", + "Position": { + "x": -323.862, + "y": 1.16, + "z": -225.596008 + }, + "Rotation": 85.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCrossRoad", - "CorePointId": 1 - }, - { - "Id": "8998cdf3-aa44-40e9-b34e-df32f1bf4540", - "Position": { - "x": 642.1, - "y": 1.43, - "z": 45.54001 - }, - "Rotation": 319.46, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "62f5b14d-cb51-4529-b572-f5a8f5815bb5", + "Position": { + "x": 104.246017, + "y": 1.21600008, + "z": 18.7420044 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "89fe6e6f-7ebc-458e-8297-621824d1d6ac", - "Position": { - "x": 568.08, - "y": 1.48, - "z": -111.66 - }, - "Rotation": 193.88, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "63fef3bf-fd73-4d4f-99d2-50d26f8e8bc6", + "Position": { + "x": -179.40802, + "y": 1.42873216, + "z": -235.034 + }, + "Rotation": 350.38678, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8a370e43-eba4-44fa-bad8-6b1ea61286e2", - "Position": { - "x": 391.856567, - "y": 1.39002156, - "z": -86.1867752 - }, - "Rotation": 189.658691, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "659377dd-2b6a-4ffa-8a5d-43b104196ad9", + "Position": { + "x": -9.670734, + "y": -6.85845947, + "z": 127.67 + }, + "Rotation": 176.0234, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 117.5 + } + }, + "BotZoneName": "ZoneBrige", + "CorePointId": 4 }, - "BotZoneName": "ZoneFactoryCenter", - "CorePointId": 14 - }, - { - "Id": "8b301a0d-e694-4f24-b938-32329a5084f5", - "Position": { - "x": 105.498, - "y": 1.197, - "z": 17.3639984 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "66ab21e5-21b1-42aa-bb0a-e7525f793536", + "Position": { + "x": 569.89, + "y": 1.49, + "z": -50.4499969 + }, + "Rotation": 182.67, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8bae21f5-6d20-4368-a820-0a05730f81ad", - "Position": { - "x": 569.03, - "y": 1.48, - "z": -117.38 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "66ff3527-a97e-4ffe-97c9-35c9ab38ef46", + "Position": { + "x": 225.976288, + "y": 1.10224032, + "z": -80.73921 + }, + "Rotation": 189.840561, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneScavBase", + "CorePointId": 16 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8cb5b38c-2355-4093-8b47-f99c6673a566", - "Position": { - "x": 355.818, - "y": 10.018, - "z": 152.064 - }, - "Rotation": 177.79, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", + "Position": { + "x": 569.378, + "y": -0.322000027, + "z": -11.9060059 + }, + "Rotation": 270.218658, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8d6e133a-e996-431b-a120-efa9a96f69e7", - "Position": { - "x": -151.962, - "y": 1.288, - "z": -137.946 - }, - "Rotation": 147.46, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "67995511-8d08-4bdc-ba17-d38e81aad1d0", + "Position": { + "x": 603.5282, + "y": 1.14991, + "z": -139.339142 + }, + "Rotation": 265.8543, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8e31a0d6-0d23-4e79-bf7d-089bf232f4ac", - "Position": { - "x": 378.977966, - "y": 1.22, - "z": -116.846 - }, - "Rotation": 196.37, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6889bd40-9338-4297-8c15-0f1af8f4f74f", + "Position": { + "x": 15.9580078, + "y": 1.30800009, + "z": -126.866005 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8e59cd3f-750b-4d00-841a-9ebfc41a1ac1", - "Position": { - "x": 8.678009, - "y": 1.258, - "z": -127.796005 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6a77d0e8-8b88-462a-8138-df49da8d21a6", + "Position": { + "x": -311.924, + "y": 0.966500759, + "z": -124.966 + }, + "Rotation": 93.0682755, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "91855264-51c0-4474-81ca-9df166e7ad43", - "Position": { - "x": -236.430008, - "y": 1.4996326, - "z": -235.900009 - }, - "Rotation": 350.38678, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "6d8626ec-449b-4d63-a066-38e802756ec9", + "Position": { + "x": 480.24, + "y": 2.7, + "z": -84.47 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "92eddb79-cfd5-491d-85ed-23769ee28f95", - "Position": { - "x": 368.438, - "y": 1.418, - "z": -90.076004 - }, - "Rotation": 104.504547, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "6df008d3-3928-4213-b05b-8285bd15e7c2", + "Position": { + "x": 377.708, + "y": 1.418, + "z": -93.356 + }, + "Rotation": 94.4417953, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "92ee45f4-921c-4782-81a1-3eb1a2e053f5", - "Position": { - "x": 46.75, - "y": -3.94977927, - "z": 126.18 - }, - "Rotation": 182.889908, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "6e2300c9-e9ff-48ff-be43-44c13e8b138d", + "Position": { + "x": 487.64, + "y": 1.68252087, + "z": 41.11 + }, + "Rotation": 186.6658, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneBlockPost", + "CorePointId": 19 }, - "BotZoneName": "ZoneBrige", - "CorePointId": 4 - }, - { - "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", - "Position": { - "x": -133.612, - "y": 0.718000054, - "z": 11.1640015 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", + "Position": { + "x": 569.588, + "y": -0.322000027, + "z": -14.1759949 + }, + "Rotation": 270.218658, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9371d198-a811-4d79-8613-61fbf8518882", - "Position": { - "x": 447.43, - "y": 7.59999943, - "z": 111.09 - }, - "Rotation": 196.259735, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77.17 - } + { + "Id": "6fbb2585-70d7-4f2f-9242-11f88d8dc2f3", + "Position": { + "x": 647.48, + "y": 1.88, + "z": 48.3699951 + }, + "Rotation": 297.33, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 11 - }, - { - "Id": "95259830-27ef-4056-8bee-cfbba562dedc", - "Position": { - "x": -309.94, - "y": 1.0, - "z": -96.98 - }, - "Rotation": 148.43, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "70ddd35e-f67e-473c-97b5-d16f0c8da170", + "Position": { + "x": 580.0, + "y": -0.594014168, + "z": 33.12 + }, + "Rotation": 343.038422, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneBlockPost", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "967f3d09-de07-4f11-b68f-2f42ba684f51", - "Position": { - "x": -14.7019958, - "y": -7.74200058, - "z": 121.603973 - }, - "Rotation": 150.83, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } + { + "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", + "Position": { + "x": -133.528992, + "y": 0.85800004, + "z": 6.78999329 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "97185451-3b24-4e74-baa1-6a706f09c520", - "Position": { - "x": 99.222, - "y": 1.18800008, - "z": 18.9140015 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "75b634c6-60a6-4846-8d15-c8e79cab0c78", + "Position": { + "x": -134.19, + "y": -1.37000012, + "z": 38.11 + }, + "Rotation": 180.13, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", - "Position": { - "x": 569.548, - "y": -0.292000055, - "z": -19.1260071 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "76b57ba8-351e-4d24-a7b5-9a91d226080a", + "Position": { + "x": 569.0529, + "y": 1.46199012, + "z": -54.5297432 + }, + "Rotation": 100.786774, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "989f1148-f609-4191-8a09-de4d40b117e4", - "Position": { - "x": 571.17, - "y": 1.49, - "z": -51.70999 - }, - "Rotation": 176.15, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7994d5ba-6c84-44fc-a66e-a16a169fbaed", + "Position": { + "x": -206.282, + "y": -1.28199983, + "z": 2.2440033 + }, + "Rotation": 150.1406, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", - "Position": { - "x": 569.458, - "y": -0.491999865, - "z": -5.43600464 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "79e06ada-a5df-4109-8f48-3b44bec2e4c5", + "Position": { + "x": -335.62, + "y": 0.307707071, + "z": -159.7 + }, + "Rotation": 276.286957, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9a904fab-076c-4fc5-89e3-d6983cba8d89", - "Position": { - "x": 90.12901, - "y": 1.357, - "z": -102.023 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7afa635c-296e-42be-8a76-26be3f736827", + "Position": { + "x": 375.088, + "y": 1.418, + "z": -88.7960052 + }, + "Rotation": 15.8534, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9b6a8b4a-f315-4dc2-b294-49094c0c0490", - "Position": { - "x": 388.419983, - "y": 1.12, - "z": -114.33 - }, - "Rotation": 180.09, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7bf576fa-4a6f-48dc-90a8-8ddd3029816f", + "Position": { + "x": 519.84, + "y": 7.7699995, + "z": 204.15 + }, + "Rotation": 225.49, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9ca25ce6-8110-4425-a7a9-43e453b29ecb", - "Position": { - "x": 658.0241, - "y": 1.12983537, - "z": -59.1834259 - }, - "Rotation": 58.09279, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "7c349cb6-2e80-4166-919d-63ae486f618c", + "Position": { + "x": 98.088, + "y": 1.138, + "z": -107.216 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 15 - }, - { - "Id": "9d396201-600c-4920-a915-3e5d0aff2280", - "Position": { - "x": 545.018, - "y": 3.238, - "z": 50.95401 - }, - "Rotation": 342.4109, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "7ca0eb6c-dae2-49e0-9eba-b4668dfdac90", + "Position": { + "x": 663.252441, + "y": 1.21781647, + "z": -99.46105 + }, + "Rotation": 265.8543, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9d4a13b3-bad7-41ee-9d4e-d83149736816", - "Position": { - "x": 388.888, - "y": 1.418, - "z": -97.196 - }, - "Rotation": 272.3188, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "7cb21772-a203-4587-a28a-4716a6c59e27", + "Position": { + "x": 19.389267, + "y": 1.14054, + "z": -66.09 + }, + "Rotation": 287.111938, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 85.4 + } + }, + "BotZoneName": "ZoneBrige", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9dd4bcc0-062e-45a4-9346-2b488ed4ad72", - "Position": { - "x": 104.638016, - "y": 1.197, - "z": 14.3540039 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "7d47b29d-9758-4925-a614-3e70ed1374f4", + "Position": { + "x": -148.302, + "y": 1.608, + "z": -143.646 + }, + "Rotation": 123.844284, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9e487143-1230-4f12-87cb-e50f9a0f50d9", - "Position": { - "x": 657.8154, - "y": 1.12998486, - "z": -134.82048 - }, - "Rotation": 280.85022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 141.4 - } + { + "Id": "7d4d2abe-e2b8-4973-a478-1783dd79f7c4", + "Position": { + "x": 190.702286, + "y": -0.1337597, + "z": 175.85379 + }, + "Rotation": 355.9929, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZoneDormitory", + "CorePointId": 1 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", - "Position": { - "x": 569.568, - "y": -0.292000055, - "z": -16.1860046 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "807a3df0-eebb-4f16-ac08-64e3644a40dc", + "Position": { + "x": 294.9489, + "y": 2.10008216, + "z": -160.2394 + }, + "Rotation": 147.656372, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneOldAZS", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a092494e-01bf-496f-b789-8e9790639784", - "Position": { - "x": 502.349976, - "y": 1.18, - "z": -64.42999 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8189ba85-9253-4f28-8bf1-781506302bef", + "Position": { + "x": -161.647, + "y": 3.21376324, + "z": -126.492004 + }, + "Rotation": 273.068, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 131.24 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a1e820f6-34ae-474c-818f-aa67c35266aa", - "Position": { - "x": -194.301987, - "y": 1.558, - "z": -232.946 - }, - "Rotation": 346.9238, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "81fa9972-7d9f-4ad9-9f86-6db8656e211c", + "Position": { + "x": 544.698, + "y": 2.898, + "z": 48.0639954 + }, + "Rotation": 342.4109, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a44d5d64-8570-48b7-b696-52db3db8ac13", - "Position": { - "x": 648.75, - "y": 1.81, - "z": 50.1600037 - }, - "Rotation": 319.88, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8408652f-55cb-400c-95b3-244aa72b112f", + "Position": { + "x": 172.51001, + "y": 1.22871351, + "z": -6.28000259 + }, + "Rotation": 0.00353926537, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneTankSquare", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a64e8bd1-42f5-4c0d-b132-ddc01cd46d33", - "Position": { - "x": -189.071991, - "y": 1.538, - "z": -235.216 - }, - "Rotation": 350.7271, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", + "Position": { + "x": -133.682, + "y": 0.718000054, + "z": 9.783997 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a8063503-8f74-4305-9ae9-548fa5ff7fe6", - "Position": { - "x": 423.79, - "y": 1.0539999, - "z": 42.34 - }, - "Rotation": 343.038422, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 93.4 - } + { + "Id": "84d13ed5-5ee0-4154-bded-1fc68d0cc7da", + "Position": { + "x": 536.939453, + "y": 1.38835239, + "z": -114.267776 + }, + "Rotation": 100.786774, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 11 - }, - { - "Id": "a8dafd79-4811-4598-9061-7062654a1200", - "Position": { - "x": 96.618, - "y": 1.268, - "z": -106.206 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "85efb186-180f-4fdc-9d1b-abf4b1b07696", + "Position": { + "x": 394.927979, + "y": 1.418, + "z": -84.026 + }, + "Rotation": 163.583008, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a97b15dc-9f2b-4de6-ae02-ec4417bef821", - "Position": { - "x": 394.919983, - "y": 2.18, - "z": -120.68 - }, - "Rotation": 179.19, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "864f381c-9fde-4553-87ff-07b68e8c1e60", + "Position": { + "x": 467.41, + "y": 1.56773758, + "z": 60.0600052 + }, + "Rotation": 232.230225, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 11 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ae5d8ae0-3fb4-4853-9f71-c868cb2c2060", - "Position": { - "x": 310.722839, - "y": 1.33199024, - "z": -157.0032 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "870ab421-0541-44e6-9965-e1b8816bf103", + "Position": { + "x": 178.5893, + "y": -0.1337597, + "z": 181.282791 + }, + "Rotation": 132.05188, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZoneDormitory", + "CorePointId": 1 }, - "BotZoneName": "ZoneOldAZS", - "CorePointId": 13 - }, - { - "Id": "aeac7f0b-3c23-46e9-a7af-fd9aae4fc8b4", - "Position": { - "x": 87.05, - "y": 1.04846621, - "z": -59.2000046 - }, - "Rotation": 289.6524, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "8878252a-9516-4f33-a54d-56f9705098b6", + "Position": { + "x": 617.51, + "y": -0.3499999, + "z": -103.12 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneTankSquare", - "CorePointId": 4 - }, - { - "Id": "b0126d65-ba76-45ad-b25e-32f4f3509904", - "Position": { - "x": 102.168015, - "y": 1.228, - "z": 19.8840027 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "898d0b69-ee35-4d07-9072-991ab93e0678", + "Position": { + "x": 226.41, + "y": -0.861175954, + "z": 121.28 + }, + "Rotation": 186.911575, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneCrossRoad", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b049c6f8-afb9-42f9-9591-2f265fef2097", - "Position": { - "x": 99.65102, - "y": 1.18800008, - "z": 14.6369934 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "8998cdf3-aa44-40e9-b34e-df32f1bf4540", + "Position": { + "x": 642.1, + "y": 1.43, + "z": 45.54001 + }, + "Rotation": 319.46, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b1a57f2f-89ab-49ae-81ab-3d4e5f6e9f1c", - "Position": { - "x": -217.362, - "y": 1.19, - "z": -136.956009 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "89fe6e6f-7ebc-458e-8297-621824d1d6ac", + "Position": { + "x": 568.08, + "y": 1.48, + "z": -111.66 + }, + "Rotation": 193.88, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b33fb6f9-36aa-48f0-9bad-60f3ce2cd16a", - "Position": { - "x": 581.8, - "y": 3.06499958, - "z": 0.9200001 - }, - "Rotation": 343.038422, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 1700.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 115 - } + { + "Id": "8a370e43-eba4-44fa-bad8-6b1ea61286e2", + "Position": { + "x": 391.856567, + "y": 1.39002156, + "z": -86.1867752 + }, + "Rotation": 189.658691, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneFactoryCenter", + "CorePointId": 14 }, - "BotZoneName": "ZoneBlockPostSniper", - "CorePointId": 15 - }, - { - "Id": "b4e899f8-8da5-4f9c-878b-37320aff71c9", - "Position": { - "x": 454.8, - "y": 2.0766468, - "z": 61.09 - }, - "Rotation": 223.641632, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "8b301a0d-e694-4f24-b938-32329a5084f5", + "Position": { + "x": 105.498, + "y": 1.197, + "z": 17.3639984 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 11 - }, - { - "Id": "b523d044-6957-4cd1-b039-b653cd4acbe4", - "Position": { - "x": -320.612, - "y": 0.940000057, - "z": -223.796 - }, - "Rotation": 59.1799965, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "8bae21f5-6d20-4368-a820-0a05730f81ad", + "Position": { + "x": 569.03, + "y": 1.48, + "z": -117.38 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b54ce786-74b8-41b1-889f-0fe62c36d8e0", - "Position": { - "x": 481.06, - "y": 2.7, - "z": -79.22 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8cb5b38c-2355-4093-8b47-f99c6673a566", + "Position": { + "x": 355.818, + "y": 10.018, + "z": 152.064 + }, + "Rotation": 177.79, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b5552110-2313-4285-9a06-769077e3c16b", - "Position": { - "x": -132.87, - "y": -1.81000018, - "z": 43.9799957 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8d6e133a-e996-431b-a120-efa9a96f69e7", + "Position": { + "x": -151.962, + "y": 1.288, + "z": -137.946 + }, + "Rotation": 147.46, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b623ab89-4538-4afa-b6a6-49e9aad4324a", - "Position": { - "x": -21.2619934, - "y": -8.542, - "z": 115.303986 - }, - "Rotation": 101.48, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } + { + "Id": "8e31a0d6-0d23-4e79-bf7d-089bf232f4ac", + "Position": { + "x": 378.977966, + "y": 1.22, + "z": -116.846 + }, + "Rotation": 196.37, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b736a3e7-270e-4797-92d0-6c3a7927f008", - "Position": { - "x": 18.778, - "y": 1.358, - "z": -127.086 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8e59cd3f-750b-4d00-841a-9ebfc41a1ac1", + "Position": { + "x": 8.678009, + "y": 1.258, + "z": -127.796005 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b96df3dc-23f2-4e1d-8a9a-9fbe05a94f47", - "Position": { - "x": 102.318008, - "y": 1.21600008, - "z": 16.2639923 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "91855264-51c0-4474-81ca-9df166e7ad43", + "Position": { + "x": -236.430008, + "y": 1.4996326, + "z": -235.900009 + }, + "Rotation": 350.38678, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b9d55350-ef6c-40a4-86a0-2a29f02c7b3a", - "Position": { - "x": 21.010006, - "y": 1.28880048, - "z": -109.49 - }, - "Rotation": 249.573578, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "92eddb79-cfd5-491d-85ed-23769ee28f95", + "Position": { + "x": 368.438, + "y": 1.418, + "z": -90.076004 + }, + "Rotation": 104.504547, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneWade", - "CorePointId": 5 - }, - { - "Id": "bb1128eb-b548-48b8-a785-c18ef08d7c37", - "Position": { - "x": 571.59, - "y": 11.37, - "z": 145.269989 - }, - "Rotation": 216.79, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "92ee45f4-921c-4782-81a1-3eb1a2e053f5", + "Position": { + "x": 46.75, + "y": -3.94977927, + "z": 126.18 + }, + "Rotation": 182.889908, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneBrige", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bcdd9759-698e-4924-9f19-0c41dfd5b25c", - "Position": { - "x": 629.6786, - "y": 1.42986572, - "z": -135.632492 - }, - "Rotation": 184.215363, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 114.7 - } + { + "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", + "Position": { + "x": -133.612, + "y": 0.718000054, + "z": 11.1640015 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "bdd442fd-c45c-486c-8de5-61c6a6f7dd60", - "Position": { - "x": 181.1043, - "y": -0.1127597, - "z": 178.053787 - }, - "Rotation": 185.167953, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "9371d198-a811-4d79-8613-61fbf8518882", + "Position": { + "x": 447.43, + "y": 7.59999943, + "z": 111.09 + }, + "Rotation": 196.259735, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77.17 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 11 }, - "BotZoneName": "ZoneDormitory", - "CorePointId": 1 - }, - { - "Id": "c0192b74-ef4d-41de-8bd9-81712ad31ba0", - "Position": { - "x": 34.1792679, - "y": 1.08854008, - "z": -49.5179977 - }, - "Rotation": 347.1565, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } + { + "Id": "95259830-27ef-4056-8bee-cfbba562dedc", + "Position": { + "x": -309.94, + "y": 1.0, + "z": -96.98 + }, + "Rotation": 148.43, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrige", - "CorePointId": 1 - }, - { - "Id": "c11f719c-3491-4a60-901e-cf20832b432e", - "Position": { - "x": 617.72, - "y": -0.3499999, - "z": -96.86 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "967f3d09-de07-4f11-b68f-2f42ba684f51", + "Position": { + "x": -14.7019958, + "y": -7.74200058, + "z": 121.603973 + }, + "Rotation": 150.83, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 95 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c21695bd-f460-4e72-8138-54d7aa92b965", - "Position": { - "x": 522.43, - "y": 10.14, - "z": 179.68 - }, - "Rotation": 225.49, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "97185451-3b24-4e74-baa1-6a706f09c520", + "Position": { + "x": 99.222, + "y": 1.18800008, + "z": 18.9140015 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c26390c5-80e1-428e-a11f-5d34d33fcc69", - "Position": { - "x": -323.872, - "y": 1.13, - "z": -222.056 - }, - "Rotation": 19.29, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", + "Position": { + "x": 569.548, + "y": -0.292000055, + "z": -19.1260071 + }, + "Rotation": 270.218658, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c351748e-915b-4be3-ae56-2bb13470f278", - "Position": { - "x": 296.557983, - "y": 1.868, - "z": -200.606 - }, - "Rotation": 17.73762, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } + { + "Id": "989f1148-f609-4191-8a09-de4d40b117e4", + "Position": { + "x": 571.17, + "y": 1.49, + "z": -51.70999 + }, + "Rotation": 176.15, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c36b37b1-e654-45b8-a921-4864d1a325a4", - "Position": { - "x": 98.10802, - "y": 1.18800008, - "z": 11.9839935 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", + "Position": { + "x": 569.458, + "y": -0.491999865, + "z": -5.43600464 + }, + "Rotation": 270.218658, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c6e01f12-08c7-4b2a-ba95-7b27e2018b7c", - "Position": { - "x": 5.78900528, - "y": 1.16781759, - "z": -103.391 - }, - "Rotation": 229.912613, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 164.4 - } + { + "Id": "9a904fab-076c-4fc5-89e3-d6983cba8d89", + "Position": { + "x": 90.12901, + "y": 1.357, + "z": -102.023 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneWade", - "CorePointId": 5 - }, - { - "Id": "c70da15f-6bc8-4dda-b666-e4163754bcd5", - "Position": { - "x": 576.38, - "y": 1.48, - "z": -115.35 - }, - "Rotation": 270.35, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9b6a8b4a-f315-4dc2-b294-49094c0c0490", + "Position": { + "x": 388.419983, + "y": 1.12, + "z": -114.33 + }, + "Rotation": 180.09, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c789117c-9d94-456b-be1d-25dd5043a359", - "Position": { - "x": 172.605286, - "y": 2.84324026, - "z": 157.337784 - }, - "Rotation": 94.87478, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "9ca25ce6-8110-4425-a7a9-43e453b29ecb", + "Position": { + "x": 658.0241, + "y": 1.12983537, + "z": -59.1834259 + }, + "Rotation": 58.09279, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneFactorySide", + "CorePointId": 15 }, - "BotZoneName": "ZoneDormitory", - "CorePointId": 1 - }, - { - "Id": "c7ba0d24-249b-459f-8364-51ae66454bff", - "Position": { - "x": 356.541382, - "y": 1.15009761, - "z": -24.1884918 - }, - "Rotation": 105.675018, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "9d396201-600c-4920-a915-3e5d0aff2280", + "Position": { + "x": 545.018, + "y": 3.238, + "z": 50.95401 + }, + "Rotation": 342.4109, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactoryCenter", - "CorePointId": 2 - }, - { - "Id": "c838176a-28e6-4871-89a2-827ec044b3f4", - "Position": { - "x": -321.022, - "y": 0.950000048, - "z": -220.866013 - }, - "Rotation": 34.52, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "9d4a13b3-bad7-41ee-9d4e-d83149736816", + "Position": { + "x": 388.888, + "y": 1.418, + "z": -97.196 + }, + "Rotation": 272.3188, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c8b04f3f-1f80-49a7-8530-3180b3ff71e9", - "Position": { - "x": 103.26799, - "y": 1.197, - "z": 15.322998 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "9dd4bcc0-062e-45a4-9346-2b488ed4ad72", + "Position": { + "x": 104.638016, + "y": 1.197, + "z": 14.3540039 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c98a753b-d534-4fa4-9430-478b7d8bf27d", - "Position": { - "x": 502.7, - "y": 1.18, - "z": -62.1199951 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9e487143-1230-4f12-87cb-e50f9a0f50d9", + "Position": { + "x": 657.8154, + "y": 1.12998486, + "z": -134.82048 + }, + "Rotation": 280.85022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 141.4 + } + }, + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cb0dd763-21a3-4c29-95ea-f3ef51e412fd", - "Position": { - "x": 571.71, - "y": -0.9350004, - "z": 6.60000038 - }, - "Rotation": 183.570679, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", + "Position": { + "x": 569.568, + "y": -0.292000055, + "z": -16.1860046 + }, + "Rotation": 270.218658, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBlockPost", - "CorePointId": 15 - }, - { - "Id": "cc2436ce-797c-4bd5-995d-255b7a0b7c37", - "Position": { - "x": 73.591, - "y": 1.11978245, - "z": -63.465004 - }, - "Rotation": 83.042244, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 115 - } + { + "Id": "a092494e-01bf-496f-b789-8e9790639784", + "Position": { + "x": 502.349976, + "y": 1.18, + "z": -64.42999 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneTankSquare", - "CorePointId": 4 - }, - { - "Id": "cd52aa33-141e-4f89-9120-2dd899fd23f2", - "Position": { - "x": -209.142, - "y": -1.43199992, - "z": 0.694000244 - }, - "Rotation": 144.14, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a1e820f6-34ae-474c-818f-aa67c35266aa", + "Position": { + "x": -194.301987, + "y": 1.558, + "z": -232.946 + }, + "Rotation": 346.9238, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", - "Position": { - "x": -131.743988, - "y": 0.718000054, - "z": 7.36000061 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "a44d5d64-8570-48b7-b696-52db3db8ac13", + "Position": { + "x": 648.75, + "y": 1.81, + "z": 50.1600037 + }, + "Rotation": 319.88, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ce31b755-dc15-4c1f-80b8-f35a2d4804b4", - "Position": { - "x": 20.0500031, - "y": 1.138802, - "z": -115.49 - }, - "Rotation": 174.01767, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "a64e8bd1-42f5-4c0d-b132-ddc01cd46d33", + "Position": { + "x": -189.071991, + "y": 1.538, + "z": -235.216 + }, + "Rotation": 350.7271, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneWade", - "CorePointId": 5 - }, - { - "Id": "ce469ace-55c1-4381-b3a1-6458f1bea611", - "Position": { - "x": 503.409973, - "y": 1.18, - "z": -57.5599976 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a8063503-8f74-4305-9ae9-548fa5ff7fe6", + "Position": { + "x": 423.79, + "y": 1.0539999, + "z": 42.34 + }, + "Rotation": 343.038422, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 93.4 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 11 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", - "Position": { - "x": -131.972, - "y": 0.718000054, - "z": 12.5540009 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "a8dafd79-4811-4598-9061-7062654a1200", + "Position": { + "x": 96.618, + "y": 1.268, + "z": -106.206 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cf783f2b-042c-42fe-8417-4f7d75139aeb", - "Position": { - "x": 19.3192673, - "y": 1.28754, - "z": -109.24 - }, - "Rotation": 168.0339, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "a97b15dc-9f2b-4de6-ae02-ec4417bef821", + "Position": { + "x": 394.919983, + "y": 2.18, + "z": -120.68 + }, + "Rotation": 179.19, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrige", - "CorePointId": 5 - }, - { - "Id": "cfb2039d-a575-4246-9903-bd20336478de", - "Position": { - "x": 315.768, - "y": 1.128, - "z": -79.116 - }, - "Rotation": 11.5521812, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "ae5d8ae0-3fb4-4853-9f71-c868cb2c2060", + "Position": { + "x": 310.722839, + "y": 1.33199024, + "z": -157.0032 + }, + "Rotation": 147.656372, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneOldAZS", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d035661b-dbba-4f54-a66e-d4ac53e2f2c1", - "Position": { - "x": 471.196716, - "y": 2.6568923, - "z": -54.2984543 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "aeac7f0b-3c23-46e9-a7af-fd9aae4fc8b4", + "Position": { + "x": 87.05, + "y": 1.04846621, + "z": -59.2000046 + }, + "Rotation": 289.6524, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneTankSquare", + "CorePointId": 4 }, - "BotZoneName": "ZoneFactoryCenter", - "CorePointId": 2 - }, - { - "Id": "d12962b9-c23f-47c4-96fa-afe2b1ef30be", - "Position": { - "x": -19.7720032, - "y": -8.492001, - "z": 113.283966 - }, - "Rotation": 131.598984, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } + { + "Id": "b0126d65-ba76-45ad-b25e-32f4f3509904", + "Position": { + "x": 102.168015, + "y": 1.228, + "z": 19.8840027 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d18b6493-9fc7-462c-952d-df410e4924b2", - "Position": { - "x": 122.026291, - "y": 0.2622403, - "z": 129.290787 - }, - "Rotation": 46.6169, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "b049c6f8-afb9-42f9-9591-2f265fef2097", + "Position": { + "x": 99.65102, + "y": 1.18800008, + "z": 14.6369934 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneDormitory", - "CorePointId": 1 - }, - { - "Id": "d23681ef-3f6c-466d-924b-d2a76db60f4f", - "Position": { - "x": -247.488, - "y": -0.234708309, - "z": -14.3019981 - }, - "Rotation": 156.825577, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } + { + "Id": "b1a57f2f-89ab-49ae-81ab-3d4e5f6e9f1c", + "Position": { + "x": -217.362, + "y": 1.19, + "z": -136.956009 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "d591be31-c6f9-444d-9b7e-15faf5825066", - "Position": { - "x": 288.998, - "y": 1.388, - "z": -196.146 - }, - "Rotation": 17.73762, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } + { + "Id": "b33fb6f9-36aa-48f0-9bad-60f3ce2cd16a", + "Position": { + "x": 581.8, + "y": 3.06499958, + "z": 0.9200001 + }, + "Rotation": 343.038422, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 1700.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 115 + } + }, + "BotZoneName": "ZoneBlockPostSniper", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d655a83e-c30f-493c-b3cf-6a9872426bd6", - "Position": { - "x": -300.564, - "y": 0.032841444, - "z": -44.071 - }, - "Rotation": 102.860092, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } + { + "Id": "b4e899f8-8da5-4f9c-878b-37320aff71c9", + "Position": { + "x": 454.8, + "y": 2.0766468, + "z": 61.09 + }, + "Rotation": 223.641632, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 11 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "d75cbe99-8316-4e7a-a913-f3048198062c", - "Position": { - "x": 537.491455, - "y": 1.08002615, - "z": -130.868164 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "b523d044-6957-4cd1-b039-b653cd4acbe4", + "Position": { + "x": -320.612, + "y": 0.940000057, + "z": -223.796 + }, + "Rotation": 59.1799965, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "d7bae537-f5a0-416d-9849-d939cc3575f4", - "Position": { - "x": 615.61, - "y": -0.3499999, - "z": -96.83 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b54ce786-74b8-41b1-889f-0fe62c36d8e0", + "Position": { + "x": 481.06, + "y": 2.7, + "z": -79.22 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d86d794e-6f15-4a9e-ac69-8bf0172d3893", - "Position": { - "x": 454.29303, - "y": 2.67591476, - "z": -81.5390244 - }, - "Rotation": 89.51053, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 5.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b5552110-2313-4285-9a06-769077e3c16b", + "Position": { + "x": -132.87, + "y": -1.81000018, + "z": 43.9799957 + }, + "Rotation": 180.13, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactoryCenter", - "CorePointId": 2 - }, - { - "Id": "daaa4a02-1f51-460b-bdf8-29b3bd2c838b", - "Position": { - "x": 96.56099, - "y": 1.238, - "z": 17.1719971 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "b623ab89-4538-4afa-b6a6-49e9aad4324a", + "Position": { + "x": -21.2619934, + "y": -8.542, + "z": 115.303986 + }, + "Rotation": 101.48, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 95 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dbab2e51-b5f5-4bd8-9324-9f3fd4cc977f", - "Position": { - "x": 365.458, - "y": 11.478, - "z": 149.264 - }, - "Rotation": 220.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "b736a3e7-270e-4797-92d0-6c3a7927f008", + "Position": { + "x": 18.778, + "y": 1.358, + "z": -127.086 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dbcf3640-5c76-453e-8022-6c8aaa21c77b", - "Position": { - "x": 227.906281, - "y": 1.29224026, - "z": -86.3992157 - }, - "Rotation": 189.840561, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "b96df3dc-23f2-4e1d-8a9a-9fbe05a94f47", + "Position": { + "x": 102.318008, + "y": 1.21600008, + "z": 16.2639923 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 16 - }, - { - "Id": "dce9812c-a766-40c8-8718-161a483337c4", - "Position": { - "x": 313.802277, - "y": 1.16418183, - "z": -191.568161 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "b9d55350-ef6c-40a4-86a0-2a29f02c7b3a", + "Position": { + "x": 21.010006, + "y": 1.28880048, + "z": -109.49 + }, + "Rotation": 249.573578, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneWade", + "CorePointId": 5 }, - "BotZoneName": "ZoneOldAZS", - "CorePointId": 13 - }, - { - "Id": "dd2cab78-453d-4341-8180-bd2d93e37b06", - "Position": { - "x": 188.06, - "y": 1.289891, - "z": -1.38000488 - }, - "Rotation": 17.3450165, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "bb1128eb-b548-48b8-a785-c18ef08d7c37", + "Position": { + "x": 571.59, + "y": 11.37, + "z": 145.269989 + }, + "Rotation": 216.79, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCrossRoad", - "CorePointId": 7 - }, - { - "Id": "dd81d0d1-c0de-48c2-afed-49522f652d00", - "Position": { - "x": -306.09, - "y": 1.01, - "z": -89.42 - }, - "Rotation": 44.5400047, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "bcdd9759-698e-4924-9f19-0c41dfd5b25c", + "Position": { + "x": 629.6786, + "y": 1.42986572, + "z": -135.632492 + }, + "Rotation": 184.215363, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 114.7 + } + }, + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ddca1267-6caa-4986-bd13-0ed29a81e6d2", - "Position": { - "x": 104.470016, - "y": 1.197, - "z": 16.5079956 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "bdd442fd-c45c-486c-8de5-61c6a6f7dd60", + "Position": { + "x": 181.1043, + "y": -0.1127597, + "z": 178.053787 + }, + "Rotation": 185.167953, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZoneDormitory", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "de83684c-cb7a-446c-81c1-dd40ef737d12", - "Position": { - "x": 529.57, - "y": 2.519843, - "z": 43.679 - }, - "Rotation": 188.080261, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "c0192b74-ef4d-41de-8bd9-81712ad31ba0", + "Position": { + "x": 34.1792679, + "y": 1.08854008, + "z": -49.5179977 + }, + "Rotation": 347.1565, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 131.24 + } + }, + "BotZoneName": "ZoneBrige", + "CorePointId": 1 }, - "BotZoneName": "ZoneBlockPost", - "CorePointId": 8 - }, - { - "Id": "df949703-1471-4367-a395-3afa78fcf886", - "Position": { - "x": -134.012, - "y": 0.718000054, - "z": 15.9940033 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "c11f719c-3491-4a60-901e-cf20832b432e", + "Position": { + "x": 617.72, + "y": -0.3499999, + "z": -96.86 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e028a78a-7785-4f59-bbe4-bb7de71fb182", - "Position": { - "x": 418.83, - "y": 1.10948467, - "z": 56.67 - }, - "Rotation": 210.9319, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "c21695bd-f460-4e72-8138-54d7aa92b965", + "Position": { + "x": 522.43, + "y": 10.14, + "z": 179.68 + }, + "Rotation": 225.49, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 11 - }, - { - "Id": "e388e0c4-74a8-44c1-b03a-10b1296def6a", - "Position": { - "x": 107.138275, - "y": 16.2157822, - "z": -47.88827 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 1700.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "c26390c5-80e1-428e-a11f-5d34d33fcc69", + "Position": { + "x": -323.872, + "y": 1.13, + "z": -222.056 + }, + "Rotation": 19.29, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSnipeBrige", - "CorePointId": 12 - }, - { - "Id": "e44d3970-258b-4d91-a96e-2fd10c4a7b38", - "Position": { - "x": 195.336288, - "y": 1.78624034, - "z": -126.129227 - }, - "Rotation": 252.354721, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "c351748e-915b-4be3-ae56-2bb13470f278", + "Position": { + "x": 296.557983, + "y": 1.868, + "z": -200.606 + }, + "Rotation": 17.73762, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 75 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 16 - }, - { - "Id": "e5999caf-d8b9-40f9-9e3f-0963106a7b86", - "Position": { - "x": -160.840012, - "y": 3.12176442, - "z": -101.729996 - }, - "Rotation": 273.068, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 37 - } + { + "Id": "c36b37b1-e654-45b8-a921-4864d1a325a4", + "Position": { + "x": 98.10802, + "y": 1.18800008, + "z": 11.9839935 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", - "Position": { - "x": 569.548, - "y": -0.292000055, - "z": -17.6360016 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "c6e01f12-08c7-4b2a-ba95-7b27e2018b7c", + "Position": { + "x": 5.78900528, + "y": 1.16781759, + "z": -103.391 + }, + "Rotation": 229.912613, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 164.4 + } + }, + "BotZoneName": "ZoneWade", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e5fcfb36-0475-48a8-8243-afbfc051bbfc", - "Position": { - "x": -333.830017, - "y": -0.424789667, - "z": -84.4799957 - }, - "Rotation": 102.860092, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "c70da15f-6bc8-4dda-b666-e4163754bcd5", + "Position": { + "x": 576.38, + "y": 1.48, + "z": -115.35 + }, + "Rotation": 270.35, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCustoms", - "CorePointId": 3 - }, - { - "Id": "e630b29d-fd39-48f3-bbfd-3c1b1befd9ca", - "Position": { - "x": 219.26, - "y": -0.5611635, - "z": 196.37 - }, - "Rotation": 186.911575, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "c789117c-9d94-456b-be1d-25dd5043a359", + "Position": { + "x": 172.605286, + "y": 2.84324026, + "z": 157.337784 + }, + "Rotation": 94.87478, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZoneDormitory", + "CorePointId": 1 }, - "BotZoneName": "ZoneCrossRoad", - "CorePointId": 1 - }, - { - "Id": "e66da548-6555-4abe-a132-1629e68b6f25", - "Position": { - "x": 604.9504, - "y": 1.21291232, - "z": -119.5414 - }, - "Rotation": 4.26114464, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 114.7 - } + { + "Id": "c7ba0d24-249b-459f-8364-51ae66454bff", + "Position": { + "x": 356.541382, + "y": 1.15009761, + "z": -24.1884918 + }, + "Rotation": 105.675018, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneFactoryCenter", + "CorePointId": 2 }, - "BotZoneName": "ZoneFactorySide", - "CorePointId": 2 - }, - { - "Id": "e765e08d-9ea3-46f0-ad0b-774d78da5478", - "Position": { - "x": 91.29799, - "y": 1.218, - "z": -104.936005 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c838176a-28e6-4871-89a2-827ec044b3f4", + "Position": { + "x": -321.022, + "y": 0.950000048, + "z": -220.866013 + }, + "Rotation": 34.52, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e7cfc09e-bb1f-4993-a887-9b203097c210", - "Position": { - "x": -30.9607353, - "y": -12.0579987, - "z": 126.24 - }, - "Rotation": 183.768738, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c8b04f3f-1f80-49a7-8530-3180b3ff71e9", + "Position": { + "x": 103.26799, + "y": 1.197, + "z": 15.322998 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrige", - "CorePointId": 4 - }, - { - "Id": "e8398178-82d4-4042-bcf8-342bca0e65b8", - "Position": { - "x": 252.16629, - "y": 1.21224034, - "z": -108.459213 - }, - "Rotation": 135.08139, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c98a753b-d534-4fa4-9430-478b7d8bf27d", + "Position": { + "x": 502.7, + "y": 1.18, + "z": -62.1199951 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 16 - }, - { - "Id": "e8dcecc5-1fda-4553-bffb-7efbd681c11d", - "Position": { - "x": 20.428009, - "y": 1.218, - "z": -124.846 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "cb0dd763-21a3-4c29-95ea-f3ef51e412fd", + "Position": { + "x": 571.71, + "y": -0.9350004, + "z": 6.60000038 + }, + "Rotation": 183.570679, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneBlockPost", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ec55a5b0-6317-4f27-8add-62b150a0d424", - "Position": { - "x": 125.176292, - "y": 1.32224035, - "z": -146.1392 - }, - "Rotation": 253.594025, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "cc2436ce-797c-4bd5-995d-255b7a0b7c37", + "Position": { + "x": 73.591, + "y": 1.11978245, + "z": -63.465004 + }, + "Rotation": 83.042244, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 115 + } + }, + "BotZoneName": "ZoneTankSquare", + "CorePointId": 4 }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 16 - }, - { - "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", - "Position": { - "x": -131.786987, - "y": 0.718000054, - "z": 9.414993 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "cd52aa33-141e-4f89-9120-2dd899fd23f2", + "Position": { + "x": -209.142, + "y": -1.43199992, + "z": 0.694000244 + }, + "Rotation": 144.14, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f02af868-e415-4779-bbf6-a1eabeee7ae3", - "Position": { - "x": -214.582, - "y": -1.23199987, - "z": -0.3959961 - }, - "Rotation": 128.039261, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", + "Position": { + "x": -131.743988, + "y": 0.718000054, + "z": 7.36000061 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f1a9dfc3-1bad-43cd-b6e5-f2348468789d", - "Position": { - "x": 186.527283, - "y": 2.84524035, - "z": 173.873779 - }, - "Rotation": 92.26318, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "ce31b755-dc15-4c1f-80b8-f35a2d4804b4", + "Position": { + "x": 20.0500031, + "y": 1.138802, + "z": -115.49 + }, + "Rotation": 174.01767, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneWade", + "CorePointId": 5 }, - "BotZoneName": "ZoneDormitory", - "CorePointId": 1 - }, - { - "Id": "f2755660-ab11-4982-a774-26119ce5241e", - "Position": { - "x": 359.958, - "y": 11.478, - "z": 154.314 - }, - "Rotation": 171.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "ce469ace-55c1-4381-b3a1-6458f1bea611", + "Position": { + "x": 503.409973, + "y": 1.18, + "z": -57.5599976 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f31226a6-20e7-42f7-b7b7-cffda28fb4eb", - "Position": { - "x": 57.6700058, - "y": 1.18891406, - "z": -37.5 - }, - "Rotation": 11.0327263, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", + "Position": { + "x": -131.972, + "y": 0.718000054, + "z": 12.5540009 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneTankSquare", - "CorePointId": 6 - }, - { - "Id": "f39537d4-1aef-4af6-9e06-be1d17a637ec", - "Position": { - "x": 510.865, - "y": 3.43099976, - "z": 46.168 - }, - "Rotation": 186.6658, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "BotZoneName": "ZoneBlockPost", - "CorePointId": 19 - }, - { - "Id": "f543ed8a-858e-44c1-92b0-043f7002c8ce", - "Position": { - "x": 208.2033, - "y": 1.78224027, - "z": -116.860214 - }, - "Rotation": 189.840561, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 16 - }, - { - "Id": "f55825ba-d987-4238-ae5a-dfcfdd40af07", - "Position": { - "x": 77.77829, - "y": 1.43224025, - "z": -108.103226 - }, - "Rotation": 135.08139, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 4 - }, - { - "Id": "f5741813-5583-42dc-acd1-5c45b948a7d2", - "Position": { - "x": 174.652283, - "y": -0.12775971, - "z": 152.706787 - }, - "Rotation": 81.11248, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "BotZoneName": "ZoneDormitory", - "CorePointId": 1 - }, - { - "Id": "f61dc8f4-8ab8-4a1b-9771-8c4d26568769", - "Position": { - "x": 103.658005, - "y": 1.18800008, - "z": 11.7939911 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f67b7e7f-4060-4fac-9a98-33a308349022", - "Position": { - "x": 195.096283, - "y": 1.49224031, - "z": -170.1392 - }, - "Rotation": 189.840561, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "ZoneScavBase", - "CorePointId": 17 - }, - { - "Id": "f722d19c-37f1-436a-a82e-14ef8b6a87cd", - "Position": { - "x": 422.29, - "y": 4.16, - "z": 97.16 - }, - "Rotation": 196.259735, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77.17 - } - }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 11 - }, - { - "Id": "f827894f-23cd-4720-ab4f-c5dc137895bb", - "Position": { - "x": 101.430008, - "y": 1.22583747, - "z": 22.07 - }, - "Rotation": 204.6489, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "ZoneTankSquare", - "CorePointId": 6 - }, - { - "Id": "f87de9ef-e4f7-4cf4-b241-85cc17724acd", - "Position": { - "x": -303.39, - "y": 1.01, - "z": -89.49 - }, - "Rotation": 28.48, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f8fa00b6-4941-4c21-b10b-77ff30b0c382", - "Position": { - "x": 314.867981, - "y": 1.158, - "z": -93.1160049 - }, - "Rotation": 196.37, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Boiler Tanks", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fd03b7ac-e83c-43b7-9046-09a4c6a901e1", - "Position": { - "x": 463.7923, - "y": 1.207964, - "z": -117.402084 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 114.7 - } - }, - "BotZoneName": "ZoneFactoryCenter", - "CorePointId": 2 - }, - { - "Id": "fd246e19-a658-4f37-ad29-43b37ca413a1", - "Position": { - "x": -320.572021, - "y": 0.940000057, - "z": -227.806 - }, - "Rotation": 68.36, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fd6734ed-6ba8-423b-8a7b-2943f31c6527", - "Position": { - "x": 97.4080048, - "y": 1.18800008, - "z": 13.8939972 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Customs", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fe9878ea-5664-4981-86a9-e8de8ecf73bb", - "Position": { - "x": 191.46, - "y": 1.22457552, - "z": -2.51000214 - }, - "Rotation": 38.0980873, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 6.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "BotZoneName": "ZoneCrossRoad", - "CorePointId": 7 - } - ], - "maxItemCountInLocation": [ - { - "TemplateId": "54009119af1c881c07000029", - "Value": 0 - } - ], - "AirdropParameters": [ - { - "PlaneAirdropStartMin": 300, - "PlaneAirdropStartMax": 900, - "PlaneAirdropEnd": 1200, - "PlaneAirdropChance": 0.2, - "PlaneAirdropMax": 1, - "PlaneAirdropCooldownMin": 600, - "PlaneAirdropCooldownMax": 700, - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "UnsuccessfulTryPenalty": 600 - } - ], - "MatchMakerMinPlayersByWaitTime": [ - { - "time": 60, - "minPlayers": 7 - }, - { - "time": 70, - "minPlayers": 6 - }, - { - "time": 120, - "minPlayers": 5 - }, - { - "time": 180, - "minPlayers": 4 - }, - { - "time": 250, - "minPlayers": 3 - }, - { - "time": 330, - "minPlayers": 2 - }, - { - "time": 420, - "minPlayers": 1 - } - ], - "transits": [ - { - "id": 9, - "active": false, - "name": "CUS_TRANSIT_9", - "location": "RezervBase", - "description": "CUS_TRANSIT_9_DESC", - "activateAfterSec": 420, - "target": "5704e5fad2720bc05b8b4567", - "time": 30, - "conditions": "CUS_TRANSIT_9_COND" - }, - { - "id": 10, - "active": true, - "name": "CUS_TRANSIT_10", - "location": "factory4_day", - "description": "CUS_TRANSIT_10_DESC", - "activateAfterSec": 420, - "target": "55f2d3fd4bdc2d5f408b4567", - "time": 30, - "conditions": "CUS_TRANSIT_10_COND" - }, - { - "id": 11, - "active": false, - "name": "CUS_TRANSIT_11", - "location": "Interchange", - "description": "CUS_TRANSIT_11_DESC", - "activateAfterSec": 420, - "target": "5714dbc024597771384a510d", - "time": 30, - "conditions": "CUS_TRANSIT_11_COND" - } - ], - "Id": "bigmap", - "_Id": "56f40101d2720b2a4d8b45d6", - "Loot": [ - { - "Id": "container_custom_DesignStuff_00087", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e93d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e93d", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "cf783f2b-042c-42fe-8417-4f7d75139aeb", + "Position": { + "x": 19.3192673, + "y": 1.28754, + "z": -109.24 + }, + "Rotation": 168.0339, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb5c3141e1d61ac09e93f", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbb5c3141e1d61ac09e93d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBrige", + "CorePointId": 5 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e941", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e941", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09e943", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb5c3141e1d61ac09e941", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "Id": "cfb2039d-a575-4246-9903-bd20336478de", + "Position": { + "x": 315.768, + "y": 1.128, + "z": -79.116 + }, + "Rotation": 11.5521812, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e944", - "_tpl": "5f36a0e5fbf956000b716b65", - "parentId": "66cbb5c3141e1d61ac09e941", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "FireMode": { - "FireMode": "single" - } + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d035661b-dbba-4f54-a66e-d4ac53e2f2c1", + "Position": { + "x": 471.196716, + "y": 2.6568923, + "z": -54.2984543 + }, + "Rotation": 147.656372, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e945", - "_tpl": "5f3e7801153b8571434a924c", - "parentId": "66cbb5c3141e1d61ac09e944", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09e946", - "_tpl": "5f3e778efcd9b651187d7201", - "parentId": "66cbb5c3141e1d61ac09e944", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09e947", - "_tpl": "5f3e7823ddc4f03b010e2045", - "parentId": "66cbb5c3141e1d61ac09e944", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09e948", - "_tpl": "5f3e7897ddc4f03b010e204a", - "parentId": "66cbb5c3141e1d61ac09e947", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09e949", - "_tpl": "5f3e78a7fbf956000b716b8e", - "parentId": "66cbb5c3141e1d61ac09e947", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb5c3141e1d61ac09e94a", - "_tpl": "5f3e77b26cda304dcc634057", - "parentId": "66cbb5c3141e1d61ac09e944", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09e94e", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbb5c3141e1d61ac09e94a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "BotZoneName": "ZoneFactoryCenter", + "CorePointId": 2 + }, + { + "Id": "d12962b9-c23f-47c4-96fa-afe2b1ef30be", + "Position": { + "x": -19.7720032, + "y": -8.492001, + "z": 113.283966 + }, + "Rotation": 131.598984, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 95 } }, - { - "_id": "66cbb5c3141e1d61ac09e94b", - "_tpl": "5f3e772a670e2a7b01739a52", - "parentId": "66cbb5c3141e1d61ac09e944", - "slotId": "mod_trigger" - }, - { - "_id": "66cbb5c3141e1d61ac09e94c", - "_tpl": "5f3e76d86cda304dcc634054", - "parentId": "66cbb5c3141e1d61ac09e944", - "slotId": "mod_hammer" - }, - { - "_id": "66cbb5c3141e1d61ac09e94d", - "_tpl": "5f3e777688ca2d00ad199d25", - "parentId": "66cbb5c3141e1d61ac09e944", - "slotId": "mod_catch" - }, - { - "_id": "66cbb5c3141e1d61ac09e950", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66cbb5c3141e1d61ac09e941", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 47 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d18b6493-9fc7-462c-952d-df410e4924b2", + "Position": { + "x": 122.026291, + "y": 0.2622403, + "z": 129.290787 + }, + "Rotation": 46.6169, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 } }, - { - "_id": "66cbb5c3141e1d61ac09e952", - "_tpl": "66a0d1f88486c69fce00fdf6", - "parentId": "66cbb5c3141e1d61ac09e941", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 19 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00314", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneDormitory", + "CorePointId": 1 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e954", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e954", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d23681ef-3f6c-466d-924b-d2a76db60f4f", + "Position": { + "x": -247.488, + "y": -0.234708309, + "z": -14.3019981 + }, + "Rotation": 156.825577, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 131.24 } }, - { - "_id": "66cbb5c3141e1d61ac09e955", - "_tpl": "5bf3e03b0db834001d2c4a9c", - "parentId": "66cbb5c3141e1d61ac09e954", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "FireMode": { - "FireMode": "single" - } + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 + }, + { + "Id": "d591be31-c6f9-444d-9b7e-15faf5825066", + "Position": { + "x": 288.998, + "y": 1.388, + "z": -196.146 + }, + "Rotation": 17.73762, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 75 } }, - { - "_id": "66cbb5c3141e1d61ac09e956", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb5c3141e1d61ac09e955", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb5c3141e1d61ac09e957", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "66cbb5c3141e1d61ac09e956", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb5c3141e1d61ac09e958", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "66cbb5c3141e1d61ac09e955", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09e959", - "_tpl": "57e3dba62459770f0c32322b", - "parentId": "66cbb5c3141e1d61ac09e955", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09e95a", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "66cbb5c3141e1d61ac09e955", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09e95b", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "66cbb5c3141e1d61ac09e955", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09e95c", - "_tpl": "5649b1c04bdc2d16268b457c", - "parentId": "66cbb5c3141e1d61ac09e955", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09e95d", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb5c3141e1d61ac09e955", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09e95e", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb5c3141e1d61ac09e95d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20.0 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00099", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e960", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e960", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d655a83e-c30f-493c-b3cf-6a9872426bd6", + "Position": { + "x": -300.564, + "y": 0.032841444, + "z": -44.071 + }, + "Rotation": 102.860092, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 131.24 } }, - { - "_id": "66cbb5c3141e1d61ac09e962", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66cbb5c3141e1d61ac09e960", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00277", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e964", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e964", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d75cbe99-8316-4e7a-a913-f3048198062c", + "Position": { + "x": 537.491455, + "y": 1.08002615, + "z": -130.868164 + }, + "Rotation": 147.656372, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 } }, - { - "_id": "66cbb5c3141e1d61ac09e966", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb5c3141e1d61ac09e964", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 + }, + { + "Id": "d7bae537-f5a0-416d-9849-d939cc3575f4", + "Position": { + "x": 615.61, + "y": -0.3499999, + "z": -96.83 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e968", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbb5c3141e1d61ac09e964", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00204", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e96a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e96a", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d86d794e-6f15-4a9e-ac69-8bf0172d3893", + "Position": { + "x": 454.29303, + "y": 2.67591476, + "z": -81.5390244 + }, + "Rotation": 89.51053, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 5.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e96c", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66cbb5c3141e1d61ac09e96a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneFactoryCenter", + "CorePointId": 2 + }, + { + "Id": "daaa4a02-1f51-460b-bdf8-29b3bd2c838b", + "Position": { + "x": 96.56099, + "y": 1.238, + "z": 17.1719971 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 } }, - { - "_id": "66cbb5c3141e1d61ac09e970", - "_tpl": "57372b832459776701014e41", - "parentId": "66cbb5c3141e1d61ac09e96a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "dbab2e51-b5f5-4bd8-9324-9f3fd4cc977f", + "Position": { + "x": 365.458, + "y": 11.478, + "z": 149.264 + }, + "Rotation": 220.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb5c3141e1d61ac09e971", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb5c3141e1d61ac09e970", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "dbcf3640-5c76-453e-8022-6c8aaa21c77b", + "Position": { + "x": 227.906281, + "y": 1.29224026, + "z": -86.3992157 + }, + "Rotation": 189.840561, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb5c3141e1d61ac09e972", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb5c3141e1d61ac09e970", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00343", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneScavBase", + "CorePointId": 16 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e974", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e974", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "dce9812c-a766-40c8-8718-161a483337c4", + "Position": { + "x": 313.802277, + "y": 1.16418183, + "z": -191.568161 + }, + "Rotation": 147.656372, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb5c3141e1d61ac09e976", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb5c3141e1d61ac09e974", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneOldAZS", + "CorePointId": 13 + }, + { + "Id": "dd2cab78-453d-4341-8180-bd2d93e37b06", + "Position": { + "x": 188.06, + "y": 1.289891, + "z": -1.38000488 + }, + "Rotation": 17.3450165, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 } }, - { - "_id": "66cbb5c3141e1d61ac09e978", - "_tpl": "5d03784a86f774203e7e0c4d", - "parentId": "66cbb5c3141e1d61ac09e974", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneCrossRoad", + "CorePointId": 7 + }, + { + "Id": "dd81d0d1-c0de-48c2-afed-49522f652d00", + "Position": { + "x": -306.09, + "y": 1.01, + "z": -89.42 + }, + "Rotation": 44.5400047, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e97a", - "_tpl": "62a0a0bb621468534a797ad5", - "parentId": "66cbb5c3141e1d61ac09e974", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ddca1267-6caa-4986-bd13-0ed29a81e6d2", + "Position": { + "x": 104.470016, + "y": 1.197, + "z": 16.5079956 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 } }, - { - "_id": "66cbb5c3141e1d61ac09e97c", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb5c3141e1d61ac09e974", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00151", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e97e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e97e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "de83684c-cb7a-446c-81c1-dd40ef737d12", + "Position": { + "x": 529.57, + "y": 2.519843, + "z": 43.679 + }, + "Rotation": 188.080261, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb5c3141e1d61ac09e980", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb5c3141e1d61ac09e97e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00158", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBlockPost", + "CorePointId": 8 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e982", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e982", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "df949703-1471-4367-a395-3afa78fcf886", + "Position": { + "x": -134.012, + "y": 0.718000054, + "z": 15.9940033 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00074", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e984", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e984", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e028a78a-7785-4f59-bbe4-bb7de71fb182", + "Position": { + "x": 418.83, + "y": 1.10948467, + "z": 56.67 + }, + "Rotation": 210.9319, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 } }, - { - "_id": "66cbb5c3141e1d61ac09e986", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb5c3141e1d61ac09e984", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneGasStation", + "CorePointId": 11 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e988", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e988", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e388e0c4-74a8-44c1-b03a-10b1296def6a", + "Position": { + "x": 107.138275, + "y": 16.2157822, + "z": -47.88827 + }, + "Rotation": 147.656372, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 1700.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 } }, - { - "_id": "66cbb5c3141e1d61ac09e98a", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb5c3141e1d61ac09e988", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00034", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSnipeBrige", + "CorePointId": 12 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e98c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e98c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e44d3970-258b-4d91-a96e-2fd10c4a7b38", + "Position": { + "x": 195.336288, + "y": 1.78624034, + "z": -126.129227 + }, + "Rotation": 252.354721, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb5c3141e1d61ac09e98e", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09e98c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 61 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00033", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneScavBase", + "CorePointId": 16 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e990", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e990", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e5999caf-d8b9-40f9-9e3f-0963106a7b86", + "Position": { + "x": -160.840012, + "y": 3.12176442, + "z": -101.729996 + }, + "Rotation": 273.068, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 37 } }, - { - "_id": "66cbb5c3141e1d61ac09e992", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb5c3141e1d61ac09e990", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e994", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e994", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", + "Position": { + "x": 569.548, + "y": -0.292000055, + "z": -17.6360016 + }, + "Rotation": 270.218658, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 } }, - { - "_id": "66cbb5c3141e1d61ac09e996", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb5c3141e1d61ac09e994", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00133", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e998", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e998", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e5fcfb36-0475-48a8-8243-afbfc051bbfc", + "Position": { + "x": -333.830017, + "y": -0.424789667, + "z": -84.4799957 + }, + "Rotation": 102.860092, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 } }, - { - "_id": "66cbb5c3141e1d61ac09e99a", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbb5c3141e1d61ac09e998", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneCustoms", + "CorePointId": 3 + }, + { + "Id": "e630b29d-fd39-48f3-bbfd-3c1b1befd9ca", + "Position": { + "x": 219.26, + "y": -0.5611635, + "z": 196.37 + }, + "Rotation": 186.911575, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbb5c3141e1d61ac09e99c", - "_tpl": "576fd4ec2459777f0b518431", - "parentId": "66cbb5c3141e1d61ac09e998", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneCrossRoad", + "CorePointId": 1 + }, + { + "Id": "e66da548-6555-4abe-a132-1629e68b6f25", + "Position": { + "x": 604.9504, + "y": 1.21291232, + "z": -119.5414 + }, + "Rotation": 4.26114464, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 114.7 } }, - { - "_id": "66cbb5c3141e1d61ac09e99e", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbb5c3141e1d61ac09e998", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneFactorySide", + "CorePointId": 2 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e9a0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9a0", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e765e08d-9ea3-46f0-ad0b-774d78da5478", + "Position": { + "x": 91.29799, + "y": 1.218, + "z": -104.936005 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e9a2", - "_tpl": "573601b42459776410737435", - "parentId": "66cbb5c3141e1d61ac09e9a0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 8 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e7cfc09e-bb1f-4993-a887-9b203097c210", + "Position": { + "x": -30.9607353, + "y": -12.0579987, + "z": 126.24 + }, + "Rotation": 183.768738, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb5c3141e1d61ac09e9a4", - "_tpl": "5fc3e466187fea44d52eda90", - "parentId": "66cbb5c3141e1d61ac09e9a0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneBrige", + "CorePointId": 4 + }, + { + "Id": "e8398178-82d4-4042-bcf8-342bca0e65b8", + "Position": { + "x": 252.16629, + "y": 1.21224034, + "z": -108.459213 + }, + "Rotation": 135.08139, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e9a6", - "_tpl": "5887431f2459777e1612938f", - "parentId": "66cbb5c3141e1d61ac09e9a0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 24 + "BotZoneName": "ZoneScavBase", + "CorePointId": 16 + }, + { + "Id": "e8dcecc5-1fda-4553-bffb-7efbd681c11d", + "Position": { + "x": 20.428009, + "y": 1.218, + "z": -124.846 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e9a8", - "_tpl": "60361b5a9a15b10d96792291", - "parentId": "66cbb5c3141e1d61ac09e9a0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ec55a5b0-6317-4f27-8add-62b150a0d424", + "Position": { + "x": 125.176292, + "y": 1.32224035, + "z": -146.1392 + }, + "Rotation": 253.594025, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbb5c3141e1d61ac09e9aa", - "_tpl": "59e3596386f774176c10a2a2", - "parentId": "66cbb5c3141e1d61ac09e9a0", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00060", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneScavBase", + "CorePointId": 16 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e9ac", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9ac", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", + "Position": { + "x": -131.786987, + "y": 0.718000054, + "z": 9.414993 + }, + "Rotation": 85.46295, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 } }, - { - "_id": "66cbb5c3141e1d61ac09e9ae", - "_tpl": "593962ca86f774068014d9af", - "parentId": "66cbb5c3141e1d61ac09e9ac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f02af868-e415-4779-bbf6-a1eabeee7ae3", + "Position": { + "x": -214.582, + "y": -1.23199987, + "z": -0.3959961 + }, + "Rotation": 128.039261, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb5c3141e1d61ac09e9b0", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb5c3141e1d61ac09e9ac", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f1a9dfc3-1bad-43cd-b6e5-f2348468789d", + "Position": { + "x": 186.527283, + "y": 2.84524035, + "z": 173.873779 + }, + "Rotation": 92.26318, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 } }, - { - "_id": "66cbb5c3141e1d61ac09e9b2", - "_tpl": "5f99418230835532b445e954", - "parentId": "66cbb5c3141e1d61ac09e9ac", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneDormitory", + "CorePointId": 1 + }, + { + "Id": "f2755660-ab11-4982-a774-26119ce5241e", + "Position": { + "x": 359.958, + "y": 11.478, + "z": 154.314 + }, + "Rotation": 171.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00163", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "f31226a6-20e7-42f7-b7b7-cffda28fb4eb", + "Position": { + "x": 57.6700058, + "y": 1.18891406, + "z": -37.5 + }, + "Rotation": 11.0327263, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneTankSquare", + "CorePointId": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e9b4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9b4", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f39537d4-1aef-4af6-9e06-be1d17a637ec", + "Position": { + "x": 510.865, + "y": 3.43099976, + "z": 46.168 + }, + "Rotation": 186.6658, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb5c3141e1d61ac09e9b6", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbb5c3141e1d61ac09e9b4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 9 + "BotZoneName": "ZoneBlockPost", + "CorePointId": 19 + }, + { + "Id": "f543ed8a-858e-44c1-92b0-043f7002c8ce", + "Position": { + "x": 208.2033, + "y": 1.78224027, + "z": -116.860214 + }, + "Rotation": 189.840561, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb5c3141e1d61ac09e9b8", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "66cbb5c3141e1d61ac09e9b4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneScavBase", + "CorePointId": 16 + }, + { + "Id": "f55825ba-d987-4238-ae5a-dfcfdd40af07", + "Position": { + "x": 77.77829, + "y": 1.43224025, + "z": -108.103226 + }, + "Rotation": 135.08139, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbb5c3141e1d61ac09e9ba", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66cbb5c3141e1d61ac09e9b4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 37 + "BotZoneName": "ZoneScavBase", + "CorePointId": 4 + }, + { + "Id": "f5741813-5583-42dc-acd1-5c45b948a7d2", + "Position": { + "x": 174.652283, + "y": -0.12775971, + "z": 152.706787 + }, + "Rotation": 81.11248, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 } }, - { - "_id": "66cbb5c3141e1d61ac09e9bc", - "_tpl": "5c793fde2e221601da358614", - "parentId": "66cbb5c3141e1d61ac09e9b4", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneDormitory", + "CorePointId": 1 + }, + { + "Id": "f61dc8f4-8ab8-4a1b-9771-8c4d26568769", + "Position": { + "x": 103.658005, + "y": 1.18800008, + "z": 11.7939911 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 } }, - { - "_id": "66cbb5c3141e1d61ac09e9be", - "_tpl": "5b3b99475acfc432ff4dcbee", - "parentId": "66cbb5c3141e1d61ac09e9b4", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f67b7e7f-4060-4fac-9a98-33a308349022", + "Position": { + "x": 195.096283, + "y": 1.49224031, + "z": -170.1392 + }, + "Rotation": 189.840561, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e9c0", - "_tpl": "64b8ee384b75259c590fa89b", - "parentId": "66cbb5c3141e1d61ac09e9b4", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 2 + "BotZoneName": "ZoneScavBase", + "CorePointId": 17 + }, + { + "Id": "f722d19c-37f1-436a-a82e-14ef8b6a87cd", + "Position": { + "x": 422.29, + "y": 4.16, + "z": 97.16 + }, + "Rotation": 196.259735, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77.17 } }, - { - "_id": "66cbb5c3141e1d61ac09e9c1", - "_tpl": "5c06c6a80db834001b735491", - "parentId": "66cbb5c3141e1d61ac09e9b4", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "BotZoneName": "ZoneGasStation", + "CorePointId": 11 + }, + { + "Id": "f827894f-23cd-4720-ab4f-c5dc137895bb", + "Position": { + "x": 101.430008, + "y": 1.22583747, + "z": 22.07 + }, + "Rotation": 204.6489, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb5c3141e1d61ac09e9c2", - "_tpl": "6571199565daf6aa960c9b10", - "parentId": "66cbb5c3141e1d61ac09e9c1", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb5c3141e1d61ac09e9c3", - "_tpl": "657119d49eb8c145180dbb95", - "parentId": "66cbb5c3141e1d61ac09e9c1", - "slotId": "Helmet_back" - }, - { - "_id": "66cbb5c3141e1d61ac09e9c4", - "_tpl": "657119fea330b8c9060f7afc", - "parentId": "66cbb5c3141e1d61ac09e9c1", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_custom_DesignStuff_00197", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneTankSquare", + "CorePointId": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e9c6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9c6", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09e9c8", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66cbb5c3141e1d61ac09e9c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09e9ca", - "_tpl": "5448fee04bdc2dbc018b4567", - "parentId": "66cbb5c3141e1d61ac09e9c6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "Id": "f87de9ef-e4f7-4cf4-b241-85cc17724acd", + "Position": { + "x": -303.39, + "y": 1.01, + "z": -89.49 + }, + "Rotation": 28.48, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e9cb", - "_tpl": "651450ce0e00edc794068371", - "parentId": "66cbb5c3141e1d61ac09e9c6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 - }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f8fa00b6-4941-4c21-b10b-77ff30b0c382", + "Position": { + "x": 314.867981, + "y": 1.158, + "z": -93.1160049 + }, + "Rotation": 196.37, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Boiler Tanks", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb5c3141e1d61ac09e9cc", - "_tpl": "57c44f4f2459772d2c627113", - "parentId": "66cbb5c3141e1d61ac09e9cb", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09e9cd", - "_tpl": "5a9e81fba2750c00164f6b11", - "parentId": "66cbb5c3141e1d61ac09e9cb", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09e9d2", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbb5c3141e1d61ac09e9cd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20.0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "fd03b7ac-e83c-43b7-9046-09a4c6a901e1", + "Position": { + "x": 463.7923, + "y": 1.207964, + "z": -117.402084 + }, + "Rotation": 147.656372, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 114.7 } }, - { - "_id": "66cbb5c3141e1d61ac09e9ce", - "_tpl": "57c44fa82459772d2d75e415", - "parentId": "66cbb5c3141e1d61ac09e9cb", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09e9cf", - "_tpl": "57c450252459772d28133253", - "parentId": "66cbb5c3141e1d61ac09e9cb", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09e9d0", - "_tpl": "6565c3ab977bcc2dbb01c2e7", - "parentId": "66cbb5c3141e1d61ac09e9cb", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb5c3141e1d61ac09e9d1", - "_tpl": "6565c0c2ff7eb7070409084c", - "parentId": "66cbb5c3141e1d61ac09e9cb", - "slotId": "mod_foregrip" - } - ] - }, - { - "Id": "container_custom_DesignStuff_00188", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneFactoryCenter", + "CorePointId": 2 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e9d4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9d4", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fd246e19-a658-4f37-ad29-43b37ca413a1", + "Position": { + "x": -320.572021, + "y": 0.940000057, + "z": -227.806 + }, + "Rotation": 68.36, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb5c3141e1d61ac09e9d6", - "_tpl": "5d40419286f774318526545f", - "parentId": "66cbb5c3141e1d61ac09e9d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00287", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e9d8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9d8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fd6734ed-6ba8-423b-8a7b-2943f31c6527", + "Position": { + "x": 97.4080048, + "y": 1.18800008, + "z": 13.8939972 + }, + "Rotation": 167.010742, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Customs", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 } }, - { - "_id": "66cbb5c3141e1d61ac09e9da", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb5c3141e1d61ac09e9d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e9dc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9dc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fe9878ea-5664-4981-86a9-e8de8ecf73bb", + "Position": { + "x": 191.46, + "y": 1.22457552, + "z": -2.51000214 + }, + "Rotation": 38.0980873, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 6.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 } }, - { - "_id": "66cbb5c3141e1d61ac09e9de", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66cbb5c3141e1d61ac09e9dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneCrossRoad", + "CorePointId": 7 + } + ], + "maxItemCountInLocation": [ + { + "TemplateId": "54009119af1c881c07000029", + "Value": 0 + } + ], + "AirdropParameters": [ + { + "PlaneAirdropStartMin": 300, + "PlaneAirdropStartMax": 900, + "PlaneAirdropEnd": 1200, + "PlaneAirdropChance": 0.2, + "PlaneAirdropMax": 1, + "PlaneAirdropCooldownMin": 600, + "PlaneAirdropCooldownMax": 700, + "AirdropPointDeactivateDistance": 50, + "MinPlayersCountToSpawnAirdrop": 6, + "UnsuccessfulTryPenalty": 600 + } + ], + "MatchMakerMinPlayersByWaitTime": [ + { + "time": 60, + "minPlayers": 7 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 70, + "minPlayers": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e9e0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9e0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09e9e2", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb5c3141e1d61ac09e9e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 120, + "minPlayers": 5 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 180, + "minPlayers": 4 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e9e4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9e4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09e9e6", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb5c3141e1d61ac09e9e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 250, + "minPlayers": 3 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 330, + "minPlayers": 2 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e9e8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9e8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09e9ea", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb5c3141e1d61ac09e9e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00213", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 420, + "minPlayers": 1 + } + ], + "transits": [ + { + "id": 9, + "active": false, + "name": "CUS_TRANSIT_9", + "location": "RezervBase", + "description": "CUS_TRANSIT_9_DESC", + "activateAfterSec": 420, + "target": "5704e5fad2720bc05b8b4567", + "time": 30, + "conditions": "CUS_TRANSIT_9_COND" }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "id": 10, + "active": true, + "name": "CUS_TRANSIT_10", + "location": "factory4_day", + "description": "CUS_TRANSIT_10_DESC", + "activateAfterSec": 420, + "target": "55f2d3fd4bdc2d5f408b4567", + "time": 30, + "conditions": "CUS_TRANSIT_10_COND" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09e9ec", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9ec", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "id": 11, + "active": false, + "name": "CUS_TRANSIT_11", + "location": "Interchange", + "description": "CUS_TRANSIT_11_DESC", + "activateAfterSec": 420, + "target": "5714dbc024597771384a510d", + "time": 30, + "conditions": "CUS_TRANSIT_11_COND" + } + ], + "Id": "bigmap", + "_Id": "56f40101d2720b2a4d8b45d6", + "Loot": [ + { + "Id": "container_custom_DesignStuff_00087", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09e9ee", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66cbb5c3141e1d61ac09e9ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09e9ef", - "_tpl": "5e81c3cbac2bb513793cdc75", - "parentId": "66cbb5c3141e1d61ac09e9ec", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e93d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e93d", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb5c3141e1d61ac09e93f", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbb5c3141e1d61ac09e93d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_custom_DesignStuff_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09e9f0", - "_tpl": "5e81c519cb2b95385c177551", - "parentId": "66cbb5c3141e1d61ac09e9ef", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09e9f1", - "_tpl": "5e81c6bf763d9f754677beff", - "parentId": "66cbb5c3141e1d61ac09e9ef", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09e9f2", - "_tpl": "5e81edc13397a21db957f6a1", - "parentId": "66cbb5c3141e1d61ac09e9ef", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e941", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e941", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e943", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb5c3141e1d61ac09e941", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e944", + "_tpl": "5f36a0e5fbf956000b716b65", + "parentId": "66cbb5c3141e1d61ac09e941", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09e945", + "_tpl": "5f3e7801153b8571434a924c", + "parentId": "66cbb5c3141e1d61ac09e944", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09e946", + "_tpl": "5f3e778efcd9b651187d7201", + "parentId": "66cbb5c3141e1d61ac09e944", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09e947", + "_tpl": "5f3e7823ddc4f03b010e2045", + "parentId": "66cbb5c3141e1d61ac09e944", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09e948", + "_tpl": "5f3e7897ddc4f03b010e204a", + "parentId": "66cbb5c3141e1d61ac09e947", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09e949", + "_tpl": "5f3e78a7fbf956000b716b8e", + "parentId": "66cbb5c3141e1d61ac09e947", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb5c3141e1d61ac09e94a", + "_tpl": "5f3e77b26cda304dcc634057", + "parentId": "66cbb5c3141e1d61ac09e944", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09e94e", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbb5c3141e1d61ac09e94a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e94b", + "_tpl": "5f3e772a670e2a7b01739a52", + "parentId": "66cbb5c3141e1d61ac09e944", + "slotId": "mod_trigger" + }, + { + "_id": "66cbb5c3141e1d61ac09e94c", + "_tpl": "5f3e76d86cda304dcc634054", + "parentId": "66cbb5c3141e1d61ac09e944", + "slotId": "mod_hammer" + }, + { + "_id": "66cbb5c3141e1d61ac09e94d", + "_tpl": "5f3e777688ca2d00ad199d25", + "parentId": "66cbb5c3141e1d61ac09e944", + "slotId": "mod_catch" + }, + { + "_id": "66cbb5c3141e1d61ac09e950", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66cbb5c3141e1d61ac09e941", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 47 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e952", + "_tpl": "66a0d1f88486c69fce00fdf6", + "parentId": "66cbb5c3141e1d61ac09e941", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 19 + } + } + ] + }, + { + "Id": "container_custom_DesignStuff_00314", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09e9f3", - "_tpl": "5e81ee4dcb2b95385c177582", - "parentId": "66cbb5c3141e1d61ac09e9f2", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09e9f4", - "_tpl": "5e81ee213397a21db957f6a6", - "parentId": "66cbb5c3141e1d61ac09e9f2", - "slotId": "mod_sight_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e954", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e954", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e955", + "_tpl": "5bf3e03b0db834001d2c4a9c", + "parentId": "66cbb5c3141e1d61ac09e954", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09e956", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb5c3141e1d61ac09e955", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb5c3141e1d61ac09e957", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "66cbb5c3141e1d61ac09e956", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb5c3141e1d61ac09e958", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "66cbb5c3141e1d61ac09e955", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09e959", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "66cbb5c3141e1d61ac09e955", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09e95a", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "66cbb5c3141e1d61ac09e955", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09e95b", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "66cbb5c3141e1d61ac09e955", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09e95c", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "66cbb5c3141e1d61ac09e955", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09e95d", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb5c3141e1d61ac09e955", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09e95e", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb5c3141e1d61ac09e95d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20.0 + } + } + ] + }, + { + "Id": "container_custom_DesignStuff_00099", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09e9f5", - "_tpl": "5e81c4ca763d9f754677befa", - "parentId": "66cbb5c3141e1d61ac09e9ef", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09e9f9", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbb5c3141e1d61ac09e9f5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e960", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e960", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e962", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66cbb5c3141e1d61ac09e960", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00277", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09e9f6", - "_tpl": "5e81c6a2ac2bb513793cdc7f", - "parentId": "66cbb5c3141e1d61ac09e9ef", - "slotId": "mod_trigger" - }, - { - "_id": "66cbb5c3141e1d61ac09e9f7", - "_tpl": "5e81c550763d9f754677befd", - "parentId": "66cbb5c3141e1d61ac09e9ef", - "slotId": "mod_hammer" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09e9f8", - "_tpl": "5e81c539cb2b95385c177553", - "parentId": "66cbb5c3141e1d61ac09e9ef", - "slotId": "mod_catch" - } - ] - }, - { - "Id": "container_custom_DesignStuff_00246", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09e9fb", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09e9fb", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09e9fd", - "_tpl": "5ae35b315acfc4001714e8b0", - "parentId": "66cbb5c3141e1d61ac09e9fb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e964", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e964", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09e9ff", - "_tpl": "655dccfdbdcc6b5df71382b6", - "parentId": "66cbb5c3141e1d61ac09e9fb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09e966", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb5c3141e1d61ac09e964", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ea00", - "_tpl": "609e8540d5c319764c2bc2e9", - "parentId": "66cbb5c3141e1d61ac09e9fb", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09e968", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbb5c3141e1d61ac09e964", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00204", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea01", - "_tpl": "6572e5221b5bc1185508c24f", - "parentId": "66cbb5c3141e1d61ac09ea00", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbb5c3141e1d61ac09ea02", - "_tpl": "6572e52f73c0eabb700109a0", - "parentId": "66cbb5c3141e1d61ac09ea00", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbb5c3141e1d61ac09ea03", - "_tpl": "6572e53c73c0eabb700109a4", - "parentId": "66cbb5c3141e1d61ac09ea00", - "slotId": "Soft_armor_left" - }, - { - "_id": "66cbb5c3141e1d61ac09ea04", - "_tpl": "6572e54873c0eabb700109a8", - "parentId": "66cbb5c3141e1d61ac09ea00", - "slotId": "soft_armor_right" - }, - { - "_id": "66cbb5c3141e1d61ac09ea05", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "66cbb5c3141e1d61ac09ea00", - "slotId": "Front_plate" - }, - { - "_id": "66cbb5c3141e1d61ac09ea06", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "66cbb5c3141e1d61ac09ea00", - "slotId": "Back_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea08", - "_tpl": "618ba27d9008e4636a67f61d", - "parentId": "66cbb5c3141e1d61ac09e9fb", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e96a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e96a", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ea0a", - "_tpl": "5c1bc5af2e221602b412949b", - "parentId": "66cbb5c3141e1d61ac09e9fb", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e96c", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66cbb5c3141e1d61ac09e96a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e970", + "_tpl": "57372b832459776701014e41", + "parentId": "66cbb5c3141e1d61ac09e96a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e971", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb5c3141e1d61ac09e970", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e972", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb5c3141e1d61ac09e970", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00187", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea0c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea0c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00343", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea0e", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb5c3141e1d61ac09ea0c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea10", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb5c3141e1d61ac09ea0c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e974", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e974", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e976", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb5c3141e1d61ac09e974", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e978", + "_tpl": "5d03784a86f774203e7e0c4d", + "parentId": "66cbb5c3141e1d61ac09e974", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e97a", + "_tpl": "62a0a0bb621468534a797ad5", + "parentId": "66cbb5c3141e1d61ac09e974", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e97c", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb5c3141e1d61ac09e974", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00332", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea12", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea12", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00151", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea14", - "_tpl": "5d03784a86f774203e7e0c4d", - "parentId": "66cbb5c3141e1d61ac09ea12", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea16", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea16", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea18", - "_tpl": "5448c1d04bdc2dff2f8b4569", - "parentId": "66cbb5c3141e1d61ac09ea16", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e97e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e97e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ea1a", - "_tpl": "5d2c770c48f0354b4a07c100", - "parentId": "66cbb5c3141e1d61ac09ea16", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e980", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb5c3141e1d61ac09e97e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00275", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea1c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea1c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00158", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea1e", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbb5c3141e1d61ac09ea1c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea20", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea20", - "_tpl": "59387ac686f77401442ddd61", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea22", - "_tpl": "590c657e86f77412b013051d", - "parentId": "66cbb5c3141e1d61ac09ea20", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e982", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e982", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00367", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea24", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea24", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00074", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea26", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb5c3141e1d61ac09ea24", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea28", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66cbb5c3141e1d61ac09ea24", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e984", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e984", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e986", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb5c3141e1d61ac09e984", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea2a", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66cbb5c3141e1d61ac09ea24", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea2c", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb5c3141e1d61ac09ea24", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e988", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e988", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e98a", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb5c3141e1d61ac09e988", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00206", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea2e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea2e", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00034", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea30", - "_tpl": "5ef366938cef260c0642acad", - "parentId": "66cbb5c3141e1d61ac09ea2e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea32", - "_tpl": "620109578d82e67e7911abf2", - "parentId": "66cbb5c3141e1d61ac09ea2e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e98c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e98c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e98e", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09e98c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 61 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00122", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea34", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea34", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00033", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea36", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb5c3141e1d61ac09ea34", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00288", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea38", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea38", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea3a", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb5c3141e1d61ac09ea38", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e990", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e990", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e992", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb5c3141e1d61ac09e990", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea3c", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb5c3141e1d61ac09ea38", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e994", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e994", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e996", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb5c3141e1d61ac09e994", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00133", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea3e", - "_tpl": "59faff1d86f7746c51718c9c", - "parentId": "66cbb5c3141e1d61ac09ea38", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00306", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea40", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea40", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea41", - "_tpl": "5644bd2b4bdc2d3b4c8b4572", - "parentId": "66cbb5c3141e1d61ac09ea40", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e998", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e998", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e99a", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbb5c3141e1d61ac09e998", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e99c", + "_tpl": "576fd4ec2459777f0b518431", + "parentId": "66cbb5c3141e1d61ac09e998", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb5c3141e1d61ac09e99e", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbb5c3141e1d61ac09e998", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_custom_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea42", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb5c3141e1d61ac09ea41", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb5c3141e1d61ac09ea43", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "66cbb5c3141e1d61ac09ea42", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb5c3141e1d61ac09ea44", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "66cbb5c3141e1d61ac09ea41", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09ea45", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "66cbb5c3141e1d61ac09ea41", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09ea46", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "66cbb5c3141e1d61ac09ea41", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09ea47", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "66cbb5c3141e1d61ac09ea41", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09ea48", - "_tpl": "5649b1c04bdc2d16268b457c", - "parentId": "66cbb5c3141e1d61ac09ea41", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09ea49", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb5c3141e1d61ac09ea41", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea4a", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb5c3141e1d61ac09ea49", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 26.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e9a0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9a0", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9a2", + "_tpl": "573601b42459776410737435", + "parentId": "66cbb5c3141e1d61ac09e9a0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9a4", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "66cbb5c3141e1d61ac09e9a0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9a6", + "_tpl": "5887431f2459777e1612938f", + "parentId": "66cbb5c3141e1d61ac09e9a0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 24 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9a8", + "_tpl": "60361b5a9a15b10d96792291", + "parentId": "66cbb5c3141e1d61ac09e9a0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9aa", + "_tpl": "59e3596386f774176c10a2a2", + "parentId": "66cbb5c3141e1d61ac09e9a0", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00316", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea4c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea4c", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00060", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea4e", - "_tpl": "64c196ad26a15b84aa07132f", - "parentId": "66cbb5c3141e1d61ac09ea4c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00266", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea50", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea50", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea52", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb5c3141e1d61ac09ea50", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e9ac", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9ac", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ea54", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66cbb5c3141e1d61ac09ea50", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e9ae", + "_tpl": "593962ca86f774068014d9af", + "parentId": "66cbb5c3141e1d61ac09e9ac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9b0", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb5c3141e1d61ac09e9ac", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9b2", + "_tpl": "5f99418230835532b445e954", + "parentId": "66cbb5c3141e1d61ac09e9ac", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea56", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea56", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00163", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea58", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66cbb5c3141e1d61ac09ea56", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00245", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ea5a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea5a", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00142", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea5c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea5c", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea5f", - "_tpl": "5737250c2459776125652acc", - "parentId": "66cbb5c3141e1d61ac09ea5c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e9b4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9b4", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9b6", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbb5c3141e1d61ac09e9b4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 9 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9b8", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "66cbb5c3141e1d61ac09e9b4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9ba", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66cbb5c3141e1d61ac09e9b4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 37 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9bc", + "_tpl": "5c793fde2e221601da358614", + "parentId": "66cbb5c3141e1d61ac09e9b4", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9be", + "_tpl": "5b3b99475acfc432ff4dcbee", + "parentId": "66cbb5c3141e1d61ac09e9b4", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9c0", + "_tpl": "64b8ee384b75259c590fa89b", + "parentId": "66cbb5c3141e1d61ac09e9b4", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 2 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9c1", + "_tpl": "5c06c6a80db834001b735491", + "parentId": "66cbb5c3141e1d61ac09e9b4", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9c2", + "_tpl": "6571199565daf6aa960c9b10", + "parentId": "66cbb5c3141e1d61ac09e9c1", + "slotId": "Helmet_top" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e9c3", + "_tpl": "657119d49eb8c145180dbb95", + "parentId": "66cbb5c3141e1d61ac09e9c1", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb5c3141e1d61ac09e9c4", + "_tpl": "657119fea330b8c9060f7afc", + "parentId": "66cbb5c3141e1d61ac09e9c1", + "slotId": "Helmet_ears" } + ] + }, + { + "Id": "container_custom_DesignStuff_00197", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea60", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb5c3141e1d61ac09ea5f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea63", - "_tpl": "65702606cfc010a0f5006a3e", - "parentId": "66cbb5c3141e1d61ac09ea5c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e9c6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9c6", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9c8", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66cbb5c3141e1d61ac09e9c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9ca", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "66cbb5c3141e1d61ac09e9c6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9cb", + "_tpl": "651450ce0e00edc794068371", + "parentId": "66cbb5c3141e1d61ac09e9c6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9cc", + "_tpl": "57c44f4f2459772d2c627113", + "parentId": "66cbb5c3141e1d61ac09e9cb", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09e9cd", + "_tpl": "5a9e81fba2750c00164f6b11", + "parentId": "66cbb5c3141e1d61ac09e9cb", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09e9d2", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbb5c3141e1d61ac09e9cd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9ce", + "_tpl": "57c44fa82459772d2d75e415", + "parentId": "66cbb5c3141e1d61ac09e9cb", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09e9cf", + "_tpl": "57c450252459772d28133253", + "parentId": "66cbb5c3141e1d61ac09e9cb", + "slotId": "mod_stock" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e9d0", + "_tpl": "6565c3ab977bcc2dbb01c2e7", + "parentId": "66cbb5c3141e1d61ac09e9cb", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb5c3141e1d61ac09e9d1", + "_tpl": "6565c0c2ff7eb7070409084c", + "parentId": "66cbb5c3141e1d61ac09e9cb", + "slotId": "mod_foregrip" } + ] + }, + { + "Id": "container_custom_DesignStuff_00188", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea64", - "_tpl": "573718ba2459775a75491131", - "parentId": "66cbb5c3141e1d61ac09ea63", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea66", - "_tpl": "6601546f86889319850bd566", - "parentId": "66cbb5c3141e1d61ac09ea5c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 43 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e9d4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9d4", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9d6", + "_tpl": "5d40419286f774318526545f", + "parentId": "66cbb5c3141e1d61ac09e9d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ea68", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea68", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00287", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea6a", - "_tpl": "5d0378d486f77420421a5ff4", - "parentId": "66cbb5c3141e1d61ac09ea68", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea6c", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "parentId": "66cbb5c3141e1d61ac09ea68", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e9d8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9d8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e9da", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb5c3141e1d61ac09e9d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea6e", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb5c3141e1d61ac09ea68", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea70", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb5c3141e1d61ac09ea68", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00184", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea72", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea72", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ea74", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbb5c3141e1d61ac09ea72", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e9dc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9dc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ea76", - "_tpl": "62a0a0bb621468534a797ad5", - "parentId": "66cbb5c3141e1d61ac09ea72", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e9de", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66cbb5c3141e1d61ac09e9dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea78", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea78", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea7a", - "_tpl": "5780cf9e2459777df90dcb73", - "parentId": "66cbb5c3141e1d61ac09ea78", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00182", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea7c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea7c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea7e", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbb5c3141e1d61ac09ea7c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e9e0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9e0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9e2", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb5c3141e1d61ac09e9e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00124", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea80", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea80", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea82", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb5c3141e1d61ac09ea80", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e9e4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9e4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e9e6", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb5c3141e1d61ac09e9e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea84", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb5c3141e1d61ac09ea80", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e9e8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9e8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9ea", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb5c3141e1d61ac09e9e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00183", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea86", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea86", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00213", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea88", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb5c3141e1d61ac09ea86", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09e9ec", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9ec", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9ee", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66cbb5c3141e1d61ac09e9ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9ef", + "_tpl": "5e81c3cbac2bb513793cdc75", + "parentId": "66cbb5c3141e1d61ac09e9ec", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9f0", + "_tpl": "5e81c519cb2b95385c177551", + "parentId": "66cbb5c3141e1d61ac09e9ef", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09e9f1", + "_tpl": "5e81c6bf763d9f754677beff", + "parentId": "66cbb5c3141e1d61ac09e9ef", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09e9f2", + "_tpl": "5e81edc13397a21db957f6a1", + "parentId": "66cbb5c3141e1d61ac09e9ef", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09e9f3", + "_tpl": "5e81ee4dcb2b95385c177582", + "parentId": "66cbb5c3141e1d61ac09e9f2", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09e9f4", + "_tpl": "5e81ee213397a21db957f6a6", + "parentId": "66cbb5c3141e1d61ac09e9f2", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb5c3141e1d61ac09e9f5", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "66cbb5c3141e1d61ac09e9ef", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09e9f9", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbb5c3141e1d61ac09e9f5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2.0 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09e9f6", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "parentId": "66cbb5c3141e1d61ac09e9ef", + "slotId": "mod_trigger" + }, + { + "_id": "66cbb5c3141e1d61ac09e9f7", + "_tpl": "5e81c550763d9f754677befd", + "parentId": "66cbb5c3141e1d61ac09e9ef", + "slotId": "mod_hammer" + }, + { + "_id": "66cbb5c3141e1d61ac09e9f8", + "_tpl": "5e81c539cb2b95385c177553", + "parentId": "66cbb5c3141e1d61ac09e9ef", + "slotId": "mod_catch" } + ] + }, + { + "Id": "container_custom_DesignStuff_00246", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea8a", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb5c3141e1d61ac09ea86", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09e9fb", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09e9fb", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9fd", + "_tpl": "5ae35b315acfc4001714e8b0", + "parentId": "66cbb5c3141e1d61ac09e9fb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09e9ff", + "_tpl": "655dccfdbdcc6b5df71382b6", + "parentId": "66cbb5c3141e1d61ac09e9fb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea00", + "_tpl": "609e8540d5c319764c2bc2e9", + "parentId": "66cbb5c3141e1d61ac09e9fb", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea01", + "_tpl": "6572e5221b5bc1185508c24f", + "parentId": "66cbb5c3141e1d61ac09ea00", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbb5c3141e1d61ac09ea02", + "_tpl": "6572e52f73c0eabb700109a0", + "parentId": "66cbb5c3141e1d61ac09ea00", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbb5c3141e1d61ac09ea03", + "_tpl": "6572e53c73c0eabb700109a4", + "parentId": "66cbb5c3141e1d61ac09ea00", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbb5c3141e1d61ac09ea04", + "_tpl": "6572e54873c0eabb700109a8", + "parentId": "66cbb5c3141e1d61ac09ea00", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbb5c3141e1d61ac09ea05", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "66cbb5c3141e1d61ac09ea00", + "slotId": "Front_plate" + }, + { + "_id": "66cbb5c3141e1d61ac09ea06", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "66cbb5c3141e1d61ac09ea00", + "slotId": "Back_plate" + }, + { + "_id": "66cbb5c3141e1d61ac09ea08", + "_tpl": "618ba27d9008e4636a67f61d", + "parentId": "66cbb5c3141e1d61ac09e9fb", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ea0a", + "_tpl": "5c1bc5af2e221602b412949b", + "parentId": "66cbb5c3141e1d61ac09e9fb", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00187", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea8c", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb5c3141e1d61ac09ea86", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea0c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea0c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea0e", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb5c3141e1d61ac09ea0c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea10", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb5c3141e1d61ac09ea0c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00256", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea8e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea8e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00332", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea90", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb5c3141e1d61ac09ea8e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea12", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea12", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ea14", + "_tpl": "5d03784a86f774203e7e0c4d", + "parentId": "66cbb5c3141e1d61ac09ea12", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea92", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb5c3141e1d61ac09ea8e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea16", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea16", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea18", + "_tpl": "5448c1d04bdc2dff2f8b4569", + "parentId": "66cbb5c3141e1d61ac09ea16", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ea1a", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "66cbb5c3141e1d61ac09ea16", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00275", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea94", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb5c3141e1d61ac09ea8e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea1c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea1c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea1e", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbb5c3141e1d61ac09ea1c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00389", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea96", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea96", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea98", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb5c3141e1d61ac09ea96", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea20", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea20", + "_tpl": "59387ac686f77401442ddd61", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea22", + "_tpl": "590c657e86f77412b013051d", + "parentId": "66cbb5c3141e1d61ac09ea20", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00088", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea9a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea9a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00367", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ea9c", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb5c3141e1d61ac09ea9a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00131", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ea9e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ea9e", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eaa0", - "_tpl": "618b9682a3884f56c957ca78", - "parentId": "66cbb5c3141e1d61ac09ea9e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea24", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea24", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eaa2", - "_tpl": "58889c7324597754281f9439", - "parentId": "66cbb5c3141e1d61ac09ea9e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ea26", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb5c3141e1d61ac09ea24", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea28", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66cbb5c3141e1d61ac09ea24", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea2a", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66cbb5c3141e1d61ac09ea24", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea2c", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb5c3141e1d61ac09ea24", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00375", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eaa4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eaa4", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00206", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eaa6", - "_tpl": "5af0534a86f7743b6f354284", - "parentId": "66cbb5c3141e1d61ac09eaa4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eaa8", - "_tpl": "5673de654bdc2d180f8b456d", - "parentId": "66cbb5c3141e1d61ac09eaa4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea2e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea2e", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea30", + "_tpl": "5ef366938cef260c0642acad", + "parentId": "66cbb5c3141e1d61ac09ea2e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea32", + "_tpl": "620109578d82e67e7911abf2", + "parentId": "66cbb5c3141e1d61ac09ea2e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00094", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eaaa", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eaaa", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00122", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eaac", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09eaaa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 764 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00308", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eaae", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eaae", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eaaf", - "_tpl": "5644bd2b4bdc2d3b4c8b4572", - "parentId": "66cbb5c3141e1d61ac09eaae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea34", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea34", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb5c3141e1d61ac09ea36", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb5c3141e1d61ac09ea34", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_custom_DesignStuff_00288", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eab0", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb5c3141e1d61ac09eaaf", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb5c3141e1d61ac09eab1", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "66cbb5c3141e1d61ac09eab0", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eab2", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "66cbb5c3141e1d61ac09eaaf", - "slotId": "mod_muzzle" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea38", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea38", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea3a", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb5c3141e1d61ac09ea38", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea3c", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb5c3141e1d61ac09ea38", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea3e", + "_tpl": "59faff1d86f7746c51718c9c", + "parentId": "66cbb5c3141e1d61ac09ea38", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_custom_DesignStuff_00306", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eab3", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "66cbb5c3141e1d61ac09eaaf", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eab4", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "66cbb5c3141e1d61ac09eaaf", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea40", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea40", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea41", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "parentId": "66cbb5c3141e1d61ac09ea40", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea42", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb5c3141e1d61ac09ea41", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb5c3141e1d61ac09ea43", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "66cbb5c3141e1d61ac09ea42", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb5c3141e1d61ac09ea44", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "66cbb5c3141e1d61ac09ea41", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09ea45", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "66cbb5c3141e1d61ac09ea41", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09ea46", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "66cbb5c3141e1d61ac09ea41", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09ea47", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "66cbb5c3141e1d61ac09ea41", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09ea48", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "66cbb5c3141e1d61ac09ea41", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09ea49", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb5c3141e1d61ac09ea41", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ea4a", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb5c3141e1d61ac09ea49", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 26.0 + } + } + ] + }, + { + "Id": "container_custom_DesignStuff_00316", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eab5", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "66cbb5c3141e1d61ac09eaaf", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eab6", - "_tpl": "5649b1c04bdc2d16268b457c", - "parentId": "66cbb5c3141e1d61ac09eaaf", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea4c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea4c", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea4e", + "_tpl": "64c196ad26a15b84aa07132f", + "parentId": "66cbb5c3141e1d61ac09ea4c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_custom_DesignStuff_00266", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eab7", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb5c3141e1d61ac09eaaf", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eab8", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb5c3141e1d61ac09eab7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 14.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea50", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea50", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea52", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb5c3141e1d61ac09ea50", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea54", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66cbb5c3141e1d61ac09ea50", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00207", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eaba", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eaba", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eabc", - "_tpl": "5ea034eb5aad6446a939737b", - "parentId": "66cbb5c3141e1d61ac09eaba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea56", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea56", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ea58", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66cbb5c3141e1d61ac09ea56", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00245", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eabe", - "_tpl": "5c503ad32e2216398b5aada2", - "parentId": "66cbb5c3141e1d61ac09eaba", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ea5a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea5a", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00119", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eac0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eac0", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00142", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eac2", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb5c3141e1d61ac09eac0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eac4", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb5c3141e1d61ac09eac0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea5c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea5c", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea5f", + "_tpl": "5737250c2459776125652acc", + "parentId": "66cbb5c3141e1d61ac09ea5c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea60", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb5c3141e1d61ac09ea5f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea63", + "_tpl": "65702606cfc010a0f5006a3e", + "parentId": "66cbb5c3141e1d61ac09ea5c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea64", + "_tpl": "573718ba2459775a75491131", + "parentId": "66cbb5c3141e1d61ac09ea63", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea66", + "_tpl": "6601546f86889319850bd566", + "parentId": "66cbb5c3141e1d61ac09ea5c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 43 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eac6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eac6", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eac8", - "_tpl": "5780cf942459777df90dcb72", - "parentId": "66cbb5c3141e1d61ac09eac6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00079", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eaca", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eaca", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eacc", - "_tpl": "5ad5cfbd86f7742c825d6104", - "parentId": "66cbb5c3141e1d61ac09eaca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00250", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eace", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eace", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ea68", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea68", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea6a", + "_tpl": "5d0378d486f77420421a5ff4", + "parentId": "66cbb5c3141e1d61ac09ea68", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea6c", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "parentId": "66cbb5c3141e1d61ac09ea68", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea6e", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb5c3141e1d61ac09ea68", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea70", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb5c3141e1d61ac09ea68", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00349", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ead0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ead0", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00184", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ead2", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66cbb5c3141e1d61ac09ead0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00102", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ead4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ead4", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ead6", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb5c3141e1d61ac09ead4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea72", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea72", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea74", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbb5c3141e1d61ac09ea72", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea76", + "_tpl": "62a0a0bb621468534a797ad5", + "parentId": "66cbb5c3141e1d61ac09ea72", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ead8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ead8", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eada", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb5c3141e1d61ac09ead8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00363", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eadc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eadc", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eade", - "_tpl": "5673de654bdc2d180f8b456d", - "parentId": "66cbb5c3141e1d61ac09eadc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea78", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea78", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ea7a", + "_tpl": "5780cf9e2459777df90dcb73", + "parentId": "66cbb5c3141e1d61ac09ea78", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00182", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eae0", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66cbb5c3141e1d61ac09eadc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eae2", - "_tpl": "5ac4c50d5acfc40019262e87", - "parentId": "66cbb5c3141e1d61ac09eadc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea7c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea7c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ea7e", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbb5c3141e1d61ac09ea7c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00124", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eae4", - "_tpl": "5e2af4d286f7746d4159f07a", - "parentId": "66cbb5c3141e1d61ac09eadc", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eae6", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "parentId": "66cbb5c3141e1d61ac09eadc", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea80", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea80", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea82", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb5c3141e1d61ac09ea80", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea84", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb5c3141e1d61ac09ea80", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00216", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eae8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eae8", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eae9", - "_tpl": "57f4c844245977379d5c14d1", - "parentId": "66cbb5c3141e1d61ac09eae8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eaea", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66cbb5c3141e1d61ac09eae9", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09eaeb", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbb5c3141e1d61ac09eae9", - "slotId": "mod_magazine" + { + "Id": "container_custom_DesignStuff_00183", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eaec", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb5c3141e1d61ac09eaeb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 29.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eaee", - "_tpl": "5ede475339ee016e8c534742", - "parentId": "66cbb5c3141e1d61ac09eae8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea86", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea86", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eaf0", - "_tpl": "5bffec120db834001c38f5fa", - "parentId": "66cbb5c3141e1d61ac09eae8", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ea88", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb5c3141e1d61ac09ea86", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eaf2", - "_tpl": "5d0a3a58d7ad1a669c15ca14", - "parentId": "66cbb5c3141e1d61ac09eae8", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ea8a", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb5c3141e1d61ac09ea86", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ea8c", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb5c3141e1d61ac09ea86", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00256", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eaf4", - "_tpl": "5cc80f53e4a949000e1ea4f8", - "parentId": "66cbb5c3141e1d61ac09eae8", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 8 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eaf6", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbb5c3141e1d61ac09eae8", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea8e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea8e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eaf8", - "_tpl": "58272d7f2459774f6311ddfd", - "parentId": "66cbb5c3141e1d61ac09eae8", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ea90", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb5c3141e1d61ac09ea8e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eafa", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbb5c3141e1d61ac09eae8", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ea92", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb5c3141e1d61ac09ea8e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 55 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eafc", - "_tpl": "623c3c1f37b4b31470357737", - "parentId": "66cbb5c3141e1d61ac09eae8", - "slotId": "main", - "location": { - "x": 2, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ea94", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb5c3141e1d61ac09ea8e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00159", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eafe", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eafe", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00389", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb00", - "_tpl": "5af0548586f7743a532b7e99", - "parentId": "66cbb5c3141e1d61ac09eafe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00351", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb02", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb02", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb04", - "_tpl": "62a5c2c98ec41a51b34739c0", - "parentId": "66cbb5c3141e1d61ac09eb02", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea96", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea96", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ea98", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb5c3141e1d61ac09ea96", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00088", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb06", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb5c3141e1d61ac09eb02", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea9a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea9a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ea9c", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb5c3141e1d61ac09ea9a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00135", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eb08", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb08", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00131", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb0a", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66cbb5c3141e1d61ac09eb08", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00045", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eb0c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb0c", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb0e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09eb0c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ea9e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ea9e", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1119 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eb10", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09eb0c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1122 + { + "_id": "66cbb5c3141e1d61ac09eaa0", + "_tpl": "618b9682a3884f56c957ca78", + "parentId": "66cbb5c3141e1d61ac09ea9e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eaa2", + "_tpl": "58889c7324597754281f9439", + "parentId": "66cbb5c3141e1d61ac09ea9e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00147", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb12", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb12", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00375", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb15", - "_tpl": "657025bbcfc010a0f5006a35", - "parentId": "66cbb5c3141e1d61ac09eb12", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eaa4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eaa4", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eaa6", + "_tpl": "5af0534a86f7743b6f354284", + "parentId": "66cbb5c3141e1d61ac09eaa4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eaa8", + "_tpl": "5673de654bdc2d180f8b456d", + "parentId": "66cbb5c3141e1d61ac09eaa4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00094", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb16", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbb5c3141e1d61ac09eb15", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb18", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb5c3141e1d61ac09eb12", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eaaa", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eaaa", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 43 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eb1a", - "_tpl": "6576f96220d53a5b8f3e395e", - "parentId": "66cbb5c3141e1d61ac09eb12", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 12 + { + "_id": "66cbb5c3141e1d61ac09eaac", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09eaaa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 764 + } } - } - ] - }, - { - "Id": "Lootable_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eb1c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb1c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00308", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb1e", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb5c3141e1d61ac09eb1c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eb20", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb20", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb22", - "_tpl": "5913611c86f77479e0084092", - "parentId": "66cbb5c3141e1d61ac09eb20", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eaae", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eaae", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eaaf", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "parentId": "66cbb5c3141e1d61ac09eaae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09eab0", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb5c3141e1d61ac09eaaf", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb5c3141e1d61ac09eab1", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "66cbb5c3141e1d61ac09eab0", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb5c3141e1d61ac09eab2", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "66cbb5c3141e1d61ac09eaaf", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09eab3", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "66cbb5c3141e1d61ac09eaaf", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09eab4", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "66cbb5c3141e1d61ac09eaaf", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09eab5", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "66cbb5c3141e1d61ac09eaaf", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09eab6", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "66cbb5c3141e1d61ac09eaaf", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09eab7", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb5c3141e1d61ac09eaaf", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09eab8", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb5c3141e1d61ac09eab7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 14.0 + } } - } - ] - }, - { - "Id": "Lootable_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eb24", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb24", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00207", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb26", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09eb24", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 42 - } - } - ] - }, - { - "Id": "Lootable_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eb28", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb28", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb2a", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb5c3141e1d61ac09eb28", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eaba", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eaba", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eabc", + "_tpl": "5ea034eb5aad6446a939737b", + "parentId": "66cbb5c3141e1d61ac09eaba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eabe", + "_tpl": "5c503ad32e2216398b5aada2", + "parentId": "66cbb5c3141e1d61ac09eaba", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00199", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb2c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb2c", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00119", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb2e", - "_tpl": "609b9e31506cf869cf3eaf41", - "parentId": "66cbb5c3141e1d61ac09eb2c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00118", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb30", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb30", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb32", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb5c3141e1d61ac09eb30", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eac0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eac0", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eac2", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb5c3141e1d61ac09eac0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eac4", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb5c3141e1d61ac09eac0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb34", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb5c3141e1d61ac09eb30", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eac6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eac6", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eac8", + "_tpl": "5780cf942459777df90dcb72", + "parentId": "66cbb5c3141e1d61ac09eac6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00083", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb36", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb36", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00079", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb38", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb5c3141e1d61ac09eb36", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eaca", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eaca", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eacc", + "_tpl": "5ad5cfbd86f7742c825d6104", + "parentId": "66cbb5c3141e1d61ac09eaca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00112", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb3a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb3a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00250", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb3c", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb5c3141e1d61ac09eb3a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eace", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eace", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00152", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb3e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb3e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00349", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb40", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb5c3141e1d61ac09eb3e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb42", - "_tpl": "57513f9324597720a7128161", - "parentId": "66cbb5c3141e1d61ac09eb3e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ead0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ead0", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ead2", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66cbb5c3141e1d61ac09ead0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00102", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb44", - "_tpl": "60b0f7057897d47c5b04ab94", - "parentId": "66cbb5c3141e1d61ac09eb3e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb46", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb46", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb48", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb5c3141e1d61ac09eb46", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ead4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ead4", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ead6", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb5c3141e1d61ac09ead4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00338", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb4a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb4a", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb4c", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66cbb5c3141e1d61ac09eb4a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb4e", - "_tpl": "5a0060fc86f7745793204432", - "parentId": "66cbb5c3141e1d61ac09eb4a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ead8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ead8", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eada", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb5c3141e1d61ac09ead8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00295", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb50", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb50", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00363", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb52", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb5c3141e1d61ac09eb50", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00200", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb54", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb54", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb56", - "_tpl": "609a4b4fe2ff132951242d04", - "parentId": "66cbb5c3141e1d61ac09eb54", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eadc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eadc", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eb58", - "_tpl": "57ffa9f4245977728561e844", - "parentId": "66cbb5c3141e1d61ac09eb54", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09eade", + "_tpl": "5673de654bdc2d180f8b456d", + "parentId": "66cbb5c3141e1d61ac09eadc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eb5b", - "_tpl": "5c1260dc86f7746b106e8748", - "parentId": "66cbb5c3141e1d61ac09eb54", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09eae0", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66cbb5c3141e1d61ac09eadc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eb5c", - "_tpl": "5c0d688c86f77413ae3407b2", - "parentId": "66cbb5c3141e1d61ac09eb5b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 + { + "_id": "66cbb5c3141e1d61ac09eae2", + "_tpl": "5ac4c50d5acfc40019262e87", + "parentId": "66cbb5c3141e1d61ac09eadc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eae4", + "_tpl": "5e2af4d286f7746d4159f07a", + "parentId": "66cbb5c3141e1d61ac09eadc", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eae6", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "parentId": "66cbb5c3141e1d61ac09eadc", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00255", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb5e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb5e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00216", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb60", - "_tpl": "5d403f9186f7743cac3f229b", - "parentId": "66cbb5c3141e1d61ac09eb5e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00193", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb62", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb62", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb64", - "_tpl": "60361a7497633951dc245eb4", - "parentId": "66cbb5c3141e1d61ac09eb62", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eae8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eae8", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eb66", - "_tpl": "5b43575a86f77424f443fe62", - "parentId": "66cbb5c3141e1d61ac09eb62", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09eae9", + "_tpl": "57f4c844245977379d5c14d1", + "parentId": "66cbb5c3141e1d61ac09eae8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eb67", - "_tpl": "5b40e2bc5acfc40016388216", - "parentId": "66cbb5c3141e1d61ac09eb62", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09eaea", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66cbb5c3141e1d61ac09eae9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09eaeb", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbb5c3141e1d61ac09eae9", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09eaec", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb5c3141e1d61ac09eaeb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 29.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eaee", + "_tpl": "5ede475339ee016e8c534742", + "parentId": "66cbb5c3141e1d61ac09eae8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eaf0", + "_tpl": "5bffec120db834001c38f5fa", + "parentId": "66cbb5c3141e1d61ac09eae8", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eaf2", + "_tpl": "5d0a3a58d7ad1a669c15ca14", + "parentId": "66cbb5c3141e1d61ac09eae8", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eaf4", + "_tpl": "5cc80f53e4a949000e1ea4f8", + "parentId": "66cbb5c3141e1d61ac09eae8", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eaf6", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbb5c3141e1d61ac09eae8", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eaf8", + "_tpl": "58272d7f2459774f6311ddfd", + "parentId": "66cbb5c3141e1d61ac09eae8", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eafa", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbb5c3141e1d61ac09eae8", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 55 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eafc", + "_tpl": "623c3c1f37b4b31470357737", + "parentId": "66cbb5c3141e1d61ac09eae8", + "slotId": "main", + "location": { + "x": 2, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00159", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb68", - "_tpl": "657112234269e9a568089eac", - "parentId": "66cbb5c3141e1d61ac09eb67", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb5c3141e1d61ac09eb69", - "_tpl": "657112a4818110db4600aa66", - "parentId": "66cbb5c3141e1d61ac09eb67", - "slotId": "Helmet_back" - }, - { - "_id": "66cbb5c3141e1d61ac09eb6a", - "_tpl": "657112ce22996eaf110881fb", - "parentId": "66cbb5c3141e1d61ac09eb67", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb6c", - "_tpl": "620109578d82e67e7911abf2", - "parentId": "66cbb5c3141e1d61ac09eb62", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eafe", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eafe", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb00", + "_tpl": "5af0548586f7743a532b7e99", + "parentId": "66cbb5c3141e1d61ac09eafe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00201", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb6e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb6e", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00351", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb70", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb5c3141e1d61ac09eb6e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 29 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00179", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb72", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb72", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb74", - "_tpl": "6389c6c7dbfd5e4b95197e68", - "parentId": "66cbb5c3141e1d61ac09eb72", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb02", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb02", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eb76", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66cbb5c3141e1d61ac09eb72", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb04", + "_tpl": "62a5c2c98ec41a51b34739c0", + "parentId": "66cbb5c3141e1d61ac09eb02", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb06", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb5c3141e1d61ac09eb02", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00056", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb78", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb78", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00135", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb7a", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb5c3141e1d61ac09eb78", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eb08", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb08", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 37 + { + "_id": "66cbb5c3141e1d61ac09eb0a", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66cbb5c3141e1d61ac09eb08", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00045", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb7c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09eb78", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eb0c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb0c", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb0e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09eb0c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1119 + } }, - "upd": { - "StackObjectsCount": 937 + { + "_id": "66cbb5c3141e1d61ac09eb10", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09eb0c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1122 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00147", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb7e", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbb5c3141e1d61ac09eb78", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00177", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb80", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb80", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb82", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb5c3141e1d61ac09eb80", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb12", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb12", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb15", + "_tpl": "657025bbcfc010a0f5006a35", + "parentId": "66cbb5c3141e1d61ac09eb12", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb16", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbb5c3141e1d61ac09eb15", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb18", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb5c3141e1d61ac09eb12", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 43 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb1a", + "_tpl": "6576f96220d53a5b8f3e395e", + "parentId": "66cbb5c3141e1d61ac09eb12", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 12 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00202", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb84", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb84", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb86", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb5c3141e1d61ac09eb84", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb88", - "_tpl": "591c4efa86f7741030027726", - "parentId": "66cbb5c3141e1d61ac09eb84", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eb1c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb1c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb1e", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb5c3141e1d61ac09eb1c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00170", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb8a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb8a", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb8c", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb5c3141e1d61ac09eb8a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00190", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb8e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb8e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb90", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb5c3141e1d61ac09eb8e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eb20", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb20", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eb92", - "_tpl": "590c2d8786f774245b1f03f3", - "parentId": "66cbb5c3141e1d61ac09eb8e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb22", + "_tpl": "5913611c86f77479e0084092", + "parentId": "66cbb5c3141e1d61ac09eb20", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00096", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb94", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb94", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb96", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb5c3141e1d61ac09eb94", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00307", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eb98", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb98", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb9a", - "_tpl": "628c9ab845c59e5b80768a81", - "parentId": "66cbb5c3141e1d61ac09eb98", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eb24", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb24", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb26", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09eb24", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 42 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eb9c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eb9c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eb9e", - "_tpl": "5780cf942459777df90dcb72", - "parentId": "66cbb5c3141e1d61ac09eb9c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eba0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eba0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eba2", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb5c3141e1d61ac09eba0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eb28", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb28", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb2a", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb5c3141e1d61ac09eb28", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eba4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eba4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00199", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eba6", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb5c3141e1d61ac09eba4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eba8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eba8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebaa", - "_tpl": "5780cf942459777df90dcb72", - "parentId": "66cbb5c3141e1d61ac09eba8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb2c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb2c", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb2e", + "_tpl": "609b9e31506cf869cf3eaf41", + "parentId": "66cbb5c3141e1d61ac09eb2c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00126", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ebac", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebac", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00118", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebae", - "_tpl": "628a85ee6b1d481ff772e9d5", - "parentId": "66cbb5c3141e1d61ac09ebac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebb0", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbb5c3141e1d61ac09ebac", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb30", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb30", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 26 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ebb2", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "66cbb5c3141e1d61ac09ebac", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09eb32", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb5c3141e1d61ac09eb30", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb34", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb5c3141e1d61ac09eb30", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00083", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebb4", - "_tpl": "57ffa9f4245977728561e844", - "parentId": "66cbb5c3141e1d61ac09ebac", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb36", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb36", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb38", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb5c3141e1d61ac09eb36", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00112", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebb6", - "_tpl": "5888961624597754281f93f3", - "parentId": "66cbb5c3141e1d61ac09ebac", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb3a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb3a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb3c", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb5c3141e1d61ac09eb3a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00152", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebb8", - "_tpl": "5c87a07c2e2216001219d4a2", - "parentId": "66cbb5c3141e1d61ac09ebac", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb3e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb3e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb40", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb5c3141e1d61ac09eb3e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb42", + "_tpl": "57513f9324597720a7128161", + "parentId": "66cbb5c3141e1d61ac09eb3e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb44", + "_tpl": "60b0f7057897d47c5b04ab94", + "parentId": "66cbb5c3141e1d61ac09eb3e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebba", - "_tpl": "576a7c512459771e796e0e17", - "parentId": "66cbb5c3141e1d61ac09ebac", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb46", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb46", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb48", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb5c3141e1d61ac09eb46", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb5c3141e1d61ac09ebbc", - "_tpl": "5fce16961f152d4312622bc9", - "parentId": "66cbb5c3141e1d61ac09ebac", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00121", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ebbe", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebbe", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00338", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebc0", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb5c3141e1d61ac09ebbe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebc2", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb5c3141e1d61ac09ebbe", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb4a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb4a", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb4c", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66cbb5c3141e1d61ac09eb4a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb4e", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "66cbb5c3141e1d61ac09eb4a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ebc4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebc4", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00295", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebc6", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb5c3141e1d61ac09ebc4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00062", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ebc8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebc8", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebc9", - "_tpl": "59e7711e86f7746cae05fbe1", - "parentId": "66cbb5c3141e1d61ac09ebc8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb50", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb50", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb52", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb5c3141e1d61ac09eb50", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00200", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebca", - "_tpl": "657ba50c23918923cb0df56c", - "parentId": "66cbb5c3141e1d61ac09ebc9", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb5c3141e1d61ac09ebcb", - "_tpl": "657ba5439ba22f103e08139f", - "parentId": "66cbb5c3141e1d61ac09ebc9", - "slotId": "Helmet_back" - }, - { - "_id": "66cbb5c3141e1d61ac09ebcc", - "_tpl": "657ba57af58ba5a62501079e", - "parentId": "66cbb5c3141e1d61ac09ebc9", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebce", - "_tpl": "5b43575a86f77424f443fe62", - "parentId": "66cbb5c3141e1d61ac09ebc8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb54", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb54", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb56", + "_tpl": "609a4b4fe2ff132951242d04", + "parentId": "66cbb5c3141e1d61ac09eb54", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb58", + "_tpl": "57ffa9f4245977728561e844", + "parentId": "66cbb5c3141e1d61ac09eb54", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb5b", + "_tpl": "5c1260dc86f7746b106e8748", + "parentId": "66cbb5c3141e1d61ac09eb54", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb5c", + "_tpl": "5c0d688c86f77413ae3407b2", + "parentId": "66cbb5c3141e1d61ac09eb5b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00329", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ebd0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebd0", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00255", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebd1", - "_tpl": "574d967124597745970e7c94", - "parentId": "66cbb5c3141e1d61ac09ebd0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb5e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb5e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66cbb5c3141e1d61ac09eb60", + "_tpl": "5d403f9186f7743cac3f229b", + "parentId": "66cbb5c3141e1d61ac09eb5e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_custom_DesignStuff_00193", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebd2", - "_tpl": "574dad8024597745964bf05c", - "parentId": "66cbb5c3141e1d61ac09ebd1", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09ebd3", - "_tpl": "634f02331f9f536910079b51", - "parentId": "66cbb5c3141e1d61ac09ebd1", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09ebd4", - "_tpl": "634f04d82e5def262d0b30c6", - "parentId": "66cbb5c3141e1d61ac09ebd3", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbb5c3141e1d61ac09ebd5", - "_tpl": "634f02d7517ccc8a960fc744", - "parentId": "66cbb5c3141e1d61ac09ebd4", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb5c3141e1d61ac09ebd6", - "_tpl": "634f08a21f9f536910079b5a", - "parentId": "66cbb5c3141e1d61ac09ebd5", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbb5c3141e1d61ac09ebd7", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "66cbb5c3141e1d61ac09ebd4", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09ebd8", - "_tpl": "587df3a12459772c28142567", - "parentId": "66cbb5c3141e1d61ac09ebd1", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebda", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb5c3141e1d61ac09ebd8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb62", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb62", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb64", + "_tpl": "60361a7497633951dc245eb4", + "parentId": "66cbb5c3141e1d61ac09eb62", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb66", + "_tpl": "5b43575a86f77424f443fe62", + "parentId": "66cbb5c3141e1d61ac09eb62", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb67", + "_tpl": "5b40e2bc5acfc40016388216", + "parentId": "66cbb5c3141e1d61ac09eb62", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb68", + "_tpl": "657112234269e9a568089eac", + "parentId": "66cbb5c3141e1d61ac09eb67", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb5c3141e1d61ac09eb69", + "_tpl": "657112a4818110db4600aa66", + "parentId": "66cbb5c3141e1d61ac09eb67", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb5c3141e1d61ac09eb6a", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "66cbb5c3141e1d61ac09eb67", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbb5c3141e1d61ac09eb6c", + "_tpl": "620109578d82e67e7911abf2", + "parentId": "66cbb5c3141e1d61ac09eb62", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb5c3141e1d61ac09ebd9", - "_tpl": "634f05ca517ccc8a960fc748", - "parentId": "66cbb5c3141e1d61ac09ebd1", - "slotId": "mod_reciever" - } - ] - }, - { - "Id": "container_custom_DesignStuff_00249", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ebdc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebdc", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00201", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebde", - "_tpl": "5c5db6552e2216001026119d", - "parentId": "66cbb5c3141e1d61ac09ebdc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebe0", - "_tpl": "5dfa3d2b0dee1b22f862eade", - "parentId": "66cbb5c3141e1d61ac09ebdc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb6e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb6e", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb70", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb5c3141e1d61ac09eb6e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 29 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00179", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebe2", - "_tpl": "6516e971a3d4c6497930b450", - "parentId": "66cbb5c3141e1d61ac09ebdc", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb72", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb72", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb74", + "_tpl": "6389c6c7dbfd5e4b95197e68", + "parentId": "66cbb5c3141e1d61ac09eb72", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb76", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66cbb5c3141e1d61ac09eb72", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00056", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebe4", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb5c3141e1d61ac09ebdc", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb78", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb78", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb7a", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb5c3141e1d61ac09eb78", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 37 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb7c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09eb78", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 937 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb7e", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbb5c3141e1d61ac09eb78", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00177", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebe6", - "_tpl": "5addcce35acfc4001a5fc635", - "parentId": "66cbb5c3141e1d61ac09ebdc", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb80", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb80", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb82", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb5c3141e1d61ac09eb80", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00130", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ebe8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebe8", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00202", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebea", - "_tpl": "5cdd7693d7f00c0010373aa5", - "parentId": "66cbb5c3141e1d61ac09ebe8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb84", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb84", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb86", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb5c3141e1d61ac09eb84", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb88", + "_tpl": "591c4efa86f7741030027726", + "parentId": "66cbb5c3141e1d61ac09eb84", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00170", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebec", - "_tpl": "5c82343a2e221644f31c0611", - "parentId": "66cbb5c3141e1d61ac09ebe8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb8a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb8a", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb8c", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb5c3141e1d61ac09eb8a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00190", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebee", - "_tpl": "5d5d8ca986f7742798716522", - "parentId": "66cbb5c3141e1d61ac09ebe8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00031", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ebf0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebf0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebf2", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb5c3141e1d61ac09ebf0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb8e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb8e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb90", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb5c3141e1d61ac09eb8e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb92", + "_tpl": "590c2d8786f774245b1f03f3", + "parentId": "66cbb5c3141e1d61ac09eb8e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00030", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ebf4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebf4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00096", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebf6", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb5c3141e1d61ac09ebf4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00029", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ebf8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebf8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebfa", - "_tpl": "590c621186f774138d11ea29", - "parentId": "66cbb5c3141e1d61ac09ebf8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb94", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb94", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb96", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb5c3141e1d61ac09eb94", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ebfc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ebfc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00307", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ebfe", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb5c3141e1d61ac09ebfc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec00", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec00", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec02", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb5c3141e1d61ac09ec00", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eb98", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb98", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eb9a", + "_tpl": "628c9ab845c59e5b80768a81", + "parentId": "66cbb5c3141e1d61ac09eb98", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00278", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec04", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec04", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec06", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb5c3141e1d61ac09ec04", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00051", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ec08", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec08", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec0a", - "_tpl": "5b43575a86f77424f443fe62", - "parentId": "66cbb5c3141e1d61ac09ec08", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eb9c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eb9c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eb9e", + "_tpl": "5780cf942459777df90dcb72", + "parentId": "66cbb5c3141e1d61ac09eb9c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec0c", - "_tpl": "5733279d245977289b77ec24", - "parentId": "66cbb5c3141e1d61ac09ec08", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec0e", - "_tpl": "5d40419286f774318526545f", - "parentId": "66cbb5c3141e1d61ac09ec08", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eba0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eba0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eba2", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb5c3141e1d61ac09eba0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec10", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec10", - "_tpl": "5937ef2b86f77408a47244b3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec12", - "_tpl": "5937ee6486f77408994ba448", - "parentId": "66cbb5c3141e1d61ac09ec10", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec14", - "_tpl": "5937ee6486f77408994ba448", - "parentId": "66cbb5c3141e1d61ac09ec10", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eba4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eba4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eba6", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb5c3141e1d61ac09eba4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00310", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec16", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec16", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec18", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb5c3141e1d61ac09ec16", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 30 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec1c", - "_tpl": "57372fc52459776998772ca1", - "parentId": "66cbb5c3141e1d61ac09ec16", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eba8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eba8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ebaa", + "_tpl": "5780cf942459777df90dcb72", + "parentId": "66cbb5c3141e1d61ac09eba8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00126", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec1d", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb5c3141e1d61ac09ec1c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec1e", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb5c3141e1d61ac09ec1c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ebac", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebac", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebae", + "_tpl": "628a85ee6b1d481ff772e9d5", + "parentId": "66cbb5c3141e1d61ac09ebac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebb0", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbb5c3141e1d61ac09ebac", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 26 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebb2", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "66cbb5c3141e1d61ac09ebac", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebb4", + "_tpl": "57ffa9f4245977728561e844", + "parentId": "66cbb5c3141e1d61ac09ebac", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebb6", + "_tpl": "5888961624597754281f93f3", + "parentId": "66cbb5c3141e1d61ac09ebac", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebb8", + "_tpl": "5c87a07c2e2216001219d4a2", + "parentId": "66cbb5c3141e1d61ac09ebac", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebba", + "_tpl": "576a7c512459771e796e0e17", + "parentId": "66cbb5c3141e1d61ac09ebac", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebbc", + "_tpl": "5fce16961f152d4312622bc9", + "parentId": "66cbb5c3141e1d61ac09ebac", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec20", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec20", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00121", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec22", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb5c3141e1d61ac09ec20", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ebbe", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebbe", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebc0", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb5c3141e1d61ac09ebbe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebc2", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb5c3141e1d61ac09ebbe", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00238", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec24", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec24", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec26", - "_tpl": "60658776f2cb2e02a42ace2b", - "parentId": "66cbb5c3141e1d61ac09ec24", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ebc4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebc4", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebc6", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb5c3141e1d61ac09ebc4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00095", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec28", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec28", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00062", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec2a", - "_tpl": "591ae8f986f77406f854be45", - "parentId": "66cbb5c3141e1d61ac09ec28", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00128", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ec2c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec2c", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec2d", - "_tpl": "5ac4cd105acfc40016339859", - "parentId": "66cbb5c3141e1d61ac09ec2c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ebc8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebc8", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebc9", + "_tpl": "59e7711e86f7746cae05fbe1", + "parentId": "66cbb5c3141e1d61ac09ebc8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebca", + "_tpl": "657ba50c23918923cb0df56c", + "parentId": "66cbb5c3141e1d61ac09ebc9", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb5c3141e1d61ac09ebcb", + "_tpl": "657ba5439ba22f103e08139f", + "parentId": "66cbb5c3141e1d61ac09ebc9", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb5c3141e1d61ac09ebcc", + "_tpl": "657ba57af58ba5a62501079e", + "parentId": "66cbb5c3141e1d61ac09ebc9", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbb5c3141e1d61ac09ebce", + "_tpl": "5b43575a86f77424f443fe62", + "parentId": "66cbb5c3141e1d61ac09ebc8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00329", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec2e", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb5c3141e1d61ac09ec2d", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb5c3141e1d61ac09ec2f", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb5c3141e1d61ac09ec2e", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb5c3141e1d61ac09ec30", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "66cbb5c3141e1d61ac09ec2d", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09ec31", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb5c3141e1d61ac09ec2d", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09ec32", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb5c3141e1d61ac09ec2d", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09ec33", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "66cbb5c3141e1d61ac09ec2d", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09ec34", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb5c3141e1d61ac09ec2d", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09ec35", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbb5c3141e1d61ac09ec2d", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09ec36", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb5c3141e1d61ac09ec35", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 28.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec38", - "_tpl": "58d2946c86f7744e271174b5", - "parentId": "66cbb5c3141e1d61ac09ec2c", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ebd0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebd0", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec3a", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "66cbb5c3141e1d61ac09ec2c", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ebd1", + "_tpl": "574d967124597745970e7c94", + "parentId": "66cbb5c3141e1d61ac09ebd0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec3c", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "66cbb5c3141e1d61ac09ec2c", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ebd2", + "_tpl": "574dad8024597745964bf05c", + "parentId": "66cbb5c3141e1d61ac09ebd1", + "slotId": "mod_stock" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec3e", - "_tpl": "5caf1109ae9215753c44119f", - "parentId": "66cbb5c3141e1d61ac09ec2c", - "slotId": "main", - "location": { - "x": 4, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ebd3", + "_tpl": "634f02331f9f536910079b51", + "parentId": "66cbb5c3141e1d61ac09ebd1", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09ebd4", + "_tpl": "634f04d82e5def262d0b30c6", + "parentId": "66cbb5c3141e1d61ac09ebd3", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbb5c3141e1d61ac09ebd5", + "_tpl": "634f02d7517ccc8a960fc744", + "parentId": "66cbb5c3141e1d61ac09ebd4", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb5c3141e1d61ac09ebd6", + "_tpl": "634f08a21f9f536910079b5a", + "parentId": "66cbb5c3141e1d61ac09ebd5", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbb5c3141e1d61ac09ebd7", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "66cbb5c3141e1d61ac09ebd4", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09ebd8", + "_tpl": "587df3a12459772c28142567", + "parentId": "66cbb5c3141e1d61ac09ebd1", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ebda", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb5c3141e1d61ac09ebd8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebd9", + "_tpl": "634f05ca517ccc8a960fc748", + "parentId": "66cbb5c3141e1d61ac09ebd1", + "slotId": "mod_reciever" } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00169", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec40", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec40", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00249", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec42", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb5c3141e1d61ac09ec40", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec44", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "66cbb5c3141e1d61ac09ec40", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ebdc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebdc", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec46", - "_tpl": "544fb3f34bdc2d03748b456a", - "parentId": "66cbb5c3141e1d61ac09ec40", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ebde", + "_tpl": "5c5db6552e2216001026119d", + "parentId": "66cbb5c3141e1d61ac09ebdc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebe0", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "parentId": "66cbb5c3141e1d61ac09ebdc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebe2", + "_tpl": "6516e971a3d4c6497930b450", + "parentId": "66cbb5c3141e1d61ac09ebdc", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebe4", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb5c3141e1d61ac09ebdc", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebe6", + "_tpl": "5addcce35acfc4001a5fc635", + "parentId": "66cbb5c3141e1d61ac09ebdc", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00195", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec48", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec48", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00130", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec4a", - "_tpl": "5e8f3423fd7471236e6e3b64", - "parentId": "66cbb5c3141e1d61ac09ec48", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec4c", - "_tpl": "62a0a043cf4a99369e2624a5", - "parentId": "66cbb5c3141e1d61ac09ec48", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ebe8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebe8", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec4e", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb5c3141e1d61ac09ec48", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ebea", + "_tpl": "5cdd7693d7f00c0010373aa5", + "parentId": "66cbb5c3141e1d61ac09ebe8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebec", + "_tpl": "5c82343a2e221644f31c0611", + "parentId": "66cbb5c3141e1d61ac09ebe8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebee", + "_tpl": "5d5d8ca986f7742798716522", + "parentId": "66cbb5c3141e1d61ac09ebe8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00066", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec50", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec50", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00031", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec52", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb5c3141e1d61ac09ec50", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00154", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec54", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec54", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec56", - "_tpl": "5c0fa877d174af02a012e1cf", - "parentId": "66cbb5c3141e1d61ac09ec54", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ebf0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebf0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebf2", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb5c3141e1d61ac09ebf0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ec58", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec58", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00030", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec5a", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66cbb5c3141e1d61ac09ec58", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec5c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ec58", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ebf4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebf4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 941 + { + "_id": "66cbb5c3141e1d61ac09ebf6", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb5c3141e1d61ac09ebf4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00029", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec5e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ec58", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 935 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec60", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09ec58", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 55 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ebf8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebf8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ebfa", + "_tpl": "590c621186f774138d11ea29", + "parentId": "66cbb5c3141e1d61ac09ebf8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00136", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ec62", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec62", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec64", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbb5c3141e1d61ac09ec62", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec66", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09ec62", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ebfc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ebfc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 37 + { + "_id": "66cbb5c3141e1d61ac09ebfe", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb5c3141e1d61ac09ebfc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb5c3141e1d61ac09ec68", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ec62", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 985 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec6a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ec62", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 751 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00203", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec6c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec6c", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec6e", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbb5c3141e1d61ac09ec6c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec70", - "_tpl": "5c0919b50db834001b7ce3b9", - "parentId": "66cbb5c3141e1d61ac09ec6c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec00", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec00", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec72", - "_tpl": "587e0531245977466077a0f7", - "parentId": "66cbb5c3141e1d61ac09ec6c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ec02", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb5c3141e1d61ac09ec00", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec74", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec74", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00278", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec76", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb5c3141e1d61ac09ec74", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00123", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec78", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec78", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec7a", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb5c3141e1d61ac09ec78", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec04", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec04", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec06", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb5c3141e1d61ac09ec04", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec7c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec7c", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00051", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec7e", - "_tpl": "5751487e245977207e26a315", - "parentId": "66cbb5c3141e1d61ac09ec7c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00127", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec80", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec80", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec82", - "_tpl": "5aa2ba19e5b5b00014028f4e", - "parentId": "66cbb5c3141e1d61ac09ec80", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ec08", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec08", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec83", - "_tpl": "5dcbd56fdbd3d91b3e5468d5", - "parentId": "66cbb5c3141e1d61ac09ec80", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 + { + "_id": "66cbb5c3141e1d61ac09ec0a", + "_tpl": "5b43575a86f77424f443fe62", + "parentId": "66cbb5c3141e1d61ac09ec08", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb5c3141e1d61ac09ec0c", + "_tpl": "5733279d245977289b77ec24", + "parentId": "66cbb5c3141e1d61ac09ec08", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec0e", + "_tpl": "5d40419286f774318526545f", + "parentId": "66cbb5c3141e1d61ac09ec08", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_custom_DesignStuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec84", - "_tpl": "5dcbd6dddbd3d91b3e5468de", - "parentId": "66cbb5c3141e1d61ac09ec83", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09ec85", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "66cbb5c3141e1d61ac09ec83", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09ec89", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbb5c3141e1d61ac09ec85", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec86", - "_tpl": "5dcbd6b46ec07c0c4347a564", - "parentId": "66cbb5c3141e1d61ac09ec83", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb5c3141e1d61ac09ec87", - "_tpl": "5dcbe9431e1f4616d354987e", - "parentId": "66cbb5c3141e1d61ac09ec83", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09ec88", - "_tpl": "5dcbe965e4ed22586443a79d", - "parentId": "66cbb5c3141e1d61ac09ec87", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec8b", - "_tpl": "5f633f68f5750b524b45f112", - "parentId": "66cbb5c3141e1d61ac09ec80", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec10", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec10", + "_tpl": "5937ef2b86f77408a47244b3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec8d", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "66cbb5c3141e1d61ac09ec80", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ec12", + "_tpl": "5937ee6486f77408994ba448", + "parentId": "66cbb5c3141e1d61ac09ec10", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec8f", - "_tpl": "5beec8b20db834001961942a", - "parentId": "66cbb5c3141e1d61ac09ec80", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ec14", + "_tpl": "5937ee6486f77408994ba448", + "parentId": "66cbb5c3141e1d61ac09ec10", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00322", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec91", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec91", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec92", - "_tpl": "5c0d2727d174af02a012cf58", - "parentId": "66cbb5c3141e1d61ac09ec91", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec93", - "_tpl": "657ba6c3c6f689d3a205b857", - "parentId": "66cbb5c3141e1d61ac09ec92", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb5c3141e1d61ac09ec94", - "_tpl": "657ba737b7e9ca9a02045bf6", - "parentId": "66cbb5c3141e1d61ac09ec92", - "slotId": "Helmet_back" - }, - { - "_id": "66cbb5c3141e1d61ac09ec95", - "_tpl": "658188edf026a90c1708c827", - "parentId": "66cbb5c3141e1d61ac09ec92", - "slotId": "helmet_eyes" + { + "Id": "container_custom_DesignStuff_00310", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec96", - "_tpl": "657ba75e23918923cb0df573", - "parentId": "66cbb5c3141e1d61ac09ec92", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ec98", - "_tpl": "5c1bc5612e221602b5429350", - "parentId": "66cbb5c3141e1d61ac09ec91", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec16", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec16", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec9b", - "_tpl": "57372e4a24597768553071c2", - "parentId": "66cbb5c3141e1d61ac09ec91", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ec18", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb5c3141e1d61ac09ec16", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 30 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ec9c", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09ec9b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + { + "_id": "66cbb5c3141e1d61ac09ec1c", + "_tpl": "57372fc52459776998772ca1", + "parentId": "66cbb5c3141e1d61ac09ec16", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec1d", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb5c3141e1d61ac09ec1c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec1e", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb5c3141e1d61ac09ec1c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00107", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ec9e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ec9e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eca0", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66cbb5c3141e1d61ac09ec9e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00189", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eca2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eca2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eca4", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb5c3141e1d61ac09eca2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec20", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec20", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ec22", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb5c3141e1d61ac09ec20", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00238", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eca6", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb5c3141e1d61ac09eca2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eca8", - "_tpl": "5d1b317c86f7742523398392", - "parentId": "66cbb5c3141e1d61ac09eca2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec24", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec24", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec26", + "_tpl": "60658776f2cb2e02a42ace2b", + "parentId": "66cbb5c3141e1d61ac09ec24", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00341", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ecaa", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ecaa", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00095", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecac", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb5c3141e1d61ac09ecaa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecae", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ecaa", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 875 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec28", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec28", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec2a", + "_tpl": "591ae8f986f77406f854be45", + "parentId": "66cbb5c3141e1d61ac09ec28", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00185", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ecb0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ecb0", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00128", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecb2", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbb5c3141e1d61ac09ecb0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecb4", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66cbb5c3141e1d61ac09ecb0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ec2c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec2c", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ecb6", - "_tpl": "59e35de086f7741778269d84", - "parentId": "66cbb5c3141e1d61ac09ecb0", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ec2d", + "_tpl": "5ac4cd105acfc40016339859", + "parentId": "66cbb5c3141e1d61ac09ec2c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec2e", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb5c3141e1d61ac09ec2d", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb5c3141e1d61ac09ec2f", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb5c3141e1d61ac09ec2e", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb5c3141e1d61ac09ec30", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "66cbb5c3141e1d61ac09ec2d", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09ec31", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb5c3141e1d61ac09ec2d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09ec32", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb5c3141e1d61ac09ec2d", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09ec33", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "66cbb5c3141e1d61ac09ec2d", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09ec34", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb5c3141e1d61ac09ec2d", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09ec35", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbb5c3141e1d61ac09ec2d", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ec36", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb5c3141e1d61ac09ec35", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 28.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec38", + "_tpl": "58d2946c86f7744e271174b5", + "parentId": "66cbb5c3141e1d61ac09ec2c", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec3a", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "66cbb5c3141e1d61ac09ec2c", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec3c", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "66cbb5c3141e1d61ac09ec2c", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec3e", + "_tpl": "5caf1109ae9215753c44119f", + "parentId": "66cbb5c3141e1d61ac09ec2c", + "slotId": "main", + "location": { + "x": 4, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00241", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ecb8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ecb8", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00169", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecba", - "_tpl": "6699249f3c4fda6471005cba", - "parentId": "66cbb5c3141e1d61ac09ecb8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecbc", - "_tpl": "5c791e872e2216001219c40a", - "parentId": "66cbb5c3141e1d61ac09ecb8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec40", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec40", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ecbd", - "_tpl": "56e0598dd2720bb5668b45a6", - "parentId": "66cbb5c3141e1d61ac09ecb8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ec42", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb5c3141e1d61ac09ec40", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec44", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "66cbb5c3141e1d61ac09ec40", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb5c3141e1d61ac09ec46", + "_tpl": "544fb3f34bdc2d03748b456a", + "parentId": "66cbb5c3141e1d61ac09ec40", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_custom_DesignStuff_00195", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecbe", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66cbb5c3141e1d61ac09ecbd", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecc1", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb5c3141e1d61ac09ecbe", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec48", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec48", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec4a", + "_tpl": "5e8f3423fd7471236e6e3b64", + "parentId": "66cbb5c3141e1d61ac09ec48", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec4c", + "_tpl": "62a0a043cf4a99369e2624a5", + "parentId": "66cbb5c3141e1d61ac09ec48", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec4e", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb5c3141e1d61ac09ec48", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00066", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecbf", - "_tpl": "56e05b06d2720bb2668b4586", - "parentId": "66cbb5c3141e1d61ac09ecbd", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09ecc0", - "_tpl": "56e05a6ed2720bd0748b4567", - "parentId": "66cbb5c3141e1d61ac09ecbd", - "slotId": "mod_pistolgrip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecc3", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66cbb5c3141e1d61ac09ecb8", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec50", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec50", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ec52", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb5c3141e1d61ac09ec50", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00154", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecc5", - "_tpl": "5c9a1c422e221600106f69f0", - "parentId": "66cbb5c3141e1d61ac09ecb8", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecc7", - "_tpl": "5aa2a7e8e5b5b00016327c16", - "parentId": "66cbb5c3141e1d61ac09ecb8", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec54", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec54", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec56", + "_tpl": "5c0fa877d174af02a012e1cf", + "parentId": "66cbb5c3141e1d61ac09ec54", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00243", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ecc9", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ecc9", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eccb", - "_tpl": "5afd7e095acfc40017541f61", - "parentId": "66cbb5c3141e1d61ac09ecc9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eccd", - "_tpl": "668032ba74b8f2050c0b917d", - "parentId": "66cbb5c3141e1d61ac09ecc9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ec58", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec58", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eccf", - "_tpl": "588b56d02459771481110ae2", - "parentId": "66cbb5c3141e1d61ac09ecc9", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ec5a", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66cbb5c3141e1d61ac09ec58", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec5c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ec58", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 941 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec5e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ec58", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 935 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ec60", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09ec58", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 55 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00136", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecd1", - "_tpl": "5648b4534bdc2d3d1c8b4580", - "parentId": "66cbb5c3141e1d61ac09ecc9", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ec62", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec62", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec64", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbb5c3141e1d61ac09ec62", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec66", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09ec62", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 37 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec68", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ec62", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 985 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ec6a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ec62", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 751 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00203", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecd3", - "_tpl": "59c0ec5b86f77435b128bfca", - "parentId": "66cbb5c3141e1d61ac09ecc9", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec6c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec6c", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec6e", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbb5c3141e1d61ac09ec6c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec70", + "_tpl": "5c0919b50db834001b7ce3b9", + "parentId": "66cbb5c3141e1d61ac09ec6c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec72", + "_tpl": "587e0531245977466077a0f7", + "parentId": "66cbb5c3141e1d61ac09ec6c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00276", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ecd5", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ecd5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecd7", - "_tpl": "5bc9c29cd4351e003562b8a3", - "parentId": "66cbb5c3141e1d61ac09ecd5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec74", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec74", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ec76", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb5c3141e1d61ac09ec74", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00123", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecd9", - "_tpl": "5e2af41e86f774755a234b67", - "parentId": "66cbb5c3141e1d61ac09ecd5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec78", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec78", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec7a", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb5c3141e1d61ac09ec78", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ecdb", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ecdb", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecdd", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66cbb5c3141e1d61ac09ecdb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec7c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec7c", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ec7e", + "_tpl": "5751487e245977207e26a315", + "parentId": "66cbb5c3141e1d61ac09ec7c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00127", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecdf", - "_tpl": "5887431f2459777e1612938f", - "parentId": "66cbb5c3141e1d61ac09ecdb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 12 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00106", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ece1", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ece1", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ece3", - "_tpl": "5780d07a2459777de4559324", - "parentId": "66cbb5c3141e1d61ac09ece1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec80", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec80", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec82", + "_tpl": "5aa2ba19e5b5b00014028f4e", + "parentId": "66cbb5c3141e1d61ac09ec80", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec83", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "parentId": "66cbb5c3141e1d61ac09ec80", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec84", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "parentId": "66cbb5c3141e1d61ac09ec83", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09ec85", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "66cbb5c3141e1d61ac09ec83", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ec89", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbb5c3141e1d61ac09ec85", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec86", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "parentId": "66cbb5c3141e1d61ac09ec83", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb5c3141e1d61ac09ec87", + "_tpl": "5dcbe9431e1f4616d354987e", + "parentId": "66cbb5c3141e1d61ac09ec83", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09ec88", + "_tpl": "5dcbe965e4ed22586443a79d", + "parentId": "66cbb5c3141e1d61ac09ec87", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09ec8b", + "_tpl": "5f633f68f5750b524b45f112", + "parentId": "66cbb5c3141e1d61ac09ec80", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec8d", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "66cbb5c3141e1d61ac09ec80", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec8f", + "_tpl": "5beec8b20db834001961942a", + "parentId": "66cbb5c3141e1d61ac09ec80", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_ProfileEditor_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ece5", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ece5", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ece6", - "_tpl": "5ac66d9b5acfc4001633997a", - "parentId": "66cbb5c3141e1d61ac09ece5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ece7", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb5c3141e1d61ac09ece6", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb5c3141e1d61ac09ece8", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb5c3141e1d61ac09ece7", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb5c3141e1d61ac09ece9", - "_tpl": "5ac72e945acfc43f3b691116", - "parentId": "66cbb5c3141e1d61ac09ece6", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09ecea", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb5c3141e1d61ac09ece6", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09eceb", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb5c3141e1d61ac09ece6", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09ecec", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb5c3141e1d61ac09ece6", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09eced", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb5c3141e1d61ac09ece6", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09ecee", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbb5c3141e1d61ac09ece6", - "slotId": "mod_magazine" + { + "Id": "container_custom_DesignStuff_00322", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecef", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb5c3141e1d61ac09ecee", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 22.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecf1", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbb5c3141e1d61ac09ece5", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec91", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec91", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ecf3", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbb5c3141e1d61ac09ece5", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ec92", + "_tpl": "5c0d2727d174af02a012cf58", + "parentId": "66cbb5c3141e1d61ac09ec91", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ecf5", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb5c3141e1d61ac09ece5", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00125", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ecf7", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ecf7", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ecf9", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66cbb5c3141e1d61ac09ecf7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ec93", + "_tpl": "657ba6c3c6f689d3a205b857", + "parentId": "66cbb5c3141e1d61ac09ec92", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb5c3141e1d61ac09ec94", + "_tpl": "657ba737b7e9ca9a02045bf6", + "parentId": "66cbb5c3141e1d61ac09ec92", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb5c3141e1d61ac09ec95", + "_tpl": "658188edf026a90c1708c827", + "parentId": "66cbb5c3141e1d61ac09ec92", + "slotId": "helmet_eyes" + }, + { + "_id": "66cbb5c3141e1d61ac09ec96", + "_tpl": "657ba75e23918923cb0df573", + "parentId": "66cbb5c3141e1d61ac09ec92", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbb5c3141e1d61ac09ec98", + "_tpl": "5c1bc5612e221602b5429350", + "parentId": "66cbb5c3141e1d61ac09ec91", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec9b", + "_tpl": "57372e4a24597768553071c2", + "parentId": "66cbb5c3141e1d61ac09ec91", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ec9c", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09ec9b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00144", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ecfb", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ecfb", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00107", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ecfd", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09ecfb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 26 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed00", - "_tpl": "64aceac0c4eda9354b0226b3", - "parentId": "66cbb5c3141e1d61ac09ecfb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ec9e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ec9e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eca0", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66cbb5c3141e1d61ac09ec9e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00189", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed01", - "_tpl": "64b8f7968532cf95ee0a0dbf", - "parentId": "66cbb5c3141e1d61ac09ed00", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed04", - "_tpl": "657023c61419851aef03e6eb", - "parentId": "66cbb5c3141e1d61ac09ecfb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eca2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eca2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed05", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbb5c3141e1d61ac09ed04", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + { + "_id": "66cbb5c3141e1d61ac09eca4", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb5c3141e1d61ac09eca2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eca6", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb5c3141e1d61ac09eca2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eca8", + "_tpl": "5d1b317c86f7742523398392", + "parentId": "66cbb5c3141e1d61ac09eca2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00309", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed07", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed07", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00341", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed09", - "_tpl": "62ff9920fe938a24c90c10d2", - "parentId": "66cbb5c3141e1d61ac09ed07", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed0b", - "_tpl": "5ac4c50d5acfc40019262e87", - "parentId": "66cbb5c3141e1d61ac09ed07", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ecaa", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ecaa", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed0d", - "_tpl": "5d1c819a86f774771b0acd6c", - "parentId": "66cbb5c3141e1d61ac09ed07", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ecac", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb5c3141e1d61ac09ecaa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecae", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ecaa", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 875 + } } - } - ] - }, - { - "Id": "Lootable_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ed0f", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed0f", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00185", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed11", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ed0f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1002 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00272", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed13", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed13", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed15", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbb5c3141e1d61ac09ed13", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ecb0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ecb0", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed17", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66cbb5c3141e1d61ac09ed13", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ecb2", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbb5c3141e1d61ac09ecb0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed19", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb5c3141e1d61ac09ed13", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ecb4", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66cbb5c3141e1d61ac09ecb0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecb6", + "_tpl": "59e35de086f7741778269d84", + "parentId": "66cbb5c3141e1d61ac09ecb0", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00175", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed1b", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed1b", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00241", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed1d", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb5c3141e1d61ac09ed1b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00046", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ed1f", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed1f", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed21", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ed1f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 860 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ecb8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ecb8", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecba", + "_tpl": "6699249f3c4fda6471005cba", + "parentId": "66cbb5c3141e1d61ac09ecb8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecbc", + "_tpl": "5c791e872e2216001219c40a", + "parentId": "66cbb5c3141e1d61ac09ecb8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecbd", + "_tpl": "56e0598dd2720bb5668b45a6", + "parentId": "66cbb5c3141e1d61ac09ecb8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecbe", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66cbb5c3141e1d61ac09ecbd", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ecc1", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb5c3141e1d61ac09ecbe", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecbf", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "66cbb5c3141e1d61ac09ecbd", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09ecc0", + "_tpl": "56e05a6ed2720bd0748b4567", + "parentId": "66cbb5c3141e1d61ac09ecbd", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb5c3141e1d61ac09ecc3", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66cbb5c3141e1d61ac09ecb8", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecc5", + "_tpl": "5c9a1c422e221600106f69f0", + "parentId": "66cbb5c3141e1d61ac09ecb8", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecc7", + "_tpl": "5aa2a7e8e5b5b00016327c16", + "parentId": "66cbb5c3141e1d61ac09ecb8", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ed23", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed23", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00243", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed25", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ed23", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1127 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed27", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09ed23", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ecc9", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ecc9", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 90 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed29", - "_tpl": "5e54f62086f774219b0f1937", - "parentId": "66cbb5c3141e1d61ac09ed23", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eccb", + "_tpl": "5afd7e095acfc40017541f61", + "parentId": "66cbb5c3141e1d61ac09ecc9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eccd", + "_tpl": "668032ba74b8f2050c0b917d", + "parentId": "66cbb5c3141e1d61ac09ecc9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eccf", + "_tpl": "588b56d02459771481110ae2", + "parentId": "66cbb5c3141e1d61ac09ecc9", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecd1", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "parentId": "66cbb5c3141e1d61ac09ecc9", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecd3", + "_tpl": "59c0ec5b86f77435b128bfca", + "parentId": "66cbb5c3141e1d61ac09ecc9", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00390", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed2b", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed2b", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00276", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed2d", - "_tpl": "60098ad7c2240c0fe85c570a", - "parentId": "66cbb5c3141e1d61ac09ed2b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed2f", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbb5c3141e1d61ac09ed2b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ecd5", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ecd5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed31", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb5c3141e1d61ac09ed2b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ecd7", + "_tpl": "5bc9c29cd4351e003562b8a3", + "parentId": "66cbb5c3141e1d61ac09ecd5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ecd9", + "_tpl": "5e2af41e86f774755a234b67", + "parentId": "66cbb5c3141e1d61ac09ecd5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed33", - "_tpl": "5ab8f20c86f7745cdb629fb2", - "parentId": "66cbb5c3141e1d61ac09ed2b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed35", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbb5c3141e1d61ac09ed2b", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ecdb", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ecdb", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecdd", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66cbb5c3141e1d61ac09ecdb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecdf", + "_tpl": "5887431f2459777e1612938f", + "parentId": "66cbb5c3141e1d61ac09ecdb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 12 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00344", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed37", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed37", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00106", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed39", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09ed37", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed3b", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed3b", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed3d", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb5c3141e1d61ac09ed3b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ece1", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ece1", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ece3", + "_tpl": "5780d07a2459777de4559324", + "parentId": "66cbb5c3141e1d61ac09ece1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00173", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed3f", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed3f", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_ProfileEditor_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed41", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbb5c3141e1d61ac09ed3f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00140", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ed43", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed43", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed45", - "_tpl": "5f745ee30acaeb0d490d8c5b", - "parentId": "66cbb5c3141e1d61ac09ed43", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ece5", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ece5", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed47", - "_tpl": "590de7e986f7741b096e5f32", - "parentId": "66cbb5c3141e1d61ac09ed43", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ece6", + "_tpl": "5ac66d9b5acfc4001633997a", + "parentId": "66cbb5c3141e1d61ac09ece5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed49", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ed43", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ece7", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb5c3141e1d61ac09ece6", + "slotId": "mod_gas_block" }, - "upd": { - "StackObjectsCount": 887 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed4b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ed43", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 701 + { + "_id": "66cbb5c3141e1d61ac09ece8", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb5c3141e1d61ac09ece7", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb5c3141e1d61ac09ece9", + "_tpl": "5ac72e945acfc43f3b691116", + "parentId": "66cbb5c3141e1d61ac09ece6", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09ecea", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb5c3141e1d61ac09ece6", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09eceb", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb5c3141e1d61ac09ece6", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09ecec", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb5c3141e1d61ac09ece6", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09eced", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb5c3141e1d61ac09ece6", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09ecee", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbb5c3141e1d61ac09ece6", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ecef", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb5c3141e1d61ac09ecee", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 22.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecf1", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbb5c3141e1d61ac09ece5", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecf3", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbb5c3141e1d61ac09ece5", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecf5", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb5c3141e1d61ac09ece5", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00155", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed4d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed4d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00125", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed4f", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb5c3141e1d61ac09ed4d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed51", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed51", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed53", - "_tpl": "5780cf942459777df90dcb72", - "parentId": "66cbb5c3141e1d61ac09ed51", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ecf7", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ecf7", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecf9", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66cbb5c3141e1d61ac09ecf7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00217", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed55", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed55", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00144", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed57", - "_tpl": "628120fd5631d45211793c9f", - "parentId": "66cbb5c3141e1d61ac09ed55", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed58", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "66cbb5c3141e1d61ac09ed55", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ecfb", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ecfb", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ecfd", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09ecfb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 26 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed00", + "_tpl": "64aceac0c4eda9354b0226b3", + "parentId": "66cbb5c3141e1d61ac09ecfb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed01", + "_tpl": "64b8f7968532cf95ee0a0dbf", + "parentId": "66cbb5c3141e1d61ac09ed00", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed04", + "_tpl": "657023c61419851aef03e6eb", + "parentId": "66cbb5c3141e1d61ac09ecfb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed05", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbb5c3141e1d61ac09ed04", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00309", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed59", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "66cbb5c3141e1d61ac09ed58", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09ed5a", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "66cbb5c3141e1d61ac09ed58", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09ed5b", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "66cbb5c3141e1d61ac09ed5a", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09ed5c", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "66cbb5c3141e1d61ac09ed5a", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb5c3141e1d61ac09ed5d", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "66cbb5c3141e1d61ac09ed58", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09ed5e", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb5c3141e1d61ac09ed5d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed60", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66cbb5c3141e1d61ac09ed55", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed07", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed07", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed62", - "_tpl": "57dbb57e2459774673234890", - "parentId": "66cbb5c3141e1d61ac09ed55", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ed09", + "_tpl": "62ff9920fe938a24c90c10d2", + "parentId": "66cbb5c3141e1d61ac09ed07", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed64", - "_tpl": "5649af884bdc2d1b2b8b4589", - "parentId": "66cbb5c3141e1d61ac09ed55", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ed0b", + "_tpl": "5ac4c50d5acfc40019262e87", + "parentId": "66cbb5c3141e1d61ac09ed07", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed0d", + "_tpl": "5d1c819a86f774771b0acd6c", + "parentId": "66cbb5c3141e1d61ac09ed07", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00143", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed66", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed66", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed6a", - "_tpl": "57372deb245977685d4159b3", - "parentId": "66cbb5c3141e1d61ac09ed66", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed6b", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09ed6a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ed0f", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed0f", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed11", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ed0f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1002 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00272", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed6c", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09ed6a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed6e", - "_tpl": "601aa3d2b2bcb34913271e6d", - "parentId": "66cbb5c3141e1d61ac09ed66", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed13", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed13", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ed70", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbb5c3141e1d61ac09ed66", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 5 + { + "_id": "66cbb5c3141e1d61ac09ed15", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbb5c3141e1d61ac09ed13", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed17", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66cbb5c3141e1d61ac09ed13", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed19", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb5c3141e1d61ac09ed13", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00178", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed72", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed72", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00175", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed74", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66cbb5c3141e1d61ac09ed72", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed76", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed76", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed78", - "_tpl": "62a5c41e8ec41a51b34739c3", - "parentId": "66cbb5c3141e1d61ac09ed76", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed1b", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed1b", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ed1d", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb5c3141e1d61ac09ed1b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00046", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed7a", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb5c3141e1d61ac09ed76", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed7c", - "_tpl": "62a09f32621468534a797acb", - "parentId": "66cbb5c3141e1d61ac09ed76", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ed1f", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed1f", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ed21", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ed1f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 860 + } } + ] + }, + { + "Id": "Lootable_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed7e", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb5c3141e1d61ac09ed76", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed80", - "_tpl": "590a373286f774287540368b", - "parentId": "66cbb5c3141e1d61ac09ed76", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ed23", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed23", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed25", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ed23", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1127 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed27", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09ed23", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 90 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed29", + "_tpl": "5e54f62086f774219b0f1937", + "parentId": "66cbb5c3141e1d61ac09ed23", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00114", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed82", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed82", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00390", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed84", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb5c3141e1d61ac09ed82", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00093", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed86", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed86", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed88", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb5c3141e1d61ac09ed86", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed2b", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed2b", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed2d", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "66cbb5c3141e1d61ac09ed2b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed2f", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbb5c3141e1d61ac09ed2b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed31", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb5c3141e1d61ac09ed2b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed33", + "_tpl": "5ab8f20c86f7745cdb629fb2", + "parentId": "66cbb5c3141e1d61ac09ed2b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed35", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbb5c3141e1d61ac09ed2b", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00171", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed8a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed8a", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00344", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed8c", - "_tpl": "60098af40accd37ef2175f27", - "parentId": "66cbb5c3141e1d61ac09ed8a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed37", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed37", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ed39", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09ed37", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed8e", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "66cbb5c3141e1d61ac09ed8a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed3b", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed3b", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ed3d", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb5c3141e1d61ac09ed3b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb5c3141e1d61ac09ed90", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb5c3141e1d61ac09ed8a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00085", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed92", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed92", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00173", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed94", - "_tpl": "5914578086f774123569ffa4", - "parentId": "66cbb5c3141e1d61ac09ed92", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed96", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed96", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed98", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb5c3141e1d61ac09ed96", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed3f", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed3f", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ed41", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbb5c3141e1d61ac09ed3f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00140", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed9a", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb5c3141e1d61ac09ed96", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 27 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ed9c", - "_tpl": "59e7708286f7742cbd762753", - "parentId": "66cbb5c3141e1d61ac09ed96", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ed43", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed43", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed45", + "_tpl": "5f745ee30acaeb0d490d8c5b", + "parentId": "66cbb5c3141e1d61ac09ed43", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed47", + "_tpl": "590de7e986f7741b096e5f32", + "parentId": "66cbb5c3141e1d61ac09ed43", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed49", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ed43", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 887 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed4b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ed43", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 701 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ed9e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ed9e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00155", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eda0", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb5c3141e1d61ac09ed9e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed4d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed4d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed4f", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb5c3141e1d61ac09ed4d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00301", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eda2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eda2", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eda4", - "_tpl": "590c678286f77426c9660122", - "parentId": "66cbb5c3141e1d61ac09eda2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed51", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed51", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ed53", + "_tpl": "5780cf942459777df90dcb72", + "parentId": "66cbb5c3141e1d61ac09ed51", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00217", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eda6", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb5c3141e1d61ac09eda2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed55", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed55", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed57", + "_tpl": "628120fd5631d45211793c9f", + "parentId": "66cbb5c3141e1d61ac09ed55", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed58", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "66cbb5c3141e1d61ac09ed55", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed59", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "66cbb5c3141e1d61ac09ed58", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09ed5a", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "66cbb5c3141e1d61ac09ed58", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09ed5b", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "66cbb5c3141e1d61ac09ed5a", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09ed5c", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "66cbb5c3141e1d61ac09ed5a", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb5c3141e1d61ac09ed5d", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "66cbb5c3141e1d61ac09ed58", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ed5e", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb5c3141e1d61ac09ed5d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed60", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66cbb5c3141e1d61ac09ed55", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed62", + "_tpl": "57dbb57e2459774673234890", + "parentId": "66cbb5c3141e1d61ac09ed55", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ed64", + "_tpl": "5649af884bdc2d1b2b8b4589", + "parentId": "66cbb5c3141e1d61ac09ed55", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00143", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eda8", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb5c3141e1d61ac09eda2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed66", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed66", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed6a", + "_tpl": "57372deb245977685d4159b3", + "parentId": "66cbb5c3141e1d61ac09ed66", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed6b", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09ed6a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed6c", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09ed6a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed6e", + "_tpl": "601aa3d2b2bcb34913271e6d", + "parentId": "66cbb5c3141e1d61ac09ed66", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed70", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbb5c3141e1d61ac09ed66", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00373", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09edaa", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edaa", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00178", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edac", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb5c3141e1d61ac09edaa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed72", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed72", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed74", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66cbb5c3141e1d61ac09ed72", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09edae", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edae", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edb0", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb5c3141e1d61ac09edae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed76", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed76", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed78", + "_tpl": "62a5c41e8ec41a51b34739c3", + "parentId": "66cbb5c3141e1d61ac09ed76", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed7a", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb5c3141e1d61ac09ed76", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed7c", + "_tpl": "62a09f32621468534a797acb", + "parentId": "66cbb5c3141e1d61ac09ed76", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed7e", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb5c3141e1d61ac09ed76", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed80", + "_tpl": "590a373286f774287540368b", + "parentId": "66cbb5c3141e1d61ac09ed76", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00257", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09edb2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edb2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00114", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edb4", - "_tpl": "5b4326435acfc433000ed01d", - "parentId": "66cbb5c3141e1d61ac09edb2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed82", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed82", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ed84", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb5c3141e1d61ac09ed82", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00093", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edb6", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb5c3141e1d61ac09edb2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed86", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed86", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ed88", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb5c3141e1d61ac09ed86", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00171", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edb8", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb5c3141e1d61ac09edb2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09edba", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edba", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edbc", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09edba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 69 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed8a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed8a", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed8c", + "_tpl": "60098af40accd37ef2175f27", + "parentId": "66cbb5c3141e1d61ac09ed8a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed8e", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "66cbb5c3141e1d61ac09ed8a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed90", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb5c3141e1d61ac09ed8a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09edbe", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edbe", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00085", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edc0", - "_tpl": "590c37d286f77443be3d7827", - "parentId": "66cbb5c3141e1d61ac09edbe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09edc2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edc2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edc4", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb5c3141e1d61ac09edc2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed92", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed92", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed94", + "_tpl": "5914578086f774123569ffa4", + "parentId": "66cbb5c3141e1d61ac09ed92", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09edc6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edc6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edc8", - "_tpl": "5780cfa52459777dfb276eb1", - "parentId": "66cbb5c3141e1d61ac09edc6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00146", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09edca", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edca", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edcc", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbb5c3141e1d61ac09edca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed96", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed96", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 24 - } - }, - { - "_id": "66cbb5c3141e1d61ac09edcf", - "_tpl": "5739d41224597779c3645501", - "parentId": "66cbb5c3141e1d61ac09edca", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ed98", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb5c3141e1d61ac09ed96", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09edd0", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb5c3141e1d61ac09edcf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + { + "_id": "66cbb5c3141e1d61ac09ed9a", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb5c3141e1d61ac09ed96", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 27 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ed9c", + "_tpl": "59e7708286f7742cbd762753", + "parentId": "66cbb5c3141e1d61ac09ed96", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00091", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09edd2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edd2", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edd4", - "_tpl": "5937ee6486f77408994ba448", - "parentId": "66cbb5c3141e1d61ac09edd2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edd6", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09edd2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1097 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ed9e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ed9e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eda0", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb5c3141e1d61ac09ed9e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09edd8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edd8", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00301", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edda", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb5c3141e1d61ac09edd8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00331", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eddc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eddc", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edde", - "_tpl": "5aa7e373e5b5b000137b76f0", - "parentId": "66cbb5c3141e1d61ac09eddc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eda2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eda2", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eda4", + "_tpl": "590c678286f77426c9660122", + "parentId": "66cbb5c3141e1d61ac09eda2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eda6", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb5c3141e1d61ac09eda2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eda8", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb5c3141e1d61ac09eda2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00109", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ede0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ede0", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00373", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ede2", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbb5c3141e1d61ac09ede0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09edaa", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edaa", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edac", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb5c3141e1d61ac09edaa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00172", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ede4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ede4", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ede6", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbb5c3141e1d61ac09ede4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09edae", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edae", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edb0", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb5c3141e1d61ac09edae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00209", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ede8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ede8", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00257", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edea", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbb5c3141e1d61ac09ede8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09edb2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edb2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edb4", + "_tpl": "5b4326435acfc433000ed01d", + "parentId": "66cbb5c3141e1d61ac09edb2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edb6", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb5c3141e1d61ac09edb2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09edb8", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb5c3141e1d61ac09edb2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edec", - "_tpl": "5b7d693d5acfc43bca706a3d", - "parentId": "66cbb5c3141e1d61ac09ede8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09edba", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edba", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09edbc", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09edba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 69 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edee", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09ede8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 41 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09edbe", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edbe", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edc0", + "_tpl": "590c37d286f77443be3d7827", + "parentId": "66cbb5c3141e1d61ac09edbe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00078", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09edf0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edf0", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edf2", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb5c3141e1d61ac09edf0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00139", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09edf4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edf4", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edf6", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb5c3141e1d61ac09edf4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09edc2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edc2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 73 - } - }, - { - "_id": "66cbb5c3141e1d61ac09edf8", - "_tpl": "62a091170b9d3c46de5b6cf2", - "parentId": "66cbb5c3141e1d61ac09edf4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09edc4", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb5c3141e1d61ac09edc2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00061", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09edfa", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09edfa", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edfc", - "_tpl": "5448fee04bdc2dbc018b4567", - "parentId": "66cbb5c3141e1d61ac09edfa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09edfe", - "_tpl": "5d1b36a186f7742523398433", - "parentId": "66cbb5c3141e1d61ac09edfa", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09edc6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edc6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edc8", + "_tpl": "5780cfa52459777dfb276eb1", + "parentId": "66cbb5c3141e1d61ac09edc6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00174", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee00", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee00", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00146", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee02", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb5c3141e1d61ac09ee00", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00073", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee04", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee04", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee06", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "66cbb5c3141e1d61ac09ee04", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09edca", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edca", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edcc", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbb5c3141e1d61ac09edca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 24 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edcf", + "_tpl": "5739d41224597779c3645501", + "parentId": "66cbb5c3141e1d61ac09edca", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edd0", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb5c3141e1d61ac09edcf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00153", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee08", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee08", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00091", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee0a", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb5c3141e1d61ac09ee08", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee0c", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbb5c3141e1d61ac09ee08", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09edd2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edd2", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edd4", + "_tpl": "5937ee6486f77408994ba448", + "parentId": "66cbb5c3141e1d61ac09edd2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edd6", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09edd2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1097 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00263", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee0e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee0e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee10", - "_tpl": "57513fcc24597720a31c09a6", - "parentId": "66cbb5c3141e1d61ac09ee0e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee12", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb5c3141e1d61ac09ee0e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09edd8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edd8", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee14", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66cbb5c3141e1d61ac09ee0e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09edda", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb5c3141e1d61ac09edd8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00055", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee16", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee16", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00331", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee18", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbb5c3141e1d61ac09ee16", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee1a", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb5c3141e1d61ac09ee16", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eddc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eddc", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee1c", - "_tpl": "5fb651b52b1b027b1f50bcff", - "parentId": "66cbb5c3141e1d61ac09ee16", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09edde", + "_tpl": "5aa7e373e5b5b000137b76f0", + "parentId": "66cbb5c3141e1d61ac09eddc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00053", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ee1e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee1e", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00109", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee20", - "_tpl": "60391afc25aff57af81f7085", - "parentId": "66cbb5c3141e1d61ac09ee1e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee22", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb5c3141e1d61ac09ee1e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ede0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ede0", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee24", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb5c3141e1d61ac09ee1e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ede2", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbb5c3141e1d61ac09ede0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00164", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee26", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee26", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee27", - "_tpl": "5ea17ca01412a1425304d1c0", - "parentId": "66cbb5c3141e1d61ac09ee26", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee28", - "_tpl": "657f9a55c6679fefb3051e19", - "parentId": "66cbb5c3141e1d61ac09ee27", - "slotId": "Helmet_top" + { + "Id": "container_custom_DesignStuff_00172", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee29", - "_tpl": "657f9a94ada5fadd1f07a589", - "parentId": "66cbb5c3141e1d61ac09ee27", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee2b", - "_tpl": "6699370c57df3e2b4e0a0dab", - "parentId": "66cbb5c3141e1d61ac09ee26", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ede4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ede4", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ede6", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbb5c3141e1d61ac09ede4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00196", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee2d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee2d", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00209", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee2e", - "_tpl": "5ea03f7400685063ec28bfa8", - "parentId": "66cbb5c3141e1d61ac09ee2d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ede8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ede8", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb5c3141e1d61ac09edea", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbb5c3141e1d61ac09ede8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edec", + "_tpl": "5b7d693d5acfc43bca706a3d", + "parentId": "66cbb5c3141e1d61ac09ede8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edee", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09ede8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 41 } } + ] + }, + { + "Id": "container_custom_DesignStuff_00078", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee2f", - "_tpl": "5ea03e9400685063ec28bfa4", - "parentId": "66cbb5c3141e1d61ac09ee2e", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09ee30", - "_tpl": "5ea034eb5aad6446a939737b", - "parentId": "66cbb5c3141e1d61ac09ee2e", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee33", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66cbb5c3141e1d61ac09ee30", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09edf0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edf0", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09edf2", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb5c3141e1d61ac09edf0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00139", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee31", - "_tpl": "5ea03e5009aa976f2e7a514b", - "parentId": "66cbb5c3141e1d61ac09ee2e", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee32", - "_tpl": "5ea02bb600685063ec28bfa1", - "parentId": "66cbb5c3141e1d61ac09ee2e", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09ee35", - "_tpl": "5aa2ba19e5b5b00014028f4e", - "parentId": "66cbb5c3141e1d61ac09ee2d", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09edf4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edf4", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee36", - "_tpl": "5b432d215acfc4771e1c6624", - "parentId": "66cbb5c3141e1d61ac09ee2d", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee37", - "_tpl": "657bb92fa1c61ee0c303631f", - "parentId": "66cbb5c3141e1d61ac09ee36", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb5c3141e1d61ac09ee38", - "_tpl": "657bb99db30eca976305117f", - "parentId": "66cbb5c3141e1d61ac09ee36", - "slotId": "Helmet_back" - }, - { - "_id": "66cbb5c3141e1d61ac09ee3a", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbb5c3141e1d61ac09ee2d", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 1 + { + "_id": "66cbb5c3141e1d61ac09edf6", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb5c3141e1d61ac09edf4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 73 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee3c", - "_tpl": "5d4041f086f7743cac3f22a7", - "parentId": "66cbb5c3141e1d61ac09ee2d", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00104", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee3e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee3e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee40", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66cbb5c3141e1d61ac09ee3e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09edf8", + "_tpl": "62a091170b9d3c46de5b6cf2", + "parentId": "66cbb5c3141e1d61ac09edf4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ee42", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee42", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00061", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee44", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb5c3141e1d61ac09ee42", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee46", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66cbb5c3141e1d61ac09ee42", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09edfa", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09edfa", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee48", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbb5c3141e1d61ac09ee42", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09edfc", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "66cbb5c3141e1d61ac09edfa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09edfe", + "_tpl": "5d1b36a186f7742523398433", + "parentId": "66cbb5c3141e1d61ac09edfa", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00174", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee4a", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbb5c3141e1d61ac09ee42", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee4c", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb5c3141e1d61ac09ee42", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee00", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee00", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee4e", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbb5c3141e1d61ac09ee42", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ee02", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb5c3141e1d61ac09ee00", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00244", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ee50", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee50", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00073", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee52", - "_tpl": "5d4aaa54a4b9365392071170", - "parentId": "66cbb5c3141e1d61ac09ee50", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee54", - "_tpl": "5aaa5e60e5b5b000140293d6", - "parentId": "66cbb5c3141e1d61ac09ee50", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee04", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee04", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ee06", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "66cbb5c3141e1d61ac09ee04", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00153", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee56", - "_tpl": "5947c73886f7747701588af5", - "parentId": "66cbb5c3141e1d61ac09ee50", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee58", - "_tpl": "577d128124597739d65d0e56", - "parentId": "66cbb5c3141e1d61ac09ee50", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee08", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee08", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee59", - "_tpl": "5de652c31b7e3716273428be", - "parentId": "66cbb5c3141e1d61ac09ee50", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ee0a", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb5c3141e1d61ac09ee08", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb5c3141e1d61ac09ee0c", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbb5c3141e1d61ac09ee08", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66cbb5c3141e1d61ac09ee5a", - "_tpl": "5de653abf76fdc1ce94a5a2a", - "parentId": "66cbb5c3141e1d61ac09ee59", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09ee5f", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "66cbb5c3141e1d61ac09ee5a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2.0 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee5b", - "_tpl": "5de655be4a9f347bc92edb88", - "parentId": "66cbb5c3141e1d61ac09ee59", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09ee5c", - "_tpl": "5de65547883dde217541644b", - "parentId": "66cbb5c3141e1d61ac09ee59", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09ee5d", - "_tpl": "5de6556a205ddc616a6bc4f7", - "parentId": "66cbb5c3141e1d61ac09ee5c", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09ee5e", - "_tpl": "5de6558e9f98ac2bc65950fc", - "parentId": "66cbb5c3141e1d61ac09ee59", - "slotId": "mod_mount" - }, - { - "_id": "66cbb5c3141e1d61ac09ee61", - "_tpl": "5f2aa43ba9b91d26f20ae6d2", - "parentId": "66cbb5c3141e1d61ac09ee50", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00115", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee63", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee63", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee65", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb5c3141e1d61ac09ee63", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00263", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee67", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb5c3141e1d61ac09ee63", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00145", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee69", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee69", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee6c", - "_tpl": "64aceaecc4eda9354b0226b6", - "parentId": "66cbb5c3141e1d61ac09ee69", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee0e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee0e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee10", + "_tpl": "57513fcc24597720a31c09a6", + "parentId": "66cbb5c3141e1d61ac09ee0e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee12", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb5c3141e1d61ac09ee0e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ee14", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66cbb5c3141e1d61ac09ee0e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00055", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee6d", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbb5c3141e1d61ac09ee6c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee70", - "_tpl": "657023fcbfc87b3a34093213", - "parentId": "66cbb5c3141e1d61ac09ee69", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee16", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee16", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee18", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbb5c3141e1d61ac09ee16", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee1a", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb5c3141e1d61ac09ee16", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ee1c", + "_tpl": "5fb651b52b1b027b1f50bcff", + "parentId": "66cbb5c3141e1d61ac09ee16", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00053", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee71", - "_tpl": "59e6658b86f77411d949b250", - "parentId": "66cbb5c3141e1d61ac09ee70", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee74", - "_tpl": "65702606cfc010a0f5006a3e", - "parentId": "66cbb5c3141e1d61ac09ee69", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ee1e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee1e", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee20", + "_tpl": "60391afc25aff57af81f7085", + "parentId": "66cbb5c3141e1d61ac09ee1e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee22", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb5c3141e1d61ac09ee1e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ee24", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb5c3141e1d61ac09ee1e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00164", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee75", - "_tpl": "573718ba2459775a75491131", - "parentId": "66cbb5c3141e1d61ac09ee74", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee77", - "_tpl": "59e6542b86f77411dc52a77a", - "parentId": "66cbb5c3141e1d61ac09ee69", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 47 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee26", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee26", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee27", + "_tpl": "5ea17ca01412a1425304d1c0", + "parentId": "66cbb5c3141e1d61ac09ee26", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee28", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "66cbb5c3141e1d61ac09ee27", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb5c3141e1d61ac09ee29", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "66cbb5c3141e1d61ac09ee27", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb5c3141e1d61ac09ee2b", + "_tpl": "6699370c57df3e2b4e0a0dab", + "parentId": "66cbb5c3141e1d61ac09ee26", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00194", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee79", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee79", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00196", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee7b", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66cbb5c3141e1d61ac09ee79", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee7d", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb5c3141e1d61ac09ee79", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee7f", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee7f", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee81", - "_tpl": "5a0eec9686f77402ac5c39f2", - "parentId": "66cbb5c3141e1d61ac09ee7f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee2d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee2d", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee2e", + "_tpl": "5ea03f7400685063ec28bfa8", + "parentId": "66cbb5c3141e1d61ac09ee2d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee2f", + "_tpl": "5ea03e9400685063ec28bfa4", + "parentId": "66cbb5c3141e1d61ac09ee2e", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09ee30", + "_tpl": "5ea034eb5aad6446a939737b", + "parentId": "66cbb5c3141e1d61ac09ee2e", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ee33", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66cbb5c3141e1d61ac09ee30", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee31", + "_tpl": "5ea03e5009aa976f2e7a514b", + "parentId": "66cbb5c3141e1d61ac09ee2e", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09ee32", + "_tpl": "5ea02bb600685063ec28bfa1", + "parentId": "66cbb5c3141e1d61ac09ee2e", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09ee35", + "_tpl": "5aa2ba19e5b5b00014028f4e", + "parentId": "66cbb5c3141e1d61ac09ee2d", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee36", + "_tpl": "5b432d215acfc4771e1c6624", + "parentId": "66cbb5c3141e1d61ac09ee2d", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee37", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "66cbb5c3141e1d61ac09ee36", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb5c3141e1d61ac09ee38", + "_tpl": "657bb99db30eca976305117f", + "parentId": "66cbb5c3141e1d61ac09ee36", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb5c3141e1d61ac09ee3a", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbb5c3141e1d61ac09ee2d", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee3c", + "_tpl": "5d4041f086f7743cac3f22a7", + "parentId": "66cbb5c3141e1d61ac09ee2d", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00086", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee83", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee83", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00104", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee85", - "_tpl": "5751487e245977207e26a315", - "parentId": "66cbb5c3141e1d61ac09ee83", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ee87", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee87", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee89", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ee87", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee3e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee3e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1038 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee8b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ee87", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 918 - } - } - ] - }, - { - "Id": "Lootable_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee8d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee8d", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee8f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ee8d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1133 + { + "_id": "66cbb5c3141e1d61ac09ee40", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66cbb5c3141e1d61ac09ee3e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00113", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee91", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee91", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee93", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb5c3141e1d61ac09ee91", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00271", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee95", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee95", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ee97", - "_tpl": "5d1b36a186f7742523398433", - "parentId": "66cbb5c3141e1d61ac09ee95", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ee42", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee42", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee99", - "_tpl": "57513fcc24597720a31c09a6", - "parentId": "66cbb5c3141e1d61ac09ee95", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00232", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ee9b", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ee9b", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee9d", - "_tpl": "5cc9ad73d7f00c000e2579d4", - "parentId": "66cbb5c3141e1d61ac09ee9b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ee44", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb5c3141e1d61ac09ee42", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ee9f", - "_tpl": "5a9685b1a2750c0032157104", - "parentId": "66cbb5c3141e1d61ac09ee9b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ee46", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66cbb5c3141e1d61ac09ee42", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eea1", - "_tpl": "576a5ed62459771e9c2096cb", - "parentId": "66cbb5c3141e1d61ac09ee9b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ee48", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbb5c3141e1d61ac09ee42", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee4a", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbb5c3141e1d61ac09ee42", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee4c", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb5c3141e1d61ac09ee42", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee4e", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbb5c3141e1d61ac09ee42", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00149", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eea3", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eea3", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00244", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eea5", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb5c3141e1d61ac09eea3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eea7", - "_tpl": "5af04b6486f774195a3ebb49", - "parentId": "66cbb5c3141e1d61ac09eea3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ee50", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee50", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eea9", - "_tpl": "5d4041f086f7743cac3f22a7", - "parentId": "66cbb5c3141e1d61ac09eea3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00242", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eeab", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eeab", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ee52", + "_tpl": "5d4aaa54a4b9365392071170", + "parentId": "66cbb5c3141e1d61ac09ee50", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee54", + "_tpl": "5aaa5e60e5b5b000140293d6", + "parentId": "66cbb5c3141e1d61ac09ee50", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee56", + "_tpl": "5947c73886f7747701588af5", + "parentId": "66cbb5c3141e1d61ac09ee50", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee58", + "_tpl": "577d128124597739d65d0e56", + "parentId": "66cbb5c3141e1d61ac09ee50", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee59", + "_tpl": "5de652c31b7e3716273428be", + "parentId": "66cbb5c3141e1d61ac09ee50", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee5a", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "parentId": "66cbb5c3141e1d61ac09ee59", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ee5f", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "66cbb5c3141e1d61ac09ee5a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee5b", + "_tpl": "5de655be4a9f347bc92edb88", + "parentId": "66cbb5c3141e1d61ac09ee59", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09ee5c", + "_tpl": "5de65547883dde217541644b", + "parentId": "66cbb5c3141e1d61ac09ee59", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09ee5d", + "_tpl": "5de6556a205ddc616a6bc4f7", + "parentId": "66cbb5c3141e1d61ac09ee5c", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09ee5e", + "_tpl": "5de6558e9f98ac2bc65950fc", + "parentId": "66cbb5c3141e1d61ac09ee59", + "slotId": "mod_mount" + }, + { + "_id": "66cbb5c3141e1d61ac09ee61", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "parentId": "66cbb5c3141e1d61ac09ee50", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00166", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eead", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eead", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00115", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eeaf", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "66cbb5c3141e1d61ac09eead", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eeb1", - "_tpl": "5c6d10e82e221601da357b07", - "parentId": "66cbb5c3141e1d61ac09eead", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee63", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee63", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eeb3", - "_tpl": "5b7be4645acfc400170e2dcc", - "parentId": "66cbb5c3141e1d61ac09eead", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09ee65", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb5c3141e1d61ac09ee63", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ee67", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb5c3141e1d61ac09ee63", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00145", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eeb5", - "_tpl": "5fbcbd10ab884124df0cd563", - "parentId": "66cbb5c3141e1d61ac09eead", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eeb7", - "_tpl": "58272d7f2459774f6311ddfd", - "parentId": "66cbb5c3141e1d61ac09eead", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee69", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee69", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee6c", + "_tpl": "64aceaecc4eda9354b0226b6", + "parentId": "66cbb5c3141e1d61ac09ee69", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee6d", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbb5c3141e1d61ac09ee6c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee70", + "_tpl": "657023fcbfc87b3a34093213", + "parentId": "66cbb5c3141e1d61ac09ee69", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee71", + "_tpl": "59e6658b86f77411d949b250", + "parentId": "66cbb5c3141e1d61ac09ee70", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee74", + "_tpl": "65702606cfc010a0f5006a3e", + "parentId": "66cbb5c3141e1d61ac09ee69", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee75", + "_tpl": "573718ba2459775a75491131", + "parentId": "66cbb5c3141e1d61ac09ee74", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee77", + "_tpl": "59e6542b86f77411dc52a77a", + "parentId": "66cbb5c3141e1d61ac09ee69", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 47 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00380", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eeb9", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eeb9", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00194", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eebb", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbb5c3141e1d61ac09eeb9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eebd", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb5c3141e1d61ac09eeb9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee79", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee79", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee7b", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66cbb5c3141e1d61ac09ee79", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee7d", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb5c3141e1d61ac09ee79", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eebf", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eebf", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eec1", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb5c3141e1d61ac09eebf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00395", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eec3", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eec3", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eec5", - "_tpl": "62a5c333ec21e50cad3b5dc6", - "parentId": "66cbb5c3141e1d61ac09eec3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee7f", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee7f", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eec7", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb5c3141e1d61ac09eec3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ee81", + "_tpl": "5a0eec9686f77402ac5c39f2", + "parentId": "66cbb5c3141e1d61ac09ee7f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00141", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eec9", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eec9", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00086", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eecb", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb5c3141e1d61ac09eec9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee83", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee83", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee85", + "_tpl": "5751487e245977207e26a315", + "parentId": "66cbb5c3141e1d61ac09ee83", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eecd", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eecd", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eecf", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb5c3141e1d61ac09eecd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ee87", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee87", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee89", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ee87", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1038 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee8b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ee87", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 918 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00294", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eed1", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eed1", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eed3", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbb5c3141e1d61ac09eed1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee8d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee8d", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ee8f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ee8d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1133 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00113", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eed5", - "_tpl": "59e35abd86f7741778269d82", - "parentId": "66cbb5c3141e1d61ac09eed1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee91", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee91", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee93", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb5c3141e1d61ac09ee91", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00192", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eed7", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eed7", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00271", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eed8", - "_tpl": "5c0e51be86f774598e797894", - "parentId": "66cbb5c3141e1d61ac09eed7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee95", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee95", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee97", + "_tpl": "5d1b36a186f7742523398433", + "parentId": "66cbb5c3141e1d61ac09ee95", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee99", + "_tpl": "57513fcc24597720a31c09a6", + "parentId": "66cbb5c3141e1d61ac09ee95", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00232", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eed9", - "_tpl": "654a8b0b0337d53f9102c2ae", - "parentId": "66cbb5c3141e1d61ac09eed8", - "slotId": "Soft_armor_front" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eeda", - "_tpl": "654a8976f414fcea4004d78b", - "parentId": "66cbb5c3141e1d61ac09eed8", - "slotId": "Soft_armor_back" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ee9b", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ee9b", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee9d", + "_tpl": "5cc9ad73d7f00c000e2579d4", + "parentId": "66cbb5c3141e1d61ac09ee9b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ee9f", + "_tpl": "5a9685b1a2750c0032157104", + "parentId": "66cbb5c3141e1d61ac09ee9b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eea1", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "66cbb5c3141e1d61ac09ee9b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_custom_DesignStuff_00149", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eedb", - "_tpl": "654a8b3df414fcea4004d78f", - "parentId": "66cbb5c3141e1d61ac09eed8", - "slotId": "Soft_armor_left" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eedc", - "_tpl": "654a8b80f414fcea4004d797", - "parentId": "66cbb5c3141e1d61ac09eed8", - "slotId": "soft_armor_right" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eea3", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eea3", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eea5", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb5c3141e1d61ac09eea3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eea7", + "_tpl": "5af04b6486f774195a3ebb49", + "parentId": "66cbb5c3141e1d61ac09eea3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eea9", + "_tpl": "5d4041f086f7743cac3f22a7", + "parentId": "66cbb5c3141e1d61ac09eea3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_custom_DesignStuff_00242", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eedd", - "_tpl": "654a8ae00337d53f9102c2aa", - "parentId": "66cbb5c3141e1d61ac09eed8", - "slotId": "Collar" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eede", - "_tpl": "654a8bc5f414fcea4004d79b", - "parentId": "66cbb5c3141e1d61ac09eed8", - "slotId": "Groin" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eeab", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eeab", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_custom_DesignStuff_00166", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eedf", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "66cbb5c3141e1d61ac09eed8", - "slotId": "Front_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eee0", - "_tpl": "656efd66034e8e01c407f35c", - "parentId": "66cbb5c3141e1d61ac09eed8", - "slotId": "Back_plate" - } - ] - }, - { - "Id": "container_custom_DesignStuff_00181", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eee2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eee2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eee4", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb5c3141e1d61ac09eee2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eead", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eead", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09eee6", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb5c3141e1d61ac09eee2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eeaf", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "66cbb5c3141e1d61ac09eead", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eeb1", + "_tpl": "5c6d10e82e221601da357b07", + "parentId": "66cbb5c3141e1d61ac09eead", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eeb3", + "_tpl": "5b7be4645acfc400170e2dcc", + "parentId": "66cbb5c3141e1d61ac09eead", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eeb5", + "_tpl": "5fbcbd10ab884124df0cd563", + "parentId": "66cbb5c3141e1d61ac09eead", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eeb7", + "_tpl": "58272d7f2459774f6311ddfd", + "parentId": "66cbb5c3141e1d61ac09eead", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00043", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eee8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eee8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00380", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eeea", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb5c3141e1d61ac09eee8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00042", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eeec", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eeec", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eeee", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb5c3141e1d61ac09eeec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eeb9", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eeb9", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eebb", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbb5c3141e1d61ac09eeb9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eebd", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb5c3141e1d61ac09eeb9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00041", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eef0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eef0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eef2", - "_tpl": "5ad5cfbd86f7742c825d6104", - "parentId": "66cbb5c3141e1d61ac09eef0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eef4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eef4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eef6", - "_tpl": "593aa4be86f77457f56379f8", - "parentId": "66cbb5c3141e1d61ac09eef4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eebf", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eebf", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eec1", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb5c3141e1d61ac09eebf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00058", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eef8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eef8", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00395", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eefa", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb5c3141e1d61ac09eef8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00369", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eefc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eefc", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eefe", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09eefc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eec3", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eec3", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1025 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ef00", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb5c3141e1d61ac09eefc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09eec5", + "_tpl": "62a5c333ec21e50cad3b5dc6", + "parentId": "66cbb5c3141e1d61ac09eec3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eec7", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb5c3141e1d61ac09eec3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00141", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef01", - "_tpl": "66992b349950f5f4cd06029f", - "parentId": "66cbb5c3141e1d61ac09eefc", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eec9", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eec9", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb5c3141e1d61ac09eecb", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb5c3141e1d61ac09eec9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_custom_DesignStuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef02", - "_tpl": "669927203c4fda6471005cbe", - "parentId": "66cbb5c3141e1d61ac09ef01", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef08", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb5c3141e1d61ac09ef02", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eecd", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eecd", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eecf", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb5c3141e1d61ac09eecd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb5c3141e1d61ac09ef03", - "_tpl": "6698c8ab29e062525d0ad8ab", - "parentId": "66cbb5c3141e1d61ac09ef01", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09ef04", - "_tpl": "6698c9aa36ba38d29101770f", - "parentId": "66cbb5c3141e1d61ac09ef03", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09ef05", - "_tpl": "6698c8c736ba38d29101770b", - "parentId": "66cbb5c3141e1d61ac09ef01", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb5c3141e1d61ac09ef06", - "_tpl": "669946c157df3e2b4e0a0dc5", - "parentId": "66cbb5c3141e1d61ac09ef01", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09ef07", - "_tpl": "6699249f3c4fda6471005cba", - "parentId": "66cbb5c3141e1d61ac09ef01", - "slotId": "mod_stock" - } - ] - }, - { - "Id": "container_custom_DesignStuff_00150", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef0a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef0a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00294", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef0c", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb5c3141e1d61ac09ef0a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef0e", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66cbb5c3141e1d61ac09ef0a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eed1", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eed1", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ef10", - "_tpl": "6389c6463485cf0eeb260715", - "parentId": "66cbb5c3141e1d61ac09ef0a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eed3", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbb5c3141e1d61ac09eed1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eed5", + "_tpl": "59e35abd86f7741778269d82", + "parentId": "66cbb5c3141e1d61ac09eed1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00236", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef12", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef12", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00192", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef14", - "_tpl": "55d45f484bdc2d972f8b456d", - "parentId": "66cbb5c3141e1d61ac09ef12", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef16", - "_tpl": "5bbdb870d4351e00367fb67d", - "parentId": "66cbb5c3141e1d61ac09ef12", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eed7", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eed7", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ef18", - "_tpl": "5c1a1cc52e221602b3136e3d", - "parentId": "66cbb5c3141e1d61ac09ef12", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09eed8", + "_tpl": "5c0e51be86f774598e797894", + "parentId": "66cbb5c3141e1d61ac09eed7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eed9", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "66cbb5c3141e1d61ac09eed8", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbb5c3141e1d61ac09eeda", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "66cbb5c3141e1d61ac09eed8", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbb5c3141e1d61ac09eedb", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "66cbb5c3141e1d61ac09eed8", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbb5c3141e1d61ac09eedc", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "66cbb5c3141e1d61ac09eed8", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbb5c3141e1d61ac09eedd", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "66cbb5c3141e1d61ac09eed8", + "slotId": "Collar" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eede", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "66cbb5c3141e1d61ac09eed8", + "slotId": "Groin" + }, + { + "_id": "66cbb5c3141e1d61ac09eedf", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "66cbb5c3141e1d61ac09eed8", + "slotId": "Front_plate" + }, + { + "_id": "66cbb5c3141e1d61ac09eee0", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "66cbb5c3141e1d61ac09eed8", + "slotId": "Back_plate" } + ] + }, + { + "Id": "container_custom_DesignStuff_00181", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef19", - "_tpl": "669fa3f88abd2662d80eee77", - "parentId": "66cbb5c3141e1d61ac09ef12", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eee2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eee2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eee4", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb5c3141e1d61ac09eee2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb5c3141e1d61ac09eee6", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb5c3141e1d61ac09eee2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_custom_DesignStuff_00043", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef1a", - "_tpl": "669fa4ba1bd4416eaa09b3c6", - "parentId": "66cbb5c3141e1d61ac09ef19", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09ef1b", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbb5c3141e1d61ac09ef1a", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb5c3141e1d61ac09ef1c", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66cbb5c3141e1d61ac09ef19", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbb5c3141e1d61ac09ef1d", - "_tpl": "669fa5019aa2a422600442f6", - "parentId": "66cbb5c3141e1d61ac09ef19", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef1e", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbb5c3141e1d61ac09ef1d", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09ef1f", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbb5c3141e1d61ac09ef19", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09ef20", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66cbb5c3141e1d61ac09ef1f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00108", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef22", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef22", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ef24", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb5c3141e1d61ac09ef22", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eee8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eee8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eeea", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb5c3141e1d61ac09eee8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00214", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef26", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef26", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00042", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef28", - "_tpl": "653ed132896b99b40a0292e6", - "parentId": "66cbb5c3141e1d61ac09ef26", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef2a", - "_tpl": "651bfe4d1065f87f082e7209", - "parentId": "66cbb5c3141e1d61ac09ef26", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eeec", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eeec", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ef2c", - "_tpl": "558032614bdc2de7118b4585", - "parentId": "66cbb5c3141e1d61ac09ef26", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eeee", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb5c3141e1d61ac09eeec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00205", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef2e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef2e", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00041", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef30", - "_tpl": "5943eeeb86f77412d6384f6b", - "parentId": "66cbb5c3141e1d61ac09ef2e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef31", - "_tpl": "57dc2fa62459775949412633", - "parentId": "66cbb5c3141e1d61ac09ef2e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eef0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eef0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Foldable": { - "Folded": false + { + "_id": "66cbb5c3141e1d61ac09eef2", + "_tpl": "5ad5cfbd86f7742c825d6104", + "parentId": "66cbb5c3141e1d61ac09eef0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66cbb5c3141e1d61ac09ef32", - "_tpl": "57e3dba62459770f0c32322b", - "parentId": "66cbb5c3141e1d61ac09ef31", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09ef33", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "66cbb5c3141e1d61ac09ef31", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09ef34", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb5c3141e1d61ac09ef31", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09ef39", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb5c3141e1d61ac09ef34", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11.0 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ef35", - "_tpl": "57dc324a24597759501edc20", - "parentId": "66cbb5c3141e1d61ac09ef31", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09ef36", - "_tpl": "57dc334d245977597164366f", - "parentId": "66cbb5c3141e1d61ac09ef31", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09ef37", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "66cbb5c3141e1d61ac09ef31", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb5c3141e1d61ac09ef38", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "66cbb5c3141e1d61ac09ef37", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "container_custom_DesignStuff_00230", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef3b", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef3b", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef3d", - "_tpl": "5e4abc1f86f774069619fbaa", - "parentId": "66cbb5c3141e1d61ac09ef3b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00180", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef3f", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef3f", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef41", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb5c3141e1d61ac09ef3f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eef4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eef4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eef6", + "_tpl": "593aa4be86f77457f56379f8", + "parentId": "66cbb5c3141e1d61ac09eef4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00067", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef43", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef43", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00058", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef45", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb5c3141e1d61ac09ef43", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00129", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef47", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef47", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef49", - "_tpl": "602286df23506e50807090c6", - "parentId": "66cbb5c3141e1d61ac09ef47", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eef8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eef8", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ef4a", - "_tpl": "61bc85697113f767765c7fe7", - "parentId": "66cbb5c3141e1d61ac09ef47", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09eefa", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb5c3141e1d61ac09eef8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb5c3141e1d61ac09ef4b", - "_tpl": "6572fc809a866b80ab07eb59", - "parentId": "66cbb5c3141e1d61ac09ef4a", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbb5c3141e1d61ac09ef4c", - "_tpl": "6572fc8c9a866b80ab07eb5d", - "parentId": "66cbb5c3141e1d61ac09ef4a", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbb5c3141e1d61ac09ef4d", - "_tpl": "6572fc989a866b80ab07eb61", - "parentId": "66cbb5c3141e1d61ac09ef4a", - "slotId": "Soft_armor_left" - }, - { - "_id": "66cbb5c3141e1d61ac09ef4e", - "_tpl": "6572fca39a866b80ab07eb65", - "parentId": "66cbb5c3141e1d61ac09ef4a", - "slotId": "soft_armor_right" - }, - { - "_id": "66cbb5c3141e1d61ac09ef4f", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "66cbb5c3141e1d61ac09ef4a", - "slotId": "Front_plate" - }, - { - "_id": "66cbb5c3141e1d61ac09ef50", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "66cbb5c3141e1d61ac09ef4a", - "slotId": "Back_plate" - } - ] - }, - { - "Id": "container_custom_DesignStuff_00148", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef52", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef52", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00369", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef54", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb5c3141e1d61ac09ef52", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef56", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb5c3141e1d61ac09ef52", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eefc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eefc", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eefe", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09eefc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1025 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef00", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb5c3141e1d61ac09eefc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef01", + "_tpl": "66992b349950f5f4cd06029f", + "parentId": "66cbb5c3141e1d61ac09eefc", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef02", + "_tpl": "669927203c4fda6471005cbe", + "parentId": "66cbb5c3141e1d61ac09ef01", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ef08", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb5c3141e1d61ac09ef02", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef03", + "_tpl": "6698c8ab29e062525d0ad8ab", + "parentId": "66cbb5c3141e1d61ac09ef01", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09ef04", + "_tpl": "6698c9aa36ba38d29101770f", + "parentId": "66cbb5c3141e1d61ac09ef03", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09ef05", + "_tpl": "6698c8c736ba38d29101770b", + "parentId": "66cbb5c3141e1d61ac09ef01", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb5c3141e1d61ac09ef06", + "_tpl": "669946c157df3e2b4e0a0dc5", + "parentId": "66cbb5c3141e1d61ac09ef01", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09ef07", + "_tpl": "6699249f3c4fda6471005cba", + "parentId": "66cbb5c3141e1d61ac09ef01", + "slotId": "mod_stock" } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef58", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef58", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00150", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef5a", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb5c3141e1d61ac09ef58", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef5c", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb5c3141e1d61ac09ef58", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef0a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef0a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef0c", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb5c3141e1d61ac09ef0a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef0e", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66cbb5c3141e1d61ac09ef0a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef10", + "_tpl": "6389c6463485cf0eeb260715", + "parentId": "66cbb5c3141e1d61ac09ef0a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00286", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef5e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef5e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00236", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef60", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb5c3141e1d61ac09ef5e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef62", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb5c3141e1d61ac09ef5e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef12", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef12", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09ef64", - "_tpl": "59fafb5d86f774067a6f2084", - "parentId": "66cbb5c3141e1d61ac09ef5e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00265", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef66", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef66", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ef14", + "_tpl": "55d45f484bdc2d972f8b456d", + "parentId": "66cbb5c3141e1d61ac09ef12", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef16", + "_tpl": "5bbdb870d4351e00367fb67d", + "parentId": "66cbb5c3141e1d61ac09ef12", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef18", + "_tpl": "5c1a1cc52e221602b3136e3d", + "parentId": "66cbb5c3141e1d61ac09ef12", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef19", + "_tpl": "669fa3f88abd2662d80eee77", + "parentId": "66cbb5c3141e1d61ac09ef12", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef1a", + "_tpl": "669fa4ba1bd4416eaa09b3c6", + "parentId": "66cbb5c3141e1d61ac09ef19", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09ef1b", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbb5c3141e1d61ac09ef1a", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb5c3141e1d61ac09ef1c", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66cbb5c3141e1d61ac09ef19", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb5c3141e1d61ac09ef1d", + "_tpl": "669fa5019aa2a422600442f6", + "parentId": "66cbb5c3141e1d61ac09ef19", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09ef1e", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbb5c3141e1d61ac09ef1d", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09ef1f", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbb5c3141e1d61ac09ef19", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ef20", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66cbb5c3141e1d61ac09ef1f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00108", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef68", - "_tpl": "5c1267ee86f77416ec610f72", - "parentId": "66cbb5c3141e1d61ac09ef66", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef22", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef22", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ef24", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb5c3141e1d61ac09ef22", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00214", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef6a", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb5c3141e1d61ac09ef66", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef26", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef26", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef28", + "_tpl": "653ed132896b99b40a0292e6", + "parentId": "66cbb5c3141e1d61ac09ef26", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef2a", + "_tpl": "651bfe4d1065f87f082e7209", + "parentId": "66cbb5c3141e1d61ac09ef26", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ef2c", + "_tpl": "558032614bdc2de7118b4585", + "parentId": "66cbb5c3141e1d61ac09ef26", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00205", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef6c", - "_tpl": "5c12688486f77426843c7d32", - "parentId": "66cbb5c3141e1d61ac09ef66", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef2e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef2e", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef30", + "_tpl": "5943eeeb86f77412d6384f6b", + "parentId": "66cbb5c3141e1d61ac09ef2e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef31", + "_tpl": "57dc2fa62459775949412633", + "parentId": "66cbb5c3141e1d61ac09ef2e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef32", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "66cbb5c3141e1d61ac09ef31", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09ef33", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "66cbb5c3141e1d61ac09ef31", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09ef34", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb5c3141e1d61ac09ef31", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09ef39", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb5c3141e1d61ac09ef34", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef35", + "_tpl": "57dc324a24597759501edc20", + "parentId": "66cbb5c3141e1d61ac09ef31", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09ef36", + "_tpl": "57dc334d245977597164366f", + "parentId": "66cbb5c3141e1d61ac09ef31", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09ef37", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "66cbb5c3141e1d61ac09ef31", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb5c3141e1d61ac09ef38", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "66cbb5c3141e1d61ac09ef37", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00075", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef6e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef6e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00230", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef70", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb5c3141e1d61ac09ef6e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef3b", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef3b", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef3d", + "_tpl": "5e4abc1f86f774069619fbaa", + "parentId": "66cbb5c3141e1d61ac09ef3b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00090", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef72", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef72", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00180", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef74", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09ef72", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1100 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef3f", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef3f", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef41", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb5c3141e1d61ac09ef3f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00326", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef76", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef76", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00067", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef78", - "_tpl": "5947f92f86f77427344a76b1", - "parentId": "66cbb5c3141e1d61ac09ef76", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef43", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef43", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef45", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb5c3141e1d61ac09ef43", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00161", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef7a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef7a", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_custom_DesignStuff_00129", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef47", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef47", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef49", + "_tpl": "602286df23506e50807090c6", + "parentId": "66cbb5c3141e1d61ac09ef47", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef4a", + "_tpl": "61bc85697113f767765c7fe7", + "parentId": "66cbb5c3141e1d61ac09ef47", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef4b", + "_tpl": "6572fc809a866b80ab07eb59", + "parentId": "66cbb5c3141e1d61ac09ef4a", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbb5c3141e1d61ac09ef4c", + "_tpl": "6572fc8c9a866b80ab07eb5d", + "parentId": "66cbb5c3141e1d61ac09ef4a", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbb5c3141e1d61ac09ef4d", + "_tpl": "6572fc989a866b80ab07eb61", + "parentId": "66cbb5c3141e1d61ac09ef4a", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbb5c3141e1d61ac09ef4e", + "_tpl": "6572fca39a866b80ab07eb65", + "parentId": "66cbb5c3141e1d61ac09ef4a", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbb5c3141e1d61ac09ef4f", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "66cbb5c3141e1d61ac09ef4a", + "slotId": "Front_plate" + }, + { + "_id": "66cbb5c3141e1d61ac09ef50", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "66cbb5c3141e1d61ac09ef4a", + "slotId": "Back_plate" } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef7c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef7c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00148", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef7e", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb5c3141e1d61ac09ef7c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef52", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef52", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef54", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb5c3141e1d61ac09ef52", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef56", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb5c3141e1d61ac09ef52", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef80", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef80", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef82", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb5c3141e1d61ac09ef80", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef58", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef58", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef5a", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb5c3141e1d61ac09ef58", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef5c", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb5c3141e1d61ac09ef58", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef84", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef84", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00286", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef86", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb5c3141e1d61ac09ef84", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef88", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef88", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef8a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb5c3141e1d61ac09ef88", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef5e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef5e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef60", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb5c3141e1d61ac09ef5e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef62", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb5c3141e1d61ac09ef5e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef64", + "_tpl": "59fafb5d86f774067a6f2084", + "parentId": "66cbb5c3141e1d61ac09ef5e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef8c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef8c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00265", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef8e", - "_tpl": "5bc9c049d4351e44f824d360", - "parentId": "66cbb5c3141e1d61ac09ef8c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef66", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef66", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef68", + "_tpl": "5c1267ee86f77416ec610f72", + "parentId": "66cbb5c3141e1d61ac09ef66", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef6a", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb5c3141e1d61ac09ef66", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef6c", + "_tpl": "5c12688486f77426843c7d32", + "parentId": "66cbb5c3141e1d61ac09ef66", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00026", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef90", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef90", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00075", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef92", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66cbb5c3141e1d61ac09ef90", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef6e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef6e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef70", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb5c3141e1d61ac09ef6e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00025", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef94", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef94", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00090", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef96", - "_tpl": "62a09e974f842e1bd12da3f0", - "parentId": "66cbb5c3141e1d61ac09ef94", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef72", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef72", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef74", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09ef72", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1100 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09ef98", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef98", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00326", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef9a", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb5c3141e1d61ac09ef98", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 65 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef76", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef76", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef78", + "_tpl": "5947f92f86f77427344a76b1", + "parentId": "66cbb5c3141e1d61ac09ef76", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00100", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09ef9c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09ef9c", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00161", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09ef9e", - "_tpl": "59136f6f86f774447a1ed173", - "parentId": "66cbb5c3141e1d61ac09ef9c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef7a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef7a", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09efa0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efa0", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efa2", - "_tpl": "5d235b4d86f7742e017bc88a", - "parentId": "66cbb5c3141e1d61ac09efa0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 2 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef7c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef7c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef7e", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb5c3141e1d61ac09ef7c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00065", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09efa4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efa4", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efa6", - "_tpl": "5734758f24597738025ee253", - "parentId": "66cbb5c3141e1d61ac09efa4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef80", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef80", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef82", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb5c3141e1d61ac09ef80", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00198", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09efa8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efa8", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efaa", - "_tpl": "5f5e45cc5021ce62144be7aa", - "parentId": "66cbb5c3141e1d61ac09efa8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef84", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef84", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09ef86", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb5c3141e1d61ac09ef84", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efac", - "_tpl": "5751435d24597720a27126d1", - "parentId": "66cbb5c3141e1d61ac09efa8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef88", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef88", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef8a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb5c3141e1d61ac09ef88", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00019", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09efae", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efae", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efb0", - "_tpl": "593aa4be86f77457f56379f8", - "parentId": "66cbb5c3141e1d61ac09efae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef8c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef8c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef8e", + "_tpl": "5bc9c049d4351e44f824d360", + "parentId": "66cbb5c3141e1d61ac09ef8c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09efb2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efb2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00026", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efb4", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb5c3141e1d61ac09efb2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef90", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef90", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef92", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66cbb5c3141e1d61ac09ef90", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09efb6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efb6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00025", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efb8", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb5c3141e1d61ac09efb6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09efba", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efba", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efbc", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb5c3141e1d61ac09efba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef94", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef94", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef96", + "_tpl": "62a09e974f842e1bd12da3f0", + "parentId": "66cbb5c3141e1d61ac09ef94", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00111", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09efbe", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efbe", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efc0", - "_tpl": "5672c92d4bdc2d180f8b4567", - "parentId": "66cbb5c3141e1d61ac09efbe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00208", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09efc2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efc2", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efc4", - "_tpl": "6405ff6bd4578826ec3e377a", - "parentId": "66cbb5c3141e1d61ac09efc2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09ef98", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef98", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef9a", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb5c3141e1d61ac09ef98", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 65 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00279", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09efc6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efc6", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00100", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efc8", - "_tpl": "62a5c333ec21e50cad3b5dc6", - "parentId": "66cbb5c3141e1d61ac09efc6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09ef9c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09ef9c", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09ef9e", + "_tpl": "59136f6f86f774447a1ed173", + "parentId": "66cbb5c3141e1d61ac09ef9c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00105", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09efca", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efca", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efcc", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb5c3141e1d61ac09efca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09efa0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efa0", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efa2", + "_tpl": "5d235b4d86f7742e017bc88a", + "parentId": "66cbb5c3141e1d61ac09efa0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00160", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09efce", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efce", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_custom_DesignStuff_00065", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09efa4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efa4", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efa6", + "_tpl": "5734758f24597738025ee253", + "parentId": "66cbb5c3141e1d61ac09efa4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00317", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09efd0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efd0", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00198", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efd2", - "_tpl": "57ffb0062459777a045af529", - "parentId": "66cbb5c3141e1d61ac09efd0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09efa8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efa8", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efaa", + "_tpl": "5f5e45cc5021ce62144be7aa", + "parentId": "66cbb5c3141e1d61ac09efa8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09efac", + "_tpl": "5751435d24597720a27126d1", + "parentId": "66cbb5c3141e1d61ac09efa8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00019", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efd4", - "_tpl": "65f05b9d39dab9e9ec049cfd", - "parentId": "66cbb5c3141e1d61ac09efd0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09efae", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efae", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09efb0", + "_tpl": "593aa4be86f77457f56379f8", + "parentId": "66cbb5c3141e1d61ac09efae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efd6", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb5c3141e1d61ac09efd0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09efb2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efb2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efb4", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb5c3141e1d61ac09efb2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00137", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09efd8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efd8", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efda", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09efd8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 82 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09efb6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efb6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efb8", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb5c3141e1d61ac09efb6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00176", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09efdc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efdc", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efde", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbb5c3141e1d61ac09efdc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09efba", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efba", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09efbc", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb5c3141e1d61ac09efba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00111", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efe0", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb5c3141e1d61ac09efdc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09efbe", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efbe", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efc0", + "_tpl": "5672c92d4bdc2d180f8b4567", + "parentId": "66cbb5c3141e1d61ac09efbe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00186", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09efe2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efe2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00208", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efe4", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb5c3141e1d61ac09efe2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09efc2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efc2", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efc4", + "_tpl": "6405ff6bd4578826ec3e377a", + "parentId": "66cbb5c3141e1d61ac09efc2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09efe6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efe6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00279", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efe8", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbb5c3141e1d61ac09efe6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09efc6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efc6", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efc8", + "_tpl": "62a5c333ec21e50cad3b5dc6", + "parentId": "66cbb5c3141e1d61ac09efc6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09efea", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efea", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00105", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09efec", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09efea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 80 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09efee", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09efee", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eff0", - "_tpl": "59136e1e86f774432f15d133", - "parentId": "66cbb5c3141e1d61ac09efee", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09efca", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efca", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efcc", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb5c3141e1d61ac09efca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09eff2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eff2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00160", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eff4", - "_tpl": "5913611c86f77479e0084092", - "parentId": "66cbb5c3141e1d61ac09eff2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09efce", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efce", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00132", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09eff6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09eff6", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00317", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09eff8", - "_tpl": "5c165d832e2216398b5a7e36", - "parentId": "66cbb5c3141e1d61ac09eff6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09effa", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbb5c3141e1d61ac09eff6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09efd0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efd0", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efd2", + "_tpl": "57ffb0062459777a045af529", + "parentId": "66cbb5c3141e1d61ac09efd0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efd4", + "_tpl": "65f05b9d39dab9e9ec049cfd", + "parentId": "66cbb5c3141e1d61ac09efd0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efd6", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb5c3141e1d61ac09efd0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00050", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09effc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09effc", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00137", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09effe", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb5c3141e1d61ac09effc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f000", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb5c3141e1d61ac09effc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09efd8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efd8", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09efda", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09efd8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 82 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00176", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f002", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb5c3141e1d61ac09effc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f004", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb5c3141e1d61ac09effc", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09efdc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efdc", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f006", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb5c3141e1d61ac09effc", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09efde", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbb5c3141e1d61ac09efdc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f008", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb5c3141e1d61ac09effc", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09efe0", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb5c3141e1d61ac09efdc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00191", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f00a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f00a", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00186", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f00c", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66cbb5c3141e1d61ac09f00a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f00e", - "_tpl": "5d6d3943a4b9360dbc46d0cc", - "parentId": "66cbb5c3141e1d61ac09f00a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09efe2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efe2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09efe4", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb5c3141e1d61ac09efe2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f010", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66cbb5c3141e1d61ac09f00a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f012", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbb5c3141e1d61ac09f00a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09efe6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efe6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efe8", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbb5c3141e1d61ac09efe6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f014", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f014", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f016", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb5c3141e1d61ac09f014", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f018", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f018", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f01a", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb5c3141e1d61ac09f018", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09efea", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efea", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09efec", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09efea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 80 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00014", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f01c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f01c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f01e", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb5c3141e1d61ac09f01c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f020", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f020", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f022", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb5c3141e1d61ac09f020", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09efee", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09efee", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eff0", + "_tpl": "59136e1e86f774432f15d133", + "parentId": "66cbb5c3141e1d61ac09efee", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f024", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f024", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f026", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb5c3141e1d61ac09f024", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 46 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00098", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f028", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f028", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f02a", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb5c3141e1d61ac09f028", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09eff2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eff2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09eff4", + "_tpl": "5913611c86f77479e0084092", + "parentId": "66cbb5c3141e1d61ac09eff2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00162", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f02c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f02c", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00132", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f02e", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb5c3141e1d61ac09f02c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f030", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb5c3141e1d61ac09f02c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09eff6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09eff6", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f032", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb5c3141e1d61ac09f02c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09eff8", + "_tpl": "5c165d832e2216398b5a7e36", + "parentId": "66cbb5c3141e1d61ac09eff6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09effa", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbb5c3141e1d61ac09eff6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00138", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f034", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f034", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00050", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f036", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09f034", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1034 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f038", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09f034", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09effc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09effc", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 44 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f03a", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb5c3141e1d61ac09f034", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09effe", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb5c3141e1d61ac09effc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 89 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f03c", - "_tpl": "62a09cfe4f842e1bd12da3e4", - "parentId": "66cbb5c3141e1d61ac09f034", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09f000", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb5c3141e1d61ac09effc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f002", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb5c3141e1d61ac09effc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f004", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb5c3141e1d61ac09effc", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f006", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb5c3141e1d61ac09effc", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f008", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb5c3141e1d61ac09effc", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00300", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f03e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f03e", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00191", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f040", - "_tpl": "590c657e86f77412b013051d", - "parentId": "66cbb5c3141e1d61ac09f03e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00212", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f042", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f042", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f044", - "_tpl": "570fd79bd2720bc7458b4583", - "parentId": "66cbb5c3141e1d61ac09f042", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f00a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f00a", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f046", - "_tpl": "587df583245977373c4f1129", - "parentId": "66cbb5c3141e1d61ac09f042", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09f00c", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66cbb5c3141e1d61ac09f00a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f048", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66cbb5c3141e1d61ac09f042", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09f00e", + "_tpl": "5d6d3943a4b9360dbc46d0cc", + "parentId": "66cbb5c3141e1d61ac09f00a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 24 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f04a", - "_tpl": "5f3e77f59103d430b93f94c1", - "parentId": "66cbb5c3141e1d61ac09f042", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09f010", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66cbb5c3141e1d61ac09f00a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f04b", - "_tpl": "5aa7d03ae5b5b00016327db5", - "parentId": "66cbb5c3141e1d61ac09f042", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66cbb5c3141e1d61ac09f012", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbb5c3141e1d61ac09f00a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb5c3141e1d61ac09f04c", - "_tpl": "654a90aff4f81a421b0a7c86", - "parentId": "66cbb5c3141e1d61ac09f04b", - "slotId": "helmet_top" - }, - { - "_id": "66cbb5c3141e1d61ac09f04d", - "_tpl": "654a91068e1ce698150fd1e2", - "parentId": "66cbb5c3141e1d61ac09f04b", - "slotId": "helmet_back" - }, - { - "_id": "66cbb5c3141e1d61ac09f04e", - "_tpl": "654a9189bcc67a392b056c79", - "parentId": "66cbb5c3141e1d61ac09f04b", - "slotId": "helmet_ears" - } - ] - }, - { - "Id": "container_custom_DesignStuff_00274", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f050", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f050", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f052", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb5c3141e1d61ac09f050", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f054", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb5c3141e1d61ac09f050", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f014", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f014", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f016", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb5c3141e1d61ac09f014", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00264", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f056", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f056", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f058", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb5c3141e1d61ac09f056", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f05a", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb5c3141e1d61ac09f056", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f018", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f018", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f05c", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbb5c3141e1d61ac09f056", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09f01a", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb5c3141e1d61ac09f018", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00336", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f05e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f05e", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00014", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f060", - "_tpl": "5cc9a96cd7f00c011c04e04a", - "parentId": "66cbb5c3141e1d61ac09f05e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f062", - "_tpl": "5bbdb870d4351e00367fb67d", - "parentId": "66cbb5c3141e1d61ac09f05e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f01c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f01c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f01e", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb5c3141e1d61ac09f01c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00116", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f064", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f064", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f066", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb5c3141e1d61ac09f064", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00134", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f068", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f068", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f06a", - "_tpl": "5fbc226eca32ed67276c155d", - "parentId": "66cbb5c3141e1d61ac09f068", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f020", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f020", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09f022", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb5c3141e1d61ac09f020", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f06c", - "_tpl": "619b5db699fb192e7430664f", - "parentId": "66cbb5c3141e1d61ac09f068", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f06e", - "_tpl": "5de8e8dafd6b4e6e2276dc32", - "parentId": "66cbb5c3141e1d61ac09f068", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f024", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f024", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09f026", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb5c3141e1d61ac09f024", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 46 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00098", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f070", - "_tpl": "56ea7293d2720b8d4b8b45ba", - "parentId": "66cbb5c3141e1d61ac09f068", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f072", - "_tpl": "584924ec24597768f12ae244", - "parentId": "66cbb5c3141e1d61ac09f068", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f028", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f028", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f02a", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb5c3141e1d61ac09f028", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00350", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f074", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f074", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00162", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f076", - "_tpl": "5e2af4a786f7746d3f3c3400", - "parentId": "66cbb5c3141e1d61ac09f074", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f078", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb5c3141e1d61ac09f074", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f02c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f02c", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 54 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f07a", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66cbb5c3141e1d61ac09f074", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09f02e", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb5c3141e1d61ac09f02c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f030", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb5c3141e1d61ac09f02c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f032", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb5c3141e1d61ac09f02c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00047", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f07c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f07c", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00138", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f07e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09f07c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 782 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f080", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09f07c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 958 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f034", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f034", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f036", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09f034", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1034 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f038", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09f034", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 44 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f03a", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb5c3141e1d61ac09f034", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 89 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f03c", + "_tpl": "62a09cfe4f842e1bd12da3e4", + "parentId": "66cbb5c3141e1d61ac09f034", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00233", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f082", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f082", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00300", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f084", - "_tpl": "5dfa3d7ac41b2312ea33362a", - "parentId": "66cbb5c3141e1d61ac09f082", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f086", - "_tpl": "615d8eb350224f204c1da1cf", - "parentId": "66cbb5c3141e1d61ac09f082", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f03e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f03e", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09f040", + "_tpl": "590c657e86f77412b013051d", + "parentId": "66cbb5c3141e1d61ac09f03e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00212", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f088", - "_tpl": "5c6d450c2e221600114c997d", - "parentId": "66cbb5c3141e1d61ac09f082", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f08a", - "_tpl": "65293c7a17e14363030ad308", - "parentId": "66cbb5c3141e1d61ac09f082", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f042", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f042", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f08c", - "_tpl": "58491f3324597764bc48fa02", - "parentId": "66cbb5c3141e1d61ac09f082", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb5c3141e1d61ac09f044", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "66cbb5c3141e1d61ac09f042", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f046", + "_tpl": "587df583245977373c4f1129", + "parentId": "66cbb5c3141e1d61ac09f042", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f048", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66cbb5c3141e1d61ac09f042", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 24 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f04a", + "_tpl": "5f3e77f59103d430b93f94c1", + "parentId": "66cbb5c3141e1d61ac09f042", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f04b", + "_tpl": "5aa7d03ae5b5b00016327db5", + "parentId": "66cbb5c3141e1d61ac09f042", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f04c", + "_tpl": "654a90aff4f81a421b0a7c86", + "parentId": "66cbb5c3141e1d61ac09f04b", + "slotId": "helmet_top" + }, + { + "_id": "66cbb5c3141e1d61ac09f04d", + "_tpl": "654a91068e1ce698150fd1e2", + "parentId": "66cbb5c3141e1d61ac09f04b", + "slotId": "helmet_back" + }, + { + "_id": "66cbb5c3141e1d61ac09f04e", + "_tpl": "654a9189bcc67a392b056c79", + "parentId": "66cbb5c3141e1d61ac09f04b", + "slotId": "helmet_ears" } - } - ] - }, - { - "Id": "container_custom_DesignStuff_00044", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f08e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f08e", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00274", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f090", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09f08e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 876 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f092", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb5c3141e1d61ac09f08e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 761 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f050", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f050", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f052", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb5c3141e1d61ac09f050", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f054", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb5c3141e1d61ac09f050", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f094", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f094", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_custom_DesignStuff_00264", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f096", - "_tpl": "66b37ea4c5d72b0277488439", - "parentId": "66cbb5c3141e1d61ac09f094", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "CUSTOM_UTES02", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f097", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f097", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f056", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f056", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f058", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb5c3141e1d61ac09f056", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f05a", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb5c3141e1d61ac09f056", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f05c", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbb5c3141e1d61ac09f056", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_custom_DesignStuff_00336", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f098", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbb5c3141e1d61ac09f097", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f099", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f05e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f05e", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f060", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "parentId": "66cbb5c3141e1d61ac09f05e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f062", + "_tpl": "5bbdb870d4351e00367fb67d", + "parentId": "66cbb5c3141e1d61ac09f05e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00116", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f09a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f09b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f064", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f064", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f066", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb5c3141e1d61ac09f064", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00134", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f09c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 3 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f09d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f068", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f068", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f06a", + "_tpl": "5fbc226eca32ed67276c155d", + "parentId": "66cbb5c3141e1d61ac09f068", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f06c", + "_tpl": "619b5db699fb192e7430664f", + "parentId": "66cbb5c3141e1d61ac09f068", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f06e", + "_tpl": "5de8e8dafd6b4e6e2276dc32", + "parentId": "66cbb5c3141e1d61ac09f068", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f070", + "_tpl": "56ea7293d2720b8d4b8b45ba", + "parentId": "66cbb5c3141e1d61ac09f068", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f072", + "_tpl": "584924ec24597768f12ae244", + "parentId": "66cbb5c3141e1d61ac09f068", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00350", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f09e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 5 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f09f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f074", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f074", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f076", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "66cbb5c3141e1d61ac09f074", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f078", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb5c3141e1d61ac09f074", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 54 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f07a", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66cbb5c3141e1d61ac09f074", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00047", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0a0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb5c3141e1d61ac09f0a1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0a2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb5c3141e1d61ac09f0a3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0a4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb5c3141e1d61ac09f0a5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0a6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb5c3141e1d61ac09f0a7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0a8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb5c3141e1d61ac09f0a9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0aa", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb5c3141e1d61ac09f0ab", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0ac", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb5c3141e1d61ac09f0ad", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0ae", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb5c3141e1d61ac09f0af", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0b0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb5c3141e1d61ac09f0b1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0b2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb5c3141e1d61ac09f0b3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f07c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f07c", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f07e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09f07c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 782 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f080", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09f07c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 958 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00233", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0b4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 27 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0b5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f082", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f082", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f084", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "parentId": "66cbb5c3141e1d61ac09f082", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f086", + "_tpl": "615d8eb350224f204c1da1cf", + "parentId": "66cbb5c3141e1d61ac09f082", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f088", + "_tpl": "5c6d450c2e221600114c997d", + "parentId": "66cbb5c3141e1d61ac09f082", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f08a", + "_tpl": "65293c7a17e14363030ad308", + "parentId": "66cbb5c3141e1d61ac09f082", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f08c", + "_tpl": "58491f3324597764bc48fa02", + "parentId": "66cbb5c3141e1d61ac09f082", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_custom_DesignStuff_00044", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0b6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 29 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0b7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f08e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f08e", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f090", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09f08e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 876 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f092", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb5c3141e1d61ac09f08e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 761 + } } + ] + }, + { + "Id": "Lootable_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0b8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 31 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0b9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f094", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f094", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f096", + "_tpl": "66b37ea4c5d72b0277488439", + "parentId": "66cbb5c3141e1d61ac09f094", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "CUSTOM_UTES02", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0ba", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 33 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0bb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f097", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f097", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09f098", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbb5c3141e1d61ac09f097", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09f099", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f09a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb5c3141e1d61ac09f09b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f09c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb5c3141e1d61ac09f09d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f09e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb5c3141e1d61ac09f09f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0a0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb5c3141e1d61ac09f0a1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0a2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb5c3141e1d61ac09f0a3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0a4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb5c3141e1d61ac09f0a5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0a6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb5c3141e1d61ac09f0a7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0a8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb5c3141e1d61ac09f0a9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0aa", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb5c3141e1d61ac09f0ab", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0ac", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb5c3141e1d61ac09f0ad", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0ae", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb5c3141e1d61ac09f0af", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0b0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb5c3141e1d61ac09f0b1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0b2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb5c3141e1d61ac09f0b3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0b4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb5c3141e1d61ac09f0b5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0b6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb5c3141e1d61ac09f0b7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0b8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb5c3141e1d61ac09f0b9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0ba", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb5c3141e1d61ac09f0bb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0bc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb5c3141e1d61ac09f0bd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0be", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb5c3141e1d61ac09f0bf", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0c0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb5c3141e1d61ac09f0c1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0c2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb5c3141e1d61ac09f0c3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0c4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb5c3141e1d61ac09f0c5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0c6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb5c3141e1d61ac09f0c7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0c8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb5c3141e1d61ac09f0c9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0ca", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f098", + "slotId": "cartridges", + "location": 49 } + ] + }, + { + "Id": "CUSTOM_UTES01", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0bc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb5c3141e1d61ac09f0bd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f0be", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb5c3141e1d61ac09f0bf", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0c0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb5c3141e1d61ac09f0c1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0c2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb5c3141e1d61ac09f0c3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0c4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb5c3141e1d61ac09f0c5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0c6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb5c3141e1d61ac09f0c7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0c8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb5c3141e1d61ac09f0c9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0ca", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f098", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "CUSTOM_UTES01", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f0cb", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f0cb", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f0cb", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f0cb", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } } - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0cc", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbb5c3141e1d61ac09f0cb", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09f0cd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0ce", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb5c3141e1d61ac09f0cf", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0d0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb5c3141e1d61ac09f0d1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0d2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb5c3141e1d61ac09f0d3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0d4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb5c3141e1d61ac09f0d5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0d6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb5c3141e1d61ac09f0d7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0d8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb5c3141e1d61ac09f0d9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0da", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb5c3141e1d61ac09f0db", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0dc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb5c3141e1d61ac09f0dd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0de", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb5c3141e1d61ac09f0df", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0e0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb5c3141e1d61ac09f0e1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0e2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb5c3141e1d61ac09f0e3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0e4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb5c3141e1d61ac09f0e5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0e6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb5c3141e1d61ac09f0e7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0e8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb5c3141e1d61ac09f0e9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0ea", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb5c3141e1d61ac09f0eb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0ec", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb5c3141e1d61ac09f0ed", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0ee", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb5c3141e1d61ac09f0ef", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0f0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb5c3141e1d61ac09f0f1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0f2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb5c3141e1d61ac09f0f3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0f4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb5c3141e1d61ac09f0f5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0f6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb5c3141e1d61ac09f0f7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0f8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb5c3141e1d61ac09f0f9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0fa", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb5c3141e1d61ac09f0fb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0fc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb5c3141e1d61ac09f0fd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f0fe", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f0cc", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "CUSTOM_UTES03", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f0ff", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f0ff", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66cbb5c3141e1d61ac09f0cc", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbb5c3141e1d61ac09f0cb", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09f0cd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 } - } - }, - { - "_id": "66cbb5c3141e1d61ac09f100", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbb5c3141e1d61ac09f0ff", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09f101", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f102", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb5c3141e1d61ac09f103", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f104", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb5c3141e1d61ac09f105", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f106", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb5c3141e1d61ac09f107", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f108", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb5c3141e1d61ac09f109", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f10a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb5c3141e1d61ac09f10b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f10c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb5c3141e1d61ac09f10d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f10e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb5c3141e1d61ac09f10f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f110", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb5c3141e1d61ac09f111", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f112", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb5c3141e1d61ac09f113", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f114", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb5c3141e1d61ac09f115", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f116", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb5c3141e1d61ac09f117", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f118", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb5c3141e1d61ac09f119", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f11a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb5c3141e1d61ac09f11b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f11c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb5c3141e1d61ac09f11d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f11e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb5c3141e1d61ac09f11f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f120", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb5c3141e1d61ac09f121", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f122", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb5c3141e1d61ac09f123", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f124", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb5c3141e1d61ac09f125", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f126", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb5c3141e1d61ac09f127", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f128", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb5c3141e1d61ac09f129", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f12a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb5c3141e1d61ac09f12b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f12c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb5c3141e1d61ac09f12d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f12e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb5c3141e1d61ac09f12f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f130", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb5c3141e1d61ac09f131", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f132", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb5c3141e1d61ac09f100", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "CUSTOM_AGS01", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb5c3141e1d61ac09f133", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f133", - "_tpl": "5d52cc5ba4b9367408500062", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66cbb5c3141e1d61ac09f0ce", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb5c3141e1d61ac09f0cf", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 } + }, + { + "_id": "66cbb5c3141e1d61ac09f0d0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb5c3141e1d61ac09f0d1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0d2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb5c3141e1d61ac09f0d3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0d4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb5c3141e1d61ac09f0d5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0d6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb5c3141e1d61ac09f0d7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0d8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb5c3141e1d61ac09f0d9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0da", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb5c3141e1d61ac09f0db", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0dc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb5c3141e1d61ac09f0dd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0de", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb5c3141e1d61ac09f0df", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0e0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb5c3141e1d61ac09f0e1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0e2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb5c3141e1d61ac09f0e3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0e4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb5c3141e1d61ac09f0e5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0e6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb5c3141e1d61ac09f0e7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0e8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb5c3141e1d61ac09f0e9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0ea", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb5c3141e1d61ac09f0eb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0ec", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb5c3141e1d61ac09f0ed", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0ee", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb5c3141e1d61ac09f0ef", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0f0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb5c3141e1d61ac09f0f1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0f2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb5c3141e1d61ac09f0f3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0f4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb5c3141e1d61ac09f0f5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0f6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb5c3141e1d61ac09f0f7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0f8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb5c3141e1d61ac09f0f9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0fa", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb5c3141e1d61ac09f0fb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0fc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb5c3141e1d61ac09f0fd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f0fe", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f0cc", + "slotId": "cartridges", + "location": 49 } - }, - { - "_id": "66cbb5c3141e1d61ac09f134", - "_tpl": "5d52d479a4b936793d58c76b", - "parentId": "66cbb5c3141e1d61ac09f133", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09f135", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges" - }, - { - "_id": "66cbb5c3141e1d61ac09f136", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb5c3141e1d61ac09f137", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 2 - }, - { - "_id": "66cbb5c3141e1d61ac09f138", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb5c3141e1d61ac09f139", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 4 - }, - { - "_id": "66cbb5c3141e1d61ac09f13a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb5c3141e1d61ac09f13b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 6 - }, - { - "_id": "66cbb5c3141e1d61ac09f13c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb5c3141e1d61ac09f13d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 8 - }, - { - "_id": "66cbb5c3141e1d61ac09f13e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb5c3141e1d61ac09f13f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 10 - }, - { - "_id": "66cbb5c3141e1d61ac09f140", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb5c3141e1d61ac09f141", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 12 - }, - { - "_id": "66cbb5c3141e1d61ac09f142", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb5c3141e1d61ac09f143", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 14 - }, - { - "_id": "66cbb5c3141e1d61ac09f144", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb5c3141e1d61ac09f145", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 16 - }, - { - "_id": "66cbb5c3141e1d61ac09f146", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb5c3141e1d61ac09f147", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 18 - }, - { - "_id": "66cbb5c3141e1d61ac09f148", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb5c3141e1d61ac09f149", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 20 - }, - { - "_id": "66cbb5c3141e1d61ac09f14a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb5c3141e1d61ac09f14b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 22 - }, - { - "_id": "66cbb5c3141e1d61ac09f14c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb5c3141e1d61ac09f14d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 24 - }, - { - "_id": "66cbb5c3141e1d61ac09f14e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb5c3141e1d61ac09f14f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 26 - }, - { - "_id": "66cbb5c3141e1d61ac09f150", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb5c3141e1d61ac09f151", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 28 - }, - { - "_id": "66cbb5c3141e1d61ac09f152", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb5c3141e1d61ac09f153", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 30 - }, - { - "_id": "66cbb5c3141e1d61ac09f154", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb5c3141e1d61ac09f155", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 32 - }, - { - "_id": "66cbb5c3141e1d61ac09f156", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb5c3141e1d61ac09f157", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 34 - }, - { - "_id": "66cbb5c3141e1d61ac09f158", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb5c3141e1d61ac09f159", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 36 - }, - { - "_id": "66cbb5c3141e1d61ac09f15a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb5c3141e1d61ac09f15b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 38 - }, - { - "_id": "66cbb5c3141e1d61ac09f15c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb5c3141e1d61ac09f15d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 40 - }, - { - "_id": "66cbb5c3141e1d61ac09f15e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb5c3141e1d61ac09f15f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 42 - }, - { - "_id": "66cbb5c3141e1d61ac09f160", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb5c3141e1d61ac09f161", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 44 - }, - { - "_id": "66cbb5c3141e1d61ac09f162", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb5c3141e1d61ac09f163", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 46 - }, - { - "_id": "66cbb5c3141e1d61ac09f164", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb5c3141e1d61ac09f165", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 48 - }, - { - "_id": "66cbb5c3141e1d61ac09f166", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 49 - }, - { - "_id": "66cbb5c3141e1d61ac09f167", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 50 - }, - { - "_id": "66cbb5c3141e1d61ac09f168", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 51 - }, - { - "_id": "66cbb5c3141e1d61ac09f169", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 52 - }, - { - "_id": "66cbb5c3141e1d61ac09f16a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 53 - }, - { - "_id": "66cbb5c3141e1d61ac09f16b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 54 - }, - { - "_id": "66cbb5c3141e1d61ac09f16c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 55 - }, - { - "_id": "66cbb5c3141e1d61ac09f16d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 56 - }, - { - "_id": "66cbb5c3141e1d61ac09f16e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 57 - }, - { - "_id": "66cbb5c3141e1d61ac09f16f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 58 - }, - { - "_id": "66cbb5c3141e1d61ac09f170", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 59 - }, - { - "_id": "66cbb5c3141e1d61ac09f171", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 60 - }, - { - "_id": "66cbb5c3141e1d61ac09f172", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 61 - }, - { - "_id": "66cbb5c3141e1d61ac09f173", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 62 - }, - { - "_id": "66cbb5c3141e1d61ac09f174", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 63 - }, - { - "_id": "66cbb5c3141e1d61ac09f175", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 64 - }, - { - "_id": "66cbb5c3141e1d61ac09f176", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 65 - }, - { - "_id": "66cbb5c3141e1d61ac09f177", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 66 - }, - { - "_id": "66cbb5c3141e1d61ac09f178", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 67 - }, - { - "_id": "66cbb5c3141e1d61ac09f179", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 68 - }, - { - "_id": "66cbb5c3141e1d61ac09f17a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 69 - }, - { - "_id": "66cbb5c3141e1d61ac09f17b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 70 - }, - { - "_id": "66cbb5c3141e1d61ac09f17c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 71 - }, - { - "_id": "66cbb5c3141e1d61ac09f17d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 72 - }, - { - "_id": "66cbb5c3141e1d61ac09f17e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 73 - }, - { - "_id": "66cbb5c3141e1d61ac09f17f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 74 - }, - { - "_id": "66cbb5c3141e1d61ac09f180", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 75 - }, - { - "_id": "66cbb5c3141e1d61ac09f181", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 76 - }, - { - "_id": "66cbb5c3141e1d61ac09f182", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 77 - }, - { - "_id": "66cbb5c3141e1d61ac09f183", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 78 - }, - { - "_id": "66cbb5c3141e1d61ac09f184", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 79 - }, - { - "_id": "66cbb5c3141e1d61ac09f185", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 80 - }, - { - "_id": "66cbb5c3141e1d61ac09f186", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 81 - }, - { - "_id": "66cbb5c3141e1d61ac09f187", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 82 - }, - { - "_id": "66cbb5c3141e1d61ac09f188", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 83 - }, - { - "_id": "66cbb5c3141e1d61ac09f189", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 84 - }, - { - "_id": "66cbb5c3141e1d61ac09f18a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 85 - }, - { - "_id": "66cbb5c3141e1d61ac09f18b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 86 - }, - { - "_id": "66cbb5c3141e1d61ac09f18c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 87 - }, - { - "_id": "66cbb5c3141e1d61ac09f18d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 88 - }, - { - "_id": "66cbb5c3141e1d61ac09f18e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 89 - }, - { - "_id": "66cbb5c3141e1d61ac09f18f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 90 - }, - { - "_id": "66cbb5c3141e1d61ac09f190", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 91 - }, - { - "_id": "66cbb5c3141e1d61ac09f191", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 92 - }, - { - "_id": "66cbb5c3141e1d61ac09f192", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 93 - }, - { - "_id": "66cbb5c3141e1d61ac09f193", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 94 - }, - { - "_id": "66cbb5c3141e1d61ac09f194", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 95 - }, - { - "_id": "66cbb5c3141e1d61ac09f195", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 96 - }, - { - "_id": "66cbb5c3141e1d61ac09f196", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 97 - }, - { - "_id": "66cbb5c3141e1d61ac09f197", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb5c3141e1d61ac09f134", - "slotId": "cartridges", - "location": 98 - }, - { - "_id": "66cbb5c3141e1d61ac09f198", - "_tpl": "5d53f4b7a4b936793d58c780", - "parentId": "66cbb5c3141e1d61ac09f133", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "arena_champ [c83f656f-d6da-493d-a09b-557dbe20d8e2]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 183.096085, - "y": 2.8125, - "z": 164.0104 - }, - "Rotation": { - "x": 0.0, - "y": 208.022476, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f19a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f19a", - "_tpl": "664fce7a90294949fe2d81cb", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_gp (1) [aa16bfc2-5082-4aa2-a659-e3e9a4a46f6f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 180.061432, - "y": 3.68600249, - "z": 165.73819 - }, - "Rotation": { - "x": 275.51355, - "y": 78.72476, - "z": 279.945984 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f19c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f19c", - "_tpl": "5d235b4d86f7742e017bc88a", - "upd": { - "StackObjectsCount": 2 - } - } - ] - }, - { - "Id": "Arena_loot_gp (6) [b3abfd80-7958-4c5b-9fb9-c6841b16f7d8]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 180.184433, - "y": 3.69400239, - "z": 165.79599 - }, - "Rotation": { - "x": 275.51355, - "y": 78.72476, - "z": 279.945984 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f19e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f19e", - "_tpl": "5d235b4d86f7742e017bc88a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_jewerly (1) [56c6c28b-505a-4f00-837f-ca02badffe62]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 182.573425, - "y": 4.26500225, - "z": 162.174988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1a0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1a0", - "_tpl": "573478bc24597738002c6175", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_jewerly (2) [4c7a33e6-1a9a-4700-9e26-e5b29dc5ea4b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 182.883438, - "y": 4.26500225, - "z": 162.174988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1a2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1a2", - "_tpl": "5d235a5986f77443f6329bc6", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_jewerly [1fb661ae-5ac9-4ede-85b1-0e9b3cb90495]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 183.100433, - "y": 4.26500225, - "z": 161.978989 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1a4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1a4", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_mods (1) [be41064e-72f5-45e8-aded-5f18186f43e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 180.805435, - "y": 4.38200235, - "z": 165.747 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1a6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1a6", - "_tpl": "576fd4ec2459777f0b518431", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_mods (2) [1348a5cf-c28b-4e46-8c10-1c09018f5979]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 180.56543, - "y": 4.38200235, - "z": 165.898987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1a8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1a8", - "_tpl": "60926df0132d4d12c81fd9df", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_mods (3) [0e08607e-d0b0-46eb-8bab-c4ee865ada0b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 180.56543, - "y": 4.38200235, - "z": 165.898987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1aa", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1aa", - "_tpl": "5bbdb8bdd4351e4502011460", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_mods (5) [ff96d58a-927a-4df9-b9ca-a9757aa7d189]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 183.014435, - "y": 4.38200235, - "z": 164.353 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1ac", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1ac", - "_tpl": "6171367e1cb55961fa0fdb36", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_mods (6) [1b2f18c6-7915-4aa7-98b6-7b8b5ee688fd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 182.543427, - "y": 4.38200235, - "z": 163.896988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1ae", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1ae", - "_tpl": "5d44064fa4b9361e4f6eb8b5", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_mods (7) [b49ee2c4-c6a8-4ac4-af4c-bf66229e0d8a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 182.807434, - "y": 4.38200235, - "z": 163.689987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1b0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1b0", - "_tpl": "5c82342f2e221644f31c060e", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_mods [1302872e-9ea5-436c-a037-c139db0ae77a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.000427, - "y": 4.38200235, - "z": 165.747 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1b2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1b2", - "_tpl": "6284bd5f95250a29bc628a30", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "ex_lab_good_med (5) [2f89490e-f6f4-4821-b895-a302c0f72a38]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 77.757, - "y": 5.39, - "z": -153.817 - }, - "Rotation": { - "x": 0.0, - "y": 189.838562, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1b4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1b4", - "_tpl": "590c678286f77426c9660122", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "ex_lab_good_med (9) [df54c39e-6dfe-4213-b5b4-269113b8bbf4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 80.189, - "y": 5.956, - "z": -153.508 - }, - "Rotation": { - "x": 0.0, - "y": 189.838562, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1b6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1b6", - "_tpl": "5d02797c86f774203f38e30a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 02 [37c1facb-0953-438e-85ee-e6a639210e0d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 460.666, - "y": 3.268, - "z": -73.016 - }, - "Rotation": { - "x": 0.0, - "y": 265.827332, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1b8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1b8", - "_tpl": "57513fcc24597720a31c09a6", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 10 [f00c9195-c936-4132-8f8c-1e891732b6c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -202.61, - "y": 1.37, - "z": -142.08 - }, - "Rotation": { - "x": 0.0, - "y": 88.57119, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1ba", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1ba", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 105 [293b9ee2-f428-42fe-aab8-1575af6d8dda]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 224.1, - "y": 0.965, - "z": 151.081 - }, - "Rotation": { - "x": -4.26886828e-7, - "y": 294.125641, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1bc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1bc", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 107 [280bcc8a-e61a-4db2-90d1-910e73d73452]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 12.732, - "y": -0.076, - "z": 51.576 - }, - "Rotation": { - "x": 0.0, - "y": 69.65635, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1be", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1be", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 119 [e5bcab6e-5b84-49c7-affd-b6aa9d8ad0ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 229.614, - "y": 0.118, - "z": 154.202 - }, - "Rotation": { - "x": 0.0, - "y": 232.4751, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1c0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1c0", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 120 [4ba65acd-52b1-4a05-985e-a49ed08a868f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 226.309, - "y": 0.74, - "z": 149.457 - }, - "Rotation": { - "x": 0.0, - "y": 310.091949, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1c2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1c2", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 121 [5fd79b37-1144-4e26-99a3-ebc858481b94]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 227.1, - "y": 0.733, - "z": 163.277 - }, - "Rotation": { - "x": 0.0, - "y": 355.633179, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1c4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1c4", - "_tpl": "57347d8724597744596b4e76", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 131 (3) [1b496510-c3ad-489d-9113-1baf592f6f25]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 174.542, - "y": 3.637, - "z": 185.321 - }, - "Rotation": { - "x": 8.53773656e-7, - "y": 18.0212479, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1c8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1c8", - "_tpl": "657024a4bfc87b3a3409322c", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f1c9", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66cbb5c3141e1d61ac09f1c8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + { + "Id": "CUSTOM_UTES03", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f1ca", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66cbb5c3141e1d61ac09f1c8", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "Loot 131 (5) [6ad57dc2-4133-4642-af50-e42f7df654e7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 172.568, - "y": 3.884, - "z": 186.253 - }, - "Rotation": { - "x": 0.0, - "y": 86.39963, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1cd", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1cd", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f1ce", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbb5c3141e1d61ac09f1cd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "Loot 135 (1) [78c177a4-cbbd-424a-9f4e-be5cd490802a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 183.789, - "y": 6.351, - "z": 183.759 - }, - "Rotation": { - "x": 0.0, - "y": 252.0725, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1d0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1d0", - "_tpl": "590a3d9c86f774385926e510", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 135 (10) [b9dbfe7b-9c3e-4dcc-848c-f9257ce8eed5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 183.849, - "y": 6.351, - "z": 183.063 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 134.652985, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1d1", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1d1", - "_tpl": "5d67abc1a4b93614ec50137f", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f0ff", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f0ff", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09f100", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbb5c3141e1d61ac09f0ff", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09f101", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f102", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb5c3141e1d61ac09f103", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f104", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb5c3141e1d61ac09f105", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f106", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb5c3141e1d61ac09f107", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f108", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb5c3141e1d61ac09f109", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f10a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb5c3141e1d61ac09f10b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f10c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb5c3141e1d61ac09f10d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f10e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb5c3141e1d61ac09f10f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f110", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb5c3141e1d61ac09f111", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f112", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb5c3141e1d61ac09f113", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f114", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb5c3141e1d61ac09f115", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f116", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb5c3141e1d61ac09f117", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f118", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb5c3141e1d61ac09f119", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f11a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb5c3141e1d61ac09f11b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f11c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb5c3141e1d61ac09f11d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f11e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb5c3141e1d61ac09f11f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f120", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb5c3141e1d61ac09f121", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f122", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb5c3141e1d61ac09f123", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f124", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb5c3141e1d61ac09f125", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f126", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb5c3141e1d61ac09f127", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f128", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb5c3141e1d61ac09f129", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f12a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb5c3141e1d61ac09f12b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f12c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb5c3141e1d61ac09f12d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f12e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb5c3141e1d61ac09f12f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 } + }, + { + "_id": "66cbb5c3141e1d61ac09f130", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb5c3141e1d61ac09f131", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f132", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb5c3141e1d61ac09f100", + "slotId": "cartridges", + "location": 49 } - }, - { - "_id": "66cbb5c3141e1d61ac09f1d2", - "_tpl": "5d3eb59ea4b9361c284bb4b2", - "parentId": "66cbb5c3141e1d61ac09f1d1", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09f1d3", - "_tpl": "5d3ef698a4b9361182109872", - "parentId": "66cbb5c3141e1d61ac09f1d2", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09f1d4", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "66cbb5c3141e1d61ac09f1d1", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09f1d5", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "66cbb5c3141e1d61ac09f1d4", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09f1d6", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "66cbb5c3141e1d61ac09f1d4", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb5c3141e1d61ac09f1d7", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "66cbb5c3141e1d61ac09f1d1", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09f1d8", - "_tpl": "5cc80f8fe4a949033b0224a2", - "parentId": "66cbb5c3141e1d61ac09f1d7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 - } - } - ] - }, - { - "Id": "Loot 135 (11) [4e6d5e06-5a29-4d3a-8fe5-6c25416057b6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 182.992, - "y": 6.351, - "z": 183.335 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 134.652985, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1d9", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1d9", - "_tpl": "5a38e6bac4a2826c6e06d79b" - }, - { - "_id": "66cbb5c3141e1d61ac09f1da", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "66cbb5c3141e1d61ac09f1d9", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09f1dd", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66cbb5c3141e1d61ac09f1da", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2.0 - } + { + "Id": "CUSTOM_AGS01", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f1db", - "_tpl": "5a38ef1fc4a282000b1521f6", - "parentId": "66cbb5c3141e1d61ac09f1d9", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f1dc", - "_tpl": "5a38eecdc4a282329a73b512", - "parentId": "66cbb5c3141e1d61ac09f1db", - "slotId": "mod_pistol_grip" - } - ] - }, - { - "Id": "Loot 135 (12) [f8ee90e0-44a6-44a9-b3a7-2c21afa8953b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 185.123, - "y": 6.351, - "z": 183.137 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 134.652985, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1de", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1de", - "_tpl": "661cec09b2c6356b4d0c7a36", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "fullauto" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb5c3141e1d61ac09f133", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f133", + "_tpl": "5d52cc5ba4b9367408500062", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } } + }, + { + "_id": "66cbb5c3141e1d61ac09f134", + "_tpl": "5d52d479a4b936793d58c76b", + "parentId": "66cbb5c3141e1d61ac09f133", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09f135", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges" + }, + { + "_id": "66cbb5c3141e1d61ac09f136", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb5c3141e1d61ac09f137", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 2 + }, + { + "_id": "66cbb5c3141e1d61ac09f138", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb5c3141e1d61ac09f139", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 4 + }, + { + "_id": "66cbb5c3141e1d61ac09f13a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb5c3141e1d61ac09f13b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 6 + }, + { + "_id": "66cbb5c3141e1d61ac09f13c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb5c3141e1d61ac09f13d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 8 + }, + { + "_id": "66cbb5c3141e1d61ac09f13e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb5c3141e1d61ac09f13f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 10 + }, + { + "_id": "66cbb5c3141e1d61ac09f140", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb5c3141e1d61ac09f141", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 12 + }, + { + "_id": "66cbb5c3141e1d61ac09f142", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb5c3141e1d61ac09f143", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 14 + }, + { + "_id": "66cbb5c3141e1d61ac09f144", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb5c3141e1d61ac09f145", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 16 + }, + { + "_id": "66cbb5c3141e1d61ac09f146", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb5c3141e1d61ac09f147", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 18 + }, + { + "_id": "66cbb5c3141e1d61ac09f148", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb5c3141e1d61ac09f149", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 20 + }, + { + "_id": "66cbb5c3141e1d61ac09f14a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb5c3141e1d61ac09f14b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 22 + }, + { + "_id": "66cbb5c3141e1d61ac09f14c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb5c3141e1d61ac09f14d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 24 + }, + { + "_id": "66cbb5c3141e1d61ac09f14e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb5c3141e1d61ac09f14f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 26 + }, + { + "_id": "66cbb5c3141e1d61ac09f150", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb5c3141e1d61ac09f151", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 28 + }, + { + "_id": "66cbb5c3141e1d61ac09f152", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb5c3141e1d61ac09f153", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 30 + }, + { + "_id": "66cbb5c3141e1d61ac09f154", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb5c3141e1d61ac09f155", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 32 + }, + { + "_id": "66cbb5c3141e1d61ac09f156", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb5c3141e1d61ac09f157", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 34 + }, + { + "_id": "66cbb5c3141e1d61ac09f158", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb5c3141e1d61ac09f159", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 36 + }, + { + "_id": "66cbb5c3141e1d61ac09f15a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb5c3141e1d61ac09f15b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 38 + }, + { + "_id": "66cbb5c3141e1d61ac09f15c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb5c3141e1d61ac09f15d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 40 + }, + { + "_id": "66cbb5c3141e1d61ac09f15e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb5c3141e1d61ac09f15f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 42 + }, + { + "_id": "66cbb5c3141e1d61ac09f160", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb5c3141e1d61ac09f161", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 44 + }, + { + "_id": "66cbb5c3141e1d61ac09f162", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb5c3141e1d61ac09f163", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 46 + }, + { + "_id": "66cbb5c3141e1d61ac09f164", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb5c3141e1d61ac09f165", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 48 + }, + { + "_id": "66cbb5c3141e1d61ac09f166", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 49 + }, + { + "_id": "66cbb5c3141e1d61ac09f167", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 50 + }, + { + "_id": "66cbb5c3141e1d61ac09f168", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 51 + }, + { + "_id": "66cbb5c3141e1d61ac09f169", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 52 + }, + { + "_id": "66cbb5c3141e1d61ac09f16a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 53 + }, + { + "_id": "66cbb5c3141e1d61ac09f16b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 54 + }, + { + "_id": "66cbb5c3141e1d61ac09f16c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 55 + }, + { + "_id": "66cbb5c3141e1d61ac09f16d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 56 + }, + { + "_id": "66cbb5c3141e1d61ac09f16e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 57 + }, + { + "_id": "66cbb5c3141e1d61ac09f16f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 58 + }, + { + "_id": "66cbb5c3141e1d61ac09f170", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 59 + }, + { + "_id": "66cbb5c3141e1d61ac09f171", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 60 + }, + { + "_id": "66cbb5c3141e1d61ac09f172", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 61 + }, + { + "_id": "66cbb5c3141e1d61ac09f173", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 62 + }, + { + "_id": "66cbb5c3141e1d61ac09f174", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 63 + }, + { + "_id": "66cbb5c3141e1d61ac09f175", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 64 + }, + { + "_id": "66cbb5c3141e1d61ac09f176", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 65 + }, + { + "_id": "66cbb5c3141e1d61ac09f177", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 66 + }, + { + "_id": "66cbb5c3141e1d61ac09f178", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 67 + }, + { + "_id": "66cbb5c3141e1d61ac09f179", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 68 + }, + { + "_id": "66cbb5c3141e1d61ac09f17a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 69 + }, + { + "_id": "66cbb5c3141e1d61ac09f17b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 70 + }, + { + "_id": "66cbb5c3141e1d61ac09f17c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 71 + }, + { + "_id": "66cbb5c3141e1d61ac09f17d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 72 + }, + { + "_id": "66cbb5c3141e1d61ac09f17e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 73 + }, + { + "_id": "66cbb5c3141e1d61ac09f17f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 74 + }, + { + "_id": "66cbb5c3141e1d61ac09f180", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 75 + }, + { + "_id": "66cbb5c3141e1d61ac09f181", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 76 + }, + { + "_id": "66cbb5c3141e1d61ac09f182", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 77 + }, + { + "_id": "66cbb5c3141e1d61ac09f183", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 78 + }, + { + "_id": "66cbb5c3141e1d61ac09f184", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 79 + }, + { + "_id": "66cbb5c3141e1d61ac09f185", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 80 + }, + { + "_id": "66cbb5c3141e1d61ac09f186", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 81 + }, + { + "_id": "66cbb5c3141e1d61ac09f187", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 82 + }, + { + "_id": "66cbb5c3141e1d61ac09f188", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 83 + }, + { + "_id": "66cbb5c3141e1d61ac09f189", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 84 + }, + { + "_id": "66cbb5c3141e1d61ac09f18a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 85 + }, + { + "_id": "66cbb5c3141e1d61ac09f18b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 86 + }, + { + "_id": "66cbb5c3141e1d61ac09f18c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 87 + }, + { + "_id": "66cbb5c3141e1d61ac09f18d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 88 + }, + { + "_id": "66cbb5c3141e1d61ac09f18e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 89 + }, + { + "_id": "66cbb5c3141e1d61ac09f18f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 90 + }, + { + "_id": "66cbb5c3141e1d61ac09f190", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 91 + }, + { + "_id": "66cbb5c3141e1d61ac09f191", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 92 + }, + { + "_id": "66cbb5c3141e1d61ac09f192", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 93 + }, + { + "_id": "66cbb5c3141e1d61ac09f193", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 94 + }, + { + "_id": "66cbb5c3141e1d61ac09f194", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 95 + }, + { + "_id": "66cbb5c3141e1d61ac09f195", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 96 + }, + { + "_id": "66cbb5c3141e1d61ac09f196", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 97 + }, + { + "_id": "66cbb5c3141e1d61ac09f197", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb5c3141e1d61ac09f134", + "slotId": "cartridges", + "location": 98 + }, + { + "_id": "66cbb5c3141e1d61ac09f198", + "_tpl": "5d53f4b7a4b936793d58c780", + "parentId": "66cbb5c3141e1d61ac09f133", + "slotId": "mod_scope" } + ] + }, + { + "Id": "arena_champ [c83f656f-d6da-493d-a09b-557dbe20d8e2]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 183.096085, + "y": 2.8125, + "z": 164.0104 + }, + "Rotation": { + "x": 0.0, + "y": 208.022476, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f1df", - "_tpl": "660ea4453786cc0af808a1be", - "parentId": "66cbb5c3141e1d61ac09f1de", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09f1e9", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbb5c3141e1d61ac09f1df", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } - }, - { - "_id": "66cbb5c3141e1d61ac09f1ea", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbb5c3141e1d61ac09f1df", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 23.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f19a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f19a", + "_tpl": "664fce7a90294949fe2d81cb", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb5c3141e1d61ac09f1e0", - "_tpl": "661520fb6f8e1a96340afaa6", - "parentId": "66cbb5c3141e1d61ac09f1de", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09f1e1", - "_tpl": "66012788c752a02bbe05e68e", - "parentId": "66cbb5c3141e1d61ac09f1de", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb5c3141e1d61ac09f1e2", - "_tpl": "66012a1d3dff5074ed002e2a", - "parentId": "66cbb5c3141e1d61ac09f1e1", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09f1e3", - "_tpl": "660126a98f2b23af220b27e7", - "parentId": "66cbb5c3141e1d61ac09f1e1", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb5c3141e1d61ac09f1e4", - "_tpl": "661fbe066751ee51930b01f2", - "parentId": "66cbb5c3141e1d61ac09f1de", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb5c3141e1d61ac09f1e5", - "_tpl": "6601265f98a610c1aa0ea637", - "parentId": "66cbb5c3141e1d61ac09f1de", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09f1e6", - "_tpl": "66152153a031cbb5570e346f", - "parentId": "66cbb5c3141e1d61ac09f1de", - "slotId": "mod_pistolgrip_000" - }, - { - "_id": "66cbb5c3141e1d61ac09f1e7", - "_tpl": "6615211ca031cbb5570e346d", - "parentId": "66cbb5c3141e1d61ac09f1e6", - "slotId": "mod_pistolgrip_001" - }, - { - "_id": "66cbb5c3141e1d61ac09f1e8", - "_tpl": "57ac965c24597706be5f975c", - "parentId": "66cbb5c3141e1d61ac09f1de", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "Loot 135 (4) [f99103d7-147b-4575-b921-2c580473ecf3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 183.208, - "y": 6.081, - "z": 182.692 - }, - "Rotation": { - "x": 0.0, - "y": 346.509338, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1ec", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1ec", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 1099 + { + "Id": "Arena_loot_gp (1) [aa16bfc2-5082-4aa2-a659-e3e9a4a46f6f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 180.061432, + "y": 3.68600249, + "z": 165.73819 + }, + "Rotation": { + "x": 275.51355, + "y": 78.72476, + "z": 279.945984 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f19c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f19c", + "_tpl": "5d235b4d86f7742e017bc88a", + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "Loot 135 (8) [d2b11f1f-b9f0-4111-9b7d-a048d269ce4e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 184.532, - "y": 6.351, - "z": 183.778 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 134.652985, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1ed", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1ed", - "_tpl": "57c44b372459772d2b39b8ce", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" + { + "Id": "Arena_loot_gp (6) [b3abfd80-7958-4c5b-9fb9-c6841b16f7d8]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 180.184433, + "y": 3.69400239, + "z": 165.79599 + }, + "Rotation": { + "x": 275.51355, + "y": 78.72476, + "z": 279.945984 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f19e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f19e", + "_tpl": "5d235b4d86f7742e017bc88a", + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "Arena_loot_jewerly (1) [56c6c28b-505a-4f00-837f-ca02badffe62]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 182.573425, + "y": 4.26500225, + "z": 162.174988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f1ee", - "_tpl": "57c44dd02459772d2e0ae249", - "parentId": "66cbb5c3141e1d61ac09f1ed", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09f1ef", - "_tpl": "57c44e7b2459772d28133248", - "parentId": "66cbb5c3141e1d61ac09f1ee", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09f1f0", - "_tpl": "57c44f4f2459772d2c627113", - "parentId": "66cbb5c3141e1d61ac09f1ed", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09f1f1", - "_tpl": "57838f9f2459774a150289a0", - "parentId": "66cbb5c3141e1d61ac09f1ed", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09f1f5", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbb5c3141e1d61ac09f1f1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1a0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1a0", + "_tpl": "573478bc24597738002c6175", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb5c3141e1d61ac09f1f2", - "_tpl": "57c44fa82459772d2d75e415", - "parentId": "66cbb5c3141e1d61ac09f1ed", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb5c3141e1d61ac09f1f3", - "_tpl": "57c450252459772d28133253", - "parentId": "66cbb5c3141e1d61ac09f1ed", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09f1f4", - "_tpl": "651178336cad06c37c049eb4", - "parentId": "66cbb5c3141e1d61ac09f1ed", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "Loot 135 (9) [644d8cdb-a90a-4f3a-ba0c-f86cdf6e9338]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 184.614, - "y": 6.351, - "z": 182.813 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f1f6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f1f6", - "_tpl": "5926bb2186f7744b1c6c6e60", - "upd": { - "FireMode": { - "FireMode": "single" + { + "Id": "Arena_loot_jewerly (2) [4c7a33e6-1a9a-4700-9e26-e5b29dc5ea4b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 182.883438, + "y": 4.26500225, + "z": 162.174988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1a2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1a2", + "_tpl": "5d235a5986f77443f6329bc6", + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "Arena_loot_jewerly [1fb661ae-5ac9-4ede-85b1-0e9b3cb90495]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 183.100433, + "y": 4.26500225, + "z": 161.978989 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f1f7", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "66cbb5c3141e1d61ac09f1f6", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb5c3141e1d61ac09f1fe", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb5c3141e1d61ac09f1f7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 21.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1a4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1a4", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb5c3141e1d61ac09f1f8", - "_tpl": "5926c0df86f77462f647f764", - "parentId": "66cbb5c3141e1d61ac09f1f6", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb5c3141e1d61ac09f1f9", - "_tpl": "5926c36d86f77467a92a8629", - "parentId": "66cbb5c3141e1d61ac09f1f8", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb5c3141e1d61ac09f1fa", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "66cbb5c3141e1d61ac09f1f8", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb5c3141e1d61ac09f1fb", - "_tpl": "5926d3c686f77410de68ebc8", - "parentId": "66cbb5c3141e1d61ac09f1f8", - "slotId": "mod_stock" - }, - { - "_id": "66cbb5c3141e1d61ac09f1fc", - "_tpl": "5926e16e86f7742f5a0f7ecb", - "parentId": "66cbb5c3141e1d61ac09f1f8", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb5c3141e1d61ac09f1fd", - "_tpl": "5926c32286f774616e42de99", - "parentId": "66cbb5c3141e1d61ac09f1f6", - "slotId": "mod_charge" - } - ] - }, - { - "Id": "Loot 138 (4) [8e68fc0f-c996-40f5-a853-e05e5d914165]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 190.293, - "y": 3.085, - "z": 169.792 - }, - "Rotation": { - "x": 0.0, - "y": 148.24379, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f200", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f200", - "_tpl": "5fbbc383d5cb881a7363194a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_mods (1) [be41064e-72f5-45e8-aded-5f18186f43e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 180.805435, + "y": 4.38200235, + "z": 165.747 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1a6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1a6", + "_tpl": "576fd4ec2459777f0b518431", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 140 (4) [ee4e97f3-2bf2-4c4c-8a12-73f6cc98d9f0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 182.513, - "y": 6.874, - "z": 175.076 - }, - "Rotation": { - "x": 0.0, - "y": 359.5615, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f203", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f203", - "_tpl": "648986bbc827d4637f01791e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Arena_loot_mods (2) [1348a5cf-c28b-4e46-8c10-1c09018f5979]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 180.56543, + "y": 4.38200235, + "z": 165.898987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f204", - "_tpl": "5cc80f38e4a949001152b560", - "parentId": "66cbb5c3141e1d61ac09f203", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1a8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1a8", + "_tpl": "60926df0132d4d12c81fd9df", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 141 [49d7ef17-41e7-4bcd-8a39-de9461b58827]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 489.093, - "y": 1.4125, - "z": 4.66 - }, - "Rotation": { - "x": 0.0, - "y": 285.6736, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f206", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f206", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_mods (3) [0e08607e-d0b0-46eb-8bab-c4ee865ada0b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 180.56543, + "y": 4.38200235, + "z": 165.898987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1aa", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1aa", + "_tpl": "5bbdb8bdd4351e4502011460", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 144 [dd3d5168-0486-4506-8275-daefe06f6196]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 179.994, - "y": 1.038, - "z": 181.541 - }, - "Rotation": { - "x": 0.0, - "y": 239.0771, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f208", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f208", - "_tpl": "5bc9bdb8d4351e003562b8a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_mods (5) [ff96d58a-927a-4df9-b9ca-a9757aa7d189]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 183.014435, + "y": 4.38200235, + "z": 164.353 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1ac", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1ac", + "_tpl": "6171367e1cb55961fa0fdb36", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 158 (17) [5b132269-ccda-47ca-8bcc-5a85830c7cd2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 564.96, - "y": 2.057, - "z": -90.129 - }, - "Rotation": { - "x": 2.66804268e-8, - "y": 177.666946, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f20a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f20a", - "_tpl": "57347c93245977448d35f6e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_mods (6) [1b2f18c6-7915-4aa7-98b6-7b8b5ee688fd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 182.543427, + "y": 4.38200235, + "z": 163.896988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1ae", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1ae", + "_tpl": "5d44064fa4b9361e4f6eb8b5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 158 (37) [979d341f-a694-485b-bad5-dd742dfc8dcc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 171.288, - "y": 3.04, - "z": 149.583 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 247.851349, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f20d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f20d", - "_tpl": "573724b42459776125652ac2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Arena_loot_mods (7) [b49ee2c4-c6a8-4ac4-af4c-bf66229e0d8a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 182.807434, + "y": 4.38200235, + "z": 163.689987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f20e", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb5c3141e1d61ac09f20d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1b0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1b0", + "_tpl": "5c82342f2e221644f31c060e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 158 (38) [5b1027f8-d009-48c3-b980-3f560321e440]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 180.8072, - "y": 6.7378, - "z": 150.0781 - }, - "Rotation": { - "x": 90.0, - "y": 339.936157, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f210", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f210", - "_tpl": "5939a00786f7742fe8132936", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_mods [1302872e-9ea5-436c-a037-c139db0ae77a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.000427, + "y": 4.38200235, + "z": 165.747 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1b2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1b2", + "_tpl": "6284bd5f95250a29bc628a30", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 172 [cfdcce5a-881c-4739-b487-464ea1900b17]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 418.382, - "y": 2.217, - "z": 39.31 - }, - "Rotation": { - "x": -2.13443414e-7, - "y": 211.965546, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f211", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f211", - "_tpl": "59f98b4986f7746f546d2cef" - }, - { - "_id": "66cbb5c3141e1d61ac09f212", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "66cbb5c3141e1d61ac09f211", - "slotId": "mod_magazine" + { + "Id": "ex_lab_good_med (5) [2f89490e-f6f4-4821-b895-a302c0f72a38]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 77.757, + "y": 5.39, + "z": -153.817 + }, + "Rotation": { + "x": 0.0, + "y": 189.838562, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f213", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbb5c3141e1d61ac09f212", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1b4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1b4", + "_tpl": "590c678286f77426c9660122", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 177 [3a876f37-f102-456c-9ccc-b69431e08e36]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 417.887, - "y": 1.566, - "z": 30.359 - }, - "Rotation": { - "x": 0.0, - "y": 17.67092, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f215", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f215", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ex_lab_good_med (9) [df54c39e-6dfe-4213-b5b4-269113b8bbf4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 80.189, + "y": 5.956, + "z": -153.508 + }, + "Rotation": { + "x": 0.0, + "y": 189.838562, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1b6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1b6", + "_tpl": "5d02797c86f774203f38e30a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 181 [7624470c-267c-4247-97e8-5e6b567bd788]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 413.083, - "y": 2.494, - "z": 31.84 - }, - "Rotation": { - "x": 0.0, - "y": 46.6146622, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f217", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f217", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 02 [37c1facb-0953-438e-85ee-e6a639210e0d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 460.666, + "y": 3.268, + "z": -73.016 + }, + "Rotation": { + "x": 0.0, + "y": 265.827332, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1b8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1b8", + "_tpl": "57513fcc24597720a31c09a6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 184 [f721ce7f-159a-4559-be5a-f81e9abbe24a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 411.082, - "y": 1.86, - "z": 38.553 - }, - "Rotation": { - "x": -8.53773656e-7, - "y": 223.089935, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f219", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f219", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 10 [f00c9195-c936-4132-8f8c-1e891732b6c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -202.61, + "y": 1.37, + "z": -142.08 + }, + "Rotation": { + "x": 0.0, + "y": 88.57119, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1ba", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1ba", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 187 [53ec4f47-1f2f-41b3-b7de-e3a2e4459584]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 418.25, - "y": 2.191, - "z": 39.489 - }, - "Rotation": { - "x": -1.70754731e-6, - "y": 268.176727, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f21d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f21d", - "_tpl": "657024a91419851aef03e70c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 105 [293b9ee2-f428-42fe-aab8-1575af6d8dda]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 224.1, + "y": 0.965, + "z": 151.081 + }, + "Rotation": { + "x": -4.26886828e-7, + "y": 294.125641, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f21e", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "66cbb5c3141e1d61ac09f21d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1bc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1bc", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot 107 [280bcc8a-e61a-4db2-90d1-910e73d73452]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 12.732, + "y": -0.076, + "z": 51.576 + }, + "Rotation": { + "x": 0.0, + "y": 69.65635, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f21f", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "66cbb5c3141e1d61ac09f21d", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1be", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1be", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 19 (4) [33902a73-ef38-4d09-bff3-4c39ed4f0fc3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 342.195, - "y": 2.157, - "z": -143.094 - }, - "Rotation": { - "x": -4.26886828e-7, - "y": 37.8216743, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f221", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f221", - "_tpl": "5f3e77b26cda304dcc634057", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 119 [e5bcab6e-5b84-49c7-affd-b6aa9d8ad0ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 229.614, + "y": 0.118, + "z": 154.202 + }, + "Rotation": { + "x": 0.0, + "y": 232.4751, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1c0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1c0", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot 120 [4ba65acd-52b1-4a05-985e-a49ed08a868f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 226.309, + "y": 0.74, + "z": 149.457 + }, + "Rotation": { + "x": 0.0, + "y": 310.091949, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f222", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbb5c3141e1d61ac09f221", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1c2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1c2", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 19 (5) [ce133dbc-e6fc-4c66-8f9a-4d453130690f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 318.679, - "y": 2.388, - "z": -183.602 - }, - "Rotation": { - "x": -4.26886828e-7, - "y": 37.8216743, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f226", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f226", - "_tpl": "6570264acfc010a0f5006a50", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 121 [5fd79b37-1144-4e26-99a3-ebc858481b94]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 227.1, + "y": 0.733, + "z": 163.277 + }, + "Rotation": { + "x": 0.0, + "y": 355.633179, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f227", - "_tpl": "59e6927d86f77411da468256", - "parentId": "66cbb5c3141e1d61ac09f226", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1c4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1c4", + "_tpl": "57347d8724597744596b4e76", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot 131 (3) [1b496510-c3ad-489d-9113-1baf592f6f25]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 174.542, + "y": 3.637, + "z": 185.321 + }, + "Rotation": { + "x": 8.53773656e-7, + "y": 18.0212479, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f228", - "_tpl": "59e6927d86f77411da468256", - "parentId": "66cbb5c3141e1d61ac09f226", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1c8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1c8", + "_tpl": "657024a4bfc87b3a3409322c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1c9", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66cbb5c3141e1d61ac09f1c8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1ca", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66cbb5c3141e1d61ac09f1c8", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "Loot 19 (6) [c4d1c68f-b942-46f9-ab0e-d1b67d4a3996]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 318.823, - "y": 2.388, - "z": -183.254 - }, - "Rotation": { - "x": -4.26886828e-7, - "y": 37.8216743, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f22a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f22a", - "_tpl": "5ef366938cef260c0642acad", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 131 (5) [6ad57dc2-4133-4642-af50-e42f7df654e7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 172.568, + "y": 3.884, + "z": 186.253 + }, + "Rotation": { + "x": 0.0, + "y": 86.39963, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1cd", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1cd", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1ce", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbb5c3141e1d61ac09f1cd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot 19 (7) [253a14ad-7aaa-4498-befa-3420e7615733]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 316.964, - "y": 2.388, - "z": -182.758 - }, - "Rotation": { - "x": -4.26886828e-7, - "y": 37.8216743, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f22c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f22c", - "_tpl": "615d8e2f1cb55961fa0fd9a4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (1) [78c177a4-cbbd-424a-9f4e-be5cd490802a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 183.789, + "y": 6.351, + "z": 183.759 + }, + "Rotation": { + "x": 0.0, + "y": 252.0725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1d0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1d0", + "_tpl": "590a3d9c86f774385926e510", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 19 (8) [7b265945-0278-4cc5-9fa3-550cf77b3867]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 291.785, - "y": 1.5664, - "z": -191.529 - }, - "Rotation": { - "x": -4.26886828e-7, - "y": 37.8216743, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f22e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f22e", - "_tpl": "57347da92459774491567cf5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (10) [b9dbfe7b-9c3e-4dcc-848c-f9257ce8eed5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 183.849, + "y": 6.351, + "z": 183.063 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 134.652985, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1d1", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1d1", + "_tpl": "5d67abc1a4b93614ec50137f", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1d2", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "parentId": "66cbb5c3141e1d61ac09f1d1", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09f1d3", + "_tpl": "5d3ef698a4b9361182109872", + "parentId": "66cbb5c3141e1d61ac09f1d2", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09f1d4", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "66cbb5c3141e1d61ac09f1d1", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09f1d5", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "66cbb5c3141e1d61ac09f1d4", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09f1d6", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "66cbb5c3141e1d61ac09f1d4", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb5c3141e1d61ac09f1d7", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "66cbb5c3141e1d61ac09f1d1", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09f1d8", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "66cbb5c3141e1d61ac09f1d7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 + } } - } - ] - }, - { - "Id": "Loot 19 (9) [91a2dedf-7a53-435d-a573-600fcef0b7ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 292.121, - "y": 1.5664, - "z": -190.888 - }, - "Rotation": { - "x": -4.26886828e-7, - "y": 37.8216743, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f230", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f230", - "_tpl": "58c157be86f77403c74b2bb6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (11) [4e6d5e06-5a29-4d3a-8fe5-6c25416057b6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 182.992, + "y": 6.351, + "z": 183.335 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 134.652985, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1d9", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1d9", + "_tpl": "5a38e6bac4a2826c6e06d79b" + }, + { + "_id": "66cbb5c3141e1d61ac09f1da", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "66cbb5c3141e1d61ac09f1d9", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09f1dd", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66cbb5c3141e1d61ac09f1da", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1db", + "_tpl": "5a38ef1fc4a282000b1521f6", + "parentId": "66cbb5c3141e1d61ac09f1d9", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09f1dc", + "_tpl": "5a38eecdc4a282329a73b512", + "parentId": "66cbb5c3141e1d61ac09f1db", + "slotId": "mod_pistol_grip" } - } - ] - }, - { - "Id": "Loot 19 [8d622409-da62-4a8f-b9cf-4aca03a8fcea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 342.14, - "y": 2.157, - "z": -143.423 - }, - "Rotation": { - "x": -4.26886828e-7, - "y": 37.8216743, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f232", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f232", - "_tpl": "635a758bfefc88a93f021b8a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (12) [f8ee90e0-44a6-44a9-b3a7-2c21afa8953b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 185.123, + "y": 6.351, + "z": 183.137 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 134.652985, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1de", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1de", + "_tpl": "661cec09b2c6356b4d0c7a36", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1df", + "_tpl": "660ea4453786cc0af808a1be", + "parentId": "66cbb5c3141e1d61ac09f1de", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09f1e9", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbb5c3141e1d61ac09f1df", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1ea", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbb5c3141e1d61ac09f1df", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 23.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1e0", + "_tpl": "661520fb6f8e1a96340afaa6", + "parentId": "66cbb5c3141e1d61ac09f1de", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09f1e1", + "_tpl": "66012788c752a02bbe05e68e", + "parentId": "66cbb5c3141e1d61ac09f1de", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb5c3141e1d61ac09f1e2", + "_tpl": "66012a1d3dff5074ed002e2a", + "parentId": "66cbb5c3141e1d61ac09f1e1", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09f1e3", + "_tpl": "660126a98f2b23af220b27e7", + "parentId": "66cbb5c3141e1d61ac09f1e1", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb5c3141e1d61ac09f1e4", + "_tpl": "661fbe066751ee51930b01f2", + "parentId": "66cbb5c3141e1d61ac09f1de", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb5c3141e1d61ac09f1e5", + "_tpl": "6601265f98a610c1aa0ea637", + "parentId": "66cbb5c3141e1d61ac09f1de", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09f1e6", + "_tpl": "66152153a031cbb5570e346f", + "parentId": "66cbb5c3141e1d61ac09f1de", + "slotId": "mod_pistolgrip_000" + }, + { + "_id": "66cbb5c3141e1d61ac09f1e7", + "_tpl": "6615211ca031cbb5570e346d", + "parentId": "66cbb5c3141e1d61ac09f1e6", + "slotId": "mod_pistolgrip_001" + }, + { + "_id": "66cbb5c3141e1d61ac09f1e8", + "_tpl": "57ac965c24597706be5f975c", + "parentId": "66cbb5c3141e1d61ac09f1de", + "slotId": "mod_scope" } - } - ] - }, - { - "Id": "Loot 202 (1) [f9c6945e-ad54-4eac-9a80-1fba7ece40e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 361.363, - "y": 2.059, - "z": -11.052 - }, - "Rotation": { - "x": 0.0, - "y": 312.0822, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f234", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f234", - "_tpl": "5f6331e097199b7db2128dc2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (4) [f99103d7-147b-4575-b921-2c580473ecf3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 183.208, + "y": 6.081, + "z": 182.692 + }, + "Rotation": { + "x": 0.0, + "y": 346.509338, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1ec", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1ec", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 1099 + } } - } - ] - }, - { - "Id": "Loot 208 (1) [780ac861-c10d-411c-9c8a-9d1a86f09ca2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -92.534, - "y": 1.275, - "z": 4.119 - }, - "Rotation": { - "x": 1.70754777e-6, - "y": 54.2079659, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f236", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f236", - "_tpl": "5c0fa877d174af02a012e1cf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (8) [d2b11f1f-b9f0-4111-9b7d-a048d269ce4e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 184.532, + "y": 6.351, + "z": 183.778 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 134.652985, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1ed", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1ed", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1ee", + "_tpl": "57c44dd02459772d2e0ae249", + "parentId": "66cbb5c3141e1d61ac09f1ed", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09f1ef", + "_tpl": "57c44e7b2459772d28133248", + "parentId": "66cbb5c3141e1d61ac09f1ee", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09f1f0", + "_tpl": "57c44f4f2459772d2c627113", + "parentId": "66cbb5c3141e1d61ac09f1ed", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09f1f1", + "_tpl": "57838f9f2459774a150289a0", + "parentId": "66cbb5c3141e1d61ac09f1ed", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09f1f5", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbb5c3141e1d61ac09f1f1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1f2", + "_tpl": "57c44fa82459772d2d75e415", + "parentId": "66cbb5c3141e1d61ac09f1ed", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb5c3141e1d61ac09f1f3", + "_tpl": "57c450252459772d28133253", + "parentId": "66cbb5c3141e1d61ac09f1ed", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09f1f4", + "_tpl": "651178336cad06c37c049eb4", + "parentId": "66cbb5c3141e1d61ac09f1ed", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "Loot 208 (14) [1f6b4fba-bbf3-43bf-822c-efc5743d032b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 564.294, - "y": 2.458, - "z": -82.973 - }, - "Rotation": { - "x": 0.0, - "y": 263.745575, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f239", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f239", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (9) [644d8cdb-a90a-4f3a-ba0c-f86cdf6e9338]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 184.614, + "y": 6.351, + "z": 182.813 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f1f6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f1f6", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1f7", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "66cbb5c3141e1d61ac09f1f6", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09f1fe", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb5c3141e1d61ac09f1f7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 21.0 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f1f8", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "66cbb5c3141e1d61ac09f1f6", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb5c3141e1d61ac09f1f9", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "66cbb5c3141e1d61ac09f1f8", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb5c3141e1d61ac09f1fa", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "66cbb5c3141e1d61ac09f1f8", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb5c3141e1d61ac09f1fb", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "66cbb5c3141e1d61ac09f1f8", + "slotId": "mod_stock" + }, + { + "_id": "66cbb5c3141e1d61ac09f1fc", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "66cbb5c3141e1d61ac09f1f8", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb5c3141e1d61ac09f1fd", + "_tpl": "5926c32286f774616e42de99", + "parentId": "66cbb5c3141e1d61ac09f1f6", + "slotId": "mod_charge" } + ] + }, + { + "Id": "Loot 138 (4) [8e68fc0f-c996-40f5-a853-e05e5d914165]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 190.293, + "y": 3.085, + "z": 169.792 + }, + "Rotation": { + "x": 0.0, + "y": 148.24379, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f23a", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbb5c3141e1d61ac09f239", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f200", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f200", + "_tpl": "5fbbc383d5cb881a7363194a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 208 (3) [9d85faf2-dcb1-40f8-ae0e-85c5a9de77dd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -7.19, - "y": 0.394, - "z": -46.167 - }, - "Rotation": { - "x": 0.0, - "y": 320.38855, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f23c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f23c", - "_tpl": "575146b724597720a27126d5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 140 (4) [ee4e97f3-2bf2-4c4c-8a12-73f6cc98d9f0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 182.513, + "y": 6.874, + "z": 175.076 + }, + "Rotation": { + "x": 0.0, + "y": 359.5615, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f203", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f203", + "_tpl": "648986bbc827d4637f01791e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f204", + "_tpl": "5cc80f38e4a949001152b560", + "parentId": "66cbb5c3141e1d61ac09f203", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot 208 (7) [cad41854-9985-4f04-a0cd-309bc6d37078]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 479.297, - "y": 3.852, - "z": -45.044 - }, - "Rotation": { - "x": 0.0, - "y": 293.248352, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f23e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f23e", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 141 [49d7ef17-41e7-4bcd-8a39-de9461b58827]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 489.093, + "y": 1.4125, + "z": 4.66 + }, + "Rotation": { + "x": 0.0, + "y": 285.6736, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f206", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f206", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 23 [7887238e-3aad-4873-9869-a5b2dce50b75]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 202.292, - "y": 1.489, - "z": 11.09 - }, - "Rotation": { - "x": 0.0, - "y": 204.584229, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f240", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f240", - "_tpl": "57347cd0245977445a2d6ff1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 144 [dd3d5168-0486-4506-8275-daefe06f6196]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 179.994, + "y": 1.038, + "z": 181.541 + }, + "Rotation": { + "x": 0.0, + "y": 239.0771, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f208", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f208", + "_tpl": "5bc9bdb8d4351e003562b8a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 30 [4556d353-ad2d-4220-97e6-e2c473dd4dc5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -201.184, - "y": 7.76, - "z": -98.237 - }, - "Rotation": { - "x": -1.70754731e-6, - "y": 69.86226, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f243", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f243", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 158 (17) [5b132269-ccda-47ca-8bcc-5a85830c7cd2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 564.96, + "y": 2.057, + "z": -90.129 + }, + "Rotation": { + "x": 2.66804268e-8, + "y": 177.666946, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f20a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f20a", + "_tpl": "57347c93245977448d35f6e3", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot 158 (37) [979d341f-a694-485b-bad5-dd742dfc8dcc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 171.288, + "y": 3.04, + "z": 149.583 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 247.851349, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f244", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb5c3141e1d61ac09f243", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f20d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f20d", + "_tpl": "573724b42459776125652ac2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f20e", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb5c3141e1d61ac09f20d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot 41 [4c1b5475-4fd7-4d5c-b8be-d6a102ac602c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 203.585, - "y": 1.451, - "z": 10.294 - }, - "Rotation": { - "x": 0.0, - "y": 82.32378, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f246", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f246", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 158 (38) [5b1027f8-d009-48c3-b980-3f560321e440]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 180.8072, + "y": 6.7378, + "z": 150.0781 + }, + "Rotation": { + "x": 90.0, + "y": 339.936157, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f210", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f210", + "_tpl": "5939a00786f7742fe8132936", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 43 [09f338d3-7ec8-4056-a372-c17907d242b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 463.604, - "y": 3.323, - "z": -62.985 - }, - "Rotation": { - "x": 0.0, - "y": 204.2131, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f248", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f248", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 172 [cfdcce5a-881c-4739-b487-464ea1900b17]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 418.382, + "y": 2.217, + "z": 39.31 + }, + "Rotation": { + "x": -2.13443414e-7, + "y": 211.965546, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f211", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f211", + "_tpl": "59f98b4986f7746f546d2cef" + }, + { + "_id": "66cbb5c3141e1d61ac09f212", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "66cbb5c3141e1d61ac09f211", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb5c3141e1d61ac09f213", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbb5c3141e1d61ac09f212", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 + } } - } - ] - }, - { - "Id": "Loot 49 (3) [d9b2a981-a945-4c57-905c-46a89c65ff60]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 573.465, - "y": 2.091, - "z": -52.712 - }, - "Rotation": { - "x": -8.5377377e-7, - "y": 86.75553, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f24a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f24a", - "_tpl": "649ec30cb013f04a700e60fb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 177 [3a876f37-f102-456c-9ccc-b69431e08e36]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 417.887, + "y": 1.566, + "z": 30.359 + }, + "Rotation": { + "x": 0.0, + "y": 17.67092, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f24b", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09f24a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 22 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f215", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f215", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 50 [1fa95a71-4021-49da-adcf-1ee459200f7a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -315.572, - "y": 1.869, - "z": -163.529 - }, - "Rotation": { - "x": -8.537739e-7, - "y": 332.832672, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f24d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f24d", - "_tpl": "57347c1124597737fb1379e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 181 [7624470c-267c-4247-97e8-5e6b567bd788]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 413.083, + "y": 2.494, + "z": 31.84 + }, + "Rotation": { + "x": 0.0, + "y": 46.6146622, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f217", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f217", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 53 [e1cba339-c4e2-47cd-b128-cb967e827a5f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 562.491, - "y": 2.439, - "z": -56.381 - }, - "Rotation": { - "x": -1.70754731e-6, - "y": 93.04634, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f24f", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f24f", - "_tpl": "622efbcb99f4ea1a4d6c9a15", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 184 [f721ce7f-159a-4559-be5a-f81e9abbe24a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 411.082, + "y": 1.86, + "z": 38.553 + }, + "Rotation": { + "x": -8.53773656e-7, + "y": 223.089935, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f219", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f219", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 56 (15) [a89cd47a-425e-4e35-b2e2-653f17a4ede2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -273.458, - "y": 1.457, - "z": -84.764 - }, - "Rotation": { - "x": -8.53773656e-7, - "y": 206.4016, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f251", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f251", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 187 [53ec4f47-1f2f-41b3-b7de-e3a2e4459584]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 418.25, + "y": 2.191, + "z": 39.489 + }, + "Rotation": { + "x": -1.70754731e-6, + "y": 268.176727, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f21d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f21d", + "_tpl": "657024a91419851aef03e70c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f21e", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "66cbb5c3141e1d61ac09f21d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f21f", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "66cbb5c3141e1d61ac09f21d", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "Loot 56 (23) [ab7c3994-0967-419c-97a7-d4a1e0b89742]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -259.765, - "y": 1.642, - "z": -73.746 - }, - "Rotation": { - "x": -8.53773656e-7, - "y": 206.4016, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f253", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f253", - "_tpl": "57372140245977611f70ee91", - "upd": { - "StackObjectsCount": 34 + { + "Id": "Loot 19 (4) [33902a73-ef38-4d09-bff3-4c39ed4f0fc3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 342.195, + "y": 2.157, + "z": -143.094 + }, + "Rotation": { + "x": -4.26886828e-7, + "y": 37.8216743, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f221", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f221", + "_tpl": "5f3e77b26cda304dcc634057", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f222", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbb5c3141e1d61ac09f221", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "Loot 56 (27) [26e1f808-7ed6-47ec-ae20-11c114db8fa7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -260.2924, - "y": 1.568, - "z": -166.6281 - }, - "Rotation": { - "x": -8.53773656e-7, - "y": 206.4016, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f256", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f256", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 19 (5) [ce133dbc-e6fc-4c66-8f9a-4d453130690f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 318.679, + "y": 2.388, + "z": -183.602 + }, + "Rotation": { + "x": -4.26886828e-7, + "y": 37.8216743, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f257", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09f256", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f226", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f226", + "_tpl": "6570264acfc010a0f5006a50", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f227", + "_tpl": "59e6927d86f77411da468256", + "parentId": "66cbb5c3141e1d61ac09f226", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f228", + "_tpl": "59e6927d86f77411da468256", + "parentId": "66cbb5c3141e1d61ac09f226", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "Loot 56 (28) [01632ef7-d06e-49ac-a0f5-bb71055780c0]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 102.2964, - "y": 2.9634, - "z": -5.9064 - }, - "Rotation": { - "x": 85.79029, - "y": 180.0, - "z": 180.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f259", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f259", - "_tpl": "5937fd0086f7742bf33fc198", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loot 19 (6) [c4d1c68f-b942-46f9-ab0e-d1b67d4a3996]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 318.823, + "y": 2.388, + "z": -183.254 + }, + "Rotation": { + "x": -4.26886828e-7, + "y": 37.8216743, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f22a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f22a", + "_tpl": "5ef366938cef260c0642acad", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 56 (9) [8940c846-26aa-488d-a63e-6a5cf30feab3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -266.844, - "y": 2.029, - "z": -114.596 - }, - "Rotation": { - "x": -8.53773656e-7, - "y": 206.4016, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f25b", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f25b", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 19 (7) [253a14ad-7aaa-4498-befa-3420e7615733]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 316.964, + "y": 2.388, + "z": -182.758 + }, + "Rotation": { + "x": -4.26886828e-7, + "y": 37.8216743, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f22c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f22c", + "_tpl": "615d8e2f1cb55961fa0fd9a4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 70 [cca1bdb0-0f56-4b68-9232-3ecb33c8b96d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 235.31, - "y": 3.65, - "z": 152.908 - }, - "Rotation": { - "x": 0.0, - "y": 261.110321, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f25d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f25d", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 19 (8) [7b265945-0278-4cc5-9fa3-550cf77b3867]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 291.785, + "y": 1.5664, + "z": -191.529 + }, + "Rotation": { + "x": -4.26886828e-7, + "y": 37.8216743, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f22e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f22e", + "_tpl": "57347da92459774491567cf5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 72 [7afc77f0-e6c6-44d1-94fd-7e38696f0c6f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 233.267, - "y": 3.914, - "z": 130.798 - }, - "Rotation": { - "x": 0.0, - "y": 283.5488, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f25f", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f25f", - "_tpl": "56742c2e4bdc2d95058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 19 (9) [91a2dedf-7a53-435d-a573-600fcef0b7ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 292.121, + "y": 1.5664, + "z": -190.888 + }, + "Rotation": { + "x": -4.26886828e-7, + "y": 37.8216743, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f230", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f230", + "_tpl": "58c157be86f77403c74b2bb6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 75 (1) [a63c0054-1878-4d33-9198-6bfbd9445806]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 487.355, - "y": 6.027, - "z": -139.983 - }, - "Rotation": { - "x": 8.53773656e-7, - "y": 140.394363, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f261", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f261", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 19 [8d622409-da62-4a8f-b9cf-4aca03a8fcea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 342.14, + "y": 2.157, + "z": -143.423 + }, + "Rotation": { + "x": -4.26886828e-7, + "y": 37.8216743, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f232", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f232", + "_tpl": "635a758bfefc88a93f021b8a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 82 [eb5b0041-b881-4c45-b3f5-54cf5d4beacb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -154.675, - "y": 2.771, - "z": -8.231 - }, - "Rotation": { - "x": 0.0, - "y": 224.530624, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f263", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f263", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 202 (1) [f9c6945e-ad54-4eac-9a80-1fba7ece40e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 361.363, + "y": 2.059, + "z": -11.052 + }, + "Rotation": { + "x": 0.0, + "y": 312.0822, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f234", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f234", + "_tpl": "5f6331e097199b7db2128dc2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 87 [f277046a-94e2-4147-b919-118261df3712]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -103.7695, - "y": 1.089, - "z": 11.0189 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 97.8838348, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f265", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f265", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 208 (1) [780ac861-c10d-411c-9c8a-9d1a86f09ca2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -92.534, + "y": 1.275, + "z": 4.119 + }, + "Rotation": { + "x": 1.70754777e-6, + "y": 54.2079659, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f236", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f236", + "_tpl": "5c0fa877d174af02a012e1cf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 99 [8df2003b-e9e5-4a2e-84af-5fbe7a295399]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 11.548, - "y": -0.006, - "z": 40.072 - }, - "Rotation": { - "x": -1.70754731e-6, - "y": 139.878387, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f267", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f267", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 208 (14) [1f6b4fba-bbf3-43bf-822c-efc5743d032b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 564.294, + "y": 2.458, + "z": -82.973 + }, + "Rotation": { + "x": 0.0, + "y": 263.745575, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f239", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f239", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f23a", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbb5c3141e1d61ac09f239", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_ammo (2) [1e3d136b-4022-4538-9b19-3504f7227bea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 502.674, - "y": 15.943, - "z": 103.487 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f269", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f269", - "_tpl": "59e68f6f86f7746c9f75e846", - "upd": { - "StackObjectsCount": 24 + { + "Id": "Loot 208 (3) [9d85faf2-dcb1-40f8-ae0e-85c5a9de77dd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -7.19, + "y": 0.394, + "z": -46.167 + }, + "Rotation": { + "x": 0.0, + "y": 320.38855, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f23c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f23c", + "_tpl": "575146b724597720a27126d5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_ammo (5) [ec47144e-b19e-4732-a589-86e0086c6d41]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 495.206, - "y": 16.728, - "z": 90.243 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f26b", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f26b", - "_tpl": "64b8f7c241772715af0f9c3d", - "upd": { - "StackObjectsCount": 30 + { + "Id": "Loot 208 (7) [cad41854-9985-4f04-a0cd-309bc6d37078]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 479.297, + "y": 3.852, + "z": -45.044 + }, + "Rotation": { + "x": 0.0, + "y": 293.248352, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f23e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f23e", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_ammo (7) [4905694b-9c19-47d8-a4c3-4c2b5e3f2607]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 495.861, - "y": 16.728, - "z": 89.56 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f26d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f26d", - "_tpl": "54527a984bdc2d4e668b4567", - "upd": { - "StackObjectsCount": 28 + { + "Id": "Loot 23 [7887238e-3aad-4873-9869-a5b2dce50b75]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 202.292, + "y": 1.489, + "z": 11.09 + }, + "Rotation": { + "x": 0.0, + "y": 204.584229, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f240", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f240", + "_tpl": "57347cd0245977445a2d6ff1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_ammo_12x70_inpath12.7 [0d01165d-dea0-4cb2-bc13-63b6ce0b577e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 196.819, - "y": 7.202, - "z": 181.747 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f26f", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f26f", - "_tpl": "5d6e68d1a4b93622fe60e845", - "upd": { - "StackObjectsCount": 6 + { + "Id": "Loot 30 [4556d353-ad2d-4220-97e6-e2c473dd4dc5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -201.184, + "y": 7.76, + "z": -98.237 + }, + "Rotation": { + "x": -1.70754731e-6, + "y": 69.86226, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f243", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f243", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f244", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb5c3141e1d61ac09f243", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_ammo_common (95) [af57e763-f7c0-4d64-8335-373043b2f3f0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 207.269012, - "y": 8.073999, - "z": -96.5540161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f272", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f272", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 41 [4c1b5475-4fd7-4d5c-b8be-d6a102ac602c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 203.585, + "y": 1.451, + "z": 10.294 + }, + "Rotation": { + "x": 0.0, + "y": 82.32378, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f273", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb5c3141e1d61ac09f272", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f246", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f246", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common (96) [05e2b4dc-ec2a-428c-b873-a8c444206cf4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 208.193024, - "y": 8.306, - "z": -96.32002 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f276", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f276", - "_tpl": "657023ccbfc87b3a3409320a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 43 [09f338d3-7ec8-4056-a372-c17907d242b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 463.604, + "y": 3.323, + "z": -62.985 + }, + "Rotation": { + "x": 0.0, + "y": 204.2131, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f277", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "66cbb5c3141e1d61ac09f276", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f248", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f248", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common (97) [1ba2ba15-094d-4e58-9fa1-e5fc0e994b77]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 19.085022, - "y": 2.508, - "z": -24.257019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f27a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f27a", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 49 (3) [d9b2a981-a945-4c57-905c-46a89c65ff60]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 573.465, + "y": 2.091, + "z": -52.712 + }, + "Rotation": { + "x": -8.5377377e-7, + "y": 86.75553, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f27b", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb5c3141e1d61ac09f27a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f24a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f24a", + "_tpl": "649ec30cb013f04a700e60fb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f24b", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09f24a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 22 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (1) [f11fa82e-1ef4-442d-a67e-f179dfb1a62c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 215.884033, - "y": 8.68, - "z": -145.619019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f27e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f27e", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 50 [1fa95a71-4021-49da-adcf-1ee459200f7a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -315.572, + "y": 1.869, + "z": -163.529 + }, + "Rotation": { + "x": -8.537739e-7, + "y": 332.832672, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f27f", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb5c3141e1d61ac09f27e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f24d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f24d", + "_tpl": "57347c1124597737fb1379e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (10) [ea775638-3551-41e2-b0c3-e1f3f79a8e4c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 193.596008, - "y": 8.042999, - "z": -131.412018 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f282", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f282", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 53 [e1cba339-c4e2-47cd-b128-cb967e827a5f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 562.491, + "y": 2.439, + "z": -56.381 + }, + "Rotation": { + "x": -1.70754731e-6, + "y": 93.04634, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f283", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb5c3141e1d61ac09f282", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f24f", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f24f", + "_tpl": "622efbcb99f4ea1a4d6c9a15", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (12) [2c6b0ce3-3d6a-410c-8d2f-dca47692d31f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 210.493011, - "y": 2.60300016, - "z": -135.769012 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f286", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f286", - "_tpl": "5737280e24597765cc785b5c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 56 (15) [a89cd47a-425e-4e35-b2e2-653f17a4ede2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -273.458, + "y": 1.457, + "z": -84.764 + }, + "Rotation": { + "x": -8.53773656e-7, + "y": 206.4016, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f287", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbb5c3141e1d61ac09f286", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f251", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f251", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (13) [96e49aec-f74b-4a7b-8721-7348f5c15f0a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 209.912018, - "y": 2.43400049, - "z": -135.681015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f28a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f28a", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 56 (23) [ab7c3994-0967-419c-97a7-d4a1e0b89742]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -259.765, + "y": 1.642, + "z": -73.746 + }, + "Rotation": { + "x": -8.53773656e-7, + "y": 206.4016, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f28b", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09f28a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f253", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f253", + "_tpl": "57372140245977611f70ee91", + "upd": { + "StackObjectsCount": 34 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (15) [159bd83e-667f-4d39-b2da-a4028653ff86]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 210.038025, - "y": 2.60899973, - "z": -136.544022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f28e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f28e", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 56 (27) [26e1f808-7ed6-47ec-ae20-11c114db8fa7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -260.2924, + "y": 1.568, + "z": -166.6281 + }, + "Rotation": { + "x": -8.53773656e-7, + "y": 206.4016, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f28f", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb5c3141e1d61ac09f28e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f256", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f256", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f257", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09f256", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (21) [979c1d37-4be2-41c9-95c5-aaccd6a51fda]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 81.2370148, - "y": 1.664, - "z": -155.613022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f292", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f292", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 56 (28) [01632ef7-d06e-49ac-a0f5-bb71055780c0]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 102.2964, + "y": 2.9634, + "z": -5.9064 + }, + "Rotation": { + "x": 85.79029, + "y": 180.0, + "z": 180.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f259", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f259", + "_tpl": "5937fd0086f7742bf33fc198", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot 56 (9) [8940c846-26aa-488d-a63e-6a5cf30feab3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -266.844, + "y": 2.029, + "z": -114.596 + }, + "Rotation": { + "x": -8.53773656e-7, + "y": 206.4016, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f293", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09f292", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f25b", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f25b", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (22) [046c1ad5-cb05-4093-9cc8-793919d57cd1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 81.23003, - "y": 2.62299967, - "z": -155.598022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f297", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f297", - "_tpl": "57372b832459776701014e41", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 70 [cca1bdb0-0f56-4b68-9232-3ecb33c8b96d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 235.31, + "y": 3.65, + "z": 152.908 + }, + "Rotation": { + "x": 0.0, + "y": 261.110321, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f298", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb5c3141e1d61ac09f297", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f25d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f25d", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot 72 [7afc77f0-e6c6-44d1-94fd-7e38696f0c6f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 233.267, + "y": 3.914, + "z": 130.798 + }, + "Rotation": { + "x": 0.0, + "y": 283.5488, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f299", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb5c3141e1d61ac09f297", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f25f", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f25f", + "_tpl": "56742c2e4bdc2d95058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (24) [12944abf-418b-467d-aa00-a1a0d357aad5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 81.32402, - "y": 2.16500044, - "z": -155.989014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f29c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f29c", - "_tpl": "5c12619186f7743f871c8a32", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 75 (1) [a63c0054-1878-4d33-9198-6bfbd9445806]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 487.355, + "y": 6.027, + "z": -139.983 + }, + "Rotation": { + "x": 8.53773656e-7, + "y": 140.394363, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f29d", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbb5c3141e1d61ac09f29c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f261", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f261", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (26) [8e7f8f5d-f4b5-42e0-8832-777d79350a3c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 85.56903, - "y": 1.63700056, - "z": -151.050018 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2a1", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2a1", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 82 [eb5b0041-b881-4c45-b3f5-54cf5d4beacb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -154.675, + "y": 2.771, + "z": -8.231 + }, + "Rotation": { + "x": 0.0, + "y": 224.530624, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2a2", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb5c3141e1d61ac09f2a1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f263", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f263", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot 87 [f277046a-94e2-4147-b919-118261df3712]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -103.7695, + "y": 1.089, + "z": 11.0189 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 97.8838348, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2a3", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb5c3141e1d61ac09f2a1", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f265", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f265", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (28) [482ac7d3-e98c-4361-996b-c28face73193]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 348.834045, - "y": 4.838, - "z": -71.58601 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2a6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2a6", - "_tpl": "5649ed104bdc2d3d1c8b458b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 99 [8df2003b-e9e5-4a2e-84af-5fbe7a295399]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 11.548, + "y": -0.006, + "z": 40.072 + }, + "Rotation": { + "x": -1.70754731e-6, + "y": 139.878387, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2a7", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb5c3141e1d61ac09f2a6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f267", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f267", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (30) [6ac74d0c-413b-43fc-8dda-e764a993607d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 347.857, - "y": 4.838, - "z": -70.94202 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2aa", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2aa", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_ammo (2) [1e3d136b-4022-4538-9b19-3504f7227bea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 502.674, + "y": 15.943, + "z": 103.487 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2ab", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb5c3141e1d61ac09f2aa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f269", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f269", + "_tpl": "59e68f6f86f7746c9f75e846", + "upd": { + "StackObjectsCount": 24 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (31) [39f903e9-157e-487c-aff8-2813f57ca9ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 347.776, - "y": 4.838, - "z": -74.39902 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2ae", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2ae", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_ammo (5) [ec47144e-b19e-4732-a589-86e0086c6d41]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 495.206, + "y": 16.728, + "z": 90.243 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f26b", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f26b", + "_tpl": "64b8f7c241772715af0f9c3d", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "Loot_ammo (7) [4905694b-9c19-47d8-a4c3-4c2b5e3f2607]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 495.861, + "y": 16.728, + "z": 89.56 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2af", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09f2ae", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f26d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f26d", + "_tpl": "54527a984bdc2d4e668b4567", + "upd": { + "StackObjectsCount": 28 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (39) [dcd9170f-9af2-4cfb-8fd4-0e72069d886f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 317.625031, - "y": 10.6760006, - "z": -93.53102 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2b2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2b2", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_ammo_12x70_inpath12.7 [0d01165d-dea0-4cb2-bc13-63b6ce0b577e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 196.819, + "y": 7.202, + "z": 181.747 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f26f", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f26f", + "_tpl": "5d6e68d1a4b93622fe60e845", + "upd": { + "StackObjectsCount": 6 + } } + ] + }, + { + "Id": "loot_ammo_common (95) [af57e763-f7c0-4d64-8335-373043b2f3f0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 207.269012, + "y": 8.073999, + "z": -96.5540161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2b3", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb5c3141e1d61ac09f2b2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f272", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f272", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f273", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb5c3141e1d61ac09f272", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (4) [19de3dc3-7cb2-44ad-830e-c411236fb656]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 217.030029, - "y": 8.921, - "z": -145.269012 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2b6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2b6", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (96) [05e2b4dc-ec2a-428c-b873-a8c444206cf4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 208.193024, + "y": 8.306, + "z": -96.32002 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f276", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f276", + "_tpl": "657023ccbfc87b3a3409320a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f277", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "66cbb5c3141e1d61ac09f276", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "loot_ammo_common (97) [1ba2ba15-094d-4e58-9fa1-e5fc0e994b77]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 19.085022, + "y": 2.508, + "z": -24.257019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2b7", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb5c3141e1d61ac09f2b6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f27a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f27a", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f27b", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb5c3141e1d61ac09f27a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (40) [7cb728ae-d635-4bd5-bd55-623d88a57331]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 318.355, - "y": 9.681, - "z": -91.37001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2ba", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2ba", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo_common1 (1) [f11fa82e-1ef4-442d-a67e-f179dfb1a62c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 215.884033, + "y": 8.68, + "z": -145.619019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2bb", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb5c3141e1d61ac09f2ba", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f27e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f27e", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f27f", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb5c3141e1d61ac09f27e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (41) [129a2457-5fe9-47b3-8515-6657c80403a0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 318.466034, - "y": 9.681, - "z": -93.36502 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2be", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2be", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo_common1 (10) [ea775638-3551-41e2-b0c3-e1f3f79a8e4c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 193.596008, + "y": 8.042999, + "z": -131.412018 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2bf", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb5c3141e1d61ac09f2be", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f282", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f282", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f283", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb5c3141e1d61ac09f282", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (43) [e9d31f7d-47cd-4625-b5b9-791a8c6fd378]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 268.39, - "y": 1.46299982, - "z": -105.835022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2c2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2c2", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo_common1 (12) [2c6b0ce3-3d6a-410c-8d2f-dca47692d31f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 210.493011, + "y": 2.60300016, + "z": -135.769012 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2c3", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb5c3141e1d61ac09f2c2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f286", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f286", + "_tpl": "5737280e24597765cc785b5c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f287", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbb5c3141e1d61ac09f286", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (7) [f5c42265-b4d4-4645-8579-ca5cb82a8b72]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 193.567017, - "y": 8.183001, - "z": -135.371017 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2c6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2c6", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo_common1 (13) [96e49aec-f74b-4a7b-8721-7348f5c15f0a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 209.912018, + "y": 2.43400049, + "z": -135.681015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2c7", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb5c3141e1d61ac09f2c6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f28a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f28a", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f28b", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09f28a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (8) [e30688eb-5f31-4414-aed1-ac203984063c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 193.170013, - "y": 8.042999, - "z": -131.075012 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2ca", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2ca", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo_common1 (15) [159bd83e-667f-4d39-b2da-a4028653ff86]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 210.038025, + "y": 2.60899973, + "z": -136.544022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2cb", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66cbb5c3141e1d61ac09f2ca", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f28e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f28e", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f28f", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb5c3141e1d61ac09f28e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_ammo_common1 (9) [f7bcc0a8-c6c5-4ab7-bef9-5c7a579e1746]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 193.582031, - "y": 8.042999, - "z": -130.488022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2ce", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2ce", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo_common1 (21) [979c1d37-4be2-41c9-95c5-aaccd6a51fda]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 81.2370148, + "y": 1.664, + "z": -155.613022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2cf", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb5c3141e1d61ac09f2ce", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f292", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f292", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f293", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09f292", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_armor (1) [a61cb6c6-dc44-4f8d-98c8-1912535ff640]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -201.6598, - "y": 6.476, - "z": -105.312531 - }, - "Rotation": { - "x": 271.9105, - "y": 280.884125, - "z": 45.8245621 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2d0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2d0", - "_tpl": "5648a7494bdc2d9d488b4583" - }, - { - "_id": "66cbb5c3141e1d61ac09f2d1", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "66cbb5c3141e1d61ac09f2d0", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbb5c3141e1d61ac09f2d2", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "66cbb5c3141e1d61ac09f2d0", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbb5c3141e1d61ac09f2d3", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "66cbb5c3141e1d61ac09f2d0", - "slotId": "Soft_armor_left" + ] + }, + { + "Id": "loot_ammo_common1 (22) [046c1ad5-cb05-4093-9cc8-793919d57cd1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 81.23003, + "y": 2.62299967, + "z": -155.598022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f2d4", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "66cbb5c3141e1d61ac09f2d0", - "slotId": "soft_armor_right" - } - ] - }, - { - "Id": "Loot_backpack_wild (2) [a0ad192d-3f99-4640-86d7-e9eddb165293]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 466.267, - "y": 0.553, - "z": 206.854 - }, - "Rotation": { - "x": 0.298132479, - "y": 282.359833, - "z": 6.50956964 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2d6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2d6", - "_tpl": "56e335e4d2720b6c058b456d", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f297", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f297", + "_tpl": "57372b832459776701014e41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f298", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb5c3141e1d61ac09f297", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f299", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb5c3141e1d61ac09f297", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_buhlo (14) [bdf1134a-7c55-4229-8339-e1986665f417]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 342.715027, - "y": -2.547, - "z": -35.5280151 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2d8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2d8", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common1 (24) [12944abf-418b-467d-aa00-a1a0d357aad5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 81.32402, + "y": 2.16500044, + "z": -155.989014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f29c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f29c", + "_tpl": "5c12619186f7743f871c8a32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f29d", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbb5c3141e1d61ac09f29c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "loot_buhlo (17) [93cbc4b3-ecee-4e7e-8410-147051d9704c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.725, - "y": 6.687, - "z": 145.142975 - }, - "Rotation": { - "x": 0.0, - "y": 279.694458, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2da", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2da", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common1 (26) [8e7f8f5d-f4b5-42e0-8832-777d79350a3c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 85.56903, + "y": 1.63700056, + "z": -151.050018 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2a1", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2a1", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2a2", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb5c3141e1d61ac09f2a1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2a3", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb5c3141e1d61ac09f2a1", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_building_mater (2) [d2f8dbcc-463b-4646-8a46-f535aa3231f9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 11.7839966, - "y": -3.974, - "z": -118.427 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2dc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2dc", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common1 (28) [482ac7d3-e98c-4361-996b-c28face73193]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 348.834045, + "y": 4.838, + "z": -71.58601 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2a6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2a6", + "_tpl": "5649ed104bdc2d3d1c8b458b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2a7", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb5c3141e1d61ac09f2a6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_case_0013 [85934041-00cd-4ba8-a1db-5abb71148def]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 485.8996, - "y": 5.639, - "z": -140.5882 - }, - "Rotation": { - "x": 90.0, - "y": 4.2915548e-5, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 487.272583, - "y": 5.64299059, - "z": -138.6152 + { + "Id": "loot_ammo_common1 (30) [6ac74d0c-413b-43fc-8dda-e764a993607d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 347.857, + "y": 4.838, + "z": -70.94202 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2aa", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2aa", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 90, - "y": 0, - "z": 0 + { + "_id": "66cbb5c3141e1d61ac09f2ab", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb5c3141e1d61ac09f2aa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_ammo_common1 (31) [39f903e9-157e-487c-aff8-2813f57ca9ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 347.776, + "y": 4.838, + "z": -74.39902 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 485.8996, - "y": 5.639, - "z": -140.5882 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2ae", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2ae", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 90, - "y": 4.2915548e-5, - "z": 0 + { + "_id": "66cbb5c3141e1d61ac09f2af", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09f2ae", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_ammo_common1 (39) [dcd9170f-9af2-4cfb-8fd4-0e72069d886f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 317.625031, + "y": 10.6760006, + "z": -93.53102 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 498.5496, - "y": 5.63900328, - "z": -141.5012 - }, - "Rotation": { - "x": 90, - "y": 4.2915548e-5, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2de", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2de", - "_tpl": "5939e5a786f77461f11c0098", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2b2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2b2", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2b3", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb5c3141e1d61ac09f2b2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_case_feld [3c881815-5781-4988-b7b6-beb3ba2b8ae2]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 239.183, - "y": 0.713, - "z": 160.595 - }, - "Rotation": { - "x": 88.6121, - "y": 270.000122, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2e0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2e0", - "_tpl": "5910922b86f7747d96753483", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common1 (4) [19de3dc3-7cb2-44ad-830e-c411236fb656]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 217.030029, + "y": 8.921, + "z": -145.269012 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2b6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2b6", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2b7", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb5c3141e1d61ac09f2b6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_electr (44) [965e4217-295f-4712-8a6b-7ca38d2e9d94]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 565.087036, - "y": 6.923, - "z": -78.832016 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2e2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2e2", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common1 (40) [7cb728ae-d635-4bd5-bd55-623d88a57331]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 318.355, + "y": 9.681, + "z": -91.37001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2ba", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2ba", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2bb", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb5c3141e1d61ac09f2ba", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_flash_TG [bf56b105-2a8b-4503-a7b2-e171623270c1]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 194.2243, - "y": 3.7256, - "z": 171.0656 - }, - "Rotation": { - "x": 90.0, - "y": 37.30105, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2e4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2e4", - "_tpl": "590c62a386f77412b0130255", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common1 (41) [129a2457-5fe9-47b3-8515-6657c80403a0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 318.466034, + "y": 9.681, + "z": -93.36502 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2be", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2be", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2bf", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb5c3141e1d61ac09f2be", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_food (42) [ccd64b25-b442-4f82-b32b-c12228a537a7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 649.291, - "y": 0.597, - "z": -20.24 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2e6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2e6", - "_tpl": "5448ff904bdc2d6f028b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common1 (43) [e9d31f7d-47cd-4625-b5b9-791a8c6fd378]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 268.39, + "y": 1.46299982, + "z": -105.835022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2c2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2c2", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2c3", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb5c3141e1d61ac09f2c2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_food (43) [a2bc73b3-58a5-4594-ab47-ffcadf503d46]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 650.194, - "y": 0.277, - "z": -30.015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2e8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2e8", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common1 (7) [f5c42265-b4d4-4645-8579-ca5cb82a8b72]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 193.567017, + "y": 8.183001, + "z": -135.371017 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2c6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2c6", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2c7", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb5c3141e1d61ac09f2c6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_food_drink (30) [d5db88ca-dab3-4a6c-8ff9-6ea860f19248]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 207.396027, - "y": 2.69100046, - "z": -122.980011 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2ea", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2ea", - "_tpl": "60098b1705871270cd5352a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common1 (8) [e30688eb-5f31-4414-aed1-ac203984063c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 193.170013, + "y": 8.042999, + "z": -131.075012 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2ca", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2ca", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2cb", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66cbb5c3141e1d61ac09f2ca", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_food_drink (31) [3a8db736-e168-4161-ba2b-7608167d7729]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 207.335022, - "y": 2.69100046, - "z": -122.432022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2ec", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2ec", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common1 (9) [f7bcc0a8-c6c5-4ab7-bef9-5c7a579e1746]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 193.582031, + "y": 8.042999, + "z": -130.488022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2ce", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2ce", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f2cf", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb5c3141e1d61ac09f2ce", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_food_drink (32) [cfec7cd2-88b1-48d9-ad48-a340468bdefa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 206.955017, - "y": 2.69100046, - "z": -122.692017 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2ee", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2ee", - "_tpl": "635a758bfefc88a93f021b8a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_armor (1) [a61cb6c6-dc44-4f8d-98c8-1912535ff640]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -201.6598, + "y": 6.476, + "z": -105.312531 + }, + "Rotation": { + "x": 271.9105, + "y": 280.884125, + "z": 45.8245621 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2d0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2d0", + "_tpl": "5648a7494bdc2d9d488b4583" + }, + { + "_id": "66cbb5c3141e1d61ac09f2d1", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "66cbb5c3141e1d61ac09f2d0", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbb5c3141e1d61ac09f2d2", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "66cbb5c3141e1d61ac09f2d0", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbb5c3141e1d61ac09f2d3", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "66cbb5c3141e1d61ac09f2d0", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbb5c3141e1d61ac09f2d4", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "66cbb5c3141e1d61ac09f2d0", + "slotId": "soft_armor_right" } - } - ] - }, - { - "Id": "loot_food_drink (35) [cf65dfff-9739-4b01-ba00-251c0b07c00a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 79.6220245, - "y": 2.45099974, - "z": -160.43602 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2f0", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2f0", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_backpack_wild (2) [a0ad192d-3f99-4640-86d7-e9eddb165293]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 466.267, + "y": 0.553, + "z": 206.854 + }, + "Rotation": { + "x": 0.298132479, + "y": 282.359833, + "z": 6.50956964 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2d6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2d6", + "_tpl": "56e335e4d2720b6c058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_drink (44) [b21bae86-bec2-42a2-9cda-917851f8a528]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 563.265, - "y": 7.64, - "z": -53.41301 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2f2", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2f2", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_buhlo (14) [bdf1134a-7c55-4229-8339-e1986665f417]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 342.715027, + "y": -2.547, + "z": -35.5280151 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2d8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2d8", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_drink (46) [84bf4a2a-7256-4cdf-baa1-ff90b0cff803]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 170.720032, - "y": 3.80699968, - "z": 172.078979 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2f4", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2f4", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_buhlo (17) [93cbc4b3-ecee-4e7e-8410-147051d9704c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.725, + "y": 6.687, + "z": 145.142975 + }, + "Rotation": { + "x": 0.0, + "y": 279.694458, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2da", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2da", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_drink (64) [95e0eb4e-76d6-4e2b-be46-d750876f164f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.627014, - "y": 2.41799974, - "z": -104.084015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2f6", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2f6", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building_mater (2) [d2f8dbcc-463b-4646-8a46-f535aa3231f9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 11.7839966, + "y": -3.974, + "z": -118.427 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2dc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2dc", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_hideout_consum (2) [9dc4c0b8-d245-4e49-b9e2-b9c6c795109c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -195.801376, - "y": 3.23199987, - "z": -228.134216 - }, - "Rotation": { - "x": 0.0, - "y": 345.066223, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2f8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2f8", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_case_0013 [85934041-00cd-4ba8-a1db-5abb71148def]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 485.8996, + "y": 5.639, + "z": -140.5882 + }, + "Rotation": { + "x": 90.0, + "y": 4.2915548e-5, + "z": 0.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 487.272583, + "y": 5.64299059, + "z": -138.6152 + }, + "Rotation": { + "x": 90, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 485.8996, + "y": 5.639, + "z": -140.5882 + }, + "Rotation": { + "x": 90, + "y": 4.2915548e-5, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 498.5496, + "y": 5.63900328, + "z": -141.5012 + }, + "Rotation": { + "x": 90, + "y": 4.2915548e-5, + "z": 0 + } } - } - ] - }, - { - "Id": "loot_house (3) [96da70ef-b5d5-4cd0-92e2-d7ce2cb4e7f8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 77.49902, - "y": 6.0800004, - "z": -154.893021 - }, - "Rotation": { - "x": 0.0, - "y": 104.846359, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2fa", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2fa", - "_tpl": "577e1c9d2459773cd707c525", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2de", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2de", + "_tpl": "5939e5a786f77461f11c0098", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_intel (2) [a56dd43c-c422-4a92-9166-d73f26218ad4]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 80.36702, - "y": 5.426, - "z": -163.111023 - }, - "Rotation": { - "x": 0.0, - "y": 104.846359, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2fc", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2fc", - "_tpl": "5c12613b86f7743bbe2c3f76", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_case_feld [3c881815-5781-4988-b7b6-beb3ba2b8ae2]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 239.183, + "y": 0.713, + "z": 160.595 + }, + "Rotation": { + "x": 88.6121, + "y": 270.000122, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2e0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2e0", + "_tpl": "5910922b86f7747d96753483", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_jever (17) [7de6a3fb-7006-475b-b706-c5121c0fb1d2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.834, - "y": 6.497, - "z": 184.623 - }, - "Rotation": { - "x": 0.0, - "y": 324.251984, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f2fe", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f2fe", - "_tpl": "573478bc24597738002c6175", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electr (44) [965e4217-295f-4712-8a6b-7ca38d2e9d94]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 565.087036, + "y": 6.923, + "z": -78.832016 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2e2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2e2", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_jever (18) [fb1381fd-a777-440a-9782-ea43a436c62f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 182.184, - "y": 6.15, - "z": 183.758 - }, - "Rotation": { - "x": 0.0, - "y": 324.251984, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f300", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f300", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_flash_TG [bf56b105-2a8b-4503-a7b2-e171623270c1]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 194.2243, + "y": 3.7256, + "z": 171.0656 + }, + "Rotation": { + "x": 90.0, + "y": 37.30105, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2e4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2e4", + "_tpl": "590c62a386f77412b0130255", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_jever (20) [e3e499f1-98b3-497b-b166-4b8911a7d768]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 186.389, - "y": 6.649, - "z": 184.163 - }, - "Rotation": { - "x": 0.0, - "y": 324.251984, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f302", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f302", - "_tpl": "5e54f62086f774219b0f1937", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_food (42) [ccd64b25-b442-4f82-b32b-c12228a537a7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 649.291, + "y": 0.597, + "z": -20.24 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2e6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2e6", + "_tpl": "5448ff904bdc2d6f028b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (2) [b29224e9-69de-424b-9799-e232275661fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 206.777008, - "y": 2.02800035, - "z": -125.585022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f304", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f304", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_food (43) [a2bc73b3-58a5-4594-ab47-ffcadf503d46]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 650.194, + "y": 0.277, + "z": -30.015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2e8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2e8", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (4) [69cd09a8-0781-401b-8039-bb455e317d73]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 82.4950256, - "y": 2.48399973, - "z": -161.554016 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f306", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f306", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (30) [d5db88ca-dab3-4a6c-8ff9-6ea860f19248]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 207.396027, + "y": 2.69100046, + "z": -122.980011 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2ea", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2ea", + "_tpl": "60098b1705871270cd5352a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (7) [afd99ac6-5605-4c0a-b4e9-607a67b46edd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 348.051025, - "y": -2.35999966, - "z": -35.2180176 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f308", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f308", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (31) [3a8db736-e168-4161-ba2b-7608167d7729]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 207.335022, + "y": 2.69100046, + "z": -122.432022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2ec", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2ec", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_letter_TG [c2de8409-e577-4e46-8416-51aaea0cf055]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 194.7797, - "y": 4.4267, - "z": 173.1325 - }, - "Rotation": { - "x": 4.01791573, - "y": 6.64310646, - "z": 88.59731 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f30a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f30a", - "_tpl": "5939e9b286f77462a709572c", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_food_drink (32) [cfec7cd2-88b1-48d9-ad48-a340468bdefa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 206.955017, + "y": 2.69100046, + "z": -122.692017 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2ee", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2ee", + "_tpl": "635a758bfefc88a93f021b8a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med11 (20) [71d06a58-94a6-421e-9e94-89dab739be3b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 332.023, - "y": -2.85699987, - "z": -60.1510162 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f30c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f30c", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (35) [cf65dfff-9739-4b01-ba00-251c0b07c00a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 79.6220245, + "y": 2.45099974, + "z": -160.43602 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2f0", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2f0", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med11 (26) [fe0ff008-ffdf-4b68-a2e6-3acf9a9c4237]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 168.47702, - "y": 3.79000044, - "z": 151.751984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f30e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f30e", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (44) [b21bae86-bec2-42a2-9cda-917851f8a528]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 563.265, + "y": 7.64, + "z": -53.41301 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2f2", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2f2", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (100) [60baa049-1025-4a7b-bd8f-8df2f4ec9074]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 603.653, - "y": 4.98399973, - "z": -122.637024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f311", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f311", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (46) [84bf4a2a-7256-4cdf-baa1-ff90b0cff803]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 170.720032, + "y": 3.80699968, + "z": 172.078979 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2f4", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2f4", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_food_drink (64) [95e0eb4e-76d6-4e2b-be46-d750876f164f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.627014, + "y": 2.41799974, + "z": -104.084015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f312", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbb5c3141e1d61ac09f311", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2f6", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2f6", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (102) [6562e5b3-9cb8-4f1e-bbe3-3beffad948ca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 602.488037, - "y": 2.61100054, - "z": -135.458023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f314", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f314", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_hideout_consum (2) [9dc4c0b8-d245-4e49-b9e2-b9c6c795109c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -195.801376, + "y": 3.23199987, + "z": -228.134216 + }, + "Rotation": { + "x": 0.0, + "y": 345.066223, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2f8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2f8", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (112) [3289a216-a5c3-4278-92bf-bf638f144c93]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 575.883, - "y": 7.447, - "z": -58.4550171 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f316", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f316", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_house (3) [96da70ef-b5d5-4cd0-92e2-d7ce2cb4e7f8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 77.49902, + "y": 6.0800004, + "z": -154.893021 + }, + "Rotation": { + "x": 0.0, + "y": 104.846359, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2fa", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2fa", + "_tpl": "577e1c9d2459773cd707c525", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (116) [ffa853cd-655e-4b51-847f-8c3402ce331c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 579.763, - "y": 7.181, - "z": -50.59401 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f319", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f319", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_intel (2) [a56dd43c-c422-4a92-9166-d73f26218ad4]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 80.36702, + "y": 5.426, + "z": -163.111023 + }, + "Rotation": { + "x": 0.0, + "y": 104.846359, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f31a", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb5c3141e1d61ac09f319", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2fc", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2fc", + "_tpl": "5c12613b86f7743bbe2c3f76", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (125) [95880324-16f7-45fe-adbc-4e0b5ba37520]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 77.17502, - "y": 5.58700037, - "z": -151.590012 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f31d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f31d", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_jever (17) [7de6a3fb-7006-475b-b706-c5121c0fb1d2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.834, + "y": 6.497, + "z": 184.623 + }, + "Rotation": { + "x": 0.0, + "y": 324.251984, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f31e", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb5c3141e1d61ac09f31d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f2fe", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f2fe", + "_tpl": "573478bc24597738002c6175", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (130) [e73ac9bb-859f-45df-b3ac-b06a2fe8bc80]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 76.65903, - "y": 4.952, - "z": -156.215012 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f321", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f321", - "_tpl": "64aceaecc4eda9354b0226b6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_jever (18) [fb1381fd-a777-440a-9782-ea43a436c62f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 182.184, + "y": 6.15, + "z": 183.758 + }, + "Rotation": { + "x": 0.0, + "y": 324.251984, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f322", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbb5c3141e1d61ac09f321", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f300", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f300", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (131) [0a7fdc74-9200-4e51-b06b-9f517a606015]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 77.03302, - "y": 4.952, - "z": -157.937012 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f325", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f325", - "_tpl": "64acea2c03378853630da53e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_jever (20) [e3e499f1-98b3-497b-b166-4b8911a7d768]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 186.389, + "y": 6.649, + "z": 184.163 + }, + "Rotation": { + "x": 0.0, + "y": 324.251984, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f326", - "_tpl": "59e4d3d286f774176a36250a", - "parentId": "66cbb5c3141e1d61ac09f325", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f302", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f302", + "_tpl": "5e54f62086f774219b0f1937", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (132) [c3b6aca9-b938-4624-a4d1-29da446d47e8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 584.344, - "y": 0.1170001, - "z": 8.263985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f329", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f329", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (2) [b29224e9-69de-424b-9799-e232275661fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 206.777008, + "y": 2.02800035, + "z": -125.585022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f32a", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb5c3141e1d61ac09f329", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f304", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f304", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (135) [682932c1-2aca-4014-b9d5-a393bca2ccfe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.5, - "y": 1.77100039, - "z": -159.707 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f32d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f32d", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (4) [69cd09a8-0781-401b-8039-bb455e317d73]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 82.4950256, + "y": 2.48399973, + "z": -161.554016 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f32e", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbb5c3141e1d61ac09f32d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f306", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f306", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (136) [5f4d23f0-d44c-4e24-90a9-85eb8eb3821e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 65.2370148, - "y": 2.058, - "z": -109.306015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f331", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f331", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (7) [afd99ac6-5605-4c0a-b4e9-607a67b46edd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 348.051025, + "y": -2.35999966, + "z": -35.2180176 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f332", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbb5c3141e1d61ac09f331", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f308", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f308", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (137) [440f1d75-225b-4e86-ba9f-cae673b5c57c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.85742, - "y": 2.058, - "z": -108.996613 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f335", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f335", - "_tpl": "657025bbcfc010a0f5006a35", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_letter_TG [c2de8409-e577-4e46-8416-51aaea0cf055]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 194.7797, + "y": 4.4267, + "z": 173.1325 + }, + "Rotation": { + "x": 4.01791573, + "y": 6.64310646, + "z": 88.59731 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f30a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f30a", + "_tpl": "5939e9b286f77462a709572c", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med11 (20) [71d06a58-94a6-421e-9e94-89dab739be3b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 332.023, + "y": -2.85699987, + "z": -60.1510162 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f336", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbb5c3141e1d61ac09f335", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f30c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f30c", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (142) [903c3261-748e-49f4-8148-7ca70c5657e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 87.09201, - "y": 4.466, - "z": -105.906021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f339", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f339", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med11 (26) [fe0ff008-ffdf-4b68-a2e6-3acf9a9c4237]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 168.47702, + "y": 3.79000044, + "z": 151.751984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f33a", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbb5c3141e1d61ac09f339", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f30e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f30e", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (145) [e2327b33-5f55-46d4-bdd7-8f51225c378b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 87.84201, - "y": 5.02, - "z": -101.953018 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f33d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f33d", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (100) [60baa049-1025-4a7b-bd8f-8df2f4ec9074]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 603.653, + "y": 4.98399973, + "z": -122.637024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f33e", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbb5c3141e1d61ac09f33d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f311", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f311", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f312", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbb5c3141e1d61ac09f311", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (147) [8d2cb6e6-15c8-4e5a-bf57-8be37f6e96ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 100.369019, - "y": 1.84400034, - "z": -107.138016 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f341", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f341", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (102) [6562e5b3-9cb8-4f1e-bbe3-3beffad948ca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 602.488037, + "y": 2.61100054, + "z": -135.458023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f314", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f314", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (112) [3289a216-a5c3-4278-92bf-bf638f144c93]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 575.883, + "y": 7.447, + "z": -58.4550171 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f342", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb5c3141e1d61ac09f341", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f316", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f316", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (155) [5e650018-a820-4655-ae96-021aec6c0b74]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 222.86203, - "y": 7.97699976, - "z": -21.7320175 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f345", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f345", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (116) [ffa853cd-655e-4b51-847f-8c3402ce331c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 579.763, + "y": 7.181, + "z": -50.59401 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f319", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f319", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f31a", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb5c3141e1d61ac09f319", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (125) [95880324-16f7-45fe-adbc-4e0b5ba37520]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 77.17502, + "y": 5.58700037, + "z": -151.590012 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f346", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbb5c3141e1d61ac09f345", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f31d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f31d", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f31e", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb5c3141e1d61ac09f31d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (156) [81db6af8-6bf8-42e1-a276-f8c913ed5626]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 225.629028, - "y": 7.77300024, - "z": -20.070015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f349", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f349", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (130) [e73ac9bb-859f-45df-b3ac-b06a2fe8bc80]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 76.65903, + "y": 4.952, + "z": -156.215012 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f321", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f321", + "_tpl": "64aceaecc4eda9354b0226b6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f322", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbb5c3141e1d61ac09f321", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (131) [0a7fdc74-9200-4e51-b06b-9f517a606015]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 77.03302, + "y": 4.952, + "z": -157.937012 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f34a", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbb5c3141e1d61ac09f349", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f325", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f325", + "_tpl": "64acea2c03378853630da53e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f326", + "_tpl": "59e4d3d286f774176a36250a", + "parentId": "66cbb5c3141e1d61ac09f325", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (162) [ae0fd562-9b9b-42d2-8ba8-51607f2637e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 221.154022, - "y": 7.77300024, - "z": -1.50201416 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f34d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f34d", - "_tpl": "5c1260dc86f7746b106e8748", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (132) [c3b6aca9-b938-4624-a4d1-29da446d47e8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 584.344, + "y": 0.1170001, + "z": 8.263985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f329", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f329", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f32a", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb5c3141e1d61ac09f329", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (135) [682932c1-2aca-4014-b9d5-a393bca2ccfe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.5, + "y": 1.77100039, + "z": -159.707 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f34e", - "_tpl": "5c0d688c86f77413ae3407b2", - "parentId": "66cbb5c3141e1d61ac09f34d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f32d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f32d", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f32e", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbb5c3141e1d61ac09f32d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (175) [1522e7d0-e3c7-492f-9b34-7d3c2617a8b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -218.192978, - "y": 0.2590003, - "z": -16.6980133 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f351", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f351", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (136) [5f4d23f0-d44c-4e24-90a9-85eb8eb3821e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 65.2370148, + "y": 2.058, + "z": -109.306015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f331", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f331", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f332", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbb5c3141e1d61ac09f331", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (137) [440f1d75-225b-4e86-ba9f-cae673b5c57c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.85742, + "y": 2.058, + "z": -108.996613 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f352", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb5c3141e1d61ac09f351", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f335", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f335", + "_tpl": "657025bbcfc010a0f5006a35", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f336", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbb5c3141e1d61ac09f335", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (49) [8cfa2219-3df8-468c-b1a3-8ca0c69aa7ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 192.696014, - "y": 2.45799971, - "z": -103.955017 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f355", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f355", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (142) [903c3261-748e-49f4-8148-7ca70c5657e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 87.09201, + "y": 4.466, + "z": -105.906021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f356", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb5c3141e1d61ac09f355", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f339", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f339", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f33a", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbb5c3141e1d61ac09f339", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (60) [02a0092c-319e-481f-b81b-9b563c59193e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 213.695, - "y": 2.92400026, - "z": -128.068024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f359", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f359", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (145) [e2327b33-5f55-46d4-bdd7-8f51225c378b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 87.84201, + "y": 5.02, + "z": -101.953018 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f35a", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb5c3141e1d61ac09f359", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f33d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f33d", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f33e", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbb5c3141e1d61ac09f33d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (63) [6dee4c0e-32f1-48d4-8251-072cbb18a5b9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 205.747009, - "y": 2.711, - "z": -156.507019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f35d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f35d", - "_tpl": "64aceaecc4eda9354b0226b6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (147) [8d2cb6e6-15c8-4e5a-bf57-8be37f6e96ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 100.369019, + "y": 1.84400034, + "z": -107.138016 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f35e", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbb5c3141e1d61ac09f35d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f341", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f341", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f342", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb5c3141e1d61ac09f341", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (66) [b460fb61-70b7-49f3-a3a2-4285b461571c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 206.303009, - "y": 2.23899984, - "z": -124.748016 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f361", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f361", - "_tpl": "657023f81419851aef03e6f1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (155) [5e650018-a820-4655-ae96-021aec6c0b74]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 222.86203, + "y": 7.97699976, + "z": -21.7320175 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f362", - "_tpl": "5f0596629e22f464da6bbdd9", - "parentId": "66cbb5c3141e1d61ac09f361", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f345", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f345", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f346", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbb5c3141e1d61ac09f345", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (67) [c9a20f9b-33c7-4b13-b58b-e06bbd105488]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 206.952026, - "y": 2.15500021, - "z": -126.33902 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f365", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f365", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (156) [81db6af8-6bf8-42e1-a276-f8c913ed5626]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 225.629028, + "y": 7.77300024, + "z": -20.070015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f366", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb5c3141e1d61ac09f365", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f349", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f349", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f34a", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbb5c3141e1d61ac09f349", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (69) [3559bb6c-db8c-4880-bdc2-34381ff550a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 203.79303, - "y": 2.32300043, - "z": -116.376022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f369", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f369", - "_tpl": "64acea0d03378853630da53b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (162) [ae0fd562-9b9b-42d2-8ba8-51607f2637e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 221.154022, + "y": 7.77300024, + "z": -1.50201416 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f36a", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbb5c3141e1d61ac09f369", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f34d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f34d", + "_tpl": "5c1260dc86f7746b106e8748", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f34e", + "_tpl": "5c0d688c86f77413ae3407b2", + "parentId": "66cbb5c3141e1d61ac09f34d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (76) [41253844-59be-4c03-a37a-231898ae4d7a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 75.27103, - "y": 2.45300055, - "z": -150.49501 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f36d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f36d", - "_tpl": "6570259fcfc010a0f5006a32", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (175) [1522e7d0-e3c7-492f-9b34-7d3c2617a8b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -218.192978, + "y": 0.2590003, + "z": -16.6980133 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f36e", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66cbb5c3141e1d61ac09f36d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f351", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f351", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f352", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb5c3141e1d61ac09f351", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (96) [efb86015-7ade-4a92-8d89-0896cd769328]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 337.073029, - "y": 2.44800043, - "z": -81.4160156 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f372", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f372", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (49) [8cfa2219-3df8-468c-b1a3-8ca0c69aa7ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 192.696014, + "y": 2.45799971, + "z": -103.955017 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f355", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f355", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f356", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb5c3141e1d61ac09f355", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (60) [02a0092c-319e-481f-b81b-9b563c59193e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 213.695, + "y": 2.92400026, + "z": -128.068024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f373", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb5c3141e1d61ac09f372", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f359", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f359", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f35a", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb5c3141e1d61ac09f359", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (63) [6dee4c0e-32f1-48d4-8251-072cbb18a5b9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 205.747009, + "y": 2.711, + "z": -156.507019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f374", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb5c3141e1d61ac09f372", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f35d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f35d", + "_tpl": "64aceaecc4eda9354b0226b6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f35e", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbb5c3141e1d61ac09f35d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "Loot_mod (10) [343e468e-b81a-48c2-91da-bf80ba74e790]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 501.824, - "y": 15.943, - "z": 103.177 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f376", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f376", - "_tpl": "5ef61964ec7f42238c31e0c1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (66) [b460fb61-70b7-49f3-a3a2-4285b461571c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 206.303009, + "y": 2.23899984, + "z": -124.748016 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f361", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f361", + "_tpl": "657023f81419851aef03e6f1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f362", + "_tpl": "5f0596629e22f464da6bbdd9", + "parentId": "66cbb5c3141e1d61ac09f361", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_mod (12) [4dffb5eb-a7ad-4459-aaf7-8ec44fee1e47]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 502.202, - "y": 15.943, - "z": 103.264 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f378", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f378", - "_tpl": "62850c28da09541f43158cca", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (67) [c9a20f9b-33c7-4b13-b58b-e06bbd105488]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 206.952026, + "y": 2.15500021, + "z": -126.33902 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f365", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f365", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f366", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb5c3141e1d61ac09f365", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_mod (15) [2e056615-0528-4fda-b538-4786b1f93f29]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 570.599, - "y": 7.8470006, - "z": -85.9949951 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f37a", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f37a", - "_tpl": "5b222d405acfc400153af4fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (69) [3559bb6c-db8c-4880-bdc2-34381ff550a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 203.79303, + "y": 2.32300043, + "z": -116.376022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f369", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f369", + "_tpl": "64acea0d03378853630da53b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f36a", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbb5c3141e1d61ac09f369", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_mod (16) [fb6536b8-bcb1-4234-add7-a821ab71a65e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 570.703, - "y": 7.8470006, - "z": -86.35199 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f37c", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f37c", - "_tpl": "5cf67cadd7f00c065a5abab7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (76) [41253844-59be-4c03-a37a-231898ae4d7a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 75.27103, + "y": 2.45300055, + "z": -150.49501 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f36d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f36d", + "_tpl": "6570259fcfc010a0f5006a32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f36e", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66cbb5c3141e1d61ac09f36d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod (28) [56d5c442-68e6-4827-a77b-5e4a575df3db]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 85.02902, - "y": 1.68300009, - "z": -149.764023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f37e", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f37e", - "_tpl": "5a33b652c4a28232996e407c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (96) [efb86015-7ade-4a92-8d89-0896cd769328]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 337.073029, + "y": 2.44800043, + "z": -81.4160156 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f372", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f372", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f373", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb5c3141e1d61ac09f372", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f374", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb5c3141e1d61ac09f372", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_mod (29) [ee509ed4-d2d3-481a-b2f6-ca27faa0e825]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 84.86902, - "y": 1.68300009, - "z": -149.459015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f380", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f380", - "_tpl": "630f2982cdb9e392db0cbcc7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mod (10) [343e468e-b81a-48c2-91da-bf80ba74e790]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 501.824, + "y": 15.943, + "z": 103.177 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f376", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f376", + "_tpl": "5ef61964ec7f42238c31e0c1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod (31) [bc07b287-a814-4d54-82db-13c013357507]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 85.47302, - "y": 1.68300009, - "z": -149.354019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f382", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f382", - "_tpl": "5649d9a14bdc2d79388b4580", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mod (12) [4dffb5eb-a7ad-4459-aaf7-8ec44fee1e47]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 502.202, + "y": 15.943, + "z": 103.264 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f378", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f378", + "_tpl": "62850c28da09541f43158cca", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod (32) [c97b453e-3afa-4674-aaed-a3d6a2ecd7f7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 105.833008, - "y": 2.291, - "z": -87.33801 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f384", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f384", - "_tpl": "5c0111ab0db834001966914d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mod (15) [2e056615-0528-4fda-b538-4786b1f93f29]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 570.599, + "y": 7.8470006, + "z": -85.9949951 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f37a", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f37a", + "_tpl": "5b222d405acfc400153af4fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod (38) [ed10db1f-59b9-44d5-982f-55e9bc44bbe4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 344.386047, - "y": 2.39400053, - "z": -78.9030151 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f386", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f386", - "_tpl": "5cde7afdd7f00c000d36b89d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mod (16) [fb6536b8-bcb1-4234-add7-a821ab71a65e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 570.703, + "y": 7.8470006, + "z": -86.35199 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f37c", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f37c", + "_tpl": "5cf67cadd7f00c065a5abab7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod (39) [640edcf8-66e3-4666-96a3-b002799095e8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 344.271, - "y": 2.39899969, - "z": -78.29701 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f388", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f388", - "_tpl": "649ec30cb013f04a700e60fb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod (28) [56d5c442-68e6-4827-a77b-5e4a575df3db]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 85.02902, + "y": 1.68300009, + "z": -149.764023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f389", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66cbb5c3141e1d61ac09f388", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 29 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f37e", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f37e", + "_tpl": "5a33b652c4a28232996e407c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod (42) [43f23807-722c-48bd-82a6-7d02dd0aa4d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 331.215027, - "y": 10.389, - "z": -67.03702 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f38b", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f38b", - "_tpl": "6516e9bc5901745209404287", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod (29) [ee509ed4-d2d3-481a-b2f6-ca27faa0e825]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 84.86902, + "y": 1.68300009, + "z": -149.459015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f380", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f380", + "_tpl": "630f2982cdb9e392db0cbcc7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_mod_ammo_mods (14) [443775d5-928a-470a-bd87-750eb1368f2c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 646.993, - "y": 1.055, - "z": -20.234 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f38d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f38d", - "_tpl": "544a38634bdc2d58388b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod (31) [bc07b287-a814-4d54-82db-13c013357507]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 85.47302, + "y": 1.68300009, + "z": -149.354019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f382", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f382", + "_tpl": "5649d9a14bdc2d79388b4580", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_mod_ammo_mods (16) [af789ed8-6080-4468-b8c5-0069d0cc5a08]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 646.725, - "y": 1.055, - "z": -20.169 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f38f", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f38f", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod (32) [c97b453e-3afa-4674-aaed-a3d6a2ecd7f7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 105.833008, + "y": 2.291, + "z": -87.33801 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f384", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f384", + "_tpl": "5c0111ab0db834001966914d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_mod_ammo_mods (17) [74519114-2a12-4c66-a349-9f5211f89970]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 645.725, - "y": 1.055, - "z": -20.169 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f391", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f391", - "_tpl": "5fce0cf655375d18a253eff0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod (38) [ed10db1f-59b9-44d5-982f-55e9bc44bbe4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 344.386047, + "y": 2.39400053, + "z": -78.9030151 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f386", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f386", + "_tpl": "5cde7afdd7f00c000d36b89d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_mod_ammo_mods (18) [6469de4f-e82b-4caa-a667-18bb85ecafe8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 645.174, - "y": 0.049, - "z": -17.787 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f393", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f393", - "_tpl": "5d0a3a58d7ad1a669c15ca14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod (39) [640edcf8-66e3-4666-96a3-b002799095e8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 344.271, + "y": 2.39899969, + "z": -78.29701 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f388", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f388", + "_tpl": "649ec30cb013f04a700e60fb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f389", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66cbb5c3141e1d61ac09f388", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 29 + } } - } - ] - }, - { - "Id": "Loot_mod_ammo_mods (19) [7008cc0a-2ee8-41ab-9f3b-2ec69dcd3618]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 653.441, - "y": 1.356, - "z": -17.253 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f396", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f396", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod (42) [43f23807-722c-48bd-82a6-7d02dd0aa4d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 331.215027, + "y": 10.389, + "z": -67.03702 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f397", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbb5c3141e1d61ac09f396", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f38b", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f38b", + "_tpl": "6516e9bc5901745209404287", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_mod_ammo_mods (20) [c2de0e5e-572a-4401-a867-be291637b42b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 653.656, - "y": 1.641, - "z": -16.319 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f399", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f399", - "_tpl": "55d35ee94bdc2d61338b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mod_ammo_mods (14) [443775d5-928a-470a-bd87-750eb1368f2c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 646.993, + "y": 1.055, + "z": -20.234 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f38d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f38d", + "_tpl": "544a38634bdc2d58388b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (1) [5cedd869-a1e7-4094-b0aa-125e15953a0f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 197.201019, - "y": 2.67900038, - "z": -148.16301 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f39b", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f39b", - "_tpl": "57ee59b42459771c7b045da5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mod_ammo_mods (16) [af789ed8-6080-4468-b8c5-0069d0cc5a08]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 646.725, + "y": 1.055, + "z": -20.169 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f38f", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f38f", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (12) [f6f52bc8-38b4-4b85-8018-47f4b3bef29d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 570.223, - "y": 7.687, - "z": -48.3040161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f39d", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f39d", - "_tpl": "5fce0cf655375d18a253eff0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mod_ammo_mods (17) [74519114-2a12-4c66-a349-9f5211f89970]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 645.725, + "y": 1.055, + "z": -20.169 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f391", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f391", + "_tpl": "5fce0cf655375d18a253eff0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (14) [40ec088a-d16f-415b-a8c3-2ca4a9d0d8ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 216.40802, - "y": 8.696001, - "z": -140.993011 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f39f", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f39f", - "_tpl": "5cdeaca5d7f00c00b61c4b70", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mod_ammo_mods (18) [6469de4f-e82b-4caa-a667-18bb85ecafe8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 645.174, + "y": 0.049, + "z": -17.787 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f393", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f393", + "_tpl": "5d0a3a58d7ad1a669c15ca14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (15) [9a478d8c-b8c4-4d5d-820e-432cbf32eaac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 216.009033, - "y": 8.696001, - "z": -140.728012 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3a1", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3a1", - "_tpl": "5a787ebcc5856700142fdd98", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mod_ammo_mods (19) [7008cc0a-2ee8-41ab-9f3b-2ec69dcd3618]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 653.441, + "y": 1.356, + "z": -17.253 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f396", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f396", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f397", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbb5c3141e1d61ac09f396", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mod_common (17) [6c193ad2-f486-49e7-92a2-710a8582166a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 215.813019, - "y": 8.969, - "z": -139.359024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3a3", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3a3", - "_tpl": "570fd79bd2720bc7458b4583", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mod_ammo_mods (20) [c2de0e5e-572a-4401-a867-be291637b42b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 653.656, + "y": 1.641, + "z": -16.319 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f399", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f399", + "_tpl": "55d35ee94bdc2d61338b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (18) [0e0f206b-8b80-4cd9-a752-b04eefa0bdb1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 352.996033, - "y": 2.539, - "z": -44.3710175 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3a5", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3a5", - "_tpl": "57838f0b2459774a256959b2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (1) [5cedd869-a1e7-4094-b0aa-125e15953a0f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 197.201019, + "y": 2.67900038, + "z": -148.16301 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f39b", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f39b", + "_tpl": "57ee59b42459771c7b045da5", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_common (12) [f6f52bc8-38b4-4b85-8018-47f4b3bef29d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 570.223, + "y": 7.687, + "z": -48.3040161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f3a6", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbb5c3141e1d61ac09f3a5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f39d", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f39d", + "_tpl": "5fce0cf655375d18a253eff0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (19) [25307e09-b858-4894-8f5a-a171a564f99c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 352.602051, - "y": 2.539, - "z": -44.7610168 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3a8", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3a8", - "_tpl": "57ffaea724597779f52b3a4d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (14) [40ec088a-d16f-415b-a8c3-2ca4a9d0d8ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 216.40802, + "y": 8.696001, + "z": -140.993011 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f39f", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f39f", + "_tpl": "5cdeaca5d7f00c00b61c4b70", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (20) [987c107e-938c-40a9-9cf9-18938dcb3d8c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 352.656, - "y": 2.539, - "z": -44.32901 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3aa", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3aa", - "_tpl": "6130c4d51cb55961fa0fd49f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (15) [9a478d8c-b8c4-4d5d-820e-432cbf32eaac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 216.009033, + "y": 8.696001, + "z": -140.728012 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3a1", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3a1", + "_tpl": "5a787ebcc5856700142fdd98", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (21) [31b9f63d-db8a-4753-b314-ac922ebd6367]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 352.741028, - "y": 1.71000051, - "z": -43.7500153 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3ac", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3ac", - "_tpl": "5c00076d0db834001d23ee1f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (17) [6c193ad2-f486-49e7-92a2-710a8582166a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 215.813019, + "y": 8.969, + "z": -139.359024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3a3", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3a3", + "_tpl": "570fd79bd2720bc7458b4583", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (22) [fa2941ab-9f34-488f-b2eb-e488b7a0d0e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 333.039032, - "y": 2.17200041, - "z": -49.6920166 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3ae", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3ae", - "_tpl": "625ff2eb9f5537057932257d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (18) [0e0f206b-8b80-4cd9-a752-b04eefa0bdb1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 352.996033, + "y": 2.539, + "z": -44.3710175 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3a5", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3a5", + "_tpl": "57838f0b2459774a256959b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f3a6", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbb5c3141e1d61ac09f3a5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9 + } } + ] + }, + { + "Id": "loot_mod_common (19) [25307e09-b858-4894-8f5a-a171a564f99c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 352.602051, + "y": 2.539, + "z": -44.7610168 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb5c3141e1d61ac09f3af", - "_tpl": "64b8ee384b75259c590fa89b", - "parentId": "66cbb5c3141e1d61ac09f3ae", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3a8", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3a8", + "_tpl": "57ffaea724597779f52b3a4d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (3) [b7d8eca5-f8f2-4a84-b2bd-ae5938ec44bd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 197.249023, - "y": 3.55699968, - "z": -130.121017 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3b1", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3b1", - "_tpl": "616442e4faa1272e43152193", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (20) [987c107e-938c-40a9-9cf9-18938dcb3d8c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 352.656, + "y": 2.539, + "z": -44.32901 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3aa", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3aa", + "_tpl": "6130c4d51cb55961fa0fd49f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (7) [0b251b5c-3317-4727-9b47-dd30b9f067da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 577.675049, - "y": 7.775, - "z": -49.65901 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3b3", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3b3", - "_tpl": "61714b2467085e45ef140b2c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (21) [31b9f63d-db8a-4753-b314-ac922ebd6367]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 352.741028, + "y": 1.71000051, + "z": -43.7500153 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3ac", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3ac", + "_tpl": "5c00076d0db834001d23ee1f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (8) [7df8dc21-6f52-4e26-9c86-cb6a2052df60]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 577.747, - "y": 7.775, - "z": -50.1380157 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3b5", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3b5", - "_tpl": "655df24fdf80b12750626d0a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (22) [fa2941ab-9f34-488f-b2eb-e488b7a0d0e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 333.039032, + "y": 2.17200041, + "z": -49.6920166 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3ae", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3ae", + "_tpl": "625ff2eb9f5537057932257d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c3141e1d61ac09f3af", + "_tpl": "64b8ee384b75259c590fa89b", + "parentId": "66cbb5c3141e1d61ac09f3ae", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4 + } } - } - ] - }, - { - "Id": "loot_money (4) [ebcb4109-6a25-4ff1-9d93-0ea77b396f74]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 78.21402, - "y": 2.40599966, - "z": -154.780014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3b7", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3b7", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 45 + { + "Id": "loot_mod_common (3) [b7d8eca5-f8f2-4a84-b2bd-ae5938ec44bd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 197.249023, + "y": 3.55699968, + "z": -130.121017 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3b1", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3b1", + "_tpl": "616442e4faa1272e43152193", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_new_extra_rare (1) [38833c84-21a3-43f1-84c2-c1c29d34b456]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 182.772, - "y": 6.624, - "z": 182.581 - }, - "Rotation": { - "x": 0.0, - "y": 324.251984, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3b9", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3b9", - "_tpl": "5c1d0d6d86f7744bb2683e1f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (7) [0b251b5c-3317-4727-9b47-dd30b9f067da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 577.675049, + "y": 7.775, + "z": -49.65901 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3b3", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3b3", + "_tpl": "61714b2467085e45ef140b2c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_quest_0031 [1d45f7f5-0718-42e0-a7a5-45ee766c908b]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 204.073, - "y": 4.6952, - "z": 12.3975 - }, - "Rotation": { - "x": 270.0, - "y": 25.6943226, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3bb", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3bb", - "_tpl": "5938188786f77474f723e87f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (8) [7df8dc21-6f52-4e26-9c86-cb6a2052df60]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 577.747, + "y": 7.775, + "z": -50.1380157 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3b5", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3b5", + "_tpl": "655df24fdf80b12750626d0a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_quest_0048 [1bd9895c-e20c-4f47-acfe-2e8952956d09]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 367.6828, - "y": 1.3008, - "z": -50.5712 - }, - "Rotation": { - "x": 270.0, - "y": 222.660156, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3bd", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3bd", - "_tpl": "593965cf86f774087a77e1b6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_money (4) [ebcb4109-6a25-4ff1-9d93-0ea77b396f74]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 78.21402, + "y": 2.40599966, + "z": -154.780014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3b7", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3b7", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 45 + } } - } - ] - }, - { - "Id": "loot_quest_customs [ec105969-c39b-428b-897e-3d7ddd6512c6]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -202.8806, - "y": 7.6911, - "z": -102.4012 - }, - "Rotation": { - "x": 270.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3bf", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3bf", - "_tpl": "591092ef86f7747bb8703422", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_new_extra_rare (1) [38833c84-21a3-43f1-84c2-c1c29d34b456]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 182.772, + "y": 6.624, + "z": 182.581 + }, + "Rotation": { + "x": 0.0, + "y": 324.251984, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3b9", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3b9", + "_tpl": "5c1d0d6d86f7744bb2683e1f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (12) [127dfdda-fb18-4e74-90e1-70bfe627b9e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 484.371765, - "y": 3.16867566, - "z": -72.955 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3c1", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3c1", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_quest_0031 [1d45f7f5-0718-42e0-a7a5-45ee766c908b]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 204.073, + "y": 4.6952, + "z": 12.3975 + }, + "Rotation": { + "x": 270.0, + "y": 25.6943226, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3bb", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3bb", + "_tpl": "5938188786f77474f723e87f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (4) [d8291560-ef29-4749-a447-8d62d6dd31e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 140.159, - "y": -10.45, - "z": 35.3659973 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3c3", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3c3", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_quest_0048 [1bd9895c-e20c-4f47-acfe-2e8952956d09]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 367.6828, + "y": 1.3008, + "z": -50.5712 + }, + "Rotation": { + "x": 270.0, + "y": 222.660156, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3bd", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3bd", + "_tpl": "593965cf86f774087a77e1b6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (7) [b0d76840-02b1-46e4-8ac5-af24199c6e79]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 464.865784, - "y": 2.81767583, - "z": -87.54301 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3c5", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3c5", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_quest_customs [ec105969-c39b-428b-897e-3d7ddd6512c6]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -202.8806, + "y": 7.6911, + "z": -102.4012 + }, + "Rotation": { + "x": 270.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3bf", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3bf", + "_tpl": "591092ef86f7747bb8703422", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (72) [4eea4e37-a5df-485f-8797-0b0938e82498]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 569.776, - "y": 7.70000029, - "z": -51.1770172 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c3141e1d61ac09f3c7", - "Items": [ - { - "_id": "66cbb5c3141e1d61ac09f3c7", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (12) [127dfdda-fb18-4e74-90e1-70bfe627b9e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 484.371765, + "y": 3.16867566, + "z": -72.955 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3c1", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3c1", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (75) [acfe0fa6-d8de-4ef3-bad2-3275acf14355]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 323.276031, - "y": 1.65599966, - "z": -51.04802 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3c9", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3c9", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (4) [d8291560-ef29-4749-a447-8d62d6dd31e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 140.159, + "y": -10.45, + "z": 35.3659973 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3c3", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3c3", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (16) [63e71363-c4e2-4b26-8d68-8cdb805d12ea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 202.840027, - "y": 7.931, - "z": -136.688019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3cb", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3cb", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (7) [b0d76840-02b1-46e4-8ac5-af24199c6e79]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 464.865784, + "y": 2.81767583, + "z": -87.54301 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3c5", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3c5", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (24) [0c0cd59f-713c-4104-9793-8b999625f884]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 201.693024, - "y": -1.79500008, - "z": -144.846024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3cd", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3cd", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (72) [4eea4e37-a5df-485f-8797-0b0938e82498]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 569.776, + "y": 7.70000029, + "z": -51.1770172 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c3141e1d61ac09f3c7", + "Items": [ + { + "_id": "66cbb5c3141e1d61ac09f3c7", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (33) [c4c48bc1-3295-414b-814a-cf13c9f1d337]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 326.281, - "y": 2.74599981, - "z": -71.92502 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3cf", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3cf", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (75) [acfe0fa6-d8de-4ef3-bad2-3275acf14355]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 323.276031, + "y": 1.65599966, + "z": -51.04802 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3c9", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3c9", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (74) [b8bc9d39-a78b-4802-8ccf-81dbfa823eb5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 100.107025, - "y": 1.546, - "z": -97.38002 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3d1", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3d1", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (16) [63e71363-c4e2-4b26-8d68-8cdb805d12ea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 202.840027, + "y": 7.931, + "z": -136.688019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3cb", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3cb", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (75) [b0bd9380-6257-43f3-86be-8f80af74ade9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 100.140015, - "y": 2.02800035, - "z": -97.7240143 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3d3", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3d3", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (24) [0c0cd59f-713c-4104-9793-8b999625f884]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 201.693024, + "y": -1.79500008, + "z": -144.846024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3cd", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3cd", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (83) [c1dc8df4-ade5-4d0f-a32d-b83a3f294e24]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 563.564, - "y": 7.183, - "z": -88.46101 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3d5", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3d5", - "_tpl": "590c2e1186f77425357b6124", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (33) [c4c48bc1-3295-414b-814a-cf13c9f1d337]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 326.281, + "y": 2.74599981, + "z": -71.92502 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3cf", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3cf", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (88) [49502b02-b870-44ae-a0ef-a8d1955aaff7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 563.544, - "y": 7.67000055, - "z": -49.9150238 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3d7", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3d7", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (74) [b8bc9d39-a78b-4802-8ccf-81dbfa823eb5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 100.107025, + "y": 1.546, + "z": -97.38002 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3d1", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3d1", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (94) [ad89a350-9eb6-4931-9b6c-d62739179ed9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 567.353, - "y": 7.80699968, - "z": -52.9290161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3d9", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3d9", - "_tpl": "5d1b2f3f86f774252167a52c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (75) [b0bd9380-6257-43f3-86be-8f80af74ade9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 100.140015, + "y": 2.02800035, + "z": -97.7240143 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3d3", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3d3", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (107) [ddad6d6f-7c53-4abc-9fbf-49c0447b8312]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 90.80203, - "y": 1.90899992, - "z": -156.369019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3db", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3db", - "_tpl": "57347c93245977448d35f6e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (83) [c1dc8df4-ade5-4d0f-a32d-b83a3f294e24]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 563.564, + "y": 7.183, + "z": -88.46101 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3d5", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3d5", + "_tpl": "590c2e1186f77425357b6124", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (108) [fce6ff54-7429-42a0-93c0-2fe5b9d902eb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 89.5810242, - "y": 1.85300016, - "z": -156.07402 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3dd", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3dd", - "_tpl": "5c13cd2486f774072c757944", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (88) [49502b02-b870-44ae-a0ef-a8d1955aaff7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 563.544, + "y": 7.67000055, + "z": -49.9150238 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3d7", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3d7", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "med_lab1_stims (9) [fb68c88f-42fa-4286-9f8e-b0850e5bca67]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 91.42203, - "y": 5.66700029, - "z": -160.08902 - }, - "Rotation": { - "x": 0.0, - "y": 323.1942, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3df", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3df", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (94) [ad89a350-9eb6-4931-9b6c-d62739179ed9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 567.353, + "y": 7.80699968, + "z": -52.9290161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3d9", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3d9", + "_tpl": "5d1b2f3f86f774252167a52c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "phone_terminal_quest [36a32cb5-b6af-4288-8439-dbe170b77822]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 193.97377, - "y": 6.1575, - "z": 168.020172 - }, - "Rotation": { - "x": 89.76261, - "y": 179.988968, - "z": 179.988983 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 197.578537, - "y": 6.00171471, - "z": 182.853058 - }, - "Rotation": { - "x": 87.6735, - "y": 95.37782, - "z": 184.421585 + ] + }, + { + "Id": "loot_toospaste_stuff (107) [ddad6d6f-7c53-4abc-9fbf-49c0447b8312]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 90.80203, + "y": 1.90899992, + "z": -156.369019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3db", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3db", + "_tpl": "57347c93245977448d35f6e3", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_toospaste_stuff (108) [fce6ff54-7429-42a0-93c0-2fe5b9d902eb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 89.5810242, + "y": 1.85300016, + "z": -156.07402 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 192.89296, - "y": 5.84, - "z": 169.9426 - }, - "Rotation": { - "x": 89.7451248, - "y": 324.203247, - "z": 54.17429 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3dd", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3dd", + "_tpl": "5c13cd2486f774072c757944", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "med_lab1_stims (9) [fb68c88f-42fa-4286-9f8e-b0850e5bca67]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 91.42203, + "y": 5.66700029, + "z": -160.08902 + }, + "Rotation": { + "x": 0.0, + "y": 323.1942, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 193.97377, - "y": 6.1575, - "z": 168.020172 - }, - "Rotation": { - "x": 89.76261, - "y": 179.988968, - "z": 179.988983 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3df", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3df", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 199.368912, - "y": 5.989, - "z": 181.6965 - }, - "Rotation": { - "x": 270.906769, - "y": 0.00152776111, - "z": -0.00152293127 + ] + }, + { + "Id": "phone_terminal_quest [36a32cb5-b6af-4288-8439-dbe170b77822]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 193.97377, + "y": 6.1575, + "z": 168.020172 + }, + "Rotation": { + "x": 89.76261, + "y": 179.988968, + "z": 179.988983 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 197.578537, + "y": 6.00171471, + "z": 182.853058 + }, + "Rotation": { + "x": 87.6735, + "y": 95.37782, + "z": 184.421585 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 192.89296, + "y": 5.84, + "z": 169.9426 + }, + "Rotation": { + "x": 89.7451248, + "y": 324.203247, + "z": 54.17429 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 193.97377, + "y": 6.1575, + "z": 168.020172 + }, + "Rotation": { + "x": 89.76261, + "y": 179.988968, + "z": 179.988983 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 199.368912, + "y": 5.989, + "z": 181.6965 + }, + "Rotation": { + "x": 270.906769, + "y": 0.00152776111, + "z": -0.00152293127 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3e1", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3e1", - "_tpl": "6614230055afee107f05e998", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3e1", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3e1", + "_tpl": "6614230055afee107f05e998", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Pick_07 [5574e420-1d54-47eb-9163-191e27934f00]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 204.612015, - "y": 8.057734, - "z": -143.754929 - }, - "Rotation": { - "x": 345.9537, - "y": 194.695419, - "z": 0.833289 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 199.588028, - "y": 7.883934, - "z": -105.132492 + ] + }, + { + "Id": "Pick_07 [5574e420-1d54-47eb-9163-191e27934f00]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 204.612015, + "y": 8.057734, + "z": -143.754929 + }, + "Rotation": { + "x": 345.9537, + "y": 194.695419, + "z": 0.833289 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 199.588028, + "y": 7.883934, + "z": -105.132492 + }, + "Rotation": { + "x": 354.870941, + "y": 355.18512, + "z": -3.032366e-5 + } }, - "Rotation": { - "x": 354.870941, - "y": 355.18512, - "z": -3.032366e-5 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 216.8182, - "y": 7.88613367, - "z": -141.234909 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 216.8182, + "y": 7.88613367, + "z": -141.234909 + }, + "Rotation": { + "x": 349.0679, + "y": 162.388733, + "z": 1.1956364e-6 + } }, - "Rotation": { - "x": 349.0679, - "y": 162.388733, - "z": 1.1956364e-6 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 204.612015, - "y": 8.057734, - "z": -143.754929 - }, - "Rotation": { - "x": 345.9537, - "y": 194.695419, - "z": 0.833289 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 204.612015, + "y": 8.057734, + "z": -143.754929 + }, + "Rotation": { + "x": 345.9537, + "y": 194.695419, + "z": 0.833289 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3e3", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3e3", - "_tpl": "64e74a3d4d49d23b2c39d319", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3e3", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3e3", + "_tpl": "64e74a3d4d49d23b2c39d319", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_case203 [9a965a95-0fce-4d15-8d36-624734c547ed]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 178.07, - "y": 2.877, - "z": 148.702 - }, - "Rotation": { - "x": 1.70754754e-6, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3e5", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3e5", - "_tpl": "590dde5786f77405e71908b2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "quest_case203 [9a965a95-0fce-4d15-8d36-624734c547ed]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 178.07, + "y": 2.877, + "z": 148.702 + }, + "Rotation": { + "x": 1.70754754e-6, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3e5", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3e5", + "_tpl": "590dde5786f77405e71908b2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_flash [f57940f7-6d24-4b61-a749-3a66327575de]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -91.521, - "y": 1.027, - "z": 4.346 - }, - "Rotation": { - "x": 90.0, - "y": 306.564636, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3e7", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3e7", - "_tpl": "5c12301c86f77419522ba7e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "quest_flash [f57940f7-6d24-4b61-a749-3a66327575de]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -91.521, + "y": 1.027, + "z": 4.346 + }, + "Rotation": { + "x": 90.0, + "y": 306.564636, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3e7", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3e7", + "_tpl": "5c12301c86f77419522ba7e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_pacadge [6056a976-26e9-4bd1-8dfd-b3c0b41af720]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -200.803253, - "y": 7.22331524, - "z": -100.563126 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -201.849213, - "y": 7.33054161, - "z": -102.947968 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } + { + "Id": "quest_pacadge [6056a976-26e9-4bd1-8dfd-b3c0b41af720]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -200.803253, + "y": 7.22331524, + "z": -100.563126 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -200.803253, - "y": 7.22331524, - "z": -100.563126 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -201.849213, + "y": 7.33054161, + "z": -102.947968 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -202.591, - "y": 7.223, - "z": -98.431 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -200.803253, + "y": 7.22331524, + "z": -100.563126 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": -204.387573, - "y": 7.32987, - "z": -98.63279 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -202.591, + "y": 7.223, + "z": -98.431 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": -204.387573, + "y": 7.32987, + "z": -98.63279 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3e9", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3e9", - "_tpl": "5ac620eb86f7743a8e6e0da0", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3e9", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3e9", + "_tpl": "5ac620eb86f7743a8e6e0da0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "repair_kit_item (4) [92d77900-9391-499a-99a5-c9a1525bbb48]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.259, - "y": 0.581, - "z": 117.007 - }, - "Rotation": { - "x": 0.0, - "y": 296.999969, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3eb", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3eb", - "_tpl": "591094e086f7747caa7bb2ef", - "upd": { - "StackObjectsCount": 1 + { + "Id": "repair_kit_item (4) [92d77900-9391-499a-99a5-c9a1525bbb48]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.259, + "y": 0.581, + "z": 117.007 + }, + "Rotation": { + "x": 0.0, + "y": 296.999969, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3eb", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3eb", + "_tpl": "591094e086f7747caa7bb2ef", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "repair_kit_item (5) [7b77daf8-0a2c-4181-814d-6198c00b29a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.525, - "y": 0.246, - "z": -1.901 - }, - "Rotation": { - "x": 0.0, - "y": 296.999969, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3ed", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3ed", - "_tpl": "591094e086f7747caa7bb2ef", - "upd": { - "StackObjectsCount": 1 + { + "Id": "repair_kit_item (5) [7b77daf8-0a2c-4181-814d-6198c00b29a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.525, + "y": 0.246, + "z": -1.901 + }, + "Rotation": { + "x": 0.0, + "y": 296.999969, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3ed", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3ed", + "_tpl": "591094e086f7747caa7bb2ef", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Tools_marafon [9ad4677c-c874-44c7-81c3-16731fef2c26]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 81.09361, - "y": 4.701, - "z": -152.631363 - }, - "Rotation": { - "x": 89.82754, - "y": 258.532471, - "z": 0.8053602 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 87.87459, - "y": 4.687, - "z": -162.600876 + ] + }, + { + "Id": "Tools_marafon [9ad4677c-c874-44c7-81c3-16731fef2c26]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 81.09361, + "y": 4.701, + "z": -152.631363 + }, + "Rotation": { + "x": 89.82754, + "y": 258.532471, + "z": 0.8053602 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 87.87459, + "y": 4.687, + "z": -162.600876 + }, + "Rotation": { + "x": 356.889069, + "y": 350.00647, + "z": 359.329681 + } }, - "Rotation": { - "x": 356.889069, - "y": 350.00647, - "z": 359.329681 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 92.35701, - "y": 4.666, - "z": -161.4822 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 92.35701, + "y": 4.666, + "z": -161.4822 + }, + "Rotation": { + "x": 0.899890542, + "y": 256.448425, + "z": 359.8201 + } }, - "Rotation": { - "x": 0.899890542, - "y": 256.448425, - "z": 359.8201 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 88.0565, - "y": 5.207, - "z": -146.9258 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 88.0565, + "y": 5.207, + "z": -146.9258 + }, + "Rotation": { + "x": 88.4158859, + "y": 11.1692572, + "z": 336.914429 + } }, - "Rotation": { - "x": 88.4158859, - "y": 11.1692572, - "z": 336.914429 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 88.46846, - "y": 4.668, - "z": -142.765457 + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 88.46846, + "y": 4.668, + "z": -142.765457 + }, + "Rotation": { + "x": 6.56888676, + "y": 347.861328, + "z": 0.07660071 + } }, - "Rotation": { - "x": 6.56888676, - "y": 347.861328, - "z": 0.07660071 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 76.28398, - "y": 4.637, - "z": -151.6633 + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 76.28398, + "y": 4.637, + "z": -151.6633 + }, + "Rotation": { + "x": 1.20771217, + "y": 259.209473, + "z": 0.161541939 + } }, - "Rotation": { - "x": 1.20771217, - "y": 259.209473, - "z": 0.161541939 + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": 81.09361, + "y": 4.701, + "z": -152.631363 + }, + "Rotation": { + "x": 89.82754, + "y": 258.532471, + "z": 0.8053602 + } + } + ], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3ef", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3ef", + "_tpl": "66b22630a6b4e5ec7c02cdb7", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Under the table [0194a00a-3cd2-4e56-b120-e6f808e970b6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 219.359, + "y": 0.056, + "z": 59.711 + }, + "Rotation": { + "x": 2.66804268e-8, + "y": 179.504242, + "z": 0.0 }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": 81.09361, - "y": 4.701, - "z": -152.631363 - }, - "Rotation": { - "x": 89.82754, - "y": 258.532471, - "z": 0.8053602 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb5c4141e1d61ac09f3f1", + "Items": [ + { + "_id": "66cbb5c4141e1d61ac09f3f1", + "_tpl": "5bfea7ad0db834001c38f1ee", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb5c4141e1d61ac09f3f2", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbb5c4141e1d61ac09f3f1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } } + ] + } + ], + "Banners": [ + { + "id": "5464e0404bdc2d2a708b4567", + "pic": { + "path": "CONTENT\/banners\/banner_usec.jpg", + "rcid": "" } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3ef", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3ef", - "_tpl": "66b22630a6b4e5ec7c02cdb7", - "upd": { - "StackObjectsCount": 1 - } + }, + { + "id": "5464e0454bdc2d06708b4567", + "pic": { + "path": "CONTENT\/banners\/banner_bear.jpg", + "rcid": "" } - ] - }, - { - "Id": "Under the table [0194a00a-3cd2-4e56-b120-e6f808e970b6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 219.359, - "y": 0.056, - "z": 59.711 - }, - "Rotation": { - "x": 2.66804268e-8, - "y": 179.504242, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb5c4141e1d61ac09f3f1", - "Items": [ - { - "_id": "66cbb5c4141e1d61ac09f3f1", - "_tpl": "5bfea7ad0db834001c38f1ee", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb5c4141e1d61ac09f3f2", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbb5c4141e1d61ac09f3f1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } + { + "id": "5803a58524597710ca36fcb2", + "pic": { + "path": "CONTENT\/banners\/banner_terragroup.jpg", + "rcid": "" + } + }, + { + "id": "5807bfe124597742a92e0a4c", + "pic": { + "path": "CONTENT\/banners\/norvinskzone.jpg", + "rcid": "" + } + }, + { + "id": "5807c3f124597746bf2db2ce", + "pic": { + "path": "CONTENT\/banners\/banner_scav.jpg", + "rcid": "" + } + }, + { + "id": "5807be8924597742c603fa19", + "pic": { + "path": "CONTENT\/banners\/banner_tarkov.jpg", + "rcid": "" + } + }, + { + "id": "5805f617245977100b2c1f41", + "pic": { + "path": "CONTENT\/banners\/tglabs.jpg", + "rcid": "" + } + }, + { + "id": "5c1b857086f77465f465faa4", + "pic": { + "path": "CONTENT\/banners\/banner_scavraider.jpg", + "rcid": "" + } + }, + { + "id": "64c0ad6af99768b777048f4e", + "pic": { + "path": "CONTENT\/banners\/banner_emissary.jpg", + "rcid": "" } - ] - } - ], - "Banners": [ - { - "id": "5464e0404bdc2d2a708b4567", - "pic": { - "path": "CONTENT\/banners\/banner_usec.jpg", - "rcid": "" - } - }, - { - "id": "5464e0454bdc2d06708b4567", - "pic": { - "path": "CONTENT\/banners\/banner_bear.jpg", - "rcid": "" - } - }, - { - "id": "5803a58524597710ca36fcb2", - "pic": { - "path": "CONTENT\/banners\/banner_terragroup.jpg", - "rcid": "" - } - }, - { - "id": "5807bfe124597742a92e0a4c", - "pic": { - "path": "CONTENT\/banners\/norvinskzone.jpg", - "rcid": "" - } - }, - { - "id": "5807c3f124597746bf2db2ce", - "pic": { - "path": "CONTENT\/banners\/banner_scav.jpg", - "rcid": "" - } - }, - { - "id": "5807be8924597742c603fa19", - "pic": { - "path": "CONTENT\/banners\/banner_tarkov.jpg", - "rcid": "" - } - }, - { - "id": "5805f617245977100b2c1f41", - "pic": { - "path": "CONTENT\/banners\/tglabs.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT\/banners\/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT\/banners\/banner_emissary.jpg", - "rcid": "" } - } - ] + ] + } } } \ No newline at end of file diff --git a/Fuyu.Platform.Server/embedded/database/locations/factory4_day.json b/Fuyu.Platform.Server/embedded/database/locations/factory4_day.json index d5fee2ec..a5284425 100644 --- a/Fuyu.Platform.Server/embedded/database/locations/factory4_day.json +++ b/Fuyu.Platform.Server/embedded/database/locations/factory4_day.json @@ -1,13739 +1,13742 @@ { - "serverId": "PVE_OFFLINE_659885_26_08_2024_01_58_11", - "serverSettings": { - "TraderServerSettings": { - "TraderServices": { - "ExUsecLoyalty": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ExUsecLoyalty", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966ff54c3ef01b6f3ffad8" + "err": 0, + "data": { + "serverId": "PVE_OFFLINE_659885_26_08_2024_01_58_11", + "serverSettings": { + "TraderServerSettings": { + "TraderServices": { + "ExUsecLoyalty": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ExUsecLoyalty", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966ff54c3ef01b6f3ffad8" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.09 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.09 + }, + "ServiceItemCost": { + "569668774bdc2da2298b4568": { + "Count": 2500 + }, + "61bf7c024770ee6f9c6b8b53": { + "Count": 2 } - } - }, - "ServiceItemCost": { - "569668774bdc2da2298b4568": { - "Count": 2500 }, - "61bf7c024770ee6f9c6b8b53": { - "Count": 2 - } - }, - "UniqueItems": [] - }, - "ZryachiyAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ZryachiyAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "6396701b9113f06a7c3b2379" + "UniqueItems": [] + }, + "ZryachiyAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ZryachiyAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "6396701b9113f06a7c3b2379" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.18 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.18 + }, + "ServiceItemCost": { + "62a0a16d0b9d3c46de5b6e97": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 2000 } - } - }, - "ServiceItemCost": { - "62a0a16d0b9d3c46de5b6e97": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 2000 - } - }, - "UniqueItems": [] - }, - "CultistsAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "CultistsAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966fccac6f8f3c677b9d89" + "UniqueItems": [] + }, + "CultistsAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "CultistsAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966fccac6f8f3c677b9d89" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.03 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.03 + }, + "ServiceItemCost": { + "5c12613b86f7743bbe2c3f76": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 1000 } - } - }, - "ServiceItemCost": { - "5c12613b86f7743bbe2c3f76": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 1000 - } - }, - "UniqueItems": [ - "64d0b40fbe2eed70e254e2d4" - ] - }, - "PlayerTaxi": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "PlayerTaxi", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrBotCover": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrBotCover", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "TransitItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "TransitItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + "UniqueItems": [ + "64d0b40fbe2eed70e254e2d4" + ] + }, + "PlayerTaxi": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "PlayerTaxi", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrBotCover": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrBotCover", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "TransitItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "TransitItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + } } - } - }, - "BTRServerSettings": { - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.77, - "BodySwingIntensity": 0.506, - "ServerMapBTRSettings": { - "Develop": { - "MapID": "develop", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "TarkovStreets": { - "MapID": "TarkovStreets", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "Woods": { - "MapID": "Woods", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 180.0, - "y": 360.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 + "BTRServerSettings": { + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.77, + "BodySwingIntensity": 0.506, + "ServerMapBTRSettings": { + "Develop": { + "MapID": "develop", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "TarkovStreets": { + "MapID": "TarkovStreets", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "Woods": { + "MapID": "Woods", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 180.0, + "y": 360.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + } } } - } - }, - "profile": { - "insuredItems": [] - }, - "locationLoot": { - "Enabled": true, - "EnableCoop": true, - "ForceOnlineRaidInPVE": false, - "Locked": false, - "Insurance": true, - "SafeLocation": false, - "Name": "Factory", - "Description": "The industrial estate and facilities of the chemical plant No.16 that were rented out illegally to the TerraGroup company. ", - "Scene": { - "path": "maps\/factory_day_preset.bundle", - "rcid": "factory_day.scenespreset.asset" - }, - "Area": 0.9, - "RequiredPlayerLevelMin": 0, - "RequiredPlayerLevelMax": 100, - "PmcMaxPlayersInGroup": 5, - "ScavMaxPlayersInGroup": 4, - "MinPlayers": 7, - "MaxPlayers": 8, - "MaxCoopGroup": 6, - "exit_count": 3, - "exit_access_time": 60, - "exit_time": 1, - "Preview": { - "path": "", - "rcid": "" - }, - "IconX": 470, - "IconY": 510, - "filter_ex": [], - "waves": [ - { - "number": 0, - "time_min": 40, - "time_max": 100, - "slots_min": 1, - "slots_max": 2, - "SpawnPoints": "BotZone", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 1, - "time_min": -1, - "time_max": -1, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "BotZone", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 2, - "time_min": 210, - "time_max": 300, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "BotZone", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 3, - "time_min": 260, - "time_max": 350, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "BotZone", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 4, - "time_min": 410, - "time_max": 500, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "BotZone", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 5, - "time_min": 460, - "time_max": 510, - "slots_min": 3, - "slots_max": 4, - "SpawnPoints": "BotZone", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 6, - "time_min": 1200, - "time_max": 1500, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "BotZone", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 7, - "time_min": 1600, - "time_max": 1700, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "BotZone", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "regular", - "pve" - ] - } - ], - "limits": [], - "AveragePlayTime": 15, - "AveragePlayerLevel": 1, - "EscapeTimeLimit": 20, - "EscapeTimeLimitPVE": 20, - "EscapeTimeLimitCoop": 15, - "Rules": "AvoidOwnPmc", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 30, - "MaxDistToFreePoint": 900, - "MinDistToFreePoint": 10, - "MaxBotPerZone": 4, - "OpenZones": "BotZone", - "OcculsionCullingEnabled": true, - "GlobalLootChanceModifier": 0.27, - "GlobalLootChanceModifierPvE": 0.3, - "OldSpawn": true, - "OfflineOldSpawn": true, - "NewSpawn": false, - "OfflineNewSpawn": false, - "BotMax": 20, - "BotMaxPvE": 20, - "BotStart": 0, - "BotStartPlayer": 0, - "BotStop": 0, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 0, - "BotSpawnTimeOnMax": 0, - "BotSpawnTimeOffMin": 0, - "BotSpawnTimeOffMax": 0, - "BotMaxPlayer": 0, - "BotEasy": 0, - "BotNormal": 0, - "BotHard": 0, - "BotImpossible": 0, - "BotAssault": 0, - "BotMarksman": 0, - "DisabledScavExits": "Cellars,Gate 0", - "MinPlayerLvlAccessKeys": 0, - "AccessKeys": [], - "UnixDateTime": 1621511450, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 180, - "users_summon_seconds": 0, - "sav_summon_seconds": 60, - "matching_min_seconds": 45, - "GenerateLocalLootCache": true, - "PlayersRequestCount": -1, - "NonWaveGroupScenario": { - "MinToBeGroup": 2, - "MaxToBeGroup": 3, - "Chance": 50.0, - "Enabled": true }, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 15, - "GlobalContainerChanceModifier": 1.0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 1.0, - "Scattering": 1.0, - "GainSight": 1.0, - "MarksmanAccuratyCoef": 1.0, - "VisibleDistance": 1.0, - "DistToSleep": 150.0, - "DistToActivate": 140.0, - "MagnetPower": 15.0, - "DistToPersueAxemanCoef": 0.9, - "KhorovodChance": 0, - "MinExfiltrationTime": 600.0, - "MaxExfiltrationTime": 900.0, - "DistToActivatePvE": 140.0, - "DistToSleepPvE": 150.0, - "AdditionalHostilitySettings": [ - { - "BotRole": "pmcBEAR", - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 90 - }, - { - "BotRole": "pmcUSEC", - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 75 - } - ] + "profile": { + "insuredItems": [] }, - "exits": [ - { - "Name": "Cellars", - "EntryPoints": "Factory", - "Chance": 100.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10.0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 10.0, - "PlayersCountPVE": 0, - "Count": 0 - }, - { - "Name": "Gate 3", - "EntryPoints": "Factory", - "Chance": 100.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10.0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 10.0, - "PlayersCountPVE": 0, - "Count": 0 - }, - { - "Name": "Gate 0", - "EntryPoints": "Factory", - "Chance": 100.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10.0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 10.0, - "PlayersCountPVE": 0, - "Count": 0 - }, - { - "Name": "Gate m", - "EntryPoints": "Factory", - "Chance": 100.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10.0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 10.0, - "PlayersCountPVE": 0, - "Count": 0 - }, - { - "Name": "Gate_o", - "EntryPoints": "Factory", - "Chance": 100.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10.0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 10.0, - "PlayersCountPVE": 0, - "Count": 0 - } - ], - "DisabledForScav": false, - "SpawnPointParams": [ - { - "Id": "0246436c-7d69-4036-999d-ebcb956970b5", - "Position": { - "x": -45.3968, - "y": 0.2904, - "z": 5.5814 - }, - "Rotation": 64.50763, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "02e4bb08-990a-487c-a832-5a04582891d4", - "Position": { - "x": 51.1948128, - "y": 0.0901808739, - "z": -25.5231 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + "locationLoot": { + "Enabled": true, + "EnableCoop": true, + "ForceOnlineRaidInPVE": false, + "Locked": false, + "Insurance": true, + "SafeLocation": false, + "Name": "Factory", + "Description": "The industrial estate and facilities of the chemical plant No.16 that were rented out illegally to the TerraGroup company. ", + "Scene": { + "path": "maps\/factory_day_preset.bundle", + "rcid": "factory_day.scenespreset.asset" + }, + "Area": 0.9, + "RequiredPlayerLevelMin": 0, + "RequiredPlayerLevelMax": 100, + "PmcMaxPlayersInGroup": 5, + "ScavMaxPlayersInGroup": 4, + "MinPlayers": 7, + "MaxPlayers": 8, + "MaxCoopGroup": 6, + "exit_count": 3, + "exit_access_time": 60, + "exit_time": 1, + "Preview": { + "path": "", + "rcid": "" + }, + "IconX": 470, + "IconY": 510, + "filter_ex": [], + "waves": [ + { + "number": 0, + "time_min": 40, + "time_max": 100, + "slots_min": 1, + "slots_max": 2, + "SpawnPoints": "BotZone", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "03526917-c391-4233-ab31-89f70621c9d4", - "Position": { - "x": -34.21619, - "y": 1.08018088, - "z": 46.2559052 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "number": 1, + "time_min": -1, + "time_max": -1, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "BotZone", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "03a779de-ef2d-43e3-a4f3-fdcfed474f05", - "Position": { - "x": 13.78, - "y": -2.291, - "z": -21.65 - }, - "Rotation": 81.2727051, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "number": 2, + "time_min": 210, + "time_max": 300, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "BotZone", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 2 - }, - { - "Id": "05e75eb3-eb43-46c6-94d3-59e1e9ba4435", - "Position": { - "x": 11.22, - "y": 0.04, - "z": -42.1099968 - }, - "Rotation": 150.141159, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "number": 3, + "time_min": 260, + "time_max": 350, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "BotZone", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0a8181f7-c8f0-4db1-8eb2-932dfb3545f3", - "Position": { - "x": 42.433, - "y": -2.639, - "z": -8.306 - }, - "Rotation": 262.378082, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "number": 4, + "time_min": 410, + "time_max": 500, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "BotZone", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0a92f51c-52b4-4e76-b839-f7ce82f2b36b", - "Position": { - "x": 56.864, - "y": 0.261, - "z": 52.568 - }, - "Rotation": 159.0315, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "number": 5, + "time_min": 460, + "time_max": 510, + "slots_min": 3, + "slots_max": 4, + "SpawnPoints": "BotZone", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0e95dd99-d6b7-4562-9813-74d4da9aaf6f", - "Position": { - "x": 49.5, - "y": 0.0729999542, - "z": 19.4500027 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "number": 6, + "time_min": 1200, + "time_max": 1500, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "BotZone", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "105e5c93-2399-4054-b31d-ec981a66491f", - "Position": { - "x": 46.57556, - "y": 0.101000071, - "z": 23.17298 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 + { + "number": 7, + "time_min": 1600, + "time_max": 1700, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "BotZone", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "regular", + "pve" + ] + } + ], + "limits": [], + "AveragePlayTime": 15, + "AveragePlayerLevel": 1, + "EscapeTimeLimit": 20, + "EscapeTimeLimitPVE": 20, + "EscapeTimeLimitCoop": 15, + "Rules": "AvoidOwnPmc", + "IsSecret": false, + "doors": [], + "tmp_location_field_remove_me": 0, + "MinDistToExitPoint": 30, + "MaxDistToFreePoint": 900, + "MinDistToFreePoint": 10, + "MaxBotPerZone": 4, + "OpenZones": "BotZone", + "OcculsionCullingEnabled": true, + "GlobalLootChanceModifier": 0.27, + "GlobalLootChanceModifierPvE": 0.3, + "OldSpawn": true, + "OfflineOldSpawn": true, + "NewSpawn": false, + "OfflineNewSpawn": false, + "BotMax": 20, + "BotMaxPvE": 20, + "BotStart": 0, + "BotStartPlayer": 0, + "BotStop": 0, + "BotMaxTimePlayer": 0, + "BotSpawnTimeOnMin": 0, + "BotSpawnTimeOnMax": 0, + "BotSpawnTimeOffMin": 0, + "BotSpawnTimeOffMax": 0, + "BotMaxPlayer": 0, + "BotEasy": 0, + "BotNormal": 0, + "BotHard": 0, + "BotImpossible": 0, + "BotAssault": 0, + "BotMarksman": 0, + "DisabledScavExits": "Cellars,Gate 0", + "MinPlayerLvlAccessKeys": 0, + "AccessKeys": [], + "UnixDateTime": 1621511450, + "users_gather_seconds": 0, + "users_spawn_seconds_n": 120, + "users_spawn_seconds_n2": 180, + "users_summon_seconds": 0, + "sav_summon_seconds": 60, + "matching_min_seconds": 45, + "GenerateLocalLootCache": true, + "PlayersRequestCount": -1, + "NonWaveGroupScenario": { + "MinToBeGroup": 2, + "MaxToBeGroup": 3, + "Chance": 50.0, + "Enabled": true + }, + "BotSpawnCountStep": 3, + "BotSpawnPeriodCheck": 15, + "GlobalContainerChanceModifier": 1.0, + "MinMaxBots": [], + "BotLocationModifier": { + "AccuracySpeed": 1.0, + "Scattering": 1.0, + "GainSight": 1.0, + "MarksmanAccuratyCoef": 1.0, + "VisibleDistance": 1.0, + "DistToSleep": 150.0, + "DistToActivate": 140.0, + "MagnetPower": 15.0, + "DistToPersueAxemanCoef": 0.9, + "KhorovodChance": 0, + "MinExfiltrationTime": 600.0, + "MaxExfiltrationTime": 900.0, + "DistToActivatePvE": 140.0, + "DistToSleepPvE": 150.0, + "AdditionalHostilitySettings": [ + { + "BotRole": "pmcBEAR", + "AlwaysEnemies": [ + "pmcBot", + "exUsec", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar", + "bossKnight" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcUSEC" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 75, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 90 + }, + { + "BotRole": "pmcUSEC", + "AlwaysEnemies": [ + "pmcBot", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcBEAR" + }, + { + "EnemyChance": 15, + "Role": "exUsec" + }, + { + "EnemyChance": 15, + "Role": "bossKnight" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 90, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 75 } - }, - "BotZoneName": "", - "CorePointId": 0 + ] }, - { - "Id": "120a0777-e825-4de7-a855-c3eaa8eba46b", - "Position": { - "x": -43.8128, - "y": 0.2904, - "z": 6.7404 - }, - "Rotation": 90.74365, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + "exits": [ + { + "Name": "Cellars", + "EntryPoints": "Factory", + "Chance": 100.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10.0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 10.0, + "PlayersCountPVE": 0, + "Count": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "13883982-2ab8-4dd5-a9b4-45e2c6d8e1cc", - "Position": { - "x": 12.595, - "y": 0.04, - "z": -42.522 - }, - "Rotation": 239.798431, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Name": "Gate 3", + "EntryPoints": "Factory", + "Chance": 100.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10.0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 10.0, + "PlayersCountPVE": 0, + "Count": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "184cc4d8-9007-4769-9798-8e354e9229ec", - "Position": { - "x": -32.88419, - "y": 1.15018082, - "z": 47.0939026 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Name": "Gate 0", + "EntryPoints": "Factory", + "Chance": 100.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10.0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 10.0, + "PlayersCountPVE": 0, + "Count": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1a5819f2-ff42-4632-af5e-fe5ea8f886fc", - "Position": { - "x": 58.1779976, - "y": 0.261, - "z": 51.283 - }, - "Rotation": 174.141357, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Name": "Gate m", + "EntryPoints": "Factory", + "Chance": 100.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10.0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 10.0, + "PlayersCountPVE": 0, + "Count": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1c8f1067-d5df-401c-b05a-3c2c6b36ab9a", - "Position": { - "x": 15.7, - "y": 4.571, - "z": 38.976 - }, - "Rotation": 0.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Name": "Gate_o", + "EntryPoints": "Factory", + "Chance": 100.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10.0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 10.0, + "PlayersCountPVE": 0, + "Count": 0 + } + ], + "DisabledForScav": false, + "SpawnPointParams": [ + { + "Id": "0246436c-7d69-4036-999d-ebcb956970b5", + "Position": { + "x": -45.3968, + "y": 0.2904, + "z": 5.5814 + }, + "Rotation": 64.50763, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1d42b19c-7a5b-4684-9689-b801a89e041c", - "Position": { - "x": -33.0051842, - "y": 1.08018088, - "z": 46.6718979 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "02e4bb08-990a-487c-a832-5a04582891d4", + "Position": { + "x": 51.1948128, + "y": 0.0901808739, + "z": -25.5231 + }, + "Rotation": 3.0047307, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1facfcfc-9ee5-4638-83b3-117fce7b3303", - "Position": { - "x": -46.6908, - "y": 0.2904, - "z": 8.3904 - }, - "Rotation": 103.706047, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "03526917-c391-4233-ab31-89f70621c9d4", + "Position": { + "x": -34.21619, + "y": 1.08018088, + "z": 46.2559052 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "22a7740a-5a91-4bca-af36-668342522b42", - "Position": { - "x": 70.75821, - "y": 0.311, - "z": -72.8016052 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "03a779de-ef2d-43e3-a4f3-fdcfed474f05", + "Position": { + "x": 13.78, + "y": -2.291, + "z": -21.65 + }, + "Rotation": 81.2727051, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2355be95-341b-46db-90fd-6a383e286e5c", - "Position": { - "x": -20.756, - "y": 0.166, - "z": 22.769 - }, - "Rotation": 101.387489, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } + { + "Id": "05e75eb3-eb43-46c6-94d3-59e1e9ba4435", + "Position": { + "x": 11.22, + "y": 0.04, + "z": -42.1099968 + }, + "Rotation": 150.141159, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "2497205e-6fc4-49cd-a1e3-f46c780e214f", - "Position": { - "x": 31.624, - "y": 0.119, - "z": 18.284 - }, - "Rotation": 281.606659, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "0a8181f7-c8f0-4db1-8eb2-932dfb3545f3", + "Position": { + "x": 42.433, + "y": -2.639, + "z": -8.306 + }, + "Rotation": 262.378082, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "27da5013-1a81-42db-a71f-312a557af54a", - "Position": { - "x": -35.4081841, - "y": 1.08018088, - "z": 48.8108978 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "0a92f51c-52b4-4e76-b839-f7ce82f2b36b", + "Position": { + "x": 56.864, + "y": 0.261, + "z": 52.568 + }, + "Rotation": 159.0315, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2875ed6d-0a92-4473-b641-0616a69f6388", - "Position": { - "x": 49.989624, - "y": 0.0599999428, - "z": 15.7763767 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "0e95dd99-d6b7-4562-9813-74d4da9aaf6f", + "Position": { + "x": 49.5, + "y": 0.0729999542, + "z": 19.4500027 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2984a7ec-f10b-42a8-b466-554f37f9ea3e", - "Position": { - "x": 43.8973656, - "y": 0.1170001, - "z": 23.56006 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "105e5c93-2399-4054-b31d-ec981a66491f", + "Position": { + "x": 46.57556, + "y": 0.101000071, + "z": 23.17298 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2a1f1b80-72be-444d-9d8d-5f645a3fc019", - "Position": { - "x": 32.272, - "y": 0.064, - "z": -34.013 - }, - "Rotation": 100.290321, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "120a0777-e825-4de7-a855-c3eaa8eba46b", + "Position": { + "x": -43.8128, + "y": 0.2904, + "z": 6.7404 + }, + "Rotation": 90.74365, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2a5aad92-b5f9-40c0-a380-460247300227", - "Position": { - "x": 57.944, - "y": 0.261, - "z": 49.646 - }, - "Rotation": 174.141357, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "13883982-2ab8-4dd5-a9b4-45e2c6d8e1cc", + "Position": { + "x": 12.595, + "y": 0.04, + "z": -42.522 + }, + "Rotation": 239.798431, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2dcddca6-9bd7-4d57-b57d-4c013342190d", - "Position": { - "x": -19.19, - "y": -3.78, - "z": -4.91 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } + { + "Id": "184cc4d8-9007-4769-9798-8e354e9229ec", + "Position": { + "x": -32.88419, + "y": 1.15018082, + "z": 47.0939026 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "2e1843a1-fd2a-4ccd-8b38-747c1a70f228", - "Position": { - "x": -16.91, - "y": 0.294, - "z": -39.428 - }, - "Rotation": 270.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "1a5819f2-ff42-4632-af5e-fe5ea8f886fc", + "Position": { + "x": 58.1779976, + "y": 0.261, + "z": 51.283 + }, + "Rotation": 174.141357, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2eed18b6-9fbb-40de-979f-985f203f251e", - "Position": { - "x": -42.4368, - "y": 0.2904, - "z": 7.44339943 - }, - "Rotation": 83.8970261, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "1c8f1067-d5df-401c-b05a-3c2c6b36ab9a", + "Position": { + "x": 15.7, + "y": 4.571, + "z": 38.976 + }, + "Rotation": 0.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "30edcdf0-73e0-4ab5-a9e7-4d24a9a83aa9", - "Position": { - "x": 27.775, - "y": 0.119, - "z": 20.567 - }, - "Rotation": 121.344116, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "1d42b19c-7a5b-4684-9689-b801a89e041c", + "Position": { + "x": -33.0051842, + "y": 1.08018088, + "z": 46.6718979 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "336d3c25-9f38-475f-8eb9-db6393f06b6c", - "Position": { - "x": 71.73021, - "y": 0.311, - "z": -71.4116 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "1facfcfc-9ee5-4638-83b3-117fce7b3303", + "Position": { + "x": -46.6908, + "y": 0.2904, + "z": 8.3904 + }, + "Rotation": 103.706047, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "35e7edfa-5d6c-4512-b3f0-ebb823e076de", - "Position": { - "x": 49.94165, - "y": 0.102999926, - "z": 22.0510311 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "22a7740a-5a91-4bca-af36-668342522b42", + "Position": { + "x": 70.75821, + "y": 0.311, + "z": -72.8016052 + }, + "Rotation": 356.430054, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "38a8fe02-f871-4b79-91e5-69c2c68d1bbc", - "Position": { - "x": -16.984, - "y": 0.26700002, - "z": -41.3249969 - }, - "Rotation": 270.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "2355be95-341b-46db-90fd-6a383e286e5c", + "Position": { + "x": -20.756, + "y": 0.166, + "z": 22.769 + }, + "Rotation": 101.387489, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 41.97 + } + }, + "BotZoneName": "", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3906ac26-47d3-4602-8783-049633778a29", - "Position": { - "x": 14.636, - "y": 4.571, - "z": 39.737 - }, - "Rotation": 0.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "2497205e-6fc4-49cd-a1e3-f46c780e214f", + "Position": { + "x": 31.624, + "y": 0.119, + "z": 18.284 + }, + "Rotation": 281.606659, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3bcd754a-b299-4d63-9d7f-e4d05c2f13e3", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 23.772 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "27da5013-1a81-42db-a71f-312a557af54a", + "Position": { + "x": -35.4081841, + "y": 1.08018088, + "z": 48.8108978 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3dd5759f-3764-491f-be62-82f2db15a699", - "Position": { - "x": 51.404438, - "y": 0.0599999428, - "z": 21.1870213 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "2875ed6d-0a92-4473-b641-0616a69f6388", + "Position": { + "x": 49.989624, + "y": 0.0599999428, + "z": 15.7763767 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3eed3347-ac2d-429b-870e-6e6bc076e05e", - "Position": { - "x": 45.8, - "y": 0.0599999428, - "z": 20.9 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "2984a7ec-f10b-42a8-b466-554f37f9ea3e", + "Position": { + "x": 43.8973656, + "y": 0.1170001, + "z": 23.56006 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3f0277ba-5d1f-4e3d-b763-234a33b904e3", - "Position": { - "x": 49.5018044, - "y": 0.1170001, - "z": 23.8470821 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "2a1f1b80-72be-444d-9d8d-5f645a3fc019", + "Position": { + "x": 32.272, + "y": 0.064, + "z": -34.013 + }, + "Rotation": 100.290321, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "42c3f263-52c6-428c-b97f-6acd100ec669", - "Position": { - "x": -3.28900051, - "y": -3.858, - "z": -17.514 - }, - "Rotation": 0.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "2a5aad92-b5f9-40c0-a380-460247300227", + "Position": { + "x": 57.944, + "y": 0.261, + "z": 49.646 + }, + "Rotation": 174.141357, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4393a80b-14da-4321-86c4-0d45ab6afa67", - "Position": { - "x": 48.6368141, - "y": 0.11818099, - "z": -25.4841 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "2dcddca6-9bd7-4d57-b57d-4c013342190d", + "Position": { + "x": -19.19, + "y": -3.78, + "z": -4.91 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 21.1 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4755c538-4ee5-4125-8cd3-885787da7ad5", - "Position": { - "x": 12.6300011, - "y": 1.797, - "z": 60.15 - }, - "Rotation": 88.5811157, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "2e1843a1-fd2a-4ccd-8b38-747c1a70f228", + "Position": { + "x": -16.91, + "y": 0.294, + "z": -39.428 + }, + "Rotation": 270.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "47a23e13-9db9-4cc2-8da0-fcbc52d698d8", - "Position": { - "x": -35.38319, - "y": 1.08018088, - "z": 50.6099 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "2eed18b6-9fbb-40de-979f-985f203f251e", + "Position": { + "x": -42.4368, + "y": 0.2904, + "z": 7.44339943 + }, + "Rotation": 83.8970261, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4a4e5ee5-a314-4a78-939d-cf3c05818435", - "Position": { - "x": -16.7849979, - "y": 0.312, - "z": -37.434 - }, - "Rotation": 246.299744, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "30edcdf0-73e0-4ab5-a9e7-4d24a9a83aa9", + "Position": { + "x": 27.775, + "y": 0.119, + "z": 20.567 + }, + "Rotation": 121.344116, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4bc2255b-75b0-44a3-91ed-c1b35499cbc5", - "Position": { - "x": 7.90300035, - "y": 0.04, - "z": -44.6099968 - }, - "Rotation": 195.357437, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "336d3c25-9f38-475f-8eb9-db6393f06b6c", + "Position": { + "x": 71.73021, + "y": 0.311, + "z": -71.4116 + }, + "Rotation": 356.430054, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "503cf951-8e80-4ca0-aa2d-993f71a6a4a6", - "Position": { - "x": -50.19, - "y": 1.264, - "z": 55.06 - }, - "Rotation": 90.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "35e7edfa-5d6c-4512-b3f0-ebb823e076de", + "Position": { + "x": 49.94165, + "y": 0.102999926, + "z": 22.0510311 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "50560c89-4136-4cfb-b155-485519110c93", - "Position": { - "x": -17.6909981, - "y": 0.291, - "z": -43.159996 - }, - "Rotation": 286.887238, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "38a8fe02-f871-4b79-91e5-69c2c68d1bbc", + "Position": { + "x": -16.984, + "y": 0.26700002, + "z": -41.3249969 + }, + "Rotation": 270.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "57254982-c470-440d-911a-e8854f42398a", - "Position": { - "x": -44.798, - "y": 1.279, - "z": 55.314003 - }, - "Rotation": 90.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "3906ac26-47d3-4602-8783-049633778a29", + "Position": { + "x": 14.636, + "y": 4.571, + "z": 39.737 + }, + "Rotation": 0.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "58eb6051-b050-4ce0-b608-71759c5e05b2", - "Position": { - "x": -35.45019, - "y": 1.08018088, - "z": 47.646904 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "3bcd754a-b299-4d63-9d7f-e4d05c2f13e3", + "Position": { + "x": -22.174, + "y": 2.729, + "z": 23.772 + }, + "Rotation": 89.99999, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "595f96c9-dcf7-4b89-947c-6f5538176fe2", - "Position": { - "x": 52.02281, - "y": 0.0901808739, - "z": -24.6441 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "3dd5759f-3764-491f-be62-82f2db15a699", + "Position": { + "x": 51.404438, + "y": 0.0599999428, + "z": 21.1870213 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5a2aaa7e-06d3-438b-a2ee-2781ed753d2d", - "Position": { - "x": 35.545, - "y": 8.231328, - "z": 36.41 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } + { + "Id": "3eed3347-ac2d-429b-870e-6e6bc076e05e", + "Position": { + "x": 45.8, + "y": 0.0599999428, + "z": 20.9 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 2 - }, - { - "Id": "5be1a535-4865-433c-b645-33c7ff65bd94", - "Position": { - "x": -46.2658, - "y": 0.2904, - "z": 7.04739952 - }, - "Rotation": 82.15895, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "3f0277ba-5d1f-4e3d-b763-234a33b904e3", + "Position": { + "x": 49.5018044, + "y": 0.1170001, + "z": 23.8470821 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5f9f188b-8489-4c06-ae14-ba4ca2a46028", - "Position": { - "x": 46.0596237, - "y": 0.03700018, - "z": 15.1563778 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "42c3f263-52c6-428c-b97f-6acd100ec669", + "Position": { + "x": -3.28900051, + "y": -3.858, + "z": -17.514 + }, + "Rotation": 0.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "60b47eab-b2a6-4ba2-b30c-fea14a7169bf", - "Position": { - "x": -5.918, - "y": -3.858, - "z": -14.1830006 - }, - "Rotation": 53.7435837, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "4393a80b-14da-4321-86c4-0d45ab6afa67", + "Position": { + "x": 48.6368141, + "y": 0.11818099, + "z": -25.4841 + }, + "Rotation": 3.0047307, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "63f705ca-a0db-4f4f-8e50-20d5a97af053", - "Position": { - "x": -0.09300041, - "y": -3.858, - "z": -12.227 - }, - "Rotation": 252.025253, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "4755c538-4ee5-4125-8cd3-885787da7ad5", + "Position": { + "x": 12.6300011, + "y": 1.797, + "z": 60.15 + }, + "Rotation": 88.5811157, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6670b804-5f1a-45f1-a462-585cb8619d09", - "Position": { - "x": 8.07, - "y": 0.1, - "z": -8.61 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "47a23e13-9db9-4cc2-8da0-fcbc52d698d8", + "Position": { + "x": -35.38319, + "y": 1.08018088, + "z": 50.6099 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 2 - }, - { - "Id": "67fb48f8-0359-458b-876c-2e4963cbd14e", - "Position": { - "x": 21.4049988, - "y": -2.668999, - "z": -14.6159992 - }, - "Rotation": 255.000031, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "4a4e5ee5-a314-4a78-939d-cf3c05818435", + "Position": { + "x": -16.7849979, + "y": 0.312, + "z": -37.434 + }, + "Rotation": 246.299744, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "683f2734-6398-4b77-9bab-b87f3be35938", - "Position": { - "x": 69.98521, - "y": 0.311, - "z": -71.3536 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "4bc2255b-75b0-44a3-91ed-c1b35499cbc5", + "Position": { + "x": 7.90300035, + "y": 0.04, + "z": -44.6099968 + }, + "Rotation": 195.357437, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "68ac9245-633b-4287-a999-2c3028fa8d45", - "Position": { - "x": 4.73, - "y": 0.01, - "z": -35.1 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } + { + "Id": "503cf951-8e80-4ca0-aa2d-993f71a6a4a6", + "Position": { + "x": -50.19, + "y": 1.264, + "z": 55.06 + }, + "Rotation": 90.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "68f38db1-e55e-4170-9e79-1f9e34e8cdc5", - "Position": { - "x": 44.15699, - "y": 0.0940001, - "z": 17.8164349 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "50560c89-4136-4cfb-b155-485519110c93", + "Position": { + "x": -17.6909981, + "y": 0.291, + "z": -43.159996 + }, + "Rotation": 286.887238, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6ce1f898-79ff-498e-8b52-fda05d7ee05d", - "Position": { - "x": 59.516, - "y": -2.63900042, - "z": 6.828 - }, - "Rotation": 46.93951, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "57254982-c470-440d-911a-e8854f42398a", + "Position": { + "x": -44.798, + "y": 1.279, + "z": 55.314003 + }, + "Rotation": 90.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6d7bf2bb-6211-4495-8509-58ceadea72e0", - "Position": { - "x": 9.994, - "y": 0.04, - "z": -42.204 - }, - "Rotation": 271.3531, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "58eb6051-b050-4ce0-b608-71759c5e05b2", + "Position": { + "x": -35.45019, + "y": 1.08018088, + "z": 47.646904 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6d97a439-de10-42c5-99ef-6cf92e243aca", - "Position": { - "x": 10.2300014, - "y": 1.14, - "z": 58.7600021 - }, - "Rotation": 88.5811157, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "595f96c9-dcf7-4b89-947c-6f5538176fe2", + "Position": { + "x": 52.02281, + "y": 0.0901808739, + "z": -24.6441 + }, + "Rotation": 3.0047307, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6ecc9492-5fbb-43d8-a0c0-8509fa39eb1d", - "Position": { - "x": 20.198, - "y": -2.668999, - "z": -16.3809986 - }, - "Rotation": 347.009827, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "5a2aaa7e-06d3-438b-a2ee-2781ed753d2d", + "Position": { + "x": 35.545, + "y": 8.231328, + "z": 36.41 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 21.1 + } + }, + "BotZoneName": "", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "71c2ba1e-e226-47be-814f-d52ddd931603", - "Position": { - "x": -2.81400013, - "y": -2.598, - "z": 18.476 - }, - "Rotation": 226.745529, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "5be1a535-4865-433c-b645-33c7ff65bd94", + "Position": { + "x": -46.2658, + "y": 0.2904, + "z": 7.04739952 + }, + "Rotation": 82.15895, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "74059b40-4072-495f-a02c-2ffce404d728", - "Position": { - "x": 2.363, - "y": -2.639, - "z": 49.415 - }, - "Rotation": 0.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "5f9f188b-8489-4c06-ae14-ba4ca2a46028", + "Position": { + "x": 46.0596237, + "y": 0.03700018, + "z": 15.1563778 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "789a1686-f35d-4dc4-b469-0687a4fad804", - "Position": { - "x": 41.089, - "y": -2.639, - "z": -9.549 - }, - "Rotation": 343.771973, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "60b47eab-b2a6-4ba2-b30c-fea14a7169bf", + "Position": { + "x": -5.918, + "y": -3.858, + "z": -14.1830006 + }, + "Rotation": 53.7435837, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "792180b4-c67c-45f6-a5d4-f3973c7e2c9b", - "Position": { - "x": 45.914814, - "y": 0.11818099, - "z": -26.4251 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "63f705ca-a0db-4f4f-8e50-20d5a97af053", + "Position": { + "x": -0.09300041, + "y": -3.858, + "z": -12.227 + }, + "Rotation": 252.025253, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7ea1b4b8-a496-4bc0-bf61-e5ba4f3aa1fa", - "Position": { - "x": 32.2320023, - "y": 0.064, - "z": -31.639 - }, - "Rotation": 303.679382, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "6670b804-5f1a-45f1-a462-585cb8619d09", + "Position": { + "x": 8.07, + "y": 0.1, + "z": -8.61 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "80532206-b2e1-4578-b559-99eae931a957", - "Position": { - "x": 32.668, - "y": 0.064, - "z": -35.46 - }, - "Rotation": 41.47584, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "67fb48f8-0359-458b-876c-2e4963cbd14e", + "Position": { + "x": 21.4049988, + "y": -2.668999, + "z": -14.6159992 + }, + "Rotation": 255.000031, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8128ea83-0d4f-4e64-b109-5acc9e477b33", - "Position": { - "x": -4.302, - "y": -2.598, - "z": 14.318 - }, - "Rotation": 0.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "683f2734-6398-4b77-9bab-b87f3be35938", + "Position": { + "x": 69.98521, + "y": 0.311, + "z": -71.3536 + }, + "Rotation": 356.430054, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "824c7aed-9a71-4158-91e4-a153c42bbddc", - "Position": { - "x": 47.3188133, - "y": 0.11818099, - "z": -25.6161 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "68ac9245-633b-4287-a999-2c3028fa8d45", + "Position": { + "x": 4.73, + "y": 0.01, + "z": -35.1 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 21.1 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8429bed9-52e2-4731-a425-4912db8529a9", - "Position": { - "x": 58.4149971, - "y": 0.261, - "z": 52.6900024 - }, - "Rotation": 178.765686, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "68f38db1-e55e-4170-9e79-1f9e34e8cdc5", + "Position": { + "x": 44.15699, + "y": 0.0940001, + "z": 17.8164349 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "85d68e69-87f9-4702-aa92-1d652dc47cf8", - "Position": { - "x": 3.99100018, - "y": -2.639, - "z": 50.653 - }, - "Rotation": 201.047623, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "6ce1f898-79ff-498e-8b52-fda05d7ee05d", + "Position": { + "x": 59.516, + "y": -2.63900042, + "z": 6.828 + }, + "Rotation": 46.93951, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "867576c4-1152-48ad-80bf-a802d7318379", - "Position": { - "x": -47.29, - "y": 1.41200006, - "z": 56.816 - }, - "Rotation": 90.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "6d7bf2bb-6211-4495-8509-58ceadea72e0", + "Position": { + "x": 9.994, + "y": 0.04, + "z": -42.204 + }, + "Rotation": 271.3531, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "86ff84ac-edf7-4efd-9643-4bacc59073e7", - "Position": { - "x": -6.77, - "y": 0.17, - "z": 10.01 - }, - "Rotation": 327.8234, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } + { + "Id": "6d97a439-de10-42c5-99ef-6cf92e243aca", + "Position": { + "x": 10.2300014, + "y": 1.14, + "z": 58.7600021 + }, + "Rotation": 88.5811157, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "8df78011-1568-4e66-99b8-5c4ed736b99a", - "Position": { - "x": -19.1069984, - "y": 0.26000002, - "z": -43.166 - }, - "Rotation": 89.99994, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "6ecc9492-5fbb-43d8-a0c0-8509fa39eb1d", + "Position": { + "x": 20.198, + "y": -2.668999, + "z": -16.3809986 + }, + "Rotation": 347.009827, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "90da8fb3-422a-46cd-b540-648cde8ee9f3", - "Position": { - "x": 23.83, - "y": -2.604, - "z": -30.66 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } + { + "Id": "71c2ba1e-e226-47be-814f-d52ddd931603", + "Position": { + "x": -2.81400013, + "y": -2.598, + "z": 18.476 + }, + "Rotation": 226.745529, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 2 - }, - { - "Id": "91c08464-492f-443d-8632-54e01d6bdd20", - "Position": { - "x": -1.06100035, - "y": -2.638, - "z": -7.05 - }, - "Rotation": 197.617111, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "74059b40-4072-495f-a02c-2ffce404d728", + "Position": { + "x": 2.363, + "y": -2.639, + "z": 49.415 + }, + "Rotation": 0.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "91ec8f79-6cc4-422d-966f-4cd6a02d5a87", - "Position": { - "x": 8.5, - "y": 0.04, - "z": -43.579998 - }, - "Rotation": 8.130259, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "789a1686-f35d-4dc4-b469-0687a4fad804", + "Position": { + "x": 41.089, + "y": -2.639, + "z": -9.549 + }, + "Rotation": 343.771973, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "92822146-7c98-4570-8bde-8d0d042ae3cf", - "Position": { - "x": 35.354, - "y": 0.064, - "z": -34.507 - }, - "Rotation": 283.0167, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "792180b4-c67c-45f6-a5d4-f3973c7e2c9b", + "Position": { + "x": 45.914814, + "y": 0.11818099, + "z": -26.4251 + }, + "Rotation": 3.0047307, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9507dd40-370d-4d8f-994e-c8f3b456804e", - "Position": { - "x": -34.0161858, - "y": 1.08018088, - "z": 48.5449 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "7ea1b4b8-a496-4bc0-bf61-e5ba4f3aa1fa", + "Position": { + "x": 32.2320023, + "y": 0.064, + "z": -31.639 + }, + "Rotation": 303.679382, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "97998a75-baa4-4b03-ac1f-f86dfbf48d79", - "Position": { - "x": -6.689, - "y": -2.598, - "z": 17.303 - }, - "Rotation": 100.67749, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "80532206-b2e1-4578-b559-99eae931a957", + "Position": { + "x": 32.668, + "y": 0.064, + "z": -35.46 + }, + "Rotation": 41.47584, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "990aa5a0-d549-4479-8af2-a196ddb3bb35", - "Position": { - "x": 18.637, - "y": -2.668999, - "z": -15.6589994 - }, - "Rotation": 58.42367, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "8128ea83-0d4f-4e64-b109-5acc9e477b33", + "Position": { + "x": -4.302, + "y": -2.598, + "z": 14.318 + }, + "Rotation": 0.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "99840da7-52c4-4f5f-832e-c705e9d07572", - "Position": { - "x": 50.914814, - "y": 0.0729999542, - "z": 24.8606472 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "824c7aed-9a71-4158-91e4-a153c42bbddc", + "Position": { + "x": 47.3188133, + "y": 0.11818099, + "z": -25.6161 + }, + "Rotation": 3.0047307, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "99b05e61-8c54-42ad-bb6c-9bd30f38f1e6", - "Position": { - "x": -34.0831871, - "y": 1.08018088, - "z": 47.0599 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "8429bed9-52e2-4731-a425-4912db8529a9", + "Position": { + "x": 58.4149971, + "y": 0.261, + "z": 52.6900024 + }, + "Rotation": 178.765686, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9a858e10-3752-4543-9550-ddf6bc9b1891", - "Position": { - "x": 39.642, - "y": -2.639, - "z": -9.06 - }, - "Rotation": 79.07639, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "85d68e69-87f9-4702-aa92-1d652dc47cf8", + "Position": { + "x": 3.99100018, + "y": -2.639, + "z": 50.653 + }, + "Rotation": 201.047623, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9dd99893-91c5-4e64-b808-bbe46852022a", - "Position": { - "x": 60.093, - "y": 0.261, - "z": 52.592 - }, - "Rotation": 197.7287, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "867576c4-1152-48ad-80bf-a802d7318379", + "Position": { + "x": -47.29, + "y": 1.41200006, + "z": 56.816 + }, + "Rotation": 90.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9e274f37-1c37-4c56-a763-f0753921744b", - "Position": { - "x": 50.55981, - "y": 0.11818099, - "z": -23.1311 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "86ff84ac-edf7-4efd-9643-4bacc59073e7", + "Position": { + "x": -6.77, + "y": 0.17, + "z": 10.01 + }, + "Rotation": 327.8234, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 41.97 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9f14e22f-3971-4440-8f48-c597cc7d9166", - "Position": { - "x": 30.26, - "y": 0.119, - "z": 21.699 - }, - "Rotation": 153.3458, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "8df78011-1568-4e66-99b8-5c4ed736b99a", + "Position": { + "x": -19.1069984, + "y": 0.26000002, + "z": -43.166 + }, + "Rotation": 89.99994, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a3a76c4b-983f-4920-9c87-c2705283f5ac", - "Position": { - "x": -0.737, - "y": -2.639, - "z": 50.57 - }, - "Rotation": 164.999939, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "90da8fb3-422a-46cd-b540-648cde8ee9f3", + "Position": { + "x": 23.83, + "y": -2.604, + "z": -30.66 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 41.97 + } + }, + "BotZoneName": "", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a5465833-c434-44d5-9bba-1ce6d8488884", - "Position": { - "x": 36.043, - "y": 1.09, - "z": 38.348 - }, - "Rotation": 182.971283, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } + { + "Id": "91c08464-492f-443d-8632-54e01d6bdd20", + "Position": { + "x": -1.06100035, + "y": -2.638, + "z": -7.05 + }, + "Rotation": 197.617111, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 2 - }, - { - "Id": "a5a35da1-0545-4774-b5a0-194f4903a9de", - "Position": { - "x": -5.89, - "y": 0.08, - "z": -27.46 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "91ec8f79-6cc4-422d-966f-4cd6a02d5a87", + "Position": { + "x": 8.5, + "y": 0.04, + "z": -43.579998 + }, + "Rotation": 8.130259, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "a5c47219-1ebc-4254-90cb-934d6f9d4790", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 30.386 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "92822146-7c98-4570-8bde-8d0d042ae3cf", + "Position": { + "x": 35.354, + "y": 0.064, + "z": -34.507 + }, + "Rotation": 283.0167, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a7c5ae7b-61a6-4f62-b975-46078fd443c6", - "Position": { - "x": 50.1178131, - "y": 0.0901808739, - "z": -25.6021 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "9507dd40-370d-4d8f-994e-c8f3b456804e", + "Position": { + "x": -34.0161858, + "y": 1.08018088, + "z": 48.5449 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a8635306-f041-47fe-bf9b-1f1d528d5d5b", - "Position": { - "x": 14.969, - "y": 4.571, - "z": 35.1550026 - }, - "Rotation": 0.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "97998a75-baa4-4b03-ac1f-f86dfbf48d79", + "Position": { + "x": -6.689, + "y": -2.598, + "z": 17.303 + }, + "Rotation": 100.67749, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "aacb1cf6-c980-47f0-8ed0-c72f1a236ec1", - "Position": { - "x": 14.855999, - "y": 4.571, - "z": 37.77 - }, - "Rotation": 0.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "990aa5a0-d549-4479-8af2-a196ddb3bb35", + "Position": { + "x": 18.637, + "y": -2.668999, + "z": -15.6589994 + }, + "Rotation": 58.42367, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "acdd7189-0c4b-4be6-9e6e-57dbca0f6212", - "Position": { - "x": 44.5968361, - "y": 0.07999992, - "z": 16.0203838 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "99840da7-52c4-4f5f-832e-c705e9d07572", + "Position": { + "x": 50.914814, + "y": 0.0729999542, + "z": 24.8606472 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ad0cbd99-02ee-4ff1-b799-6b50b8a3fa0f", - "Position": { - "x": 72.0582047, - "y": 0.311, - "z": -73.8616 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "99b05e61-8c54-42ad-bb6c-9bd30f38f1e6", + "Position": { + "x": -34.0831871, + "y": 1.08018088, + "z": 47.0599 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "adee9078-b5a3-4f9e-b384-e984cbea15fc", - "Position": { - "x": -48.513, - "y": 1.343, - "z": 55.2940025 - }, - "Rotation": 90.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "9a858e10-3752-4543-9550-ddf6bc9b1891", + "Position": { + "x": 39.642, + "y": -2.639, + "z": -9.06 + }, + "Rotation": 79.07639, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ae4693d5-a309-4cbc-85db-ce8a59cf7ff4", - "Position": { - "x": 34.375, - "y": 0.064, - "z": -33.252 - }, - "Rotation": 180.603928, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "9dd99893-91c5-4e64-b808-bbe46852022a", + "Position": { + "x": 60.093, + "y": 0.261, + "z": 52.592 + }, + "Rotation": 197.7287, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "af54940c-1d1c-4281-a44d-cb2cf46e436b", - "Position": { - "x": 46.835186, - "y": 0.07800007, - "z": 17.4293537 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "9e274f37-1c37-4c56-a763-f0753921744b", + "Position": { + "x": 50.55981, + "y": 0.11818099, + "z": -23.1311 + }, + "Rotation": 3.0047307, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "af816038-d1bd-4fb1-8355-e5adcdd4556e", - "Position": { - "x": 41.166, - "y": -2.639, - "z": -7.624 - }, - "Rotation": 223.2953, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "9f14e22f-3971-4440-8f48-c597cc7d9166", + "Position": { + "x": 30.26, + "y": 0.119, + "z": 21.699 + }, + "Rotation": 153.3458, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "afacfed6-7a03-418b-9fca-420590d639c0", - "Position": { - "x": 69.198204, - "y": 0.311, - "z": -73.4416046 - }, - "Rotation": 18.1724968, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "a3a76c4b-983f-4920-9c87-c2705283f5ac", + "Position": { + "x": -0.737, + "y": -2.639, + "z": 50.57 + }, + "Rotation": 164.999939, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b776e3ed-a02d-4141-8eba-35d4746547ca", - "Position": { - "x": -45.61, - "y": 1.27, - "z": 56.8700027 - }, - "Rotation": 90.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "a5465833-c434-44d5-9bba-1ce6d8488884", + "Position": { + "x": 36.043, + "y": 1.09, + "z": 38.348 + }, + "Rotation": 182.971283, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 21.1 + } + }, + "BotZoneName": "", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bbb167e6-da45-42ff-a113-20f605521b02", - "Position": { - "x": 31.75, - "y": 0.15318726, - "z": -0.3 - }, - "Rotation": 84.78185, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } + { + "Id": "a5a35da1-0545-4774-b5a0-194f4903a9de", + "Position": { + "x": -5.89, + "y": 0.08, + "z": -27.46 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 4 - }, - { - "Id": "bc1a8dad-c186-4238-9340-90ac952050e6", - "Position": { - "x": 48.08699, - "y": 0.1170001, - "z": 18.4364376 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "a5c47219-1ebc-4254-90cb-934d6f9d4790", + "Position": { + "x": -22.174, + "y": 2.729, + "z": 30.386 + }, + "Rotation": 89.99999, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bcae7a9f-8b2f-4a4c-9cb0-589d4a227c70", - "Position": { - "x": 12.5600014, - "y": 1.21, - "z": 52.73 - }, - "Rotation": 123.00354, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "a7c5ae7b-61a6-4f62-b975-46078fd443c6", + "Position": { + "x": 50.1178131, + "y": 0.0901808739, + "z": -25.6021 + }, + "Rotation": 3.0047307, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bd7f0d51-e000-4dc8-a58f-4bc9081039e3", - "Position": { - "x": -19.94, - "y": 1.11607242, - "z": 62.87 - }, - "Rotation": 157.772064, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "a8635306-f041-47fe-bf9b-1f1d528d5d5b", + "Position": { + "x": 14.969, + "y": 4.571, + "z": 35.1550026 + }, + "Rotation": 0.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "be7bf7f0-6892-4d55-b1af-85492250ea55", - "Position": { - "x": -0.171000481, - "y": -3.858, - "z": -14.33 - }, - "Rotation": 298.784668, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "aacb1cf6-c980-47f0-8ed0-c72f1a236ec1", + "Position": { + "x": 14.855999, + "y": 4.571, + "z": 37.77 + }, + "Rotation": 0.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c151498d-5939-4451-a992-c3998d62061a", - "Position": { - "x": 22.37, - "y": 0.86, - "z": 4.33 - }, - "Rotation": 113.499405, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } + { + "Id": "acdd7189-0c4b-4be6-9e6e-57dbca0f6212", + "Position": { + "x": 44.5968361, + "y": 0.07999992, + "z": 16.0203838 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 4 - }, - { - "Id": "c249a42b-3b54-4680-ac4d-2c923ca4f530", - "Position": { - "x": 28.743, - "y": 0.119, - "z": 17.499 - }, - "Rotation": 30.7684727, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "ad0cbd99-02ee-4ff1-b799-6b50b8a3fa0f", + "Position": { + "x": 72.0582047, + "y": 0.311, + "z": -73.8616 + }, + "Rotation": 356.430054, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c2d01ce0-e0e4-41af-8311-44dc5cf38a93", - "Position": { - "x": -6.47099972, - "y": -2.598, - "z": 15.79 - }, - "Rotation": 64.0924149, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "adee9078-b5a3-4f9e-b384-e984cbea15fc", + "Position": { + "x": -48.513, + "y": 1.343, + "z": 55.2940025 + }, + "Rotation": 90.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c3ba287a-9bea-4c28-81a5-650df99b2798", - "Position": { - "x": 44.4868126, - "y": 0.11818099, - "z": -26.6101 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "ae4693d5-a309-4cbc-85db-ce8a59cf7ff4", + "Position": { + "x": 34.375, + "y": 0.064, + "z": -33.252 + }, + "Rotation": 180.603928, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c61cee41-a0f3-470d-9b83-01f2189705fc", - "Position": { - "x": 38.839, - "y": -2.639, - "z": -7.702 - }, - "Rotation": 89.99995, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "af54940c-1d1c-4281-a44d-cb2cf46e436b", + "Position": { + "x": 46.835186, + "y": 0.07800007, + "z": 17.4293537 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c671337f-e58f-4de6-a387-307d877954a3", - "Position": { - "x": 14.018, - "y": 1.18999994, - "z": 58.119 - }, - "Rotation": 123.00354, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "af816038-d1bd-4fb1-8355-e5adcdd4556e", + "Position": { + "x": 41.166, + "y": -2.639, + "z": -7.624 + }, + "Rotation": 223.2953, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c949937b-c669-41ab-a5d6-1f93e58d4af8", - "Position": { - "x": 26.467, - "y": -2.49, - "z": -34.414 - }, - "Rotation": 82.28416, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "afacfed6-7a03-418b-9fca-420590d639c0", + "Position": { + "x": 69.198204, + "y": 0.311, + "z": -73.4416046 + }, + "Rotation": 18.1724968, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 2 - }, - { - "Id": "cbe988f1-2264-414f-b070-79434b27a4ca", - "Position": { - "x": 58.204, - "y": -2.63900042, - "z": 6.1590004 - }, - "Rotation": 1.51046038, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "b776e3ed-a02d-4141-8eba-35d4746547ca", + "Position": { + "x": -45.61, + "y": 1.27, + "z": 56.8700027 + }, + "Rotation": 90.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cca16615-941d-4b07-a88f-4064628c1581", - "Position": { - "x": 35.924, - "y": 4.55418539, - "z": 35.339 - }, - "Rotation": 56.28309, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } + { + "Id": "bbb167e6-da45-42ff-a113-20f605521b02", + "Position": { + "x": 31.75, + "y": 0.15318726, + "z": -0.3 + }, + "Rotation": 84.78185, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 21.1 + } + }, + "BotZoneName": "", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 2 - }, - { - "Id": "d2b48374-53d1-45a7-a3d2-5e1fc58a8499", - "Position": { - "x": 20.348999, - "y": -2.668999, - "z": -13.374 - }, - "Rotation": 199.173172, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "bc1a8dad-c186-4238-9340-90ac952050e6", + "Position": { + "x": 48.08699, + "y": 0.1170001, + "z": 18.4364376 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d2bb26d4-959f-478f-92ad-6adedf2dc512", - "Position": { - "x": 30.758, - "y": 0.26, - "z": 15.164 - }, - "Rotation": 184.842667, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } + { + "Id": "bcae7a9f-8b2f-4a4c-9cb0-589d4a227c70", + "Position": { + "x": 12.5600014, + "y": 1.21, + "z": 52.73 + }, + "Rotation": 123.00354, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 4 - }, - { - "Id": "d2bc609f-cfaf-421a-8a02-a535e2b25d35", - "Position": { - "x": 52.18, - "y": 0.101000071, - "z": 23.4599972 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "bd7f0d51-e000-4dc8-a58f-4bc9081039e3", + "Position": { + "x": -19.94, + "y": 1.11607242, + "z": 62.87 + }, + "Rotation": 157.772064, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d2f072c1-9cdc-4d5e-9102-cd77d9edf626", - "Position": { - "x": -33.998188, - "y": 1.08018088, - "z": 49.9939041 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "be7bf7f0-6892-4d55-b1af-85492250ea55", + "Position": { + "x": -0.171000481, + "y": -3.858, + "z": -14.33 + }, + "Rotation": 298.784668, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d6564897-4b3e-4b7e-9b56-34cb3b9a235d", - "Position": { - "x": 18.6309986, - "y": -2.668999, - "z": -13.999999 - }, - "Rotation": 119.999939, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "c151498d-5939-4451-a992-c3998d62061a", + "Position": { + "x": 22.37, + "y": 0.86, + "z": 4.33 + }, + "Rotation": 113.499405, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 41.97 + } + }, + "BotZoneName": "", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d685da1e-6b1e-45fb-8e31-e3a42a382fed", - "Position": { - "x": 50.7651863, - "y": 0.101000071, - "z": 18.0493526 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "c249a42b-3b54-4680-ac4d-2c923ca4f530", + "Position": { + "x": 28.743, + "y": 0.119, + "z": 17.499 + }, + "Rotation": 30.7684727, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d7e47ba9-1862-4070-95de-9a9b2f0e46ff", - "Position": { - "x": 44.33721, - "y": 0.102999926, - "z": 21.7640057 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "c2d01ce0-e0e4-41af-8311-44dc5cf38a93", + "Position": { + "x": -6.47099972, + "y": -2.598, + "z": 15.79 + }, + "Rotation": 64.0924149, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d7fc05a2-a7d9-494a-af5c-e092bb560bb9", - "Position": { - "x": 48.5268364, - "y": 0.102999926, - "z": 16.6403866 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "da289682-cef5-4ae6-94bb-a2b80705906e", - "Position": { - "x": -35.81619, - "y": 1.08018088, - "z": 45.3069 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "de479fb9-789f-499b-ac6b-0530fab5235b", - "Position": { - "x": -32.087, - "y": -2.581647, - "z": 29.9733315 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "e0f65b5b-c67b-4e15-a102-f92bbdf95f65", - "Position": { - "x": 15.502, - "y": 4.571, - "z": 36.609 - }, - "Rotation": 0.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e1be22a2-9bba-40b5-a546-3bf6268b60cf", - "Position": { - "x": 57.079, - "y": -2.63900042, - "z": 7.11500025 - }, - "Rotation": 288.1994, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e1dbe2e4-626f-4205-b71e-5f640eb764ac", - "Position": { - "x": 3.709, - "y": -2.639, - "z": 48.036 - }, - "Rotation": 344.457062, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e33e5a4b-4c9e-46f9-b1df-5e9281746f58", - "Position": { - "x": 45.57, - "y": 0.05000019, - "z": 18.83 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e5cd7bad-0f60-4cc2-bdd9-8a8943232b01", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 29.192 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e60d8dce-ee35-4b30-9c3a-afddf4c5445e", - "Position": { - "x": 13.76, - "y": 1.1, - "z": 54.64 - }, - "Rotation": 123.00354, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ea010f6f-4860-4339-b576-09439f8f4c3a", - "Position": { - "x": -5.58, - "y": -2.598, - "z": 14.757 - }, - "Rotation": 33.10973, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "eb5c4efc-759f-4ff9-8a73-8cd3eb0eca03", - "Position": { - "x": 55.517, - "y": -2.63900042, - "z": 6.433 - }, - "Rotation": 300.7341, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "efb39132-1eff-4655-8fb0-d795f8f98eb3", - "Position": { - "x": 31.781, - "y": 0.119, - "z": 19.447 - }, - "Rotation": 271.344177, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f0864450-ffa8-4d7e-aa93-59ea6b218641", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 25.5719986 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f23f74fc-1c16-41b9-aeeb-0ca222222cbc", - "Position": { - "x": -0.128999949, - "y": -2.639, - "z": 48.722 - }, - "Rotation": 50.8312836, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f248ad45-3889-4308-bd40-091b1f6a0492", - "Position": { - "x": -35.4011879, - "y": 1.08018088, - "z": 46.4789047 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f3c6d9ee-ca4e-44ca-abdf-0622a8249f1d", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 31.529 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f6276290-95d6-4d35-9b1a-53e1db1c08ec", - "Position": { - "x": 15.0, - "y": 0.1483535, - "z": 3.79 - }, - "Rotation": 232.964813, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "BotZoneName": "", - "CorePointId": 2 - }, - { - "Id": "f8efba5d-56be-4091-b537-c97e88b031f2", - "Position": { - "x": 45.3103752, - "y": 0.0729999542, - "z": 24.5736217 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fca84a73-902f-4c3e-b0ce-05f4348d2e12", - "Position": { - "x": 49.05881, - "y": 0.11818099, - "z": -23.5911 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "feea31cd-8a3f-43a5-839f-fd2276a2cce8", - "Position": { - "x": 61.5259972, - "y": -2.63900042, - "z": 6.418 - }, - "Rotation": 24.9815483, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ff7de580-4ba2-4d00-bff0-13cb6717091c", - "Position": { - "x": 47.8188133, - "y": 0.11818099, - "z": -24.2451 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Factory", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ff9c3127-2acd-48fe-a635-b1ab99d0bfa7", - "Position": { - "x": 2.104, - "y": 1.10050392, - "z": 63.056 - }, - "Rotation": 257.797272, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30.1 - } - }, - "BotZoneName": "", - "CorePointId": 5 - } - ], - "maxItemCountInLocation": [ - { - "TemplateId": "54009119af1c881c07000029", - "Value": 0 - } - ], - "BossLocationSpawn": [ - { - "BossName": "bossTagilla", - "BossChance": 25.0, - "BossZone": "BotZone", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "followerBully", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0", - "Time": -1.0, - "RandomTimeSpawn": false, - "Supports": null, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "RandomTimeSpawn": false, - "Supports": null, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "RandomTimeSpawn": false, - "Supports": null, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "RandomTimeSpawn": false, - "Supports": null, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "RandomTimeSpawn": false, - "Supports": null, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ] - } - ], - "MatchMakerMinPlayersByWaitTime": [ - { - "time": 60, - "minPlayers": 4 - }, - { - "time": 120, - "minPlayers": 3 - }, - { - "time": 250, - "minPlayers": 2 - }, - { - "time": 330, - "minPlayers": 1 - } - ], - "transits": [ - { - "id": 12, - "active": true, - "name": "FAC_TRANSIT_12", - "location": "Woods", - "description": "FAC_TRANSIT_12_DESC", - "activateAfterSec": 240, - "target": "5704e3c2d2720bac5b8b4567", - "time": 30, - "conditions": "FAC_TRANSIT_12_COND" - }, - { - "id": 13, - "active": false, - "name": "FAC_TRANSIT_13", - "location": "bigmap", - "description": "FAC_TRANSIT_13_DESC", - "activateAfterSec": 240, - "target": "56f40101d2720b2a4d8b45d6", - "time": 30, - "conditions": "FAC_TRANSIT_13_COND" - }, - { - "id": 14, - "active": false, - "name": "FAC_TRANSIT_14", - "location": "laboratory", - "description": "FAC_TRANSIT_14_DESC", - "activateAfterSec": 240, - "target": "5b0fc42d86f7744a585f9105", - "time": 30, - "conditions": "FAC_TRANSIT_14_COND" - } - ], - "Id": "factory4_day", - "_Id": "55f2d3fd4bdc2d5f408b4567", - "Loot": [ - { - "Id": "container_Factory_Rework_DesignStuff_00055", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3335", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3335", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c3ba287a-9bea-4c28-81a5-650df99b2798", + "Position": { + "x": 44.4868126, + "y": 0.11818099, + "z": -26.6101 + }, + "Rotation": 3.0047307, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3336", - "_tpl": "5abcbc27d8ce8700182eceeb", - "parentId": "66cbb702ec0584b53a0e3335", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "c61cee41-a0f3-470d-9b83-01f2189705fc", + "Position": { + "x": 38.839, + "y": -2.639, + "z": -7.702 + }, + "Rotation": 89.99995, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3337", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "66cbb702ec0584b53a0e3336", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb702ec0584b53a0e3338", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "66cbb702ec0584b53a0e3337", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb702ec0584b53a0e3339", - "_tpl": "59e61eb386f77440d64f5daf", - "parentId": "66cbb702ec0584b53a0e3336", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb702ec0584b53a0e333a", - "_tpl": "5a0071d486f77404e23a12b2", - "parentId": "66cbb702ec0584b53a0e3336", - "slotId": "mod_pistol_grip_akms" - }, - { - "_id": "66cbb702ec0584b53a0e333b", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "66cbb702ec0584b53a0e3336", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb702ec0584b53a0e333c", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "66cbb702ec0584b53a0e3336", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb702ec0584b53a0e333d", - "_tpl": "5abcd472d8ce8700166032ae", - "parentId": "66cbb702ec0584b53a0e3336", - "slotId": "mod_stock_akms" - }, - { - "_id": "66cbb702ec0584b53a0e333e", - "_tpl": "5a0060fc86f7745793204432", - "parentId": "66cbb702ec0584b53a0e3336", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb702ec0584b53a0e333f", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb702ec0584b53a0e333e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 29.0 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3341", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3341", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c671337f-e58f-4de6-a387-307d877954a3", + "Position": { + "x": 14.018, + "y": 1.18999994, + "z": 58.119 + }, + "Rotation": 123.00354, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3343", - "_tpl": "5b800ebc86f774394e230a90", - "parentId": "66cbb702ec0584b53a0e3341", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00135", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e3345", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3345", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c949937b-c669-41ab-a5d6-1f93e58d4af8", + "Position": { + "x": 26.467, + "y": -2.49, + "z": -34.414 + }, + "Rotation": 82.28416, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00131", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 2 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3347", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3347", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 + { + "Id": "cbe988f1-2264-414f-b070-79434b27a4ca", + "Position": { + "x": 58.204, + "y": -2.63900042, + "z": 6.1590004 + }, + "Rotation": 1.51046038, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3349", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb702ec0584b53a0e3347", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "cca16615-941d-4b07-a88f-4064628c1581", + "Position": { + "x": 35.924, + "y": 4.55418539, + "z": 35.339 + }, + "Rotation": 56.28309, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 21.1 } }, - { - "_id": "66cbb702ec0584b53a0e334b", - "_tpl": "5fbcc429900b1d5091531dd7", - "parentId": "66cbb702ec0584b53a0e3347", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 2 + }, + { + "Id": "d2b48374-53d1-45a7-a3d2-5e1fc58a8499", + "Position": { + "x": 20.348999, + "y": -2.668999, + "z": -13.374 + }, + "Rotation": 199.173172, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e334d", - "_tpl": "5ea17bbc09aa976f2e7a51cd", - "parentId": "66cbb702ec0584b53a0e3347", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d2bb26d4-959f-478f-92ad-6adedf2dc512", + "Position": { + "x": 30.758, + "y": 0.26, + "z": 15.164 + }, + "Rotation": 184.842667, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 21.1 } }, - { - "_id": "66cbb702ec0584b53a0e334f", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbb702ec0584b53a0e3347", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 4 + }, + { + "Id": "d2bc609f-cfaf-421a-8a02-a535e2b25d35", + "Position": { + "x": 52.18, + "y": 0.101000071, + "z": 23.4599972 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3351", - "_tpl": "5c05413a0db834001c390617", - "parentId": "66cbb702ec0584b53a0e3347", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00148", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e3353", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3353", - "_tpl": "66acff0a1d8e1083b303f5af", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d2f072c1-9cdc-4d5e-9102-cd77d9edf626", + "Position": { + "x": -33.998188, + "y": 1.08018088, + "z": 49.9939041 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00105", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3355", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3355", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d6564897-4b3e-4b7e-9b56-34cb3b9a235d", + "Position": { + "x": 18.6309986, + "y": -2.668999, + "z": -13.999999 + }, + "Rotation": 119.999939, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3357", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb702ec0584b53a0e3355", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d685da1e-6b1e-45fb-8e31-e3a42a382fed", + "Position": { + "x": 50.7651863, + "y": 0.101000071, + "z": 18.0493526 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3359", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbb702ec0584b53a0e3355", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00111", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e335b", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e335b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d7e47ba9-1862-4070-95de-9a9b2f0e46ff", + "Position": { + "x": 44.33721, + "y": 0.102999926, + "z": 21.7640057 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e335d", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb702ec0584b53a0e335b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d7fc05a2-a7d9-494a-af5c-e092bb560bb9", + "Position": { + "x": 48.5268364, + "y": 0.102999926, + "z": 16.6403866 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e335f", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbb702ec0584b53a0e335b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "da289682-cef5-4ae6-94bb-a2b80705906e", + "Position": { + "x": -35.81619, + "y": 1.08018088, + "z": 45.3069 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3361", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb702ec0584b53a0e335b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_LexOs_blockpost_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3363", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3363", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "de479fb9-789f-499b-ac6b-0530fab5235b", + "Position": { + "x": -32.087, + "y": -2.581647, + "z": 29.9733315 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 27 } }, - { - "_id": "66cbb702ec0584b53a0e3365", - "_tpl": "62a09f32621468534a797acb", - "parentId": "66cbb702ec0584b53a0e3363", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00094", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 5 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3367", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3367", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e3369", - "_tpl": "5e54f62086f774219b0f1937", - "parentId": "66cbb702ec0584b53a0e3367", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "Id": "e0f65b5b-c67b-4e15-a102-f92bbdf95f65", + "Position": { + "x": 15.502, + "y": 4.571, + "z": 36.609 + }, + "Rotation": 0.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e336b", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb702ec0584b53a0e3367", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e336d", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e336d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e336f", - "_tpl": "55d45f484bdc2d972f8b456d", - "parentId": "66cbb702ec0584b53a0e336d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "Id": "e1be22a2-9bba-40b5-a546-3bf6268b60cf", + "Position": { + "x": 57.079, + "y": -2.63900042, + "z": 7.11500025 + }, + "Rotation": 288.1994, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3371", - "_tpl": "5e208b9842457a4a7a33d074", - "parentId": "66cbb702ec0584b53a0e336d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e1dbe2e4-626f-4205-b71e-5f640eb764ac", + "Position": { + "x": 3.709, + "y": -2.639, + "z": 48.036 + }, + "Rotation": 344.457062, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3373", - "_tpl": "5c0517910db83400232ffee5", - "parentId": "66cbb702ec0584b53a0e336d", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00025", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3375", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3375", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e33e5a4b-4c9e-46f9-b1df-5e9281746f58", + "Position": { + "x": 45.57, + "y": 0.05000019, + "z": 18.83 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3377", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbb702ec0584b53a0e3375", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00114", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3379", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3379", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e5cd7bad-0f60-4cc2-bdd9-8a8943232b01", + "Position": { + "x": -22.174, + "y": 2.729, + "z": 29.192 + }, + "Rotation": 89.99999, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e337b", - "_tpl": "5af0548586f7743a532b7e99", - "parentId": "66cbb702ec0584b53a0e3379", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e60d8dce-ee35-4b30-9c3a-afddf4c5445e", + "Position": { + "x": 13.76, + "y": 1.1, + "z": 54.64 + }, + "Rotation": 123.00354, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e337d", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66cbb702ec0584b53a0e3379", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00073", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e337f", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e337f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ea010f6f-4860-4339-b576-09439f8f4c3a", + "Position": { + "x": -5.58, + "y": -2.598, + "z": 14.757 + }, + "Rotation": 33.10973, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3381", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb702ec0584b53a0e337f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "eb5c4efc-759f-4ff9-8a73-8cd3eb0eca03", + "Position": { + "x": 55.517, + "y": -2.63900042, + "z": 6.433 + }, + "Rotation": 300.7341, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3383", - "_tpl": "619cbfccbedcde2f5b3f7bdd", - "parentId": "66cbb702ec0584b53a0e337f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00019", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3385", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3385", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "efb39132-1eff-4655-8fb0-d795f8f98eb3", + "Position": { + "x": 31.781, + "y": 0.119, + "z": 19.447 + }, + "Rotation": 271.344177, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3387", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb702ec0584b53a0e3385", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3389", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3389", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f0864450-ffa8-4d7e-aa93-59ea6b218641", + "Position": { + "x": -22.174, + "y": 2.729, + "z": 25.5719986 + }, + "Rotation": 89.99999, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e338b", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb702ec0584b53a0e3389", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f23f74fc-1c16-41b9-aeeb-0ca222222cbc", + "Position": { + "x": -0.128999949, + "y": -2.639, + "z": 48.722 + }, + "Rotation": 50.8312836, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e338d", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbb702ec0584b53a0e3389", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e338f", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e338f", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f248ad45-3889-4308-bd40-091b1f6a0492", + "Position": { + "x": -35.4011879, + "y": 1.08018088, + "z": 46.4789047 + }, + "Rotation": 96.73777, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3391", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb702ec0584b53a0e338f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f3c6d9ee-ca4e-44ca-abdf-0622a8249f1d", + "Position": { + "x": -22.174, + "y": 2.729, + "z": 31.529 + }, + "Rotation": 89.99999, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3393", - "_tpl": "5c165d832e2216398b5a7e36", - "parentId": "66cbb702ec0584b53a0e338f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f6276290-95d6-4d35-9b1a-53e1db1c08ec", + "Position": { + "x": 15.0, + "y": 0.1483535, + "z": 3.79 + }, + "Rotation": 232.964813, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 41.97 } }, - { - "_id": "66cbb702ec0584b53a0e3395", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb702ec0584b53a0e338f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 2 + }, + { + "Id": "f8efba5d-56be-4091-b537-c97e88b031f2", + "Position": { + "x": 45.3103752, + "y": 0.0729999542, + "z": 24.5736217 + }, + "Rotation": 269.225647, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e3397", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbb702ec0584b53a0e338f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 53 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00031", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3399", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3399", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fca84a73-902f-4c3e-b0ce-05f4348d2e12", + "Position": { + "x": 49.05881, + "y": 0.11818099, + "z": -23.5911 + }, + "Rotation": 3.0047307, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e339b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb702ec0584b53a0e3399", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1012 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e339d", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e339d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "feea31cd-8a3f-43a5-839f-fd2276a2cce8", + "Position": { + "x": 61.5259972, + "y": -2.63900042, + "z": 6.418 + }, + "Rotation": 24.9815483, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e339e", - "_tpl": "59984ab886f7743e98271174", - "parentId": "66cbb702ec0584b53a0e339d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ff7de580-4ba2-4d00-bff0-13cb6717091c", + "Position": { + "x": 47.8188133, + "y": 0.11818099, + "z": -24.2451 + }, + "Rotation": 3.0047307, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Factory", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb702ec0584b53a0e339f", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb702ec0584b53a0e339e", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb702ec0584b53a0e33a0", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb702ec0584b53a0e339e", - "slotId": "mod_stock" - }, - { - "_id": "66cbb702ec0584b53a0e33a1", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbb702ec0584b53a0e339e", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb702ec0584b53a0e33a7", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb702ec0584b53a0e33a1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15.0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ff9c3127-2acd-48fe-a635-b1ab99d0bfa7", + "Position": { + "x": 2.104, + "y": 1.10050392, + "z": 63.056 + }, + "Rotation": 257.797272, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30.1 } }, - { - "_id": "66cbb702ec0584b53a0e33a2", - "_tpl": "5998597786f77414ea6da093", - "parentId": "66cbb702ec0584b53a0e339e", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb702ec0584b53a0e33a3", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb702ec0584b53a0e339e", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb702ec0584b53a0e33a4", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb702ec0584b53a0e339e", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb702ec0584b53a0e33a5", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb702ec0584b53a0e339e", - "slotId": "mod_gas_block" + "BotZoneName": "", + "CorePointId": 5 + } + ], + "maxItemCountInLocation": [ + { + "TemplateId": "54009119af1c881c07000029", + "Value": 0 + } + ], + "BossLocationSpawn": [ + { + "BossName": "bossTagilla", + "BossChance": 25.0, + "BossZone": "BotZone", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "followerBully", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0", + "Time": -1.0, + "RandomTimeSpawn": false, + "Supports": null, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ] + }, + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "RandomTimeSpawn": false, + "Supports": null, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ] + }, + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "RandomTimeSpawn": false, + "Supports": null, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ] + }, + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "RandomTimeSpawn": false, + "Supports": null, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ] + }, + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "RandomTimeSpawn": false, + "Supports": null, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ] + } + ], + "MatchMakerMinPlayersByWaitTime": [ + { + "time": 60, + "minPlayers": 4 + }, + { + "time": 120, + "minPlayers": 3 + }, + { + "time": 250, + "minPlayers": 2 + }, + { + "time": 330, + "minPlayers": 1 + } + ], + "transits": [ + { + "id": 12, + "active": true, + "name": "FAC_TRANSIT_12", + "location": "Woods", + "description": "FAC_TRANSIT_12_DESC", + "activateAfterSec": 240, + "target": "5704e3c2d2720bac5b8b4567", + "time": 30, + "conditions": "FAC_TRANSIT_12_COND" + }, + { + "id": 13, + "active": false, + "name": "FAC_TRANSIT_13", + "location": "bigmap", + "description": "FAC_TRANSIT_13_DESC", + "activateAfterSec": 240, + "target": "56f40101d2720b2a4d8b45d6", + "time": 30, + "conditions": "FAC_TRANSIT_13_COND" + }, + { + "id": 14, + "active": false, + "name": "FAC_TRANSIT_14", + "location": "laboratory", + "description": "FAC_TRANSIT_14_DESC", + "activateAfterSec": 240, + "target": "5b0fc42d86f7744a585f9105", + "time": 30, + "conditions": "FAC_TRANSIT_14_COND" + } + ], + "Id": "factory4_day", + "_Id": "55f2d3fd4bdc2d5f408b4567", + "Loot": [ + { + "Id": "container_Factory_Rework_DesignStuff_00055", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33a6", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb702ec0584b53a0e33a5", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33aa", - "_tpl": "5c1260dc86f7746b106e8748", - "parentId": "66cbb702ec0584b53a0e339d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3335", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3335", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e33ab", - "_tpl": "5c0d688c86f77413ae3407b2", - "parentId": "66cbb702ec0584b53a0e33aa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e33ad", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33ad", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e33af", - "_tpl": "5fc3e466187fea44d52eda90", - "parentId": "66cbb702ec0584b53a0e33ad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb702ec0584b53a0e3336", + "_tpl": "5abcbc27d8ce8700182eceeb", + "parentId": "66cbb702ec0584b53a0e3335", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e33b0", - "_tpl": "669fa39b48fc9f8db6035a0c", - "parentId": "66cbb702ec0584b53a0e33ad", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb702ec0584b53a0e3337", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "66cbb702ec0584b53a0e3336", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb702ec0584b53a0e3338", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "66cbb702ec0584b53a0e3337", + "slotId": "mod_handguard" }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb702ec0584b53a0e3339", + "_tpl": "59e61eb386f77440d64f5daf", + "parentId": "66cbb702ec0584b53a0e3336", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb702ec0584b53a0e333a", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "66cbb702ec0584b53a0e3336", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "66cbb702ec0584b53a0e333b", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "66cbb702ec0584b53a0e3336", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb702ec0584b53a0e333c", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "66cbb702ec0584b53a0e3336", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb702ec0584b53a0e333d", + "_tpl": "5abcd472d8ce8700166032ae", + "parentId": "66cbb702ec0584b53a0e3336", + "slotId": "mod_stock_akms" + }, + { + "_id": "66cbb702ec0584b53a0e333e", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "66cbb702ec0584b53a0e3336", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb702ec0584b53a0e333f", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb702ec0584b53a0e333e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 29.0 } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33b1", - "_tpl": "669fa47da0bab4e8510d9526", - "parentId": "66cbb702ec0584b53a0e33b0", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb702ec0584b53a0e33b2", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbb702ec0584b53a0e33b1", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb702ec0584b53a0e33b3", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66cbb702ec0584b53a0e33b0", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbb702ec0584b53a0e33b4", - "_tpl": "669fa4d97a09bc295603b496", - "parentId": "66cbb702ec0584b53a0e33b0", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb702ec0584b53a0e33b5", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbb702ec0584b53a0e33b4", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb702ec0584b53a0e33b6", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbb702ec0584b53a0e33b0", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb702ec0584b53a0e33b7", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66cbb702ec0584b53a0e33b6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33b9", - "_tpl": "5e00cdd986f7747473332240", - "parentId": "66cbb702ec0584b53a0e33ad", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3341", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3341", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e33bb", - "_tpl": "65293c7a17e14363030ad308", - "parentId": "66cbb702ec0584b53a0e33ad", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3343", + "_tpl": "5b800ebc86f774394e230a90", + "parentId": "66cbb702ec0584b53a0e3341", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e33bd", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33bd", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00135", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33bf", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb702ec0584b53a0e33bd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e33c1", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33c1", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33c3", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb702ec0584b53a0e33c1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e3345", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3345", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00133", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e33c5", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33c5", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00131", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33c7", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "parentId": "66cbb702ec0584b53a0e33c5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33c9", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb702ec0584b53a0e33c5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3347", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3347", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3349", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb702ec0584b53a0e3347", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e334b", + "_tpl": "5fbcc429900b1d5091531dd7", + "parentId": "66cbb702ec0584b53a0e3347", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e334d", + "_tpl": "5ea17bbc09aa976f2e7a51cd", + "parentId": "66cbb702ec0584b53a0e3347", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e334f", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbb702ec0584b53a0e3347", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3351", + "_tpl": "5c05413a0db834001c390617", + "parentId": "66cbb702ec0584b53a0e3347", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00148", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33cb", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbb702ec0584b53a0e33c5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e3353", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3353", + "_tpl": "66acff0a1d8e1083b303f5af", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e33cd", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33cd", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00105", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33cf", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbb702ec0584b53a0e33cd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3355", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3355", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3357", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb702ec0584b53a0e3355", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3359", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbb702ec0584b53a0e3355", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00111", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33d1", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb702ec0584b53a0e33cd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e335b", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e335b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e335d", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb702ec0584b53a0e335b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e335f", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbb702ec0584b53a0e335b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3361", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb702ec0584b53a0e335b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_LexOs_blockpost_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33d3", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "66cbb702ec0584b53a0e33cd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3363", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3363", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3365", + "_tpl": "62a09f32621468534a797acb", + "parentId": "66cbb702ec0584b53a0e3363", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e33d5", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33d5", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00094", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33d7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb702ec0584b53a0e33d5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 789 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3367", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3367", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3369", + "_tpl": "5e54f62086f774219b0f1937", + "parentId": "66cbb702ec0584b53a0e3367", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e336b", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb702ec0584b53a0e3367", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00137", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e33d9", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33d9", - "_tpl": "66acff0a1d8e1083b303f5af", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33da", - "_tpl": "669fa39b48fc9f8db6035a0c", - "parentId": "66cbb702ec0584b53a0e33d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e336d", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e336d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e336f", + "_tpl": "55d45f484bdc2d972f8b456d", + "parentId": "66cbb702ec0584b53a0e336d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3371", + "_tpl": "5e208b9842457a4a7a33d074", + "parentId": "66cbb702ec0584b53a0e336d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb702ec0584b53a0e3373", + "_tpl": "5c0517910db83400232ffee5", + "parentId": "66cbb702ec0584b53a0e336d", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00025", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33db", - "_tpl": "669fa47da0bab4e8510d9526", - "parentId": "66cbb702ec0584b53a0e33da", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33dc", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbb702ec0584b53a0e33db", - "slotId": "mod_sight_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3375", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3375", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3377", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbb702ec0584b53a0e3375", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00114", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33dd", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66cbb702ec0584b53a0e33da", - "slotId": "mod_pistolgrip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33de", - "_tpl": "669fa4d97a09bc295603b496", - "parentId": "66cbb702ec0584b53a0e33da", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb702ec0584b53a0e33df", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbb702ec0584b53a0e33de", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb702ec0584b53a0e33e0", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbb702ec0584b53a0e33da", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb702ec0584b53a0e33e1", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66cbb702ec0584b53a0e33e0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 - } - }, - { - "_id": "66cbb702ec0584b53a0e33e4", - "_tpl": "6579846c1ec1943afb14c15a", - "parentId": "66cbb702ec0584b53a0e33d9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3379", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3379", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e33e5", - "_tpl": "6576f93989f0062e741ba952", - "parentId": "66cbb702ec0584b53a0e33e4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + { + "_id": "66cbb702ec0584b53a0e337b", + "_tpl": "5af0548586f7743a532b7e99", + "parentId": "66cbb702ec0584b53a0e3379", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e337d", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66cbb702ec0584b53a0e3379", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00138", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e33e7", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33e7", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00073", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33e9", - "_tpl": "5a9d6d34a2750c00141e07da", - "parentId": "66cbb702ec0584b53a0e33e7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33eb", - "_tpl": "59ecc28286f7746d7a68aa8c", - "parentId": "66cbb702ec0584b53a0e33e7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00112", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e33ed", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33ed", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e337f", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e337f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3381", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb702ec0584b53a0e337f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3383", + "_tpl": "619cbfccbedcde2f5b3f7bdd", + "parentId": "66cbb702ec0584b53a0e337f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e33ef", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33ef", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00019", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33f1", - "_tpl": "5e2af29386f7746d4159f077", - "parentId": "66cbb702ec0584b53a0e33ef", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33f3", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb702ec0584b53a0e33ef", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3385", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3385", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3387", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb702ec0584b53a0e3385", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_Background_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e33f5", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33f5", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33f7", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb702ec0584b53a0e33f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33fa", - "_tpl": "57372ebf2459776862260582", - "parentId": "66cbb702ec0584b53a0e33f5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3389", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3389", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e33fb", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb702ec0584b53a0e33fa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + { + "_id": "66cbb702ec0584b53a0e338b", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb702ec0584b53a0e3389", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e338d", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbb702ec0584b53a0e3389", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00130", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e33fd", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e33fd", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e33ff", - "_tpl": "5bc9b9ecd4351e3bac122519", - "parentId": "66cbb702ec0584b53a0e33fd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00086", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3401", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3401", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3403", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb702ec0584b53a0e3401", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e338f", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e338f", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3391", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb702ec0584b53a0e338f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3393", + "_tpl": "5c165d832e2216398b5a7e36", + "parentId": "66cbb702ec0584b53a0e338f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3395", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb702ec0584b53a0e338f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3397", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbb702ec0584b53a0e338f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 53 + } } - } - ] - }, - { - "Id": "Lootable_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3405", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3405", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00031", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3407", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb702ec0584b53a0e3405", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 734 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3409", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3409", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e340b", - "_tpl": "5b30ac585acfc433000eb79c", - "parentId": "66cbb702ec0584b53a0e3409", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3399", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3399", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e340d", - "_tpl": "56e05b06d2720bb2668b4586", - "parentId": "66cbb702ec0584b53a0e3409", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e339b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb702ec0584b53a0e3399", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1012 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e340f", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e340f", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3411", - "_tpl": "5ba26835d4351e0035628ff5", - "parentId": "66cbb702ec0584b53a0e340f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 57 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e339d", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e339d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e339e", + "_tpl": "59984ab886f7743e98271174", + "parentId": "66cbb702ec0584b53a0e339d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb702ec0584b53a0e339f", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb702ec0584b53a0e339e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb702ec0584b53a0e33a0", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb702ec0584b53a0e339e", + "slotId": "mod_stock" + }, + { + "_id": "66cbb702ec0584b53a0e33a1", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbb702ec0584b53a0e339e", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb702ec0584b53a0e33a7", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb702ec0584b53a0e33a1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15.0 + } + }, + { + "_id": "66cbb702ec0584b53a0e33a2", + "_tpl": "5998597786f77414ea6da093", + "parentId": "66cbb702ec0584b53a0e339e", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb702ec0584b53a0e33a3", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb702ec0584b53a0e339e", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb702ec0584b53a0e33a4", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb702ec0584b53a0e339e", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb702ec0584b53a0e33a5", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb702ec0584b53a0e339e", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb702ec0584b53a0e33a6", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb702ec0584b53a0e33a5", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb702ec0584b53a0e33aa", + "_tpl": "5c1260dc86f7746b106e8748", + "parentId": "66cbb702ec0584b53a0e339d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33ab", + "_tpl": "5c0d688c86f77413ae3407b2", + "parentId": "66cbb702ec0584b53a0e33aa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3413", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3413", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3415", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb702ec0584b53a0e3413", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 21 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e33ad", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33ad", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33af", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "66cbb702ec0584b53a0e33ad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33b0", + "_tpl": "669fa39b48fc9f8db6035a0c", + "parentId": "66cbb702ec0584b53a0e33ad", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb702ec0584b53a0e33b1", + "_tpl": "669fa47da0bab4e8510d9526", + "parentId": "66cbb702ec0584b53a0e33b0", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb702ec0584b53a0e33b2", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbb702ec0584b53a0e33b1", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb702ec0584b53a0e33b3", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66cbb702ec0584b53a0e33b0", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb702ec0584b53a0e33b4", + "_tpl": "669fa4d97a09bc295603b496", + "parentId": "66cbb702ec0584b53a0e33b0", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb702ec0584b53a0e33b5", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbb702ec0584b53a0e33b4", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb702ec0584b53a0e33b6", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbb702ec0584b53a0e33b0", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb702ec0584b53a0e33b7", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66cbb702ec0584b53a0e33b6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2.0 + } + }, + { + "_id": "66cbb702ec0584b53a0e33b9", + "_tpl": "5e00cdd986f7747473332240", + "parentId": "66cbb702ec0584b53a0e33ad", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33bb", + "_tpl": "65293c7a17e14363030ad308", + "parentId": "66cbb702ec0584b53a0e33ad", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3417", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3417", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3419", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb702ec0584b53a0e3417", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e341b", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb702ec0584b53a0e3417", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e33bd", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33bd", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33bf", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb702ec0584b53a0e33bd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e341d", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e341d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e341f", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb702ec0584b53a0e341d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3421", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3421", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3423", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb702ec0584b53a0e3421", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e33c1", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33c1", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33c3", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb702ec0584b53a0e33c1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00115", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3425", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3425", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00133", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3427", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb702ec0584b53a0e3425", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3429", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb702ec0584b53a0e3425", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e33c5", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33c5", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e342b", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb702ec0584b53a0e3425", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e33c7", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "parentId": "66cbb702ec0584b53a0e33c5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33c9", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb702ec0584b53a0e33c5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33cb", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbb702ec0584b53a0e33c5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e342d", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e342d", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e342f", - "_tpl": "5d235a5986f77443f6329bc6", - "parentId": "66cbb702ec0584b53a0e342d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00085", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3431", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3431", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3433", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbb702ec0584b53a0e3431", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e33cd", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33cd", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33cf", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbb702ec0584b53a0e33cd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33d1", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb702ec0584b53a0e33cd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33d3", + "_tpl": "619256e5f8af2c1a4e1f5d92", + "parentId": "66cbb702ec0584b53a0e33cd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3435", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3435", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3437", - "_tpl": "5cadf6eeae921500134b2799", - "parentId": "66cbb702ec0584b53a0e3435", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 25 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3439", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66cbb702ec0584b53a0e3435", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e33d5", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33d5", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e343b", - "_tpl": "5a27bad7c4a282000b15184b", - "parentId": "66cbb702ec0584b53a0e3435", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e33d7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb702ec0584b53a0e33d5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 789 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e343d", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e343d", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00137", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e343f", - "_tpl": "5ea034eb5aad6446a939737b", - "parentId": "66cbb702ec0584b53a0e343d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3441", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3441", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3443", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb702ec0584b53a0e3441", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e33d9", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33d9", + "_tpl": "66acff0a1d8e1083b303f5af", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e3445", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb702ec0584b53a0e3441", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb702ec0584b53a0e33da", + "_tpl": "669fa39b48fc9f8db6035a0c", + "parentId": "66cbb702ec0584b53a0e33d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb702ec0584b53a0e33db", + "_tpl": "669fa47da0bab4e8510d9526", + "parentId": "66cbb702ec0584b53a0e33da", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb702ec0584b53a0e33dc", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbb702ec0584b53a0e33db", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb702ec0584b53a0e33dd", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66cbb702ec0584b53a0e33da", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb702ec0584b53a0e33de", + "_tpl": "669fa4d97a09bc295603b496", + "parentId": "66cbb702ec0584b53a0e33da", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb702ec0584b53a0e33df", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbb702ec0584b53a0e33de", + "slotId": "mod_sight_rear" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e33e0", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbb702ec0584b53a0e33da", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb702ec0584b53a0e33e1", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66cbb702ec0584b53a0e33e0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66cbb702ec0584b53a0e33e4", + "_tpl": "6579846c1ec1943afb14c15a", + "parentId": "66cbb702ec0584b53a0e33d9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33e5", + "_tpl": "6576f93989f0062e741ba952", + "parentId": "66cbb702ec0584b53a0e33e4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00138", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3447", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb702ec0584b53a0e3441", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e33e7", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33e7", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33e9", + "_tpl": "5a9d6d34a2750c00141e07da", + "parentId": "66cbb702ec0584b53a0e33e7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33eb", + "_tpl": "59ecc28286f7746d7a68aa8c", + "parentId": "66cbb702ec0584b53a0e33e7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3449", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3449", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00112", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e344b", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb702ec0584b53a0e3449", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e33ed", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33ed", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_ProfileEditor_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e344d", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e344d", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e344f", - "_tpl": "62a5c333ec21e50cad3b5dc6", - "parentId": "66cbb702ec0584b53a0e344d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e33ef", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33ef", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33f1", + "_tpl": "5e2af29386f7746d4159f077", + "parentId": "66cbb702ec0584b53a0e33ef", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e3451", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66cbb702ec0584b53a0e344d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 45 + { + "_id": "66cbb702ec0584b53a0e33f3", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb702ec0584b53a0e33ef", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00079", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3453", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3453", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_Background_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3456", - "_tpl": "573725b0245977612125bae2", - "parentId": "66cbb702ec0584b53a0e3453", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e33f5", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33f5", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33f7", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb702ec0584b53a0e33f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33fa", + "_tpl": "57372ebf2459776862260582", + "parentId": "66cbb702ec0584b53a0e33f5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e33fb", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb702ec0584b53a0e33fa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00130", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3457", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66cbb702ec0584b53a0e3456", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3459", - "_tpl": "65f05b9d39dab9e9ec049cfd", - "parentId": "66cbb702ec0584b53a0e3453", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e33fd", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e33fd", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e33ff", + "_tpl": "5bc9b9ecd4351e3bac122519", + "parentId": "66cbb702ec0584b53a0e33fd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00056", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e345b", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e345b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00086", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e345e", - "_tpl": "5c12619186f7743f871c8a32", - "parentId": "66cbb702ec0584b53a0e345b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3401", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3401", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3403", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb702ec0584b53a0e3401", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e345f", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbb702ec0584b53a0e345e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3461", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbb702ec0584b53a0e345b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3405", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3405", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 25 - } - }, - { - "_id": "66cbb702ec0584b53a0e3463", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66cbb702ec0584b53a0e345b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3407", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb702ec0584b53a0e3405", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 734 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00127", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3465", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3465", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3467", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66cbb702ec0584b53a0e3465", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3469", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb702ec0584b53a0e3465", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3409", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3409", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e346b", - "_tpl": "62a0a0bb621468534a797ad5", - "parentId": "66cbb702ec0584b53a0e3465", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e340b", + "_tpl": "5b30ac585acfc433000eb79c", + "parentId": "66cbb702ec0584b53a0e3409", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e340d", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "66cbb702ec0584b53a0e3409", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e346d", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e346d", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e346f", - "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "66cbb702ec0584b53a0e346d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3471", - "_tpl": "5a16bb52fcdbcb001a3b00dc", - "parentId": "66cbb702ec0584b53a0e346d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e340f", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e340f", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e3473", - "_tpl": "59e0bdb186f774156f04ce82", - "parentId": "66cbb702ec0584b53a0e346d", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3411", + "_tpl": "5ba26835d4351e0035628ff5", + "parentId": "66cbb702ec0584b53a0e340f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 57 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00142", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3475", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3475", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3477", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbb702ec0584b53a0e3475", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3478", - "_tpl": "5ac66d9b5acfc4001633997a", - "parentId": "66cbb702ec0584b53a0e3475", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3413", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3413", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3415", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb702ec0584b53a0e3413", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 21 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3479", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb702ec0584b53a0e3478", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb702ec0584b53a0e347a", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb702ec0584b53a0e3479", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb702ec0584b53a0e347b", - "_tpl": "5ac72e945acfc43f3b691116", - "parentId": "66cbb702ec0584b53a0e3478", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb702ec0584b53a0e347c", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb702ec0584b53a0e3478", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb702ec0584b53a0e347d", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb702ec0584b53a0e3478", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb702ec0584b53a0e347e", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb702ec0584b53a0e3478", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb702ec0584b53a0e347f", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb702ec0584b53a0e3478", - "slotId": "mod_stock" - }, - { - "_id": "66cbb702ec0584b53a0e3480", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbb702ec0584b53a0e3478", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3481", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb702ec0584b53a0e3480", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 22.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3417", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3417", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3419", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb702ec0584b53a0e3417", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e341b", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb702ec0584b53a0e3417", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00087", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3483", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3483", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3485", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbb702ec0584b53a0e3483", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3487", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbb702ec0584b53a0e3483", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e341d", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e341d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e341f", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb702ec0584b53a0e341d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00147", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3489", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3489", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e348b", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb702ec0584b53a0e3489", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e348d", - "_tpl": "5d1b385e86f774252167b98a", - "parentId": "66cbb702ec0584b53a0e3489", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3421", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3421", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e348f", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb702ec0584b53a0e3489", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3423", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb702ec0584b53a0e3421", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Eugene_Temp_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e3491", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3491", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00115", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3493", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbb702ec0584b53a0e3491", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3425", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3425", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3427", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb702ec0584b53a0e3425", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3429", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb702ec0584b53a0e3425", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e342b", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb702ec0584b53a0e3425", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3495", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb702ec0584b53a0e3491", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 613 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3497", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb702ec0584b53a0e3491", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e342d", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e342d", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 903 + { + "_id": "66cbb702ec0584b53a0e342f", + "_tpl": "5d235a5986f77443f6329bc6", + "parentId": "66cbb702ec0584b53a0e342d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00085", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3499", - "_tpl": "590c37d286f77443be3d7827", - "parentId": "66cbb702ec0584b53a0e3491", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e349b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb702ec0584b53a0e3491", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 723 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3431", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3431", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3433", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbb702ec0584b53a0e3431", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00119", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e349d", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e349d", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e349f", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb702ec0584b53a0e349d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34a1", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb702ec0584b53a0e349d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3435", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3435", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3437", + "_tpl": "5cadf6eeae921500134b2799", + "parentId": "66cbb702ec0584b53a0e3435", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 25 + } + }, + { + "_id": "66cbb702ec0584b53a0e3439", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66cbb702ec0584b53a0e3435", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e343b", + "_tpl": "5a27bad7c4a282000b15184b", + "parentId": "66cbb702ec0584b53a0e3435", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34a3", - "_tpl": "5d6fc78386f77449d825f9dc", - "parentId": "66cbb702ec0584b53a0e349d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e343d", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e343d", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e343f", + "_tpl": "5ea034eb5aad6446a939737b", + "parentId": "66cbb702ec0584b53a0e343d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34a5", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbb702ec0584b53a0e349d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 2 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3441", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3441", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3443", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb702ec0584b53a0e3441", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3445", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb702ec0584b53a0e3441", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3447", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb702ec0584b53a0e3441", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00100", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e34a7", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34a7", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34a9", - "_tpl": "5755383e24597772cb798966", - "parentId": "66cbb702ec0584b53a0e34a7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3449", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3449", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e344b", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb702ec0584b53a0e3449", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e34ab", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34ab", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_ProfileEditor_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34ad", - "_tpl": "5bae13bad4351e00320204af", - "parentId": "66cbb702ec0584b53a0e34ab", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e344d", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e344d", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e344f", + "_tpl": "62a5c333ec21e50cad3b5dc6", + "parentId": "66cbb702ec0584b53a0e344d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3451", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66cbb702ec0584b53a0e344d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 45 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00079", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34af", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbb702ec0584b53a0e34ab", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3453", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3453", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3456", + "_tpl": "573725b0245977612125bae2", + "parentId": "66cbb702ec0584b53a0e3453", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3457", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66cbb702ec0584b53a0e3456", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbb702ec0584b53a0e3459", + "_tpl": "65f05b9d39dab9e9ec049cfd", + "parentId": "66cbb702ec0584b53a0e3453", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e34b1", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34b1", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00056", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34b3", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "66cbb702ec0584b53a0e34b1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e345b", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e345b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e345e", + "_tpl": "5c12619186f7743f871c8a32", + "parentId": "66cbb702ec0584b53a0e345b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e345f", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbb702ec0584b53a0e345e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } + }, + { + "_id": "66cbb702ec0584b53a0e3461", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbb702ec0584b53a0e345b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 25 + } }, - "upd": { - "StackObjectsCount": 15 + { + "_id": "66cbb702ec0584b53a0e3463", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66cbb702ec0584b53a0e345b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00127", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34b5", - "_tpl": "5ac78eaf5acfc4001926317a", - "parentId": "66cbb702ec0584b53a0e34b1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3465", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3465", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3467", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66cbb702ec0584b53a0e3465", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3469", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb702ec0584b53a0e3465", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e346b", + "_tpl": "62a0a0bb621468534a797ad5", + "parentId": "66cbb702ec0584b53a0e3465", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34b7", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb702ec0584b53a0e34b1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 58 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e346d", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e346d", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e346f", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "66cbb702ec0584b53a0e346d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3471", + "_tpl": "5a16bb52fcdbcb001a3b00dc", + "parentId": "66cbb702ec0584b53a0e346d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3473", + "_tpl": "59e0bdb186f774156f04ce82", + "parentId": "66cbb702ec0584b53a0e346d", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e34b9", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34b9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00142", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34bb", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb702ec0584b53a0e34b9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3475", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3475", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3477", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbb702ec0584b53a0e3475", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3478", + "_tpl": "5ac66d9b5acfc4001633997a", + "parentId": "66cbb702ec0584b53a0e3475", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb702ec0584b53a0e3479", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb702ec0584b53a0e3478", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb702ec0584b53a0e347a", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb702ec0584b53a0e3479", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb702ec0584b53a0e347b", + "_tpl": "5ac72e945acfc43f3b691116", + "parentId": "66cbb702ec0584b53a0e3478", + "slotId": "mod_muzzle" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e34bd", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb702ec0584b53a0e34b9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e347c", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb702ec0584b53a0e3478", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb702ec0584b53a0e347d", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb702ec0584b53a0e3478", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb702ec0584b53a0e347e", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb702ec0584b53a0e3478", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb702ec0584b53a0e347f", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb702ec0584b53a0e3478", + "slotId": "mod_stock" + }, + { + "_id": "66cbb702ec0584b53a0e3480", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbb702ec0584b53a0e3478", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb702ec0584b53a0e3481", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb702ec0584b53a0e3480", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 22.0 + } } - } - ] - }, - { - "Id": "Lootable_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e34bf", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34bf", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00087", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34c1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb702ec0584b53a0e34bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 992 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34c3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb702ec0584b53a0e34bf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3483", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3483", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1052 - } - }, - { - "_id": "66cbb702ec0584b53a0e34c5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb702ec0584b53a0e34bf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb702ec0584b53a0e3485", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbb702ec0584b53a0e3483", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 694 - } - }, - { - "_id": "66cbb702ec0584b53a0e34c7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb702ec0584b53a0e34bf", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 587 + { + "_id": "66cbb702ec0584b53a0e3487", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbb702ec0584b53a0e3483", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00140", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e34c9", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34c9", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00147", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34cb", - "_tpl": "5947db3f86f77447880cf76f", - "parentId": "66cbb702ec0584b53a0e34c9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e34cd", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34cd", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34cf", - "_tpl": "5aa2b9ede5b5b000137b758b", - "parentId": "66cbb702ec0584b53a0e34cd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3489", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3489", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e34d1", - "_tpl": "5bb20d92d4351e00853263eb", - "parentId": "66cbb702ec0584b53a0e34cd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e348b", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb702ec0584b53a0e3489", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e348d", + "_tpl": "5d1b385e86f774252167b98a", + "parentId": "66cbb702ec0584b53a0e3489", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e348f", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb702ec0584b53a0e3489", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e34d3", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34d3", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Eugene_Temp_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34d6", - "_tpl": "57372f5c24597769917c0131", - "parentId": "66cbb702ec0584b53a0e34d3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34d7", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbb702ec0584b53a0e34d6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e3491", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3491", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3493", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbb702ec0584b53a0e3491", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3495", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb702ec0584b53a0e3491", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 613 + } + }, + { + "_id": "66cbb702ec0584b53a0e3497", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb702ec0584b53a0e3491", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 903 + } + }, + { + "_id": "66cbb702ec0584b53a0e3499", + "_tpl": "590c37d286f77443be3d7827", + "parentId": "66cbb702ec0584b53a0e3491", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e349b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb702ec0584b53a0e3491", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 723 + } } - } - ] - }, - { - "Id": "00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e34d9", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34d9", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00119", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34db", - "_tpl": "590a373286f774287540368b", - "parentId": "66cbb702ec0584b53a0e34d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34dd", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66cbb702ec0584b53a0e34d9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e349d", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e349d", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e349f", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb702ec0584b53a0e349d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34a1", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb702ec0584b53a0e349d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34a3", + "_tpl": "5d6fc78386f77449d825f9dc", + "parentId": "66cbb702ec0584b53a0e349d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34a5", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbb702ec0584b53a0e349d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e34df", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34df", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00100", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34e1", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb702ec0584b53a0e34df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00030", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e34e3", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34e3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34e5", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb702ec0584b53a0e34e3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e34a7", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34a7", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34a9", + "_tpl": "5755383e24597772cb798966", + "parentId": "66cbb702ec0584b53a0e34a7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00029", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e34e7", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34e7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34e9", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb702ec0584b53a0e34e7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e34eb", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34eb", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34ed", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbb702ec0584b53a0e34eb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e34ab", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34ab", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34ad", + "_tpl": "5bae13bad4351e00320204af", + "parentId": "66cbb702ec0584b53a0e34ab", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34af", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbb702ec0584b53a0e34ab", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e34ef", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34ef", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34f1", - "_tpl": "591382d986f774465a6413a7", - "parentId": "66cbb702ec0584b53a0e34ef", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00144", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e34f3", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34f3", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34f5", - "_tpl": "5648b4534bdc2d3d1c8b4580", - "parentId": "66cbb702ec0584b53a0e34f3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e34b1", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34b1", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34b3", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "66cbb702ec0584b53a0e34b1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 15 + } + }, + { + "_id": "66cbb702ec0584b53a0e34b5", + "_tpl": "5ac78eaf5acfc4001926317a", + "parentId": "66cbb702ec0584b53a0e34b1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e34f7", - "_tpl": "5b432be65acfc433000ed01f", - "parentId": "66cbb702ec0584b53a0e34f3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e34b7", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb702ec0584b53a0e34b1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 58 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e34f9", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e34f9", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34fb", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb702ec0584b53a0e34f9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e34fd", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbb702ec0584b53a0e34f9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e34b9", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34b9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e34ff", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "66cbb702ec0584b53a0e34f9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e34bb", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb702ec0584b53a0e34b9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34bd", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb702ec0584b53a0e34b9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3501", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3501", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3503", - "_tpl": "590c37d286f77443be3d7827", - "parentId": "66cbb702ec0584b53a0e3501", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3505", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3505", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3507", - "_tpl": "5a9fbb74a2750c0032157181", - "parentId": "66cbb702ec0584b53a0e3505", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e34bf", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34bf", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e3509", - "_tpl": "5addbba15acfc400185c2854", - "parentId": "66cbb702ec0584b53a0e3505", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e34c1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb702ec0584b53a0e34bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 992 + } + }, + { + "_id": "66cbb702ec0584b53a0e34c3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb702ec0584b53a0e34bf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1052 + } + }, + { + "_id": "66cbb702ec0584b53a0e34c5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb702ec0584b53a0e34bf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 694 + } + }, + { + "_id": "66cbb702ec0584b53a0e34c7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb702ec0584b53a0e34bf", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 587 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e350b", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e350b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00140", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e350d", - "_tpl": "62178be9d0050232da3485d9", - "parentId": "66cbb702ec0584b53a0e350b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e350e", - "_tpl": "583990e32459771419544dd2", - "parentId": "66cbb702ec0584b53a0e350b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e34c9", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34c9", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Foldable": { - "Folded": false + { + "_id": "66cbb702ec0584b53a0e34cb", + "_tpl": "5947db3f86f77447880cf76f", + "parentId": "66cbb702ec0584b53a0e34c9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e350f", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "66cbb702ec0584b53a0e350e", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb702ec0584b53a0e3510", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "66cbb702ec0584b53a0e350e", - "slotId": "mod_stock" - }, - { - "_id": "66cbb702ec0584b53a0e3511", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb702ec0584b53a0e350e", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3516", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb702ec0584b53a0e3511", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 29.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e34cd", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34cd", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34cf", + "_tpl": "5aa2b9ede5b5b000137b758b", + "parentId": "66cbb702ec0584b53a0e34cd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34d1", + "_tpl": "5bb20d92d4351e00853263eb", + "parentId": "66cbb702ec0584b53a0e34cd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3512", - "_tpl": "57dc324a24597759501edc20", - "parentId": "66cbb702ec0584b53a0e350e", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb702ec0584b53a0e3513", - "_tpl": "57dc334d245977597164366f", - "parentId": "66cbb702ec0584b53a0e350e", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb702ec0584b53a0e3514", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "66cbb702ec0584b53a0e350e", - "slotId": "mod_gas_block" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3515", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "66cbb702ec0584b53a0e3514", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00074", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3518", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3518", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e34d3", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34d3", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34d6", + "_tpl": "57372f5c24597769917c0131", + "parentId": "66cbb702ec0584b53a0e34d3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34d7", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbb702ec0584b53a0e34d6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3519", - "_tpl": "5a154d5cfcdbcb001a3b00da", - "parentId": "66cbb702ec0584b53a0e3518", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e351a", - "_tpl": "657f8ec5f4c82973640b234c", - "parentId": "66cbb702ec0584b53a0e3519", - "slotId": "Helmet_top" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e34d9", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34d9", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34db", + "_tpl": "590a373286f774287540368b", + "parentId": "66cbb702ec0584b53a0e34d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34dd", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66cbb702ec0584b53a0e34d9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e351b", - "_tpl": "657f8f10f4c82973640b2350", - "parentId": "66cbb702ec0584b53a0e3519", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e351d", - "_tpl": "651bf5617b3b552ef6712cb7", - "parentId": "66cbb702ec0584b53a0e3518", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e34df", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34df", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e34e1", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb702ec0584b53a0e34df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00030", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e351f", - "_tpl": "5fb655b748c711690e3a8d5a", - "parentId": "66cbb702ec0584b53a0e3518", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e34e3", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34e3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e34e5", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb702ec0584b53a0e34e3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00029", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3521", - "_tpl": "634f06262e5def262d0b30ca", - "parentId": "66cbb702ec0584b53a0e3518", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e34e7", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34e7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e34e9", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb702ec0584b53a0e34e7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3523", - "_tpl": "66992f4db9f31ddda10dd1c8", - "parentId": "66cbb702ec0584b53a0e3518", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e34eb", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34eb", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34ed", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbb702ec0584b53a0e34eb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e3525", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3525", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Factory_Rework_DesignStuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e34ef", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34ef", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34f1", + "_tpl": "591382d986f774465a6413a7", + "parentId": "66cbb702ec0584b53a0e34ef", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00129", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3527", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3527", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Factory_Rework_DesignStuff_00144", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e34f3", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34f3", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34f5", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "parentId": "66cbb702ec0584b53a0e34f3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34f7", + "_tpl": "5b432be65acfc433000ed01f", + "parentId": "66cbb702ec0584b53a0e34f3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3529", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbb702ec0584b53a0e3527", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e352b", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb702ec0584b53a0e3527", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e34f9", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e34f9", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34fb", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb702ec0584b53a0e34f9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34fd", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbb702ec0584b53a0e34f9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e34ff", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "66cbb702ec0584b53a0e34f9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00132", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e352d", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e352d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e352f", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb702ec0584b53a0e352d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 30 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3531", - "_tpl": "606ee5c81246154cad35d65e", - "parentId": "66cbb702ec0584b53a0e352d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3501", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3501", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3503", + "_tpl": "590c37d286f77443be3d7827", + "parentId": "66cbb702ec0584b53a0e3501", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e3533", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3533", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3535", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb702ec0584b53a0e3533", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e3537", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3537", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3539", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb702ec0584b53a0e3537", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3505", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3505", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3507", + "_tpl": "5a9fbb74a2750c0032157181", + "parentId": "66cbb702ec0584b53a0e3505", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3509", + "_tpl": "5addbba15acfc400185c2854", + "parentId": "66cbb702ec0584b53a0e3505", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e353b", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e353b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e353d", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb702ec0584b53a0e353b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e350b", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e350b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e350d", + "_tpl": "62178be9d0050232da3485d9", + "parentId": "66cbb702ec0584b53a0e350b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e350e", + "_tpl": "583990e32459771419544dd2", + "parentId": "66cbb702ec0584b53a0e350b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb702ec0584b53a0e350f", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "66cbb702ec0584b53a0e350e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb702ec0584b53a0e3510", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "66cbb702ec0584b53a0e350e", + "slotId": "mod_stock" + }, + { + "_id": "66cbb702ec0584b53a0e3511", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb702ec0584b53a0e350e", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb702ec0584b53a0e3516", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb702ec0584b53a0e3511", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 29.0 + } + }, + { + "_id": "66cbb702ec0584b53a0e3512", + "_tpl": "57dc324a24597759501edc20", + "parentId": "66cbb702ec0584b53a0e350e", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb702ec0584b53a0e3513", + "_tpl": "57dc334d245977597164366f", + "parentId": "66cbb702ec0584b53a0e350e", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb702ec0584b53a0e3514", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "66cbb702ec0584b53a0e350e", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb702ec0584b53a0e3515", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "66cbb702ec0584b53a0e3514", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "Lootable_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e353f", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e353f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00074", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3541", - "_tpl": "5780cfa52459777dfb276eb1", - "parentId": "66cbb702ec0584b53a0e353f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3518", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3518", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3519", + "_tpl": "5a154d5cfcdbcb001a3b00da", + "parentId": "66cbb702ec0584b53a0e3518", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb702ec0584b53a0e351a", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "66cbb702ec0584b53a0e3519", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb702ec0584b53a0e351b", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "66cbb702ec0584b53a0e3519", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb702ec0584b53a0e351d", + "_tpl": "651bf5617b3b552ef6712cb7", + "parentId": "66cbb702ec0584b53a0e3518", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e351f", + "_tpl": "5fb655b748c711690e3a8d5a", + "parentId": "66cbb702ec0584b53a0e3518", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3521", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "66cbb702ec0584b53a0e3518", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3523", + "_tpl": "66992f4db9f31ddda10dd1c8", + "parentId": "66cbb702ec0584b53a0e3518", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00047", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3543", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3543", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3545", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbb702ec0584b53a0e3543", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 6 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e3525", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3525", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00046", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3547", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3547", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00129", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3549", - "_tpl": "59d625f086f774661516605d", - "parentId": "66cbb702ec0584b53a0e3547", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3527", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3527", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3529", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbb702ec0584b53a0e3527", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e352b", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb702ec0584b53a0e3527", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00033", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e354b", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e354b", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00132", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e354d", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb702ec0584b53a0e354b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e352d", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e352d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e352f", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb702ec0584b53a0e352d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "66cbb702ec0584b53a0e3531", + "_tpl": "606ee5c81246154cad35d65e", + "parentId": "66cbb702ec0584b53a0e352d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00034", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e354f", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e354f", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3551", - "_tpl": "5b432c305acfc40019478128", - "parentId": "66cbb702ec0584b53a0e354f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e3533", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3533", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3535", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb702ec0584b53a0e3533", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3553", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3553", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3555", - "_tpl": "5e56991336989c75ab4f03f6", - "parentId": "66cbb702ec0584b53a0e3553", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e3537", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3537", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e3557", - "_tpl": "5e023cf8186a883be655e54f", - "parentId": "66cbb702ec0584b53a0e3553", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 12 + { + "_id": "66cbb702ec0584b53a0e3539", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb702ec0584b53a0e3537", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00128", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3559", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3559", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e355b", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb702ec0584b53a0e3559", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e355d", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb702ec0584b53a0e3559", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e353b", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e353b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e353d", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb702ec0584b53a0e353b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e355f", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb702ec0584b53a0e3559", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e353f", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e353f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3541", + "_tpl": "5780cfa52459777dfb276eb1", + "parentId": "66cbb702ec0584b53a0e353f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Eugene_Temp_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3561", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3561", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00047", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3563", - "_tpl": "5bc9bdb8d4351e003562b8a1", - "parentId": "66cbb702ec0584b53a0e3561", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3543", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3543", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3545", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbb702ec0584b53a0e3543", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 6 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00122", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3565", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3565", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00046", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3567", - "_tpl": "5de8e8dafd6b4e6e2276dc32", - "parentId": "66cbb702ec0584b53a0e3565", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3547", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3547", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3549", + "_tpl": "59d625f086f774661516605d", + "parentId": "66cbb702ec0584b53a0e3547", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00033", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3569", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66cbb702ec0584b53a0e3565", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e354b", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e354b", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e354d", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb702ec0584b53a0e354b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00034", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e356b", - "_tpl": "59e3556c86f7741776641ac2", - "parentId": "66cbb702ec0584b53a0e3565", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e354f", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e354f", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3551", + "_tpl": "5b432c305acfc40019478128", + "parentId": "66cbb702ec0584b53a0e354f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e356d", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbb702ec0584b53a0e3565", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3553", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3553", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3555", + "_tpl": "5e56991336989c75ab4f03f6", + "parentId": "66cbb702ec0584b53a0e3553", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3557", + "_tpl": "5e023cf8186a883be655e54f", + "parentId": "66cbb702ec0584b53a0e3553", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 12 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_Background_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e356f", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e356f", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00128", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3571", - "_tpl": "62389aaba63f32501b1b444f", - "parentId": "66cbb702ec0584b53a0e356f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3559", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3559", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e355b", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb702ec0584b53a0e3559", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e355d", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb702ec0584b53a0e3559", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e355f", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb702ec0584b53a0e3559", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Eugene_Temp_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3573", - "_tpl": "5c9a1c3a2e2216000e69fb6a", - "parentId": "66cbb702ec0584b53a0e356f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3561", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3561", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3563", + "_tpl": "5bc9bdb8d4351e003562b8a1", + "parentId": "66cbb702ec0584b53a0e3561", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00096", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3575", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3575", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00122", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3577", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbb702ec0584b53a0e3575", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3565", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3565", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3567", + "_tpl": "5de8e8dafd6b4e6e2276dc32", + "parentId": "66cbb702ec0584b53a0e3565", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3569", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66cbb702ec0584b53a0e3565", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e356b", + "_tpl": "59e3556c86f7741776641ac2", + "parentId": "66cbb702ec0584b53a0e3565", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e356d", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbb702ec0584b53a0e3565", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_Background_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3579", - "_tpl": "5c5952732e2216398b5abda2", - "parentId": "66cbb702ec0584b53a0e3575", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e356f", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e356f", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3571", + "_tpl": "62389aaba63f32501b1b444f", + "parentId": "66cbb702ec0584b53a0e356f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3573", + "_tpl": "5c9a1c3a2e2216000e69fb6a", + "parentId": "66cbb702ec0584b53a0e356f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e357b", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e357b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00096", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e357d", - "_tpl": "5c0505e00db834001b735073", - "parentId": "66cbb702ec0584b53a0e357b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3575", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3575", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3577", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbb702ec0584b53a0e3575", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3579", + "_tpl": "5c5952732e2216398b5abda2", + "parentId": "66cbb702ec0584b53a0e3575", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3580", - "_tpl": "5739d41224597779c3645501", - "parentId": "66cbb702ec0584b53a0e357b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e357b", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e357b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e357d", + "_tpl": "5c0505e00db834001b735073", + "parentId": "66cbb702ec0584b53a0e357b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3580", + "_tpl": "5739d41224597779c3645501", + "parentId": "66cbb702ec0584b53a0e357b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3581", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb702ec0584b53a0e3580", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3583", + "_tpl": "5bbdb870d4351e00367fb67d", + "parentId": "66cbb702ec0584b53a0e357b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_Background_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3581", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb702ec0584b53a0e3580", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3583", - "_tpl": "5bbdb870d4351e00367fb67d", - "parentId": "66cbb702ec0584b53a0e357b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e3585", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3585", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3587", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb702ec0584b53a0e3585", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66cbb702ec0584b53a0e358a", + "_tpl": "573728cc24597765cc785b5d", + "parentId": "66cbb702ec0584b53a0e3585", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e358b", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb702ec0584b53a0e358a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbb702ec0584b53a0e358d", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66cbb702ec0584b53a0e3585", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_Background_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e3585", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3585", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00095", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3587", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb702ec0584b53a0e3585", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 40 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e358a", - "_tpl": "573728cc24597765cc785b5d", - "parentId": "66cbb702ec0584b53a0e3585", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb702ec0584b53a0e358f", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e358f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3591", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb702ec0584b53a0e358f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb702ec0584b53a0e3593", + "_tpl": "5d6fc87386f77449db3db94e", + "parentId": "66cbb702ec0584b53a0e358f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb702ec0584b53a0e3595", + "_tpl": "57347d9c245977448b40fa85", + "parentId": "66cbb702ec0584b53a0e358f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00109", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e358b", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb702ec0584b53a0e358a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e358d", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66cbb702ec0584b53a0e3585", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb702ec0584b53a0e3597", + "Items": [ + { + "_id": "66cbb702ec0584b53a0e3597", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3599", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "66cbb702ec0584b53a0e3597", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e359b", + "_tpl": "5ef366938cef260c0642acad", + "parentId": "66cbb702ec0584b53a0e3597", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e359d", + "_tpl": "5bc5a372d4351e44f824d17f", + "parentId": "66cbb702ec0584b53a0e3597", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e359f", + "_tpl": "56ea7165d2720b6e518b4583", + "parentId": "66cbb702ec0584b53a0e3597", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35a1", + "_tpl": "5cbda9f4ae9215000e5b9bfc", + "parentId": "66cbb702ec0584b53a0e3597", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00095", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb702ec0584b53a0e358f", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e358f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3591", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb702ec0584b53a0e358f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb702ec0584b53a0e3593", - "_tpl": "5d6fc87386f77449db3db94e", - "parentId": "66cbb702ec0584b53a0e358f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35a3", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35a3", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb702ec0584b53a0e3595", - "_tpl": "57347d9c245977448b40fa85", - "parentId": "66cbb702ec0584b53a0e358f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb703ec0584b53a0e35a5", + "_tpl": "5b432b6c5acfc4001a599bf0", + "parentId": "66cbb703ec0584b53a0e35a3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00109", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb702ec0584b53a0e3597", - "Items": [ - { - "_id": "66cbb702ec0584b53a0e3597", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00042", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3599", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "66cbb702ec0584b53a0e3597", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e359b", - "_tpl": "5ef366938cef260c0642acad", - "parentId": "66cbb702ec0584b53a0e3597", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35a7", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35a7", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e359d", - "_tpl": "5bc5a372d4351e44f824d17f", - "parentId": "66cbb702ec0584b53a0e3597", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb703ec0584b53a0e35a9", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb703ec0584b53a0e35a7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e359f", - "_tpl": "56ea7165d2720b6e518b4583", - "parentId": "66cbb702ec0584b53a0e3597", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb703ec0584b53a0e35ab", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "66cbb703ec0584b53a0e35a7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e35a1", - "_tpl": "5cbda9f4ae9215000e5b9bfc", - "parentId": "66cbb702ec0584b53a0e3597", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb703ec0584b53a0e35ad", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb703ec0584b53a0e35a7", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 51 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35a3", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35a3", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00126", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35a5", - "_tpl": "5b432b6c5acfc4001a599bf0", - "parentId": "66cbb703ec0584b53a0e35a3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00042", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35a7", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35a7", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35a9", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb703ec0584b53a0e35a7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35af", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35af", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb703ec0584b53a0e35b1", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbb703ec0584b53a0e35af", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00106", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35ab", - "_tpl": "576a5ed62459771e9c2096cb", - "parentId": "66cbb703ec0584b53a0e35a7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35ad", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb703ec0584b53a0e35a7", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 51 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35b3", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35b3", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35b5", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb703ec0584b53a0e35b3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00126", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35af", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35af", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35b1", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbb703ec0584b53a0e35af", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00106", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35b3", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35b3", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35b5", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb703ec0584b53a0e35b3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35b7", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35b7", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35b9", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66cbb703ec0584b53a0e35b7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35bb", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "parentId": "66cbb703ec0584b53a0e35b7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35bd", + "_tpl": "5cdeac22d7f00c000f26168f", + "parentId": "66cbb703ec0584b53a0e35b7", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35bf", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "66cbb703ec0584b53a0e35b7", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35c1", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "66cbb703ec0584b53a0e35b7", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35b7", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35b7", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00014", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35b9", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66cbb703ec0584b53a0e35b7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35c3", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35c3", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35c4", + "_tpl": "574d967124597745970e7c94", + "parentId": "66cbb703ec0584b53a0e35c3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb703ec0584b53a0e35c5", + "_tpl": "574dad8024597745964bf05c", + "parentId": "66cbb703ec0584b53a0e35c4", + "slotId": "mod_stock" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e35bb", - "_tpl": "5dfa3d7ac41b2312ea33362a", - "parentId": "66cbb703ec0584b53a0e35b7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb703ec0584b53a0e35c6", + "_tpl": "634f02331f9f536910079b51", + "parentId": "66cbb703ec0584b53a0e35c4", + "slotId": "mod_barrel" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e35bd", - "_tpl": "5cdeac22d7f00c000f26168f", - "parentId": "66cbb703ec0584b53a0e35b7", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb703ec0584b53a0e35c7", + "_tpl": "634f04d82e5def262d0b30c6", + "parentId": "66cbb703ec0584b53a0e35c6", + "slotId": "mod_mount_000" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e35bf", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "66cbb703ec0584b53a0e35b7", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb703ec0584b53a0e35c8", + "_tpl": "634f02d7517ccc8a960fc744", + "parentId": "66cbb703ec0584b53a0e35c7", + "slotId": "mod_gas_block" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e35c1", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "66cbb703ec0584b53a0e35b7", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb703ec0584b53a0e35c9", + "_tpl": "634f08a21f9f536910079b5a", + "parentId": "66cbb703ec0584b53a0e35c8", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbb703ec0584b53a0e35ca", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "66cbb703ec0584b53a0e35c7", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb703ec0584b53a0e35cb", + "_tpl": "587df3a12459772c28142567", + "parentId": "66cbb703ec0584b53a0e35c4", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb703ec0584b53a0e35cd", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb703ec0584b53a0e35cb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } + }, + { + "_id": "66cbb703ec0584b53a0e35cc", + "_tpl": "634f05ca517ccc8a960fc748", + "parentId": "66cbb703ec0584b53a0e35c4", + "slotId": "mod_reciever" } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00014", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35c3", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35c3", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00116", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35c4", - "_tpl": "574d967124597745970e7c94", - "parentId": "66cbb703ec0584b53a0e35c3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35cf", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35cf", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66cbb703ec0584b53a0e35d3", + "_tpl": "57372deb245977685d4159b3", + "parentId": "66cbb703ec0584b53a0e35cf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35d4", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb703ec0584b53a0e35d3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb703ec0584b53a0e35d5", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb703ec0584b53a0e35d3", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00143", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35c5", - "_tpl": "574dad8024597745964bf05c", - "parentId": "66cbb703ec0584b53a0e35c4", - "slotId": "mod_stock" - }, - { - "_id": "66cbb703ec0584b53a0e35c6", - "_tpl": "634f02331f9f536910079b51", - "parentId": "66cbb703ec0584b53a0e35c4", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb703ec0584b53a0e35c7", - "_tpl": "634f04d82e5def262d0b30c6", - "parentId": "66cbb703ec0584b53a0e35c6", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbb703ec0584b53a0e35c8", - "_tpl": "634f02d7517ccc8a960fc744", - "parentId": "66cbb703ec0584b53a0e35c7", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb703ec0584b53a0e35c9", - "_tpl": "634f08a21f9f536910079b5a", - "parentId": "66cbb703ec0584b53a0e35c8", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbb703ec0584b53a0e35ca", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "66cbb703ec0584b53a0e35c7", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb703ec0584b53a0e35cb", - "_tpl": "587df3a12459772c28142567", - "parentId": "66cbb703ec0584b53a0e35c4", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35cd", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb703ec0584b53a0e35cb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35d7", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35d7", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35d9", + "_tpl": "5bbdb83fd4351e44f824c44b", + "parentId": "66cbb703ec0584b53a0e35d7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb703ec0584b53a0e35cc", - "_tpl": "634f05ca517ccc8a960fc748", - "parentId": "66cbb703ec0584b53a0e35c4", - "slotId": "mod_reciever" - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00116", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35cf", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35cf", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00124", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35d3", - "_tpl": "57372deb245977685d4159b3", - "parentId": "66cbb703ec0584b53a0e35cf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35db", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35db", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb703ec0584b53a0e35dd", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb703ec0584b53a0e35db", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Factory_Rework_DesignStuff_00125", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35d4", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb703ec0584b53a0e35d3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35d5", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb703ec0584b53a0e35d3", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35df", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35df", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35e1", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb703ec0584b53a0e35df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00143", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35d7", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35d7", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35d9", - "_tpl": "5bbdb83fd4351e44f824c44b", - "parentId": "66cbb703ec0584b53a0e35d7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00124", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35db", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35db", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35dd", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb703ec0584b53a0e35db", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35e3", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35e3", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35e5", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbb703ec0584b53a0e35e3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35e7", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbb703ec0584b53a0e35e3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35e9", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb703ec0584b53a0e35e3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00125", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35df", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35df", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35e1", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb703ec0584b53a0e35df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35e3", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35e3", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35e5", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbb703ec0584b53a0e35e3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35eb", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35eb", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e35e7", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbb703ec0584b53a0e35e3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb703ec0584b53a0e35ed", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66cbb703ec0584b53a0e35eb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e35e9", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb703ec0584b53a0e35e3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb703ec0584b53a0e35ef", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbb703ec0584b53a0e35eb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35eb", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35eb", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35ed", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66cbb703ec0584b53a0e35eb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35ef", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbb703ec0584b53a0e35eb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35f1", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35f1", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35f3", + "_tpl": "5efb0da7a29a85116f6ea05f", + "parentId": "66cbb703ec0584b53a0e35f1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35f1", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35f1", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Factory_Rework_DesignStuff_00053", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35f3", - "_tpl": "5efb0da7a29a85116f6ea05f", - "parentId": "66cbb703ec0584b53a0e35f1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 25 - } - } - ] - }, - { - "Id": "container_Factory_Rework_DesignStuff_00053", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35f5", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35f5", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35f7", - "_tpl": "57ee59b42459771c7b045da5", - "parentId": "66cbb703ec0584b53a0e35f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35f5", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35f5", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e35f9", - "_tpl": "5cbdaf89ae9215000e5b9c94", - "parentId": "66cbb703ec0584b53a0e35f5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb703ec0584b53a0e35f7", + "_tpl": "57ee59b42459771c7b045da5", + "parentId": "66cbb703ec0584b53a0e35f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e35fb", - "_tpl": "5c0d688c86f77413ae3407b2", - "parentId": "66cbb703ec0584b53a0e35f5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 24 + { + "_id": "66cbb703ec0584b53a0e35f9", + "_tpl": "5cbdaf89ae9215000e5b9c94", + "parentId": "66cbb703ec0584b53a0e35f5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35fb", + "_tpl": "5c0d688c86f77413ae3407b2", + "parentId": "66cbb703ec0584b53a0e35f5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 24 + } } - } - ] - }, - { - "Id": "ammo1 (13) [6d33147b-4276-4181-af87-ec8538afff5c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.7190037, - "y": 1.437, - "z": -32.5240021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e35fe", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e35fe", - "_tpl": "657024011419851aef03e6f4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo1 (13) [6d33147b-4276-4181-af87-ec8538afff5c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.7190037, + "y": 1.437, + "z": -32.5240021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e35ff", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "66cbb703ec0584b53a0e35fe", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e35fe", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e35fe", + "_tpl": "657024011419851aef03e6f4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e35ff", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "66cbb703ec0584b53a0e35fe", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo1 (4) [7520ba46-09c9-48e3-84fd-2c6d918ca002]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 2.26800013, - "y": -3.08, - "z": -23.6350021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3602", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3602", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo1 (4) [7520ba46-09c9-48e3-84fd-2c6d918ca002]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 2.26800013, + "y": -3.08, + "z": -23.6350021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3603", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb703ec0584b53a0e3602", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3602", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3602", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3603", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb703ec0584b53a0e3602", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo1 (5) [e393cda1-5232-459a-ad90-916217acd768]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 2.0650003, - "y": -3.097, - "z": -26.4180031 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3606", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3606", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo1 (5) [e393cda1-5232-459a-ad90-916217acd768]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 2.0650003, + "y": -3.097, + "z": -26.4180031 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3607", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbb703ec0584b53a0e3606", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3606", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3606", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3607", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbb703ec0584b53a0e3606", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo1 (6) [f9827fea-530d-4fbc-9d8f-79432199cc42]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 1.96800029, - "y": -3.122, - "z": -25.9950047 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e360b", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e360b", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo1 (6) [f9827fea-530d-4fbc-9d8f-79432199cc42]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 1.96800029, + "y": -3.122, + "z": -25.9950047 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e360c", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb703ec0584b53a0e360b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e360b", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e360b", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e360c", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb703ec0584b53a0e360b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb703ec0584b53a0e360d", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb703ec0584b53a0e360b", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "food (8) [b0d35295-d286-4d60-a758-57f65d284e85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.3415833, + "y": 2.932, + "z": 63.60201 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e360d", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb703ec0584b53a0e360b", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e360f", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e360f", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food (8) [b0d35295-d286-4d60-a758-57f65d284e85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.3415833, - "y": 2.932, - "z": 63.60201 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e360f", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e360f", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "household (11) [357f877e-775c-4214-97b5-3fd6399da5e8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.2230034, + "y": 9.377, + "z": 39.6840019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3611", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3611", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "household (11) [357f877e-775c-4214-97b5-3fd6399da5e8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.2230034, - "y": 9.377, - "z": 39.6840019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3611", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3611", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "household (13) [08ae9121-5637-444e-8be1-a4ac31cd2ea4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.6280041, + "y": 8.81, + "z": 38.1780052 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3614", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3614", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3615", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66cbb703ec0584b53a0e3614", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "household (13) [08ae9121-5637-444e-8be1-a4ac31cd2ea4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.6280041, - "y": 8.81, - "z": 38.1780052 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3614", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3614", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "household (14) [a30ee3b3-8092-48cd-82a2-770575b3897d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.6280041, + "y": 8.81, + "z": 37.2700043 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3615", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66cbb703ec0584b53a0e3614", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3618", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3618", + "_tpl": "657024e8cfc010a0f5006a0d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3619", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66cbb703ec0584b53a0e3618", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "household (14) [a30ee3b3-8092-48cd-82a2-770575b3897d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.6280041, - "y": 8.81, - "z": 37.2700043 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3618", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3618", - "_tpl": "657024e8cfc010a0f5006a0d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "household (15) [0d5b3c07-8788-45ae-a1df-64a56a733ba9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.6280041, + "y": 9.465, + "z": 37.2700043 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3619", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66cbb703ec0584b53a0e3618", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e361b", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e361b", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "household (15) [0d5b3c07-8788-45ae-a1df-64a56a733ba9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.6280041, - "y": 9.465, - "z": 37.2700043 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e361b", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e361b", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "household (9) [1021721f-2e08-40e8-b425-cb96bca4b249]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.9790039, + "y": 9.377, + "z": 39.5350037 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e361d", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e361d", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "household (9) [1021721f-2e08-40e8-b425-cb96bca4b249]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.9790039, - "y": 9.377, - "z": 39.5350037 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e361d", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e361d", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "item_barter_quest_blood_nf2024 [c16ab9d7-b663-4e2d-a09a-43aaac5eae1b]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -19.4730015, - "y": 0.518, - "z": -52.22601 - }, - "Rotation": { - "x": 358.7527, - "y": 1.04997253, - "z": 319.904053 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e361f", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e361f", - "_tpl": "66a0f0926fee20fa70036da6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_barter_quest_blood_nf2024 [c16ab9d7-b663-4e2d-a09a-43aaac5eae1b]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -19.4730015, + "y": 0.518, + "z": -52.22601 + }, + "Rotation": { + "x": 358.7527, + "y": 1.04997253, + "z": 319.904053 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e361f", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e361f", + "_tpl": "66a0f0926fee20fa70036da6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "item_quest_chem_container_nf2024 [5b4abe8c-ff35-406e-922a-d1d420dd5bc9]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -18.40426, - "y": -1.97474718, - "z": 46.6925659 - }, - "Rotation": { - "x": 0.0, - "y": 71.50776, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -22.7176552, - "y": -1.88169789, - "z": 48.6696167 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } + { + "Id": "item_quest_chem_container_nf2024 [5b4abe8c-ff35-406e-922a-d1d420dd5bc9]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -18.40426, + "y": -1.97474718, + "z": 46.6925659 + }, + "Rotation": { + "x": 0.0, + "y": 71.50776, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -18.40426, - "y": -1.97474718, - "z": 46.6925659 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -22.7176552, + "y": -1.88169789, + "z": 48.6696167 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 71.50776, - "z": 0 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -21.7132339, - "y": -2.088474, - "z": 44.4300346 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -18.40426, + "y": -1.97474718, + "z": 46.6925659 + }, + "Rotation": { + "x": 0, + "y": 71.50776, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 180.000061, - "z": 0 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": -23.2652779, - "y": -1.85646236, - "z": 44.83158 - }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -21.7132339, + "y": -2.088474, + "z": 44.4300346 + }, + "Rotation": { + "x": 0, + "y": 180.000061, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": -23.2652779, + "y": -1.85646236, + "z": 44.83158 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3621", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3621", - "_tpl": "66a0e523e749756c920d02d0", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3621", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3621", + "_tpl": "66a0e523e749756c920d02d0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "item_quest_chimicalsample [aa16b856-cbb8-4a83-a3d8-9074bd2930b6]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -5.05500031, - "y": -2.657, - "z": 18.5820026 - }, - "Rotation": { - "x": 1.4580425, - "y": 33.0458679, - "z": 359.8705 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3623", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3623", - "_tpl": "669fac549b0ce3feae01a137", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "item_quest_chimicalsample [aa16b856-cbb8-4a83-a3d8-9074bd2930b6]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -5.05500031, + "y": -2.657, + "z": 18.5820026 + }, + "Rotation": { + "x": 1.4580425, + "y": 33.0458679, + "z": 359.8705 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3623", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3623", + "_tpl": "669fac549b0ce3feae01a137", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "item_quest_flight_journal [b1d7db8b-4da3-4643-b247-4f744d7ae945]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 26.2490044, - "y": 7.864, - "z": -3.60200047 - }, - "Rotation": { - "x": 315.259949, - "y": 88.473, - "z": 154.63855 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3625", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3625", - "_tpl": "66c0b90c8398582e4b0c2e27", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "item_quest_flight_journal [b1d7db8b-4da3-4643-b247-4f744d7ae945]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 26.2490044, + "y": 7.864, + "z": -3.60200047 + }, + "Rotation": { + "x": 315.259949, + "y": 88.473, + "z": 154.63855 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3625", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3625", + "_tpl": "66c0b90c8398582e4b0c2e27", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "item_quest_lab_journal [b1972b8e-e9ca-4d76-b4d8-a750df1781cf]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 26.57465, - "y": 4.5298, - "z": -35.9832764 - }, - "Rotation": { - "x": 359.801636, - "y": 182.4168, - "z": 277.545959 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 25.8492413, - "y": 4.4412, - "z": -19.1042442 + ] + }, + { + "Id": "item_quest_lab_journal [b1972b8e-e9ca-4d76-b4d8-a750df1781cf]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 26.57465, + "y": 4.5298, + "z": -35.9832764 + }, + "Rotation": { + "x": 359.801636, + "y": 182.4168, + "z": 277.545959 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 25.8492413, + "y": 4.4412, + "z": -19.1042442 + }, + "Rotation": { + "x": 0, + "y": 86.3740158, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 86.3740158, - "z": 0 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 28.99989, - "y": 3.71619987, - "z": -17.5643139 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 28.99989, + "y": 3.71619987, + "z": -17.5643139 + }, + "Rotation": { + "x": 0, + "y": 293.6583, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 293.6583, - "z": 0 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 29.3099537, - "y": 3.7436, - "z": -28.9368572 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 29.3099537, + "y": 3.7436, + "z": -28.9368572 + }, + "Rotation": { + "x": 1.45675131e-5, + "y": 1.53967381, + "z": 270 + } }, - "Rotation": { - "x": 1.45675131e-5, - "y": 1.53967381, - "z": 270 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 26.57465, - "y": 4.5298, - "z": -35.9832764 + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 26.57465, + "y": 4.5298, + "z": -35.9832764 + }, + "Rotation": { + "x": 359.801636, + "y": 182.4168, + "z": 277.545959 + } }, - "Rotation": { - "x": 359.801636, - "y": 182.4168, - "z": 277.545959 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 29.25024, - "y": 3.7122, - "z": -31.7074585 - }, - "Rotation": { - "x": 2.04905682e-5, - "y": 233.9115, - "z": 255.000092 + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 29.25024, + "y": 3.7122, + "z": -31.7074585 + }, + "Rotation": { + "x": 2.04905682e-5, + "y": 233.9115, + "z": 255.000092 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3627", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3627", - "_tpl": "66c0b39ca1f68fcc1d0c0cc3", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3627", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3627", + "_tpl": "66c0b39ca1f68fcc1d0c0cc3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_quest_letter [ae512a2b-5fad-4255-9839-7d5d36c35dbc]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -19.0203018, - "y": 0.5345, - "z": 21.34745 - }, - "Rotation": { - "x": 3.729519, - "y": 267.324524, - "z": 92.97469 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3629", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3629", - "_tpl": "591093bb86f7747caa7bb2ee", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_quest_letter [ae512a2b-5fad-4255-9839-7d5d36c35dbc]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -19.0203018, + "y": 0.5345, + "z": 21.34745 + }, + "Rotation": { + "x": 3.729519, + "y": 267.324524, + "z": 92.97469 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3629", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3629", + "_tpl": "591093bb86f7747caa7bb2ee", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_quest_r [cfa7554d-cd45-4ed3-b742-beea2977e2ed]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 23.2499714, - "y": 8.535252, - "z": 39.4038658 - }, - "Rotation": { - "x": 359.4044, - "y": 327.461884, - "z": 3.45530179e-6 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 26.3265839, - "y": 8.978607, - "z": 36.7636223 + ] + }, + { + "Id": "loot_quest_r [cfa7554d-cd45-4ed3-b742-beea2977e2ed]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 23.2499714, + "y": 8.535252, + "z": 39.4038658 + }, + "Rotation": { + "x": 359.4044, + "y": 327.461884, + "z": 3.45530179e-6 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 26.3265839, + "y": 8.978607, + "z": 36.7636223 + }, + "Rotation": { + "x": 74.26481, + "y": 245.1148, + "z": 8.815038e-5 + } }, - "Rotation": { - "x": 74.26481, - "y": 245.1148, - "z": 8.815038e-5 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 23.2499714, - "y": 8.535252, - "z": 39.4038658 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 23.2499714, + "y": 8.535252, + "z": 39.4038658 + }, + "Rotation": { + "x": 359.4044, + "y": 327.461884, + "z": 3.45530179e-6 + } }, - "Rotation": { - "x": 359.4044, - "y": 327.461884, - "z": 3.45530179e-6 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 25.56231, - "y": 8.0731945, - "z": 38.48874 - }, - "Rotation": { - "x": -7.204006e-6, - "y": 59.195343, - "z": -1.14636794e-6 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 25.56231, + "y": 8.0731945, + "z": 38.48874 + }, + "Rotation": { + "x": -7.204006e-6, + "y": 59.195343, + "z": -1.14636794e-6 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e362b", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e362b", - "_tpl": "593a87af86f774122f54a951", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e362b", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e362b", + "_tpl": "593a87af86f774122f54a951", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (121) [13d7fb9f-1d33-49a4-87e2-e68979ddff12]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -33.8860054, - "y": 1.7, - "z": 66.74901 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e362d", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e362d", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (121) [13d7fb9f-1d33-49a4-87e2-e68979ddff12]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -33.8860054, + "y": 1.7, + "z": 66.74901 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e362d", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e362d", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (127) [8fc9a349-9fbf-456e-b452-ad356bc2bca3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.659008, - "y": 2.351, - "z": 22.8080025 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e362f", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e362f", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (127) [8fc9a349-9fbf-456e-b452-ad356bc2bca3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.659008, + "y": 2.351, + "z": 22.8080025 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e362f", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e362f", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (129) [e932a051-0169-45f6-9941-5c3254083b06]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -32.9550056, - "y": 3.672, - "z": 58.13001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3631", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3631", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (129) [e932a051-0169-45f6-9941-5c3254083b06]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -32.9550056, + "y": 3.672, + "z": 58.13001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3631", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3631", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (140) [f54751ad-43f3-487b-bae0-0674b3fcb889]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -43.9110031, - "y": 1.776, - "z": 5.00500059 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3633", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3633", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (140) [f54751ad-43f3-487b-bae0-0674b3fcb889]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -43.9110031, + "y": 1.776, + "z": 5.00500059 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3633", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3633", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (84) [0287c93c-bdc2-4ad1-86b6-fbc75f3dc325]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 21.736002, - "y": 1.7, - "z": 43.0280037 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3635", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3635", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (84) [0287c93c-bdc2-4ad1-86b6-fbc75f3dc325]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 21.736002, + "y": 1.7, + "z": 43.0280037 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3635", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3635", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (85) [f9b2006d-a094-4a67-a94b-1ef3591d51b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 21.1310024, - "y": 1.555, - "z": 43.1340027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3637", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3637", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (85) [f9b2006d-a094-4a67-a94b-1ef3591d51b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 21.1310024, + "y": 1.555, + "z": 43.1340027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3637", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3637", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (90) [5ea1f063-f265-4532-b784-dc2ed95fc041]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.8510056, - "y": 1.143, - "z": -8.825001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3639", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3639", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (90) [5ea1f063-f265-4532-b784-dc2ed95fc041]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.8510056, + "y": 1.143, + "z": -8.825001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3639", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3639", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "lootpoint (100) [0136a0cf-8704-4d29-8fdb-6a0335c9f625]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 259.785126, - "y": 7.192, - "z": -165.516861 - }, - "Rotation": { - "x": 0.0, - "y": 78.92332, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e363b", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e363b", - "_tpl": "5a339805c4a2826c6e06d73d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "lootpoint (100) [0136a0cf-8704-4d29-8fdb-6a0335c9f625]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 259.785126, + "y": 7.192, + "z": -165.516861 + }, + "Rotation": { + "x": 0.0, + "y": 78.92332, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e363b", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e363b", + "_tpl": "5a339805c4a2826c6e06d73d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "lootpoint (16) [833f64c9-fd15-4803-a108-19d793192483]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 258.337433, - "y": 5.72699976, - "z": -149.89801 - }, - "Rotation": { - "x": 0.0, - "y": 78.92332, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e363d", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e363d", - "_tpl": "5a788089c5856700142fdd9c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "lootpoint (16) [833f64c9-fd15-4803-a108-19d793192483]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 258.337433, + "y": 5.72699976, + "z": -149.89801 + }, + "Rotation": { + "x": 0.0, + "y": 78.92332, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e363d", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e363d", + "_tpl": "5a788089c5856700142fdd9c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "lootpoint (18) [83a4653d-e3e7-434c-9429-fd2a1a7110b9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 239.044159, - "y": -0.08200002, - "z": -175.189865 - }, - "Rotation": { - "x": 0.0, - "y": 78.92332, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e363f", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e363f", - "_tpl": "625ff2eb9f5537057932257d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "lootpoint (18) [83a4653d-e3e7-434c-9429-fd2a1a7110b9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 239.044159, + "y": -0.08200002, + "z": -175.189865 + }, + "Rotation": { + "x": 0.0, + "y": 78.92332, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3640", - "_tpl": "5d6e689ca4b9361bc8618956", - "parentId": "66cbb703ec0584b53a0e363f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e363f", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e363f", + "_tpl": "625ff2eb9f5537057932257d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3640", + "_tpl": "5d6e689ca4b9361bc8618956", + "parentId": "66cbb703ec0584b53a0e363f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "lootpoint (70) [7258fc41-e96e-42d7-8bef-a7a7f1f672f3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 240.779633, - "y": 5.064, - "z": -177.637024 - }, - "Rotation": { - "x": 0.0, - "y": 78.92332, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3642", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3642", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "lootpoint (70) [7258fc41-e96e-42d7-8bef-a7a7f1f672f3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 240.779633, + "y": 5.064, + "z": -177.637024 + }, + "Rotation": { + "x": 0.0, + "y": 78.92332, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3642", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3642", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "lootpoint (83) [7c712060-6653-4347-833f-bf5b67a11110]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 255.8256, - "y": 2.645, - "z": -149.8823 - }, - "Rotation": { - "x": 0.0, - "y": 78.92332, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3644", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3644", - "_tpl": "5ef366938cef260c0642acad", - "upd": { - "StackObjectsCount": 1 + { + "Id": "lootpoint (83) [7c712060-6653-4347-833f-bf5b67a11110]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 255.8256, + "y": 2.645, + "z": -149.8823 + }, + "Rotation": { + "x": 0.0, + "y": 78.92332, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3644", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3644", + "_tpl": "5ef366938cef260c0642acad", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds (4) [445c4087-0db4-4f7c-97eb-03d8e5c05c6d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -19.9730015, - "y": 1.213, - "z": -27.2890034 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3646", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3646", - "_tpl": "590c678286f77426c9660122", - "upd": { - "StackObjectsCount": 1 + { + "Id": "meds (4) [445c4087-0db4-4f7c-97eb-03d8e5c05c6d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -19.9730015, + "y": 1.213, + "z": -27.2890034 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3646", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3646", + "_tpl": "590c678286f77426c9660122", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix trash (10) [46cbda19-8b37-4eed-b350-22b03f084331]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 38.6530037, - "y": 5.819, - "z": 40.6680031 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e364a", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e364a", - "_tpl": "6570244ec5d7d4cb4d078558", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix trash (10) [46cbda19-8b37-4eed-b350-22b03f084331]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 38.6530037, + "y": 5.819, + "z": 40.6680031 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e364b", - "_tpl": "5d6e6869a4b9361c140bcfde", - "parentId": "66cbb703ec0584b53a0e364a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e364a", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e364a", + "_tpl": "6570244ec5d7d4cb4d078558", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e364b", + "_tpl": "5d6e6869a4b9361c140bcfde", + "parentId": "66cbb703ec0584b53a0e364a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb703ec0584b53a0e364c", + "_tpl": "5d6e6869a4b9361c140bcfde", + "parentId": "66cbb703ec0584b53a0e364a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "mix trash (11) [fc6597c4-bf71-47dd-a91b-36ee854bc256]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 38.5360031, + "y": 5.819, + "z": 40.0460052 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e364c", - "_tpl": "5d6e6869a4b9361c140bcfde", - "parentId": "66cbb703ec0584b53a0e364a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e364f", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e364f", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3650", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66cbb703ec0584b53a0e364f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix trash (11) [fc6597c4-bf71-47dd-a91b-36ee854bc256]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 38.5360031, - "y": 5.819, - "z": 40.0460052 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e364f", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e364f", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix trash (13) [f039729c-6d23-4e31-934f-9b3e8bd8f616]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.5610046, + "y": 1.092, + "z": -50.0020065 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3650", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66cbb703ec0584b53a0e364f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3654", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3654", + "_tpl": "657026451419851aef03e733", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3655", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb703ec0584b53a0e3654", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb703ec0584b53a0e3656", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb703ec0584b53a0e3654", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix trash (13) [f039729c-6d23-4e31-934f-9b3e8bd8f616]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.5610046, - "y": 1.092, - "z": -50.0020065 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3654", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3654", - "_tpl": "657026451419851aef03e733", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix trash (25) [de97b571-e262-4b1c-a96b-7f8b2c021ad6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 18.8110027, + "y": 5.664, + "z": 39.88838 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3659", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3659", + "_tpl": "5649ed104bdc2d3d1c8b458b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e365a", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb703ec0584b53a0e3659", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "mix trash (29) [23f058da-f63c-47aa-b693-9d9fd6815a5c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -12.9280024, + "y": -1.71, + "z": 42.3110046 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3655", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb703ec0584b53a0e3654", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e365d", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e365d", + "_tpl": "6570240a1419851aef03e6f7", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e365e", + "_tpl": "5efb0d4f4bc50b58e81710f3", + "parentId": "66cbb703ec0584b53a0e365d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "mix trash (3) [adf05e0a-6d64-4ad2-b124-bb6f9bfa9340]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.855001, + "y": 8.391, + "z": 59.0860062 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3656", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb703ec0584b53a0e3654", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3662", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3662", + "_tpl": "65702495c5d7d4cb4d078561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3663", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66cbb703ec0584b53a0e3662", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb703ec0584b53a0e3664", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66cbb703ec0584b53a0e3662", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix trash (25) [de97b571-e262-4b1c-a96b-7f8b2c021ad6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 18.8110027, - "y": 5.664, - "z": 39.88838 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3659", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3659", - "_tpl": "5649ed104bdc2d3d1c8b458b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix trash (30) [f256bdc2-1bb5-4919-a32f-bd908df3535b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -16.1130028, + "y": -1.71, + "z": 41.8430023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3666", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3666", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix trash (31) [e72f9d4b-0459-4c3f-862e-0eed49f66969]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -17.3990021, + "y": -1.71, + "z": 41.8430023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e365a", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb703ec0584b53a0e3659", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e366a", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e366a", + "_tpl": "65702656c5d7d4cb4d078591", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e366b", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66cbb703ec0584b53a0e366a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb703ec0584b53a0e366c", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66cbb703ec0584b53a0e366a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix trash (29) [23f058da-f63c-47aa-b693-9d9fd6815a5c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -12.9280024, - "y": -1.71, - "z": 42.3110046 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e365d", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e365d", - "_tpl": "6570240a1419851aef03e6f7", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix trash (5) [dfc8f223-5022-424e-8a62-e262a1c9cc18]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.594001, + "y": 8.391, + "z": 61.11601 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e365e", - "_tpl": "5efb0d4f4bc50b58e81710f3", - "parentId": "66cbb703ec0584b53a0e365d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e366f", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e366f", + "_tpl": "657024f5cfc010a0f5006a10", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3670", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbb703ec0584b53a0e366f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix trash (3) [adf05e0a-6d64-4ad2-b124-bb6f9bfa9340]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.855001, - "y": 8.391, - "z": 59.0860062 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3662", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3662", - "_tpl": "65702495c5d7d4cb4d078561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix trash (7) [0de825de-600c-4473-9fa5-69484fd76268]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 15.7650023, + "y": 5.657, + "z": 48.34531 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3663", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66cbb703ec0584b53a0e3662", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3674", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3674", + "_tpl": "657024a4bfc87b3a3409322c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e3675", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66cbb703ec0584b53a0e3674", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb703ec0584b53a0e3676", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66cbb703ec0584b53a0e3674", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "mix trash [e7e4499c-ff1c-4b40-8e0d-be73d342cfd2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.69400072, + "y": 8.758, + "z": 56.7710075 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3664", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66cbb703ec0584b53a0e3662", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3679", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3679", + "_tpl": "657024d8c5d7d4cb4d078567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb703ec0584b53a0e367a", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb703ec0584b53a0e3679", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix trash (30) [f256bdc2-1bb5-4919-a32f-bd908df3535b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -16.1130028, - "y": -1.71, - "z": 41.8430023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3666", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3666", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "repair_kit_weapon [398d22b8-ff0a-4751-a12d-d225c6e6fd61]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 36.0510025, + "y": 0.974, + "z": 20.1890011 + }, + "Rotation": { + "x": 272.913818, + "y": 131.455536, + "z": 266.438232 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e367c", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e367c", + "_tpl": "5910968f86f77425cf569c32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix trash (31) [e72f9d4b-0459-4c3f-862e-0eed49f66969]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -17.3990021, - "y": -1.71, - "z": 41.8430023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e366a", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e366a", - "_tpl": "65702656c5d7d4cb4d078591", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "tools1 (26) [9702293a-ce3b-4223-b965-1734c608ce45]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.4270039, + "y": 0.446, + "z": 16.9260025 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e366b", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66cbb703ec0584b53a0e366a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e367e", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e367e", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "tools1 (6) [cdd4b4fd-d96a-4cbc-8ea6-1c066e2f9535]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.7760048, + "y": 1.077, + "z": -14.7440023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e366c", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66cbb703ec0584b53a0e366a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3680", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3680", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix trash (5) [dfc8f223-5022-424e-8a62-e262a1c9cc18]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.594001, - "y": 8.391, - "z": 61.11601 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e366f", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e366f", - "_tpl": "657024f5cfc010a0f5006a10", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "tools1 (65) [ebbdb842-ae3e-45c2-8602-722a98f09734]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 36.1320038, + "y": 8.95, + "z": 23.7240028 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3670", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbb703ec0584b53a0e366f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3682", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3682", + "_tpl": "57347c5b245977448d35f6e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix trash (7) [0de825de-600c-4473-9fa5-69484fd76268]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 15.7650023, - "y": 5.657, - "z": 48.34531 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3674", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3674", - "_tpl": "657024a4bfc87b3a3409322c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "weapon_rus (2) [b026a6a9-caaf-47e0-b5cd-2fad37a46e6a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -5.42200041, + "y": 5.713, + "z": -33.7520027 + }, + "Rotation": { + "x": 0.0, + "y": 86.6172943, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3675", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66cbb703ec0584b53a0e3674", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e3683", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e3683", + "_tpl": "5ac66d725acfc43b321d4b60" + }, + { + "_id": "66cbb703ec0584b53a0e3684", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb703ec0584b53a0e3683", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb703ec0584b53a0e3685", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb703ec0584b53a0e3684", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb703ec0584b53a0e3686", + "_tpl": "5ac72e895acfc43b321d4bd5", + "parentId": "66cbb703ec0584b53a0e3683", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb703ec0584b53a0e3687", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb703ec0584b53a0e3683", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb703ec0584b53a0e3688", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb703ec0584b53a0e3683", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb703ec0584b53a0e3689", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb703ec0584b53a0e3683", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb703ec0584b53a0e368a", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb703ec0584b53a0e3683", + "slotId": "mod_stock" + }, + { + "_id": "66cbb703ec0584b53a0e368b", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66cbb703ec0584b53a0e3683", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb703ec0584b53a0e368c", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb703ec0584b53a0e368b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15.0 + } } + ] + }, + { + "Id": "weapon_rus (6) [f75901ae-2a96-4c8c-bed7-36b82d12a151]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 5.54100037, + "y": 8.533001, + "z": 63.6520081 + }, + "Rotation": { + "x": 0.0, + "y": 272.5732, + "z": 0.0 }, - { - "_id": "66cbb703ec0584b53a0e3676", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66cbb703ec0584b53a0e3674", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb703ec0584b53a0e368d", + "Items": [ + { + "_id": "66cbb703ec0584b53a0e368d", + "_tpl": "59984ab886f7743e98271174" + }, + { + "_id": "66cbb703ec0584b53a0e368e", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb703ec0584b53a0e368d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb703ec0584b53a0e368f", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb703ec0584b53a0e368d", + "slotId": "mod_stock" + }, + { + "_id": "66cbb703ec0584b53a0e3690", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbb703ec0584b53a0e368d", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb703ec0584b53a0e3696", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb703ec0584b53a0e3690", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15.0 + } + }, + { + "_id": "66cbb703ec0584b53a0e3691", + "_tpl": "5998597786f77414ea6da093", + "parentId": "66cbb703ec0584b53a0e368d", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb703ec0584b53a0e3692", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb703ec0584b53a0e368d", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb703ec0584b53a0e3693", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb703ec0584b53a0e368d", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb703ec0584b53a0e3694", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb703ec0584b53a0e368d", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb703ec0584b53a0e3695", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb703ec0584b53a0e3694", + "slotId": "mod_handguard" } + ] + } + ], + "Banners": [ + { + "id": "5464e0404bdc2d2a708b4567", + "pic": { + "path": "CONTENT\/banners\/banner_usec.jpg", + "rcid": "" } - ] - }, - { - "Id": "mix trash [e7e4499c-ff1c-4b40-8e0d-be73d342cfd2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.69400072, - "y": 8.758, - "z": 56.7710075 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3679", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3679", - "_tpl": "657024d8c5d7d4cb4d078567", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb703ec0584b53a0e367a", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb703ec0584b53a0e3679", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } + { + "id": "5464e0454bdc2d06708b4567", + "pic": { + "path": "CONTENT\/banners\/banner_bear.jpg", + "rcid": "" } - ] - }, - { - "Id": "repair_kit_weapon [398d22b8-ff0a-4751-a12d-d225c6e6fd61]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 36.0510025, - "y": 0.974, - "z": 20.1890011 - }, - "Rotation": { - "x": 272.913818, - "y": 131.455536, - "z": 266.438232 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e367c", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e367c", - "_tpl": "5910968f86f77425cf569c32", - "upd": { - "StackObjectsCount": 1 - } + }, + { + "id": "5803a58524597710ca36fcb2", + "pic": { + "path": "CONTENT\/banners\/banner_terragroup.jpg", + "rcid": "" } - ] - }, - { - "Id": "tools1 (26) [9702293a-ce3b-4223-b965-1734c608ce45]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.4270039, - "y": 0.446, - "z": 16.9260025 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e367e", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e367e", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "5807bfe124597742a92e0a4c", + "pic": { + "path": "CONTENT\/banners\/norvinskzone.jpg", + "rcid": "" } - ] - }, - { - "Id": "tools1 (6) [cdd4b4fd-d96a-4cbc-8ea6-1c066e2f9535]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.7760048, - "y": 1.077, - "z": -14.7440023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3680", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3680", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "5807c3f124597746bf2db2ce", + "pic": { + "path": "CONTENT\/banners\/banner_scav.jpg", + "rcid": "" } - ] - }, - { - "Id": "tools1 (65) [ebbdb842-ae3e-45c2-8602-722a98f09734]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 36.1320038, - "y": 8.95, - "z": 23.7240028 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3682", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3682", - "_tpl": "57347c5b245977448d35f6e1", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "5807be8924597742c603fa19", + "pic": { + "path": "CONTENT\/banners\/banner_tarkov.jpg", + "rcid": "" } - ] - }, - { - "Id": "weapon_rus (2) [b026a6a9-caaf-47e0-b5cd-2fad37a46e6a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -5.42200041, - "y": 5.713, - "z": -33.7520027 - }, - "Rotation": { - "x": 0.0, - "y": 86.6172943, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e3683", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e3683", - "_tpl": "5ac66d725acfc43b321d4b60" - }, - { - "_id": "66cbb703ec0584b53a0e3684", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb703ec0584b53a0e3683", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb703ec0584b53a0e3685", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb703ec0584b53a0e3684", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb703ec0584b53a0e3686", - "_tpl": "5ac72e895acfc43b321d4bd5", - "parentId": "66cbb703ec0584b53a0e3683", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb703ec0584b53a0e3687", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb703ec0584b53a0e3683", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb703ec0584b53a0e3688", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb703ec0584b53a0e3683", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb703ec0584b53a0e3689", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb703ec0584b53a0e3683", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb703ec0584b53a0e368a", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb703ec0584b53a0e3683", - "slotId": "mod_stock" - }, - { - "_id": "66cbb703ec0584b53a0e368b", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66cbb703ec0584b53a0e3683", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb703ec0584b53a0e368c", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb703ec0584b53a0e368b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15.0 - } + { + "id": "5805f617245977100b2c1f41", + "pic": { + "path": "CONTENT\/banners\/tglabs.jpg", + "rcid": "" } - ] - }, - { - "Id": "weapon_rus (6) [f75901ae-2a96-4c8c-bed7-36b82d12a151]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 5.54100037, - "y": 8.533001, - "z": 63.6520081 - }, - "Rotation": { - "x": 0.0, - "y": 272.5732, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb703ec0584b53a0e368d", - "Items": [ - { - "_id": "66cbb703ec0584b53a0e368d", - "_tpl": "59984ab886f7743e98271174" - }, - { - "_id": "66cbb703ec0584b53a0e368e", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb703ec0584b53a0e368d", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb703ec0584b53a0e368f", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb703ec0584b53a0e368d", - "slotId": "mod_stock" - }, - { - "_id": "66cbb703ec0584b53a0e3690", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbb703ec0584b53a0e368d", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb703ec0584b53a0e3696", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb703ec0584b53a0e3690", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15.0 - } - }, - { - "_id": "66cbb703ec0584b53a0e3691", - "_tpl": "5998597786f77414ea6da093", - "parentId": "66cbb703ec0584b53a0e368d", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb703ec0584b53a0e3692", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb703ec0584b53a0e368d", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb703ec0584b53a0e3693", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb703ec0584b53a0e368d", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb703ec0584b53a0e3694", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb703ec0584b53a0e368d", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb703ec0584b53a0e3695", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb703ec0584b53a0e3694", - "slotId": "mod_handguard" + { + "id": "5c1b857086f77465f465faa4", + "pic": { + "path": "CONTENT\/banners\/banner_scavraider.jpg", + "rcid": "" + } + }, + { + "id": "64c0ad6af99768b777048f4e", + "pic": { + "path": "CONTENT\/banners\/banner_emissary.jpg", + "rcid": "" } - ] - } - ], - "Banners": [ - { - "id": "5464e0404bdc2d2a708b4567", - "pic": { - "path": "CONTENT\/banners\/banner_usec.jpg", - "rcid": "" - } - }, - { - "id": "5464e0454bdc2d06708b4567", - "pic": { - "path": "CONTENT\/banners\/banner_bear.jpg", - "rcid": "" - } - }, - { - "id": "5803a58524597710ca36fcb2", - "pic": { - "path": "CONTENT\/banners\/banner_terragroup.jpg", - "rcid": "" - } - }, - { - "id": "5807bfe124597742a92e0a4c", - "pic": { - "path": "CONTENT\/banners\/norvinskzone.jpg", - "rcid": "" - } - }, - { - "id": "5807c3f124597746bf2db2ce", - "pic": { - "path": "CONTENT\/banners\/banner_scav.jpg", - "rcid": "" - } - }, - { - "id": "5807be8924597742c603fa19", - "pic": { - "path": "CONTENT\/banners\/banner_tarkov.jpg", - "rcid": "" - } - }, - { - "id": "5805f617245977100b2c1f41", - "pic": { - "path": "CONTENT\/banners\/tglabs.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT\/banners\/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT\/banners\/banner_emissary.jpg", - "rcid": "" } - } - ] + ] + } } } \ No newline at end of file diff --git a/Fuyu.Platform.Server/embedded/database/locations/interchange.json b/Fuyu.Platform.Server/embedded/database/locations/interchange.json index 3ccd3904..bde5c735 100644 --- a/Fuyu.Platform.Server/embedded/database/locations/interchange.json +++ b/Fuyu.Platform.Server/embedded/database/locations/interchange.json @@ -1,57118 +1,57121 @@ { - "serverId": "PVE_OFFLINE_659885_26_08_2024_01_48_58", - "serverSettings": { - "TraderServerSettings": { - "TraderServices": { - "ExUsecLoyalty": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ExUsecLoyalty", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966ff54c3ef01b6f3ffad8" + "err": 0, + "data": { + "serverId": "PVE_OFFLINE_659885_26_08_2024_01_48_58", + "serverSettings": { + "TraderServerSettings": { + "TraderServices": { + "ExUsecLoyalty": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ExUsecLoyalty", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966ff54c3ef01b6f3ffad8" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.09 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.09 + }, + "ServiceItemCost": { + "569668774bdc2da2298b4568": { + "Count": 2500 + }, + "61bf7c024770ee6f9c6b8b53": { + "Count": 2 } - } - }, - "ServiceItemCost": { - "569668774bdc2da2298b4568": { - "Count": 2500 }, - "61bf7c024770ee6f9c6b8b53": { - "Count": 2 - } - }, - "UniqueItems": [] - }, - "ZryachiyAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ZryachiyAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "6396701b9113f06a7c3b2379" + "UniqueItems": [] + }, + "ZryachiyAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ZryachiyAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "6396701b9113f06a7c3b2379" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.18 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.18 + }, + "ServiceItemCost": { + "62a0a16d0b9d3c46de5b6e97": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 2000 } - } - }, - "ServiceItemCost": { - "62a0a16d0b9d3c46de5b6e97": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 2000 - } - }, - "UniqueItems": [] - }, - "CultistsAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "CultistsAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966fccac6f8f3c677b9d89" + "UniqueItems": [] + }, + "CultistsAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "CultistsAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966fccac6f8f3c677b9d89" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.03 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.03 + }, + "ServiceItemCost": { + "5c12613b86f7743bbe2c3f76": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 1000 } - } - }, - "ServiceItemCost": { - "5c12613b86f7743bbe2c3f76": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 1000 - } - }, - "UniqueItems": [ - "64d0b40fbe2eed70e254e2d4" - ] - }, - "PlayerTaxi": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "PlayerTaxi", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrBotCover": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrBotCover", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "TransitItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "TransitItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + "UniqueItems": [ + "64d0b40fbe2eed70e254e2d4" + ] + }, + "PlayerTaxi": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "PlayerTaxi", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrBotCover": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrBotCover", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "TransitItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "TransitItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + } } - } - }, - "BTRServerSettings": { - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.77, - "BodySwingIntensity": 0.506, - "ServerMapBTRSettings": { - "Develop": { - "MapID": "develop", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "TarkovStreets": { - "MapID": "TarkovStreets", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "Woods": { - "MapID": "Woods", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 180.0, - "y": 360.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 + "BTRServerSettings": { + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.77, + "BodySwingIntensity": 0.506, + "ServerMapBTRSettings": { + "Develop": { + "MapID": "develop", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "TarkovStreets": { + "MapID": "TarkovStreets", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "Woods": { + "MapID": "Woods", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 180.0, + "y": 360.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + } } } - } - }, - "profile": { - "insuredItems": [] - }, - "locationLoot": { - "Enabled": true, - "EnableCoop": true, - "ForceOnlineRaidInPVE": false, - "Locked": false, - "Insurance": true, - "SafeLocation": false, - "Name": "Interchange", - "Description": "The South-Eastern highway interchange is a critical point in the transportation system of the city. Essentially, it is a strategical node connecting the port and harbour infrastructure with the industrial outskirts of Tarkov. ", - "Scene": { - "path": "maps\/shopping_mall.bundle", - "rcid": "Shopping_Mall.ScenesPreset.asset" - }, - "Area": 0.0, - "RequiredPlayerLevelMin": 0, - "RequiredPlayerLevelMax": 100, - "PmcMaxPlayersInGroup": 5, - "ScavMaxPlayersInGroup": 4, - "MinPlayers": 10, - "MaxPlayers": 14, - "MaxCoopGroup": 14, - "exit_count": 2, - "exit_access_time": 60, - "exit_time": 90, - "Preview": { - "path": "", - "rcid": "" - }, - "IconX": 660, - "IconY": 360, - "filter_ex": [], - "waves": [ - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZoneCenter", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 1, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZoneCenterBot", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 2, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZoneOLI", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 3, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZoneIDEA", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 4, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZoneRoad", - "BotSide": "Savage", - "BotPreset": "easy", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 5, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZoneIDEAPark", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 6, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZoneGoshan", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 7, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZonePowerStation", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 8, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZoneTrucks", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - } - ], - "limits": [], - "AveragePlayTime": 35, - "AveragePlayerLevel": 25, - "EscapeTimeLimit": 40, - "EscapeTimeLimitPVE": 40, - "EscapeTimeLimitCoop": 30, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 30, - "MaxDistToFreePoint": 170, - "MinDistToFreePoint": 50, - "MaxBotPerZone": 2, - "OpenZones": "ZoneCenter,ZoneCenterBot,ZoneOLI,ZoneIDEA,ZoneRoad,ZoneIDEAPark,ZoneGoshan,ZonePowerStation,ZoneTrucks,ZoneOLIPark", - "OcculsionCullingEnabled": true, - "GlobalLootChanceModifier": 0.35, - "GlobalLootChanceModifierPvE": 0.74, - "OldSpawn": true, - "OfflineOldSpawn": true, - "NewSpawn": true, - "OfflineNewSpawn": true, - "BotMax": 30, - "BotMaxPvE": 30, - "BotStart": 20, - "BotStartPlayer": 0, - "BotStop": 2400, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 340, - "BotSpawnTimeOnMax": 350, - "BotSpawnTimeOffMin": 10, - "BotSpawnTimeOffMax": 12, - "BotMaxPlayer": 0, - "BotEasy": 10, - "BotNormal": 50, - "BotHard": 40, - "BotImpossible": 0, - "BotAssault": 100, - "BotMarksman": 0, - "DisabledScavExits": "scav_NW,scav_SE", - "MinPlayerLvlAccessKeys": 0, - "AccessKeys": [], - "UnixDateTime": 1636383182, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "sav_summon_seconds": 60, - "matching_min_seconds": 60, - "GenerateLocalLootCache": true, - "PlayersRequestCount": -1, - "NonWaveGroupScenario": { - "MinToBeGroup": 2, - "MaxToBeGroup": 3, - "Chance": 50.0, - "Enabled": true }, - "BotSpawnCountStep": 4, - "BotSpawnPeriodCheck": 15, - "GlobalContainerChanceModifier": 1.0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 1.0, - "Scattering": 1.0, - "GainSight": 1.0, - "MarksmanAccuratyCoef": 1.0, - "VisibleDistance": 1.0, - "DistToPersueAxemanCoef": 1.0, - "KhorovodChance": 0, - "MinExfiltrationTime": 1200.0, - "MaxExfiltrationTime": 1800.0, - "DistToActivatePvE": 260.0, - "DistToSleepPvE": 300.0, - "DistToActivate": 260.0, - "DistToSleep": 300.0, - "AdditionalHostilitySettings": [ - { - "BotRole": "pmcBEAR", - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 90 - }, - { - "BotRole": "pmcUSEC", - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 75 - } - ] + "profile": { + "insuredItems": [] }, - "exits": [ - { - "Name": "NW Exfil", - "EntryPoints": "MallSE", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "SE Exfil", - "EntryPoints": "MallNW", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "PP Exfil", - "EntryPoints": "MallSE,MallNW", - "Chance": 50.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 4, - "ExfiltrationTime": 60.0, - "PassageRequirement": "TransferItem", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "5449016a4bdc2d6f028b456f", - "RequirementTip": "EXFIL_Item", - "Count": 5000, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 50.0, - "CountPVE": 5000, - "ExfiltrationTimePVE": 60.0, - "PlayersCountPVE": 4 - }, - { - "Name": "Saferoom Exfil", - "EntryPoints": "MallSE,MallNW", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 3.0, - "PassageRequirement": "WorldEvent", - "ExfiltrationType": "Manual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "EXFIL_INTERCHANGE_SAFEROOM_TIP", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 3.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Hole Exfill", - "EntryPoints": "MallSE,MallNW", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10.0, - "PassageRequirement": "Empty", - "ExfiltrationType": "Individual", - "RequiredSlot": "Backpack", - "Id": "", - "RequirementTip": "EXFIL_INTERCHANGE_HOLE_TIP", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 10.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Interchange Cooperation", - "EntryPoints": "MallSE,MallNW", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "ScavCooperation", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "EXFIL_Cooperate", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - } - ], - "DisabledForScav": false, - "BossLocationSpawn": [ - { - "BossName": "bossKilla", - "BossChance": 25.0, - "BossZone": "ZoneCenterBot,ZoneCenter,ZoneOLI,ZoneIDEA,ZoneGoshan", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "followerTagilla", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerName": "", - "TriggerId": "", - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerName": "", - "TriggerId": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerName": "", - "TriggerId": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerName": "", - "TriggerId": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerName": "", - "TriggerId": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerName": "", - "TriggerId": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerName": "", - "TriggerId": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - } - ], - "SpawnPointParams": [ - { - "Id": "019d9bd8-411d-49a6-84ca-727ffb38e57b", - "Position": { - "x": -182.890015, - "y": 21.4521942, - "z": 133.530029 - }, - "Rotation": 111.17, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + "locationLoot": { + "Enabled": true, + "EnableCoop": true, + "ForceOnlineRaidInPVE": false, + "Locked": false, + "Insurance": true, + "SafeLocation": false, + "Name": "Interchange", + "Description": "The South-Eastern highway interchange is a critical point in the transportation system of the city. Essentially, it is a strategical node connecting the port and harbour infrastructure with the industrial outskirts of Tarkov. ", + "Scene": { + "path": "maps\/shopping_mall.bundle", + "rcid": "Shopping_Mall.ScenesPreset.asset" + }, + "Area": 0.0, + "RequiredPlayerLevelMin": 0, + "RequiredPlayerLevelMax": 100, + "PmcMaxPlayersInGroup": 5, + "ScavMaxPlayersInGroup": 4, + "MinPlayers": 10, + "MaxPlayers": 14, + "MaxCoopGroup": 14, + "exit_count": 2, + "exit_access_time": 60, + "exit_time": 90, + "Preview": { + "path": "", + "rcid": "" + }, + "IconX": 660, + "IconY": 360, + "filter_ex": [], + "waves": [ + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZoneCenter", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "01af651e-2974-468b-8626-9697d3f488cd", - "Position": { - "x": 59.119, - "y": 36.63006, - "z": -87.426 - }, - "Rotation": 57.2031174, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 1, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZoneCenterBot", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneCenter", - "CorePointId": 3 - }, - { - "Id": "02db875c-c2f1-4484-8546-b9a612a5b402", - "Position": { - "x": 108.755371, - "y": 21.3978081, - "z": -324.0263 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "number": 2, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZoneOLI", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "03b999f1-ac1a-4c44-ad73-8ef61626863e", - "Position": { - "x": -337.663879, - "y": 21.4921951, - "z": 261.535522 - }, - "Rotation": 109.723984, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 3, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZoneIDEA", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0547b0b3-d91c-4235-8bb7-09fa47d3c3b1", - "Position": { - "x": -252.88, - "y": 21.4521942, - "z": 57.73999 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 4, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZoneRoad", + "BotSide": "Savage", + "BotPreset": "easy", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "05b4f8d5-0947-49c1-8d70-634309ef7d5e", - "Position": { - "x": 110.48999, - "y": 20.0621948, - "z": -353.1999 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 5, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZoneIDEAPark", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "06766669-aece-4c12-a0a5-9db4413ffad3", - "Position": { - "x": 6.73535156, - "y": 27.152813, - "z": -121.996338 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 6, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZoneGoshan", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "06e2c670-c4bf-4adb-8228-916bb8804679", - "Position": { - "x": 20.18, - "y": 36.6251869, - "z": -80.62 - }, - "Rotation": 53.03254, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "number": 7, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZonePowerStation", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneCenterBot", - "CorePointId": 3 - }, - { - "Id": "07256c53-7e8c-4ffb-8900-714a8b92e8af", - "Position": { - "x": -180.247314, - "y": 21.4178123, - "z": 144.455811 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 + { + "number": 8, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZoneTrucks", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] + } + ], + "limits": [], + "AveragePlayTime": 35, + "AveragePlayerLevel": 25, + "EscapeTimeLimit": 40, + "EscapeTimeLimitPVE": 40, + "EscapeTimeLimitCoop": 30, + "Rules": "Normal", + "IsSecret": false, + "doors": [], + "tmp_location_field_remove_me": 0, + "MinDistToExitPoint": 30, + "MaxDistToFreePoint": 170, + "MinDistToFreePoint": 50, + "MaxBotPerZone": 2, + "OpenZones": "ZoneCenter,ZoneCenterBot,ZoneOLI,ZoneIDEA,ZoneRoad,ZoneIDEAPark,ZoneGoshan,ZonePowerStation,ZoneTrucks,ZoneOLIPark", + "OcculsionCullingEnabled": true, + "GlobalLootChanceModifier": 0.35, + "GlobalLootChanceModifierPvE": 0.74, + "OldSpawn": true, + "OfflineOldSpawn": true, + "NewSpawn": true, + "OfflineNewSpawn": true, + "BotMax": 30, + "BotMaxPvE": 30, + "BotStart": 20, + "BotStartPlayer": 0, + "BotStop": 2400, + "BotMaxTimePlayer": 0, + "BotSpawnTimeOnMin": 340, + "BotSpawnTimeOnMax": 350, + "BotSpawnTimeOffMin": 10, + "BotSpawnTimeOffMax": 12, + "BotMaxPlayer": 0, + "BotEasy": 10, + "BotNormal": 50, + "BotHard": 40, + "BotImpossible": 0, + "BotAssault": 100, + "BotMarksman": 0, + "DisabledScavExits": "scav_NW,scav_SE", + "MinPlayerLvlAccessKeys": 0, + "AccessKeys": [], + "UnixDateTime": 1636383182, + "users_gather_seconds": 0, + "users_spawn_seconds_n": 120, + "users_spawn_seconds_n2": 200, + "users_summon_seconds": 0, + "sav_summon_seconds": 60, + "matching_min_seconds": 60, + "GenerateLocalLootCache": true, + "PlayersRequestCount": -1, + "NonWaveGroupScenario": { + "MinToBeGroup": 2, + "MaxToBeGroup": 3, + "Chance": 50.0, + "Enabled": true + }, + "BotSpawnCountStep": 4, + "BotSpawnPeriodCheck": 15, + "GlobalContainerChanceModifier": 1.0, + "MinMaxBots": [], + "BotLocationModifier": { + "AccuracySpeed": 1.0, + "Scattering": 1.0, + "GainSight": 1.0, + "MarksmanAccuratyCoef": 1.0, + "VisibleDistance": 1.0, + "DistToPersueAxemanCoef": 1.0, + "KhorovodChance": 0, + "MinExfiltrationTime": 1200.0, + "MaxExfiltrationTime": 1800.0, + "DistToActivatePvE": 260.0, + "DistToSleepPvE": 300.0, + "DistToActivate": 260.0, + "DistToSleep": 300.0, + "AdditionalHostilitySettings": [ + { + "BotRole": "pmcBEAR", + "AlwaysEnemies": [ + "pmcBot", + "exUsec", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar", + "bossKnight" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcUSEC" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 75, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 90 + }, + { + "BotRole": "pmcUSEC", + "AlwaysEnemies": [ + "pmcBot", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcBEAR" + }, + { + "EnemyChance": 15, + "Role": "exUsec" + }, + { + "EnemyChance": 15, + "Role": "bossKnight" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 90, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 75 } - }, - "BotZoneName": "", - "CorePointId": 0 + ] }, - { - "Id": "07aa3c3a-8edb-4fe3-8c05-891f8c8d68b0", - "Position": { - "x": -156.87001, - "y": 27.1199989, - "z": -36.4400024 - }, - "Rotation": 199.077713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + "exits": [ + { + "Name": "NW Exfil", + "EntryPoints": "MallSE", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneGoshan", - "CorePointId": 8 - }, - { - "Id": "09b578e9-c71f-439f-a015-ec2f4fc38b82", - "Position": { - "x": -203.93, - "y": 21.4521942, - "z": -77.8299561 - }, - "Rotation": 144.44, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "SE Exfil", + "EntryPoints": "MallNW", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "09f52cca-8554-40f2-9e03-1d084a6e542c", - "Position": { - "x": 367.557251, - "y": 16.8021927, - "z": -188.870728 - }, - "Rotation": 229.3703, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "PP Exfil", + "EntryPoints": "MallSE,MallNW", + "Chance": 50.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 4, + "ExfiltrationTime": 60.0, + "PassageRequirement": "TransferItem", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "5449016a4bdc2d6f028b456f", + "RequirementTip": "EXFIL_Item", + "Count": 5000, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 50.0, + "CountPVE": 5000, + "ExfiltrationTimePVE": 60.0, + "PlayersCountPVE": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0bfbe3ee-1d22-40c5-bbda-b4232ebefd94", - "Position": { - "x": 24.0299988, - "y": 36.58, - "z": -38.05 - }, - "Rotation": 232.64743, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Name": "Saferoom Exfil", + "EntryPoints": "MallSE,MallNW", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 3.0, + "PassageRequirement": "WorldEvent", + "ExfiltrationType": "Manual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "EXFIL_INTERCHANGE_SAFEROOM_TIP", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 3.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneCenterBot", - "CorePointId": 3 - }, - { - "Id": "0d31289d-ac77-4654-b222-fdb8137c130d", - "Position": { - "x": -87.519, - "y": 27.1000023, - "z": 140.036987 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Name": "Hole Exfill", + "EntryPoints": "MallSE,MallNW", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10.0, + "PassageRequirement": "Empty", + "ExfiltrationType": "Individual", + "RequiredSlot": "Backpack", + "Id": "", + "RequirementTip": "EXFIL_INTERCHANGE_HOLE_TIP", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 10.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneOLI", - "CorePointId": 7 - }, - { - "Id": "0e691845-e6ba-4c32-8aff-4fd6b769e9a1", - "Position": { - "x": 234.22998, - "y": 19.8121948, - "z": -288.459961 - }, - "Rotation": 324.91, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "Interchange Cooperation", + "EntryPoints": "MallSE,MallNW", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "ScavCooperation", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "EXFIL_Cooperate", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 + } + ], + "DisabledForScav": false, + "BossLocationSpawn": [ + { + "BossName": "bossKilla", + "BossChance": 25.0, + "BossZone": "ZoneCenterBot,ZoneCenter,ZoneOLI,ZoneIDEA,ZoneGoshan", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "followerTagilla", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerName": "", + "TriggerId": "", + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "101c89e8-95fc-4104-bf60-09327bd7adc4", - "Position": { - "x": 109.5, - "y": 19.8521881, - "z": -356.49 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerName": "", + "TriggerId": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1042d3c7-d0f9-42ad-b85e-f085898735e4", - "Position": { - "x": 298.75, - "y": 21.6621857, - "z": -423.1501 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerName": "", + "TriggerId": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "12314b42-e8be-4232-875b-d411878214d9", - "Position": { - "x": -182.660034, - "y": 21.4521942, - "z": 135.73999 - }, - "Rotation": 111.17, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerName": "", + "TriggerId": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "137a2ff8-59c4-4a3d-8beb-870215366ee7", - "Position": { - "x": 149.890015, - "y": 20.0321884, - "z": -412.2599 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerName": "", + "TriggerId": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "13e66fd5-878d-4b13-81ff-4dd18ac4fade", - "Position": { - "x": -163.34, - "y": 21.3653564, - "z": 160.96 - }, - "Rotation": 287.573242, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerName": "", + "TriggerId": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneTrucks", - "CorePointId": 5 - }, - { - "Id": "14527c4f-0ab3-467d-8468-378f5a041b67", - "Position": { - "x": 149.489868, - "y": 19.482193, - "z": -408.87 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerName": "", + "TriggerId": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] + } + ], + "SpawnPointParams": [ + { + "Id": "019d9bd8-411d-49a6-84ca-727ffb38e57b", + "Position": { + "x": -182.890015, + "y": 21.4521942, + "z": 133.530029 + }, + "Rotation": 111.17, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1486b420-915d-49f3-8dac-cc81298a642e", - "Position": { - "x": -93.382, - "y": 27.1000023, - "z": 139.597992 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "01af651e-2974-468b-8626-9697d3f488cd", + "Position": { + "x": 59.119, + "y": 36.63006, + "z": -87.426 + }, + "Rotation": 57.2031174, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneCenter", + "CorePointId": 3 }, - "BotZoneName": "ZoneOLI", - "CorePointId": 12 - }, - { - "Id": "15089928-14c7-4d40-b8a5-f4a3f0a5a5af", - "Position": { - "x": -207.43, - "y": 21.3502846, - "z": -354.62 - }, - "Rotation": 97.6164246, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "02db875c-c2f1-4484-8546-b9a612a5b402", + "Position": { + "x": 108.755371, + "y": 21.3978081, + "z": -324.0263 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZonePowerStation", - "CorePointId": 10 - }, - { - "Id": "161a1ffd-5982-4dfc-80ff-ff8e0fe85503", - "Position": { - "x": -198.599976, - "y": 25.11219, - "z": 273.88 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "03b999f1-ac1a-4c44-ad73-8ef61626863e", + "Position": { + "x": -337.663879, + "y": 21.4921951, + "z": 261.535522 + }, + "Rotation": 109.723984, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "162e983f-c31c-4923-863e-8f4f680cf93b", - "Position": { - "x": 108.050049, - "y": 20.142189, - "z": -355.359863 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0547b0b3-d91c-4235-8bb7-09fa47d3c3b1", + "Position": { + "x": -252.88, + "y": 21.4521942, + "z": 57.73999 + }, + "Rotation": 86.82, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "171a8a24-2255-4575-b5fc-fbc83bb2f3a4", - "Position": { - "x": 108.755371, - "y": 21.3978081, - "z": -324.0263 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "05b4f8d5-0947-49c1-8d70-634309ef7d5e", + "Position": { + "x": 110.48999, + "y": 20.0621948, + "z": -353.1999 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "171f3674-8741-4ad0-b466-7053f19a5063", - "Position": { - "x": 70.7599945, - "y": 27.0864677, - "z": 170.909988 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "06766669-aece-4c12-a0a5-9db4413ffad3", + "Position": { + "x": 6.73535156, + "y": 27.152813, + "z": -121.996338 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOLI", - "CorePointId": 7 - }, - { - "Id": "17f6bc8e-2843-4b8b-90c4-f9b1cffadce3", - "Position": { - "x": 0.171386719, - "y": 27.15981, - "z": -110.0863 - }, - "Rotation": 33.25722, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "06e2c670-c4bf-4adb-8228-916bb8804679", + "Position": { + "x": 20.18, + "y": 36.6251869, + "z": -80.62 + }, + "Rotation": 53.03254, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneCenterBot", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "187ca419-e5cc-4a30-886f-3606ea52caf7", - "Position": { - "x": -78.71997, - "y": 22.6621857, - "z": 288.949951 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "07256c53-7e8c-4ffb-8900-714a8b92e8af", + "Position": { + "x": -180.247314, + "y": 21.4178123, + "z": 144.455811 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "19ed2800-5bad-4eb1-9145-c527df2fbbd7", - "Position": { - "x": -253.06, - "y": 21.4300022, - "z": -378.590027 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "07aa3c3a-8edb-4fe3-8c05-891f8c8d68b0", + "Position": { + "x": -156.87001, + "y": 27.1199989, + "z": -36.4400024 + }, + "Rotation": 199.077713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneGoshan", + "CorePointId": 8 }, - "BotZoneName": "ZonePowerStation", - "CorePointId": 10 - }, - { - "Id": "1a535c95-c1d4-4cfa-9d30-f79b089dec28", - "Position": { - "x": -55.034996, - "y": 27.12, - "z": -200.538 - }, - "Rotation": 248.358978, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } + { + "Id": "09b578e9-c71f-439f-a015-ec2f4fc38b82", + "Position": { + "x": -203.93, + "y": 21.4521942, + "z": -77.8299561 + }, + "Rotation": 144.44, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneIDEA", - "CorePointId": 18 - }, - { - "Id": "1a64d7c0-9d68-496b-9461-78cf140ac306", - "Position": { - "x": -12.2346191, - "y": 27.152813, - "z": -126.716309 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "09f52cca-8554-40f2-9e03-1d084a6e542c", + "Position": { + "x": 367.557251, + "y": 16.8021927, + "z": -188.870728 + }, + "Rotation": 229.3703, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1cb01370-1001-4d01-aec1-92cf162cbbc1", - "Position": { - "x": -178.169128, - "y": 21.4178123, - "z": 135.509155 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "0bfbe3ee-1d22-40c5-bbda-b4232ebefd94", + "Position": { + "x": 24.0299988, + "y": 36.58, + "z": -38.05 + }, + "Rotation": 232.64743, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneCenterBot", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1cbb275e-6531-4fa0-ae7a-7f8c728b07d0", - "Position": { - "x": 278.444336, - "y": 21.4121933, - "z": 333.002441 - }, - "Rotation": 230.976517, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0d31289d-ac77-4654-b222-fdb8137c130d", + "Position": { + "x": -87.519, + "y": 27.1000023, + "z": 140.036987 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneOLI", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "21a81c01-f1f0-4537-bf7e-5f1eea7c2fe2", - "Position": { - "x": -185.81, - "y": 21.4521942, - "z": 134.5 - }, - "Rotation": 111.17, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0e691845-e6ba-4c32-8aff-4fd6b769e9a1", + "Position": { + "x": 234.22998, + "y": 19.8121948, + "z": -288.459961 + }, + "Rotation": 324.91, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "24caed4f-2614-4916-bbe3-a82c05ec2c25", - "Position": { - "x": 279.86, - "y": 21.4521942, - "z": -7.77001953 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "101c89e8-95fc-4104-bf60-09327bd7adc4", + "Position": { + "x": 109.5, + "y": 19.8521881, + "z": -356.49 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2788bad0-51b8-4596-954d-11dc5b2edefa", - "Position": { - "x": -9.484619, - "y": 27.152813, - "z": -128.656372 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1042d3c7-d0f9-42ad-b85e-f085898735e4", + "Position": { + "x": 298.75, + "y": 21.6621857, + "z": -423.1501 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "27f8a21f-fbab-4548-916c-53a303179214", - "Position": { - "x": 314.9325, - "y": 17.0421944, - "z": -137.220581 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "12314b42-e8be-4232-875b-d411878214d9", + "Position": { + "x": -182.660034, + "y": 21.4521942, + "z": 135.73999 + }, + "Rotation": 111.17, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "28ca152a-220d-443e-9580-13e15c6be163", - "Position": { - "x": -84.05, - "y": 27.1200027, - "z": 77.84 - }, - "Rotation": 64.68137, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "137a2ff8-59c4-4a3d-8beb-870215366ee7", + "Position": { + "x": 149.890015, + "y": 20.0321884, + "z": -412.2599 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOLI", - "CorePointId": 12 - }, - { - "Id": "299b816e-1141-4002-a741-2f9d94570379", - "Position": { - "x": 384.958618, - "y": 15.1221962, - "z": -294.961853 - }, - "Rotation": 283.05, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "13e66fd5-878d-4b13-81ff-4dd18ac4fade", + "Position": { + "x": -163.34, + "y": 21.3653564, + "z": 160.96 + }, + "Rotation": 287.573242, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneTrucks", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2bcafda4-6e53-43f5-b7df-7a9cb528b0ec", - "Position": { - "x": 108.145386, - "y": 21.3978081, - "z": -327.8363 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "14527c4f-0ab3-467d-8468-378f5a041b67", + "Position": { + "x": 149.489868, + "y": 19.482193, + "z": -408.87 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2bf91af1-5ccc-44b0-9a4a-6149455b4494", - "Position": { - "x": 277.290161, - "y": 21.4521942, - "z": -8.310059 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1486b420-915d-49f3-8dac-cc81298a642e", + "Position": { + "x": -93.382, + "y": 27.1000023, + "z": 139.597992 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneOLI", + "CorePointId": 12 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2cd458ae-a30a-4a55-bd8c-759b48f04b1d", - "Position": { - "x": 59.081, - "y": 36.63006, - "z": -90.855 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "15089928-14c7-4d40-b8a5-f4a3f0a5a5af", + "Position": { + "x": -207.43, + "y": 21.3502846, + "z": -354.62 + }, + "Rotation": 97.6164246, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZonePowerStation", + "CorePointId": 10 }, - "BotZoneName": "ZoneCenter", - "CorePointId": 2 - }, - { - "Id": "2dcba591-3692-4fc8-90b6-5fb092309d29", - "Position": { - "x": 298.319946, - "y": 21.4521942, - "z": -420.55 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "161a1ffd-5982-4dfc-80ff-ff8e0fe85503", + "Position": { + "x": -198.599976, + "y": 25.11219, + "z": 273.88 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2eea7e67-e411-4221-8ddb-c4116949e046", - "Position": { - "x": -158.840012, - "y": 27.1199989, - "z": -73.64 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "162e983f-c31c-4923-863e-8f4f680cf93b", + "Position": { + "x": 108.050049, + "y": 20.142189, + "z": -355.359863 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGoshan", - "CorePointId": 8 - }, - { - "Id": "332eab7f-251a-4bb0-9bcc-f7cc674d3885", - "Position": { - "x": 151.319946, - "y": 20.00219, - "z": -411.57 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "171a8a24-2255-4575-b5fc-fbc83bb2f3a4", + "Position": { + "x": 108.755371, + "y": 21.3978081, + "z": -324.0263 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "33a8dd43-670c-4bc8-ae6e-ab88b9971618", - "Position": { - "x": -338.044434, - "y": 21.3821945, - "z": 263.9226 - }, - "Rotation": 109.723984, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "171f3674-8741-4ad0-b466-7053f19a5063", + "Position": { + "x": 70.7599945, + "y": 27.0864677, + "z": 170.909988 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneOLI", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "33e4e0eb-57f9-4bd1-9153-bce60d953177", - "Position": { - "x": -196.63, - "y": 24.93219, - "z": 273.410034 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "17f6bc8e-2843-4b8b-90c4-f9b1cffadce3", + "Position": { + "x": 0.171386719, + "y": 27.15981, + "z": -110.0863 + }, + "Rotation": 33.25722, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "33f76591-960f-48a9-b6dc-7c10948094a8", - "Position": { - "x": -203.099976, - "y": 21.4521942, - "z": -76.3399658 - }, - "Rotation": 144.44, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "187ca419-e5cc-4a30-886f-3606ea52caf7", + "Position": { + "x": -78.71997, + "y": 22.6621857, + "z": 288.949951 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3403518f-cdf5-4b64-befe-d322a6507694", - "Position": { - "x": -6.04455566, - "y": 27.152813, - "z": -132.436279 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "19ed2800-5bad-4eb1-9145-c527df2fbbd7", + "Position": { + "x": -253.06, + "y": 21.4300022, + "z": -378.590027 + }, + "Rotation": 76.86639, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZonePowerStation", + "CorePointId": 10 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3405400b-54eb-4435-b18c-169ef507b071", - "Position": { - "x": 88.4200058, - "y": 21.43, - "z": -168.57 - }, - "Rotation": 272.0034, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "1a535c95-c1d4-4cfa-9d30-f79b089dec28", + "Position": { + "x": -55.034996, + "y": 27.12, + "z": -200.538 + }, + "Rotation": 248.358978, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 75 + } + }, + "BotZoneName": "ZoneIDEA", + "CorePointId": 18 }, - "BotZoneName": "ZoneIDEAPark", - "CorePointId": 17 - }, - { - "Id": "34422ffa-a0a0-4172-9181-b8d011227e1c", - "Position": { - "x": -205.960022, - "y": 21.4521942, - "z": -77.73999 - }, - "Rotation": 144.44, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1a64d7c0-9d68-496b-9461-78cf140ac306", + "Position": { + "x": -12.2346191, + "y": 27.152813, + "z": -126.716309 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "34b2ad9e-127b-415a-ac72-7116d54d905b", - "Position": { - "x": 148.449951, - "y": 19.6221924, - "z": -411.14 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1cb01370-1001-4d01-aec1-92cf162cbbc1", + "Position": { + "x": -178.169128, + "y": 21.4178123, + "z": 135.509155 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3522edd3-bf38-40cb-9803-14d6d60c990f", - "Position": { - "x": 59.1099854, - "y": 21.4521942, - "z": 269.97998 - }, - "Rotation": 193.03, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1cbb275e-6531-4fa0-ae7a-7f8c728b07d0", + "Position": { + "x": 278.444336, + "y": 21.4121933, + "z": 333.002441 + }, + "Rotation": 230.976517, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "357538f3-9027-4d55-8c97-ab33f4af3344", - "Position": { - "x": -218.200012, - "y": 21.4521942, - "z": 5.43005371 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "21a81c01-f1f0-4537-bf7e-5f1eea7c2fe2", + "Position": { + "x": -185.81, + "y": 21.4521942, + "z": 134.5 + }, + "Rotation": 111.17, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "363ad7b4-3ea1-431d-8396-e2481a267b0a", - "Position": { - "x": 109.089966, - "y": 20.0821915, - "z": -353.089966 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "24caed4f-2614-4916-bbe3-a82c05ec2c25", + "Position": { + "x": 279.86, + "y": 21.4521942, + "z": -7.77001953 + }, + "Rotation": 267.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "36bcc208-9c90-4d46-8396-e79a6161af78", - "Position": { - "x": -320.802, - "y": 23.3931961, - "z": 143.0426 - }, - "Rotation": 100.069992, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2788bad0-51b8-4596-954d-11dc5b2edefa", + "Position": { + "x": -9.484619, + "y": 27.152813, + "z": -128.656372 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3811659c-c8c4-4465-86f4-8c926517dfe7", - "Position": { - "x": 60.78003, - "y": 21.4521942, - "z": 270.070068 - }, - "Rotation": 187.52, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "27f8a21f-fbab-4548-916c-53a303179214", + "Position": { + "x": 314.9325, + "y": 17.0421944, + "z": -137.220581 + }, + "Rotation": 267.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3825cd03-9684-4980-806a-94bac32e01fd", - "Position": { - "x": 4.959961, - "y": 21.4521942, - "z": 253.920044 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "28ca152a-220d-443e-9580-13e15c6be163", + "Position": { + "x": -84.05, + "y": 27.1200027, + "z": 77.84 + }, + "Rotation": 64.68137, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneOLI", + "CorePointId": 12 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3943055c-492a-4625-8740-0aa20135e336", - "Position": { - "x": -27.0800018, - "y": 27.119, - "z": -2.06999969 - }, - "Rotation": 91.26827, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "299b816e-1141-4002-a741-2f9d94570379", + "Position": { + "x": 384.958618, + "y": 15.1221962, + "z": -294.961853 + }, + "Rotation": 283.05, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCenterBot", - "CorePointId": 14 - }, - { - "Id": "39dab627-f43d-4d3f-a0e9-d4ecf5201cc1", - "Position": { - "x": 90.43201, - "y": 21.457, - "z": -185.392 - }, - "Rotation": 251.944916, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "2bcafda4-6e53-43f5-b7df-7a9cb528b0ec", + "Position": { + "x": 108.145386, + "y": 21.3978081, + "z": -327.8363 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneIDEAPark", - "CorePointId": 17 - }, - { - "Id": "39ec71fc-1c48-4612-9910-a62af2dd453f", - "Position": { - "x": 104.495361, - "y": 21.3978081, - "z": -325.076355 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "2bf91af1-5ccc-44b0-9a4a-6149455b4494", + "Position": { + "x": 277.290161, + "y": 21.4521942, + "z": -8.310059 + }, + "Rotation": 267.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3bf7afc7-3d90-48aa-89fb-6f172cd127ea", - "Position": { - "x": -216.31, - "y": 21.4521942, - "z": 4.09997559 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2cd458ae-a30a-4a55-bd8c-759b48f04b1d", + "Position": { + "x": 59.081, + "y": 36.63006, + "z": -90.855 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneCenter", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3c562f86-d313-4272-9697-bf19044102f2", - "Position": { - "x": -134.849976, - "y": 27.232193, - "z": 199.640015 - }, - "Rotation": 220.78, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2dcba591-3692-4fc8-90b6-5fb092309d29", + "Position": { + "x": 298.319946, + "y": 21.4521942, + "z": -420.55 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3ce23dba-5c1d-4ed8-aefd-9a6a2e2b7f4e", - "Position": { - "x": -335.7013, - "y": 21.6221924, - "z": 259.357666 - }, - "Rotation": 109.723984, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2eea7e67-e411-4221-8ddb-c4116949e046", + "Position": { + "x": -158.840012, + "y": 27.1199989, + "z": -73.64 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneGoshan", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3f3b9d8e-636f-449b-be13-522b9aede0ae", - "Position": { - "x": 295.88, - "y": 21.5621948, - "z": -422.719971 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "332eab7f-251a-4bb0-9bcc-f7cc674d3885", + "Position": { + "x": 151.319946, + "y": 20.00219, + "z": -411.57 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3fa1d408-52e7-4d0d-9fc2-7c22d644df2b", - "Position": { - "x": -167.012939, - "y": 21.4521942, - "z": -389.1739 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "33a8dd43-670c-4bc8-ae6e-ab88b9971618", + "Position": { + "x": -338.044434, + "y": 21.3821945, + "z": 263.9226 + }, + "Rotation": 109.723984, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3febd6c1-66cd-4b49-9e9e-0c549c559de9", - "Position": { - "x": 386.018433, - "y": 14.8421936, - "z": -292.26178 - }, - "Rotation": 283.05, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "33e4e0eb-57f9-4bd1-9153-bce60d953177", + "Position": { + "x": -196.63, + "y": 24.93219, + "z": 273.410034 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4059ddc8-b03b-45c3-a159-86c3b958c620", - "Position": { - "x": -180.050415, - "y": 21.4178123, - "z": 150.53125 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "33f76591-960f-48a9-b6dc-7c10948094a8", + "Position": { + "x": -203.099976, + "y": 21.4521942, + "z": -76.3399658 + }, + "Rotation": 144.44, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "412315ab-0fb2-4e6f-93ff-a6d66ead6c54", - "Position": { - "x": 281.22, - "y": 21.4098263, - "z": 2.10700035 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "3403518f-cdf5-4b64-befe-d322a6507694", + "Position": { + "x": -6.04455566, + "y": 27.152813, + "z": -132.436279 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 6 - }, - { - "Id": "427b2c32-f4fc-4812-a661-f8dd9d539b45", - "Position": { - "x": 382.622681, - "y": 15.2921944, - "z": -294.718567 - }, - "Rotation": 283.05, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3405400b-54eb-4435-b18c-169ef507b071", + "Position": { + "x": 88.4200058, + "y": 21.43, + "z": -168.57 + }, + "Rotation": 272.0034, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneIDEAPark", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "43b84f2f-0058-4208-8624-c4edba8bd130", - "Position": { - "x": -166.582886, - "y": 21.4521942, - "z": -391.773743 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "34422ffa-a0a0-4172-9181-b8d011227e1c", + "Position": { + "x": -205.960022, + "y": 21.4521942, + "z": -77.73999 + }, + "Rotation": 144.44, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4583acfb-6700-42d9-a9cf-24f08b31d3c7", - "Position": { - "x": 386.378662, - "y": 14.8221931, - "z": -293.801758 - }, - "Rotation": 283.05, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "34b2ad9e-127b-415a-ac72-7116d54d905b", + "Position": { + "x": 148.449951, + "y": 19.6221924, + "z": -411.14 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "459d5f99-0d44-4659-b2d1-793f140c47c7", - "Position": { - "x": -28.2820053, - "y": 21.5170021, - "z": 74.645 - }, - "Rotation": 96.8581161, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } + { + "Id": "3522edd3-bf38-40cb-9803-14d6d60c990f", + "Position": { + "x": 59.1099854, + "y": 21.4521942, + "z": 269.97998 + }, + "Rotation": 193.03, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOLIPark", - "CorePointId": 13 - }, - { - "Id": "4af33c9a-8450-4333-ad21-935fab511c67", - "Position": { - "x": 6.96, - "y": 27.12, - "z": -238.90799 - }, - "Rotation": 277.544922, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "357538f3-9027-4d55-8c97-ab33f4af3344", + "Position": { + "x": -218.200012, + "y": 21.4521942, + "z": 5.43005371 + }, + "Rotation": 86.82, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneIDEA", - "CorePointId": 1 - }, - { - "Id": "4bd264f8-67ef-478a-857a-408fe33d75b0", - "Position": { - "x": 383.39856, - "y": 15.2021942, - "z": -292.0918 - }, - "Rotation": 283.05, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "363ad7b4-3ea1-431d-8396-e2481a267b0a", + "Position": { + "x": 109.089966, + "y": 20.0821915, + "z": -353.089966 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4be57cb8-16e5-47cb-ade1-664372515c7d", - "Position": { - "x": 61.6300049, - "y": 21.4521942, - "z": 268.570068 - }, - "Rotation": 179.6, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "36bcc208-9c90-4d46-8396-e79a6161af78", + "Position": { + "x": -320.802, + "y": 23.3931961, + "z": 143.0426 + }, + "Rotation": 100.069992, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4d4bfcb0-0de5-409f-a815-852b996bcaa3", - "Position": { - "x": 279.569946, - "y": 21.4521942, - "z": -10.6500244 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3811659c-c8c4-4465-86f4-8c926517dfe7", + "Position": { + "x": 60.78003, + "y": 21.4521942, + "z": 270.070068 + }, + "Rotation": 187.52, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4e096ab1-0145-4d18-97b9-f9c727e9988a", - "Position": { - "x": -14.6182861, - "y": 22.3421936, - "z": -402.505 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3825cd03-9684-4980-806a-94bac32e01fd", + "Position": { + "x": 4.959961, + "y": 21.4521942, + "z": 253.920044 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4eb1bea9-3029-4850-9fed-3bbe565a46d5", - "Position": { - "x": 59.958, - "y": 36.63006, - "z": -81.907 - }, - "Rotation": 64.14227, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "3943055c-492a-4625-8740-0aa20135e336", + "Position": { + "x": -27.0800018, + "y": 27.119, + "z": -2.06999969 + }, + "Rotation": 91.26827, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneCenterBot", + "CorePointId": 14 }, - "BotZoneName": "ZoneCenter", - "CorePointId": 3 - }, - { - "Id": "50570c3b-596f-4bec-b570-9932a29f6923", - "Position": { - "x": -76.9100342, - "y": 22.3821869, - "z": 289.920044 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "39dab627-f43d-4d3f-a0e9-d4ecf5201cc1", + "Position": { + "x": 90.43201, + "y": 21.457, + "z": -185.392 + }, + "Rotation": 251.944916, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneIDEAPark", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "519c3c78-c6fa-480a-a810-c72c5dbb62d2", - "Position": { - "x": -178.438232, - "y": 21.4178123, - "z": 133.717529 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "39ec71fc-1c48-4612-9910-a62af2dd453f", + "Position": { + "x": 104.495361, + "y": 21.3978081, + "z": -325.076355 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "51dbf971-7b9c-45af-a64f-8d61cb3b9861", - "Position": { - "x": -241.89, - "y": 21.3502846, - "z": -376.06 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "3bf7afc7-3d90-48aa-89fb-6f172cd127ea", + "Position": { + "x": -216.31, + "y": 21.4521942, + "z": 4.09997559 + }, + "Rotation": 86.82, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZonePowerStation", - "CorePointId": 10 - }, - { - "Id": "561e5fc1-562f-4d4e-bc90-8ff6241fdc6e", - "Position": { - "x": 60.467, - "y": 36.735, - "z": -29.253 - }, - "Rotation": 174.43721, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "3c562f86-d313-4272-9697-bf19044102f2", + "Position": { + "x": -134.849976, + "y": 27.232193, + "z": 199.640015 + }, + "Rotation": 220.78, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCenter", - "CorePointId": 3 - }, - { - "Id": "56ab3b71-89a9-482d-8d61-585c05368f61", - "Position": { - "x": 4.04541, - "y": 27.152813, - "z": -124.296387 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3ce23dba-5c1d-4ed8-aefd-9a6a2e2b7f4e", + "Position": { + "x": -335.7013, + "y": 21.6221924, + "z": 259.357666 + }, + "Rotation": 109.723984, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "575d1452-6afb-458e-b7d8-1d157a56b4bf", - "Position": { - "x": -318.5019, - "y": 22.4411926, - "z": 145.785645 - }, - "Rotation": 100.069992, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3f3b9d8e-636f-449b-be13-522b9aede0ae", + "Position": { + "x": 295.88, + "y": 21.5621948, + "z": -422.719971 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "581498c5-ac15-4eaf-9eb0-c4a0fda6b3e0", - "Position": { - "x": -145.799988, - "y": 27.232193, - "z": 199.63 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3fa1d408-52e7-4d0d-9fc2-7c22d644df2b", + "Position": { + "x": -167.012939, + "y": 21.4521942, + "z": -389.1739 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "58bedf70-924f-4834-a767-d77a0f74ddcf", - "Position": { - "x": -75.48999, - "y": 22.8321915, - "z": 287.199951 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3febd6c1-66cd-4b49-9e9e-0c549c559de9", + "Position": { + "x": 386.018433, + "y": 14.8421936, + "z": -292.26178 + }, + "Rotation": 283.05, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5a91ec2f-66a1-4a42-a191-5a3f52179cfd", - "Position": { - "x": -35.6460037, - "y": 27.3000011, - "z": -194.558 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } + { + "Id": "4059ddc8-b03b-45c3-a159-86c3b958c620", + "Position": { + "x": -180.050415, + "y": 21.4178123, + "z": 150.53125 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneIDEA", - "CorePointId": 18 - }, - { - "Id": "5b06ff3c-9fe4-4c1b-bcea-8dc39375eb7d", - "Position": { - "x": 232.390015, - "y": 19.7621918, - "z": -286.579956 - }, - "Rotation": 324.91, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "412315ab-0fb2-4e6f-93ff-a6d66ead6c54", + "Position": { + "x": 281.22, + "y": 21.4098263, + "z": 2.10700035 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5beb2a94-8d4d-4371-97fe-ecb70d01b347", - "Position": { - "x": -76.798996, - "y": 27.1200027, - "z": 83.478 - }, - "Rotation": 282.5483, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "427b2c32-f4fc-4812-a661-f8dd9d539b45", + "Position": { + "x": 382.622681, + "y": 15.2921944, + "z": -294.718567 + }, + "Rotation": 283.05, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOLI", - "CorePointId": 12 - }, - { - "Id": "5cd53406-3c0c-49d5-a563-77de3859056b", - "Position": { - "x": 296.920044, - "y": 21.4421921, - "z": -420.450134 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "43b84f2f-0058-4208-8624-c4edba8bd130", + "Position": { + "x": -166.582886, + "y": 21.4521942, + "z": -391.773743 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5e20dee4-533e-43cb-9182-8d52d909b910", - "Position": { - "x": -179.80542, - "y": 21.4178123, - "z": 142.7362 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "4583acfb-6700-42d9-a9cf-24f08b31d3c7", + "Position": { + "x": 386.378662, + "y": 14.8221931, + "z": -293.801758 + }, + "Rotation": 283.05, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5e4b4d7f-5b52-4f0f-8ac5-f157c6ae6707", - "Position": { - "x": 108.145386, - "y": 21.3978081, - "z": -327.8363 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "459d5f99-0d44-4659-b2d1-793f140c47c7", + "Position": { + "x": -28.2820053, + "y": 21.5170021, + "z": 74.645 + }, + "Rotation": 96.8581161, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 75 + } + }, + "BotZoneName": "ZoneOLIPark", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "60228c52-30e2-48f7-bba2-efe31cdbc75d", - "Position": { - "x": 82.082, - "y": 21.457, - "z": -205.736008 - }, - "Rotation": 338.576935, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "4af33c9a-8450-4333-ad21-935fab511c67", + "Position": { + "x": 6.96, + "y": 27.12, + "z": -238.90799 + }, + "Rotation": 277.544922, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneIDEA", + "CorePointId": 1 }, - "BotZoneName": "ZoneIDEAPark", - "CorePointId": 21 - }, - { - "Id": "60c9fc4f-8cdf-4186-a515-65531c5c1dd0", - "Position": { - "x": -179.3133, - "y": 21.4178123, - "z": 140.510132 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "4bd264f8-67ef-478a-857a-408fe33d75b0", + "Position": { + "x": 383.39856, + "y": 15.2021942, + "z": -292.0918 + }, + "Rotation": 283.05, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6148785d-c23d-48f8-918b-cfc34d067a7a", - "Position": { - "x": 58.75, - "y": 21.4521942, - "z": 267.87 - }, - "Rotation": 197.23, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4be57cb8-16e5-47cb-ade1-664372515c7d", + "Position": { + "x": 61.6300049, + "y": 21.4521942, + "z": 268.570068 + }, + "Rotation": 179.6, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "63219eb1-d0c8-4c56-9b20-9202abbc8a9b", - "Position": { - "x": -6.874634, - "y": 27.152813, - "z": -107.756348 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4d4bfcb0-0de5-409f-a815-852b996bcaa3", + "Position": { + "x": 279.569946, + "y": 21.4521942, + "z": -10.6500244 + }, + "Rotation": 267.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "63c6c060-d2a0-4249-94d7-3e4f17f78b59", - "Position": { - "x": -179.886963, - "y": 21.4178123, - "z": 152.21582 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "4e096ab1-0145-4d18-97b9-f9c727e9988a", + "Position": { + "x": -14.6182861, + "y": 22.3421936, + "z": -402.505 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6717239d-281c-4df2-8d6c-e6c76470596e", - "Position": { - "x": 274.660034, - "y": 21.4121933, - "z": 339.227783 - }, - "Rotation": 230.976517, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4eb1bea9-3029-4850-9fed-3bbe565a46d5", + "Position": { + "x": 59.958, + "y": 36.63006, + "z": -81.907 + }, + "Rotation": 64.14227, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneCenter", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "67a56f87-5b80-4def-8574-2a64994fa38a", - "Position": { - "x": -207.839966, - "y": 21.4521942, - "z": -77.9000244 - }, - "Rotation": 144.44, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "50570c3b-596f-4bec-b570-9932a29f6923", + "Position": { + "x": -76.9100342, + "y": 22.3821869, + "z": 289.920044 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "68f3b1fc-cc62-49fa-86de-1815685fa825", - "Position": { - "x": 297.329956, - "y": 21.8021927, - "z": -423.8399 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "519c3c78-c6fa-480a-a810-c72c5dbb62d2", + "Position": { + "x": -178.438232, + "y": 21.4178123, + "z": 133.717529 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "690eb447-8f33-408c-b7b7-d97bca64cb6d", - "Position": { - "x": 94.06995, - "y": 21.642189, - "z": -412.130127 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "51dbf971-7b9c-45af-a64f-8d61cb3b9861", + "Position": { + "x": -241.89, + "y": 21.3502846, + "z": -376.06 + }, + "Rotation": 76.86639, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZonePowerStation", + "CorePointId": 10 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "69bb5762-c2a6-45f2-98f3-7e6e04f22245", - "Position": { - "x": -2.78564453, - "y": 27.15981, - "z": -109.451294 - }, - "Rotation": 33.25722, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "561e5fc1-562f-4d4e-bc90-8ff6241fdc6e", + "Position": { + "x": 60.467, + "y": 36.735, + "z": -29.253 + }, + "Rotation": 174.43721, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneCenter", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6ba857b1-1ea4-4a47-8cd4-36b9721d3785", - "Position": { - "x": -199.859985, - "y": 25.3121948, - "z": 275.160034 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "56ab3b71-89a9-482d-8d61-585c05368f61", + "Position": { + "x": 4.04541, + "y": 27.152813, + "z": -124.296387 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6c13f76e-e938-47f2-a048-5105b403202a", - "Position": { - "x": -15.68457, - "y": 27.152813, - "z": -121.576294 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "575d1452-6afb-458e-b7d8-1d157a56b4bf", + "Position": { + "x": -318.5019, + "y": 22.4411926, + "z": 145.785645 + }, + "Rotation": 100.069992, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6d097fb4-9f12-4f52-860d-78accb243200", - "Position": { - "x": -158.596008, - "y": 27.1218243, - "z": -84.05499 - }, - "Rotation": 34.6833954, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "581498c5-ac15-4eaf-9eb0-c4a0fda6b3e0", + "Position": { + "x": -145.799988, + "y": 27.232193, + "z": 199.63 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGoshan", - "CorePointId": 8 - }, - { - "Id": "6f6a65db-4fef-423a-9024-c502bb96f3a2", - "Position": { - "x": -30.0230026, - "y": 21.455, - "z": 81.76799 - }, - "Rotation": 177.435867, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "58bedf70-924f-4834-a767-d77a0f74ddcf", + "Position": { + "x": -75.48999, + "y": 22.8321915, + "z": 287.199951 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOLI", - "CorePointId": 9 - }, - { - "Id": "70156248-ead0-4f0e-a52f-0aadec0b0d81", - "Position": { - "x": -323.919067, - "y": 23.6311951, - "z": 143.8363 - }, - "Rotation": 100.069992, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5a91ec2f-66a1-4a42-a191-5a3f52179cfd", + "Position": { + "x": -35.6460037, + "y": 27.3000011, + "z": -194.558 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 75 + } + }, + "BotZoneName": "ZoneIDEA", + "CorePointId": 18 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "70560317-ee41-46c3-a51d-e0cb84872726", - "Position": { - "x": 167.431519, - "y": 22.9521942, - "z": 385.536743 - }, - "Rotation": 181.724625, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5b06ff3c-9fe4-4c1b-bcea-8dc39375eb7d", + "Position": { + "x": 232.390015, + "y": 19.7621918, + "z": -286.579956 + }, + "Rotation": 324.91, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7145b607-3717-4435-903a-8a7f2c65476a", - "Position": { - "x": 18.861, - "y": 36.58, - "z": -81.736 - }, - "Rotation": 348.493042, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "5beb2a94-8d4d-4371-97fe-ecb70d01b347", + "Position": { + "x": -76.798996, + "y": 27.1200027, + "z": 83.478 + }, + "Rotation": 282.5483, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneOLI", + "CorePointId": 12 }, - "BotZoneName": "ZoneCenter", - "CorePointId": 3 - }, - { - "Id": "719af8ee-f647-4d8d-9736-c620e5f21f25", - "Position": { - "x": -143.950012, - "y": 27.232193, - "z": 200.47998 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5cd53406-3c0c-49d5-a563-77de3859056b", + "Position": { + "x": 296.920044, + "y": 21.4421921, + "z": -420.450134 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "731989ce-bf0a-4ac4-88b6-813a25c03896", - "Position": { - "x": 58.3699951, - "y": 21.4521942, - "z": 265.699951 - }, - "Rotation": 194.38, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5e20dee4-533e-43cb-9182-8d52d909b910", + "Position": { + "x": -179.80542, + "y": 21.4178123, + "z": 142.7362 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "737ee1bd-f3c9-4082-bc94-8b777a5e8112", - "Position": { - "x": -318.9419, - "y": 22.6421967, - "z": 147.435669 - }, - "Rotation": 100.069992, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5e4b4d7f-5b52-4f0f-8ac5-f157c6ae6707", + "Position": { + "x": 108.145386, + "y": 21.3978081, + "z": -327.8363 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "73efe9a1-529b-4688-97da-d691e0bfd343", - "Position": { - "x": 6.0723877, - "y": 27.152813, - "z": -117.012329 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "60228c52-30e2-48f7-bba2-efe31cdbc75d", + "Position": { + "x": 82.082, + "y": 21.457, + "z": -205.736008 + }, + "Rotation": 338.576935, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneIDEAPark", + "CorePointId": 21 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "745ab426-1562-44c6-a98d-a0ba05d45b41", - "Position": { - "x": 231.180054, - "y": 19.6321869, - "z": -287.300049 - }, - "Rotation": 324.91, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "60c9fc4f-8cdf-4186-a515-65531c5c1dd0", + "Position": { + "x": -179.3133, + "y": 21.4178123, + "z": 140.510132 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "75a3eff0-9d58-4271-9332-e86a0b68761f", - "Position": { - "x": -135.559937, - "y": 27.232193, - "z": 201.48999 - }, - "Rotation": 209.87, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6148785d-c23d-48f8-918b-cfc34d067a7a", + "Position": { + "x": 58.75, + "y": 21.4521942, + "z": 267.87 + }, + "Rotation": 197.23, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "75e0757a-56fe-40d1-96e2-e33e8de02ba9", - "Position": { - "x": 59.221, - "y": 36.735, - "z": -28.921 - }, - "Rotation": 174.43721, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "63219eb1-d0c8-4c56-9b20-9202abbc8a9b", + "Position": { + "x": -6.874634, + "y": 27.152813, + "z": -107.756348 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCenter", - "CorePointId": 3 - }, - { - "Id": "75ea0127-0135-4560-a547-6f51d4d32621", - "Position": { - "x": -250.640015, - "y": 21.4521942, - "z": 59.5699463 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "63c6c060-d2a0-4249-94d7-3e4f17f78b59", + "Position": { + "x": -179.886963, + "y": 21.4178123, + "z": 152.21582 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "77a017b8-494d-4e8b-8ea3-a052e5817bc7", - "Position": { - "x": 315.663452, - "y": 17.3121948, - "z": -133.942383 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6717239d-281c-4df2-8d6c-e6c76470596e", + "Position": { + "x": 274.660034, + "y": 21.4121933, + "z": 339.227783 + }, + "Rotation": 230.976517, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "77b0da66-e6bd-4efb-87cc-c7d00668a84d", - "Position": { - "x": -178.69458, - "y": 21.4178123, - "z": 137.803711 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "67a56f87-5b80-4def-8574-2a64994fa38a", + "Position": { + "x": -207.839966, + "y": 21.4521942, + "z": -77.9000244 + }, + "Rotation": 144.44, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "77e0af12-ea10-4c10-8624-09a2a85c83db", - "Position": { - "x": -26.2800064, - "y": 21.455, - "z": 81.5799942 - }, - "Rotation": 177.435867, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "68f3b1fc-cc62-49fa-86de-1815685fa825", + "Position": { + "x": 297.329956, + "y": 21.8021927, + "z": -423.8399 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOLI", - "CorePointId": 13 - }, - { - "Id": "7925e69e-6e7d-47b2-b4bc-76b98650923e", - "Position": { - "x": 109.865356, - "y": 21.3978081, - "z": -330.2063 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "690eb447-8f33-408c-b7b7-d97bca64cb6d", + "Position": { + "x": 94.06995, + "y": 21.642189, + "z": -412.130127 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7981535e-1f66-4825-978d-4787ca037834", - "Position": { - "x": -321.54187, - "y": 23.0622025, - "z": 146.165649 - }, - "Rotation": 100.069992, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "69bb5762-c2a6-45f2-98f3-7e6e04f22245", + "Position": { + "x": -2.78564453, + "y": 27.15981, + "z": -109.451294 + }, + "Rotation": 33.25722, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "798903d9-e63e-4885-aae0-3cd32de508b7", - "Position": { - "x": 3.885376, - "y": 27.15981, - "z": -113.246338 - }, - "Rotation": 33.25722, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6ba857b1-1ea4-4a47-8cd4-36b9721d3785", + "Position": { + "x": -199.859985, + "y": 25.3121948, + "z": 275.160034 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7a8cb237-1752-4160-91a0-1233d6a786a3", - "Position": { - "x": 276.372681, - "y": 21.4121933, - "z": 336.606934 - }, - "Rotation": 230.976517, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6c13f76e-e938-47f2-a048-5105b403202a", + "Position": { + "x": -15.68457, + "y": 27.152813, + "z": -121.576294 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7b6397bc-05da-449a-b27a-65ea3e08a4fe", - "Position": { - "x": 314.44397, - "y": 17.0721931, - "z": -134.933716 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6d097fb4-9f12-4f52-860d-78accb243200", + "Position": { + "x": -158.596008, + "y": 27.1218243, + "z": -84.05499 + }, + "Rotation": 34.6833954, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneGoshan", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7b7bb357-3576-4d01-9a18-07fba5d87c2f", - "Position": { - "x": 284.004517, - "y": 21.4321976, - "z": 87.36438 - }, - "Rotation": 272.052246, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6f6a65db-4fef-423a-9024-c502bb96f3a2", + "Position": { + "x": -30.0230026, + "y": 21.455, + "z": 81.76799 + }, + "Rotation": 177.435867, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneOLI", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7c08bad0-3e16-4919-a882-4f261159d2cb", - "Position": { - "x": -14.1346436, - "y": 27.152813, - "z": -114.106323 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "70156248-ead0-4f0e-a52f-0aadec0b0d81", + "Position": { + "x": -323.919067, + "y": 23.6311951, + "z": 143.8363 + }, + "Rotation": 100.069992, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7c9fded0-1c19-4b34-8a91-860328eb5e0d", - "Position": { - "x": 94.46997, - "y": 21.7121887, - "z": -415.530029 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "70560317-ee41-46c3-a51d-e0cb84872726", + "Position": { + "x": 167.431519, + "y": 22.9521942, + "z": 385.536743 + }, + "Rotation": 181.724625, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7ec1e09c-a4f5-4eb8-b135-0ec3191380d9", - "Position": { - "x": 233.459961, - "y": 19.86219, - "z": -289.839966 - }, - "Rotation": 324.91, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7145b607-3717-4435-903a-8a7f2c65476a", + "Position": { + "x": 18.861, + "y": 36.58, + "z": -81.736 + }, + "Rotation": 348.493042, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneCenter", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7eed3827-1ad7-45bc-889f-93bad6b79522", - "Position": { - "x": 93.02002, - "y": 21.5621948, - "z": -414.4099 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "719af8ee-f647-4d8d-9736-c620e5f21f25", + "Position": { + "x": -143.950012, + "y": 27.232193, + "z": 200.47998 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "805d1444-d269-46f6-9e3b-6cef6dcd2dad", - "Position": { - "x": 314.7743, - "y": 16.8821945, - "z": -138.622559 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "731989ce-bf0a-4ac4-88b6-813a25c03896", + "Position": { + "x": 58.3699951, + "y": 21.4521942, + "z": 265.699951 + }, + "Rotation": 194.38, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "80d3287c-756e-4fae-baf5-e9dd642e3606", - "Position": { - "x": -16.03833, - "y": 22.43219, - "z": -403.194946 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "737ee1bd-f3c9-4082-bc94-8b777a5e8112", + "Position": { + "x": -318.9419, + "y": 22.6421967, + "z": 147.435669 + }, + "Rotation": 100.069992, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "81423963-a10b-4474-947a-daa1e5e91a8d", - "Position": { - "x": -13.1246338, - "y": 27.152813, - "z": -123.596313 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "73efe9a1-529b-4688-97da-d691e0bfd343", + "Position": { + "x": 6.0723877, + "y": 27.152813, + "z": -117.012329 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "821384d4-579e-4439-a410-4049ad88f296", - "Position": { - "x": -65.831, - "y": 27.27, - "z": -275.619 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "745ab426-1562-44c6-a98d-a0ba05d45b41", + "Position": { + "x": 231.180054, + "y": 19.6321869, + "z": -287.300049 + }, + "Rotation": 324.91, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneIDEA", - "CorePointId": 1 - }, - { - "Id": "83af2113-328b-45fa-92d9-ab4195d62de3", - "Position": { - "x": 82.7830048, - "y": 21.43, - "z": -179.78 - }, - "Rotation": 25.22027, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "75a3eff0-9d58-4271-9332-e86a0b68761f", + "Position": { + "x": -135.559937, + "y": 27.232193, + "z": 201.48999 + }, + "Rotation": 209.87, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneIDEAPark", - "CorePointId": 17 - }, - { - "Id": "847fd32f-8974-4747-96b7-d4d2fc161499", - "Position": { - "x": 280.98, - "y": 21.37, - "z": 28.06 - }, - "Rotation": 271.261841, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "75e0757a-56fe-40d1-96e2-e33e8de02ba9", + "Position": { + "x": 59.221, + "y": 36.735, + "z": -28.921 + }, + "Rotation": 174.43721, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneCenter", + "CorePointId": 3 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 6 - }, - { - "Id": "84a861b6-d62e-4a7d-b9d5-f171d5db4340", - "Position": { - "x": -131.069992, - "y": 21.3502865, - "z": 130.480011 - }, - "Rotation": 338.0563, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "75ea0127-0135-4560-a547-6f51d4d32621", + "Position": { + "x": -250.640015, + "y": 21.4521942, + "z": 59.5699463 + }, + "Rotation": 86.82, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneTrucks", - "CorePointId": 5 - }, - { - "Id": "858baf83-08ee-4c5c-90b8-32d20e1c7db2", - "Position": { - "x": 280.123657, - "y": 21.4121933, - "z": 340.578735 - }, - "Rotation": 230.976517, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "77a017b8-494d-4e8b-8ea3-a052e5817bc7", + "Position": { + "x": 315.663452, + "y": 17.3121948, + "z": -133.942383 + }, + "Rotation": 267.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "875358fd-dc4c-46ae-b9ae-e15ebe19d65a", - "Position": { - "x": 283.2218, - "y": 21.4321976, - "z": 83.1942139 - }, - "Rotation": 272.052246, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "77b0da66-e6bd-4efb-87cc-c7d00668a84d", + "Position": { + "x": -178.69458, + "y": 21.4178123, + "z": 137.803711 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "889672b0-afad-4d66-a8cc-407384b6f7b8", - "Position": { - "x": 366.9574, - "y": 16.732193, - "z": -187.410767 - }, - "Rotation": 229.3703, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "77e0af12-ea10-4c10-8624-09a2a85c83db", + "Position": { + "x": -26.2800064, + "y": 21.455, + "z": 81.5799942 + }, + "Rotation": 177.435867, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneOLI", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "88981068-2dad-4362-9c88-4eb5f0eee96f", - "Position": { - "x": 6.16540527, - "y": 27.152813, - "z": -125.786377 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7925e69e-6e7d-47b2-b4bc-76b98650923e", + "Position": { + "x": 109.865356, + "y": 21.3978081, + "z": -330.2063 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "89bd027f-8b38-4ee1-a51f-3011225ce2f4", - "Position": { - "x": -155.657013, - "y": 27.1199989, - "z": -36.6350021 - }, - "Rotation": 199.077713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } + { + "Id": "7981535e-1f66-4825-978d-4787ca037834", + "Position": { + "x": -321.54187, + "y": 23.0622025, + "z": 146.165649 + }, + "Rotation": 100.069992, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGoshan", - "CorePointId": 8 - }, - { - "Id": "8a58963e-acae-423a-95cd-f599d83134bc", - "Position": { - "x": -147.52002, - "y": 27.232193, - "z": 199.310059 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "798903d9-e63e-4885-aae0-3cd32de508b7", + "Position": { + "x": 3.885376, + "y": 27.15981, + "z": -113.246338 + }, + "Rotation": 33.25722, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8afc43bd-7cad-4407-b895-0a87de14dfaf", - "Position": { - "x": 7.279419, - "y": 27.152813, - "z": -119.532349 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7a8cb237-1752-4160-91a0-1233d6a786a3", + "Position": { + "x": 276.372681, + "y": 21.4121933, + "z": 336.606934 + }, + "Rotation": 230.976517, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8c12ace2-3af3-4d5a-a4aa-0895a4ef8a56", - "Position": { - "x": -0.9046631, - "y": 27.152813, - "z": -132.17627 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7b6397bc-05da-449a-b27a-65ea3e08a4fe", + "Position": { + "x": 314.44397, + "y": 17.0721931, + "z": -134.933716 + }, + "Rotation": 267.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "923264a4-b0cf-44db-bbd3-207ee06b623c", - "Position": { - "x": 106.745361, - "y": 21.3978081, - "z": -330.1563 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "7b7bb357-3576-4d01-9a18-07fba5d87c2f", + "Position": { + "x": 284.004517, + "y": 21.4321976, + "z": 87.36438 + }, + "Rotation": 272.052246, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "92382915-b0b3-49c8-a0f9-ed27081f09ea", - "Position": { - "x": -249.830017, - "y": 21.4521942, - "z": 58.0699463 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7c08bad0-3e16-4919-a882-4f261159d2cb", + "Position": { + "x": -14.1346436, + "y": 27.152813, + "z": -114.106323 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "93118e0f-24e6-46dd-8223-fca47e775ce8", - "Position": { - "x": 2.465454, - "y": 27.15981, - "z": -111.066284 - }, - "Rotation": 33.25722, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7c9fded0-1c19-4b34-8a91-860328eb5e0d", + "Position": { + "x": 94.46997, + "y": 21.7121887, + "z": -415.530029 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "942aee84-fe8a-4460-90d8-7bea3de4d4dd", - "Position": { - "x": -16.4483643, - "y": 22.1301956, - "z": -399.804932 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7ec1e09c-a4f5-4eb8-b135-0ec3191380d9", + "Position": { + "x": 233.459961, + "y": 19.86219, + "z": -289.839966 + }, + "Rotation": 324.91, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "95b2cbf1-b8b2-4e50-9e52-ed9d258d6e43", - "Position": { - "x": -70.54, - "y": 27.12, - "z": -286.789978 - }, - "Rotation": 253.1366, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "7eed3827-1ad7-45bc-889f-93bad6b79522", + "Position": { + "x": 93.02002, + "y": 21.5621948, + "z": -414.4099 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneIDEA", - "CorePointId": 1 - }, - { - "Id": "96426e10-91b8-4bc0-bdce-61e0667bd59b", - "Position": { - "x": 231.63, - "y": 19.7821884, - "z": -289.76 - }, - "Rotation": 324.91, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "805d1444-d269-46f6-9e3b-6cef6dcd2dad", + "Position": { + "x": 314.7743, + "y": 16.8821945, + "z": -138.622559 + }, + "Rotation": 267.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "969d1428-f5c4-4593-a6bc-004cbfd5a898", - "Position": { - "x": -186.43, - "y": 21.4521942, - "z": 132.540039 - }, - "Rotation": 111.17, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "80d3287c-756e-4fae-baf5-e9dd642e3606", + "Position": { + "x": -16.03833, + "y": 22.43219, + "z": -403.194946 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "97b1e035-65fa-477e-9f34-1b4dc2d6bc80", - "Position": { - "x": 2.43994141, - "y": 21.4521942, - "z": 255.329956 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "81423963-a10b-4474-947a-daa1e5e91a8d", + "Position": { + "x": -13.1246338, + "y": 27.152813, + "z": -123.596313 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "99bde489-e230-4815-a143-1f8d75a7ed47", - "Position": { - "x": 107.995361, - "y": 21.3978081, - "z": -334.356323 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "821384d4-579e-4439-a410-4049ad88f296", + "Position": { + "x": -65.831, + "y": 27.27, + "z": -275.619 + }, + "Rotation": 76.86639, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneIDEA", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9eefdaf2-6699-4e28-9467-d44f59ce1cd3", - "Position": { - "x": -70.473, - "y": 27.12, - "z": -261.667 - }, - "Rotation": 266.3813, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "83af2113-328b-45fa-92d9-ab4195d62de3", + "Position": { + "x": 82.7830048, + "y": 21.43, + "z": -179.78 + }, + "Rotation": 25.22027, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneIDEAPark", + "CorePointId": 17 }, - "BotZoneName": "ZoneIDEA", - "CorePointId": 1 - }, - { - "Id": "a4123ea9-e12b-4c2c-9ee1-74fad1c3075c", - "Position": { - "x": -250.98999, - "y": 21.4521942, - "z": 56.4100342 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "847fd32f-8974-4747-96b7-d4d2fc161499", + "Position": { + "x": 280.98, + "y": 21.37, + "z": 28.06 + }, + "Rotation": 271.261841, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a4db4d2c-8fd2-48a3-a81b-4b0e00ff3217", - "Position": { - "x": -217.960022, - "y": 21.4521942, - "z": 3.39001465 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "84a861b6-d62e-4a7d-b9d5-f171d5db4340", + "Position": { + "x": -131.069992, + "y": 21.3502865, + "z": 130.480011 + }, + "Rotation": 338.0563, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneTrucks", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a546535d-6b7e-40e7-a237-f03a7858ae64", - "Position": { - "x": 5.30542, - "y": 27.152813, - "z": -115.466309 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "858baf83-08ee-4c5c-90b8-32d20e1c7db2", + "Position": { + "x": 280.123657, + "y": 21.4121933, + "z": 340.578735 + }, + "Rotation": 230.976517, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a54d342d-07f2-46ed-9476-742aa246d6e0", - "Position": { - "x": -74.3900146, - "y": 22.6921921, - "z": 288.51 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "875358fd-dc4c-46ae-b9ae-e15ebe19d65a", + "Position": { + "x": 283.2218, + "y": 21.4321976, + "z": 83.1942139 + }, + "Rotation": 272.052246, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a5f9cc9e-b38c-4f44-9b8b-01c3ff210d5b", - "Position": { - "x": 163.81958, - "y": 22.5121918, - "z": 383.415649 - }, - "Rotation": 181.724625, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "889672b0-afad-4d66-a8cc-407384b6f7b8", + "Position": { + "x": 366.9574, + "y": 16.732193, + "z": -187.410767 + }, + "Rotation": 229.3703, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a9a99b93-d0a0-419f-ab27-469c93e42638", - "Position": { - "x": 0.6300049, - "y": 21.4521942, - "z": 254.359985 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "88981068-2dad-4362-9c88-4eb5f0eee96f", + "Position": { + "x": 6.16540527, + "y": 27.152813, + "z": -125.786377 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ac5784bf-9797-4493-afb5-e79fa1e9b227", - "Position": { - "x": 170.368286, - "y": 22.8421936, - "z": 384.482666 - }, - "Rotation": 181.724625, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "89bd027f-8b38-4ee1-a51f-3011225ce2f4", + "Position": { + "x": -155.657013, + "y": 27.1199989, + "z": -36.6350021 + }, + "Rotation": 199.077713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 75 + } + }, + "BotZoneName": "ZoneGoshan", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b023ceac-a042-42a4-bb99-73cdc37b39fb", - "Position": { - "x": -161.57, - "y": 27.1218243, - "z": -84.58 - }, - "Rotation": 34.6833954, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "8a58963e-acae-423a-95cd-f599d83134bc", + "Position": { + "x": -147.52002, + "y": 27.232193, + "z": 199.310059 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGoshan", - "CorePointId": 8 - }, - { - "Id": "b2b26400-a096-44b1-8f7c-37809a7106da", - "Position": { - "x": 273.885864, - "y": 21.4121933, - "z": 342.196167 - }, - "Rotation": 230.976517, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8afc43bd-7cad-4407-b895-0a87de14dfaf", + "Position": { + "x": 7.279419, + "y": 27.152813, + "z": -119.532349 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b38b33f5-4864-45cf-a8fc-5cdf28c54bd1", - "Position": { - "x": -180.166077, - "y": 21.4178123, - "z": 148.5802 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "8c12ace2-3af3-4d5a-a4aa-0895a4ef8a56", + "Position": { + "x": -0.9046631, + "y": 27.152813, + "z": -132.17627 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b45226b7-f530-423d-a079-427ce52e3fb3", - "Position": { - "x": -9.544556, - "y": 27.152813, - "z": -111.986328 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "923264a4-b0cf-44db-bbd3-207ee06b623c", + "Position": { + "x": 106.745361, + "y": 21.3978081, + "z": -330.1563 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b523fac3-877b-4cd2-824d-8fce82be95a7", - "Position": { - "x": 80.9210052, - "y": 21.5700016, - "z": -167.82 - }, - "Rotation": 117.762833, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "92382915-b0b3-49c8-a0f9-ed27081f09ea", + "Position": { + "x": -249.830017, + "y": 21.4521942, + "z": 58.0699463 + }, + "Rotation": 86.82, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneIDEAPark", - "CorePointId": 17 - }, - { - "Id": "b6dcb022-66f5-4a35-8d7c-d77f1fc38dcc", - "Position": { - "x": -198.049988, - "y": 25.2021942, - "z": 276.13 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "93118e0f-24e6-46dd-8223-fca47e775ce8", + "Position": { + "x": 2.465454, + "y": 27.15981, + "z": -111.066284 + }, + "Rotation": 33.25722, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b6e0459d-bf41-4ea7-8ac5-88e3bb72da31", - "Position": { - "x": 110.920044, - "y": 19.9221878, - "z": -355.7901 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "942aee84-fe8a-4460-90d8-7bea3de4d4dd", + "Position": { + "x": -16.4483643, + "y": 22.1301956, + "z": -399.804932 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b8748215-c5ac-4f4c-9c8d-088f9b6d7bab", - "Position": { - "x": -77.45996, - "y": 22.8721924, - "z": 287.670044 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "95b2cbf1-b8b2-4e50-9e52-ed9d258d6e43", + "Position": { + "x": -70.54, + "y": 27.12, + "z": -286.789978 + }, + "Rotation": 253.1366, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneIDEA", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b97b856f-68b6-4731-b897-4f57646ea49a", - "Position": { - "x": 108.355347, - "y": 21.3978081, - "z": -320.786316 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "96426e10-91b8-4bc0-bdce-61e0667bd59b", + "Position": { + "x": 231.63, + "y": 19.7821884, + "z": -289.76 + }, + "Rotation": 324.91, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ba82fb90-fa3c-4568-97bc-b32b51a5bfb5", - "Position": { - "x": 56.58, - "y": 27.06, - "z": -11.05 - }, - "Rotation": 64.67698, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "969d1428-f5c4-4593-a6bc-004cbfd5a898", + "Position": { + "x": -186.43, + "y": 21.4521942, + "z": 132.540039 + }, + "Rotation": 111.17, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCenterBot", - "CorePointId": 3 - }, - { - "Id": "bbb3c805-5135-425c-a032-5cadbc45d73c", - "Position": { - "x": 364.347168, - "y": 16.7021942, - "z": -187.650757 - }, - "Rotation": 229.3703, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "97b1e035-65fa-477e-9f34-1b4dc2d6bc80", + "Position": { + "x": 2.43994141, + "y": 21.4521942, + "z": 255.329956 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bcf2c1cc-e07e-4336-9f3a-15863b3d1918", - "Position": { - "x": 1.89001465, - "y": 21.4521942, - "z": 253.079956 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "99bde489-e230-4815-a143-1f8d75a7ed47", + "Position": { + "x": 107.995361, + "y": 21.3978081, + "z": -334.356323 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bdfd38df-2573-4712-8b82-c2d795ced0c2", - "Position": { - "x": -138.319, - "y": 27.1252861, - "z": 153.20401 - }, - "Rotation": 238.732925, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "9eefdaf2-6699-4e28-9467-d44f59ce1cd3", + "Position": { + "x": -70.473, + "y": 27.12, + "z": -261.667 + }, + "Rotation": 266.3813, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneIDEA", + "CorePointId": 1 }, - "BotZoneName": "ZoneTrucks", - "CorePointId": 5 - }, - { - "Id": "bf26dcac-b23c-474b-8bc7-9dc569e52e6e", - "Position": { - "x": -169.452881, - "y": 21.4521942, - "z": -391.343872 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a4123ea9-e12b-4c2c-9ee1-74fad1c3075c", + "Position": { + "x": -250.98999, + "y": 21.4521942, + "z": 56.4100342 + }, + "Rotation": 86.82, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c013b3dc-1fc1-45fc-8729-35ab4942fbcc", - "Position": { - "x": 14.8699989, - "y": 36.58, - "z": -81.87 - }, - "Rotation": 348.493042, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "a4db4d2c-8fd2-48a3-a81b-4b0e00ff3217", + "Position": { + "x": -217.960022, + "y": 21.4521942, + "z": 3.39001465 + }, + "Rotation": 86.82, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCenter", - "CorePointId": 3 - }, - { - "Id": "c01f4c0a-2022-471c-9e56-6c250f443d41", - "Position": { - "x": 110.685425, - "y": 21.3978081, - "z": -326.996338 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "a546535d-6b7e-40e7-a237-f03a7858ae64", + "Position": { + "x": 5.30542, + "y": 27.152813, + "z": -115.466309 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c0727897-2679-4989-9a2a-5c044743d841", - "Position": { - "x": 104.085449, - "y": 21.3978081, - "z": -334.1463 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "a54d342d-07f2-46ed-9476-742aa246d6e0", + "Position": { + "x": -74.3900146, + "y": 22.6921921, + "z": 288.51 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c4955fcd-ac95-44de-9901-f7802d19015b", - "Position": { - "x": -26.5500031, - "y": 21.5170021, - "z": 75.45 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "a5f9cc9e-b38c-4f44-9b8b-01c3ff210d5b", + "Position": { + "x": 163.81958, + "y": 22.5121918, + "z": 383.415649 + }, + "Rotation": 181.724625, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOLIPark", - "CorePointId": 13 - }, - { - "Id": "c622da3b-f686-462f-8791-df6a918595a1", - "Position": { - "x": 252.91, - "y": 21.4840012, - "z": 15.58 - }, - "Rotation": 345.420654, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } + { + "Id": "a9a99b93-d0a0-419f-ab27-469c93e42638", + "Position": { + "x": 0.6300049, + "y": 21.4521942, + "z": 254.359985 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 6 - }, - { - "Id": "cac3029a-cbad-4827-b9e8-a9222ba23c0e", - "Position": { - "x": -251.92, - "y": 21.4300022, - "z": -375.93 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "ac5784bf-9797-4493-afb5-e79fa1e9b227", + "Position": { + "x": 170.368286, + "y": 22.8421936, + "z": 384.482666 + }, + "Rotation": 181.724625, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZonePowerStation", - "CorePointId": 10 - }, - { - "Id": "cae4f991-b69d-4520-b068-e8b5903ef4c9", - "Position": { - "x": -168.00293, - "y": 21.4521942, - "z": -392.463867 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b023ceac-a042-42a4-bb99-73cdc37b39fb", + "Position": { + "x": -161.57, + "y": 27.1218243, + "z": -84.58 + }, + "Rotation": 34.6833954, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneGoshan", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cd1fe11e-2b28-4567-babb-4fcb5e83c4dd", - "Position": { - "x": -26.4800034, - "y": 21.5170021, - "z": 81.67999 - }, - "Rotation": 96.8581161, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b2b26400-a096-44b1-8f7c-37809a7106da", + "Position": { + "x": 273.885864, + "y": 21.4121933, + "z": 342.196167 + }, + "Rotation": 230.976517, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOLIPark", - "CorePointId": 13 - }, - { - "Id": "ce33e4d2-b937-4f4a-9573-4300871cd74e", - "Position": { - "x": 3.85998535, - "y": 21.4521942, - "z": 252.609985 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b38b33f5-4864-45cf-a8fc-5cdf28c54bd1", + "Position": { + "x": -180.166077, + "y": 21.4178123, + "z": 148.5802 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ceb7c0d7-53bb-4fce-a43a-56b0c692e5cb", - "Position": { - "x": 362.76416, - "y": 16.5621948, - "z": -185.49231 - }, - "Rotation": 229.3703, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b45226b7-f530-423d-a079-427ce52e3fb3", + "Position": { + "x": -9.544556, + "y": 27.152813, + "z": -111.986328 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d1ff4163-c16b-42e2-a81d-f1445bfd14a4", - "Position": { - "x": 284.252563, - "y": 21.4321976, - "z": 90.93677 - }, - "Rotation": 272.052246, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b523fac3-877b-4cd2-824d-8fce82be95a7", + "Position": { + "x": 80.9210052, + "y": 21.5700016, + "z": -167.82 + }, + "Rotation": 117.762833, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneIDEAPark", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d27c7203-8b21-415d-8244-dc416ed63d20", - "Position": { - "x": -4.124634, - "y": 27.152813, - "z": -104.256348 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b6dcb022-66f5-4a35-8d7c-d77f1fc38dcc", + "Position": { + "x": -198.049988, + "y": 25.2021942, + "z": 276.13 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d30b1c3a-e98e-43bc-b875-82e3bd2c5ff0", - "Position": { - "x": -337.585083, - "y": 21.4321976, - "z": 265.785278 - }, - "Rotation": 109.723984, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b6e0459d-bf41-4ea7-8ac5-88e3bb72da31", + "Position": { + "x": 110.920044, + "y": 19.9221878, + "z": -355.7901 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d3effa8a-6054-41ef-834a-300474479ab9", - "Position": { - "x": -180.337463, - "y": 21.4178123, - "z": 146.214233 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "b8748215-c5ac-4f4c-9c8d-088f9b6d7bab", + "Position": { + "x": -77.45996, + "y": 22.8721924, + "z": 287.670044 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d456aa65-b5c5-473f-92d5-85f28f55fef3", - "Position": { - "x": -335.873657, - "y": 22.1201935, - "z": 256.930664 - }, - "Rotation": 109.723984, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b97b856f-68b6-4731-b897-4f57646ea49a", + "Position": { + "x": 108.355347, + "y": 21.3978081, + "z": -320.786316 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d491e46c-b19f-4ba4-af35-d6cb22e8dec4", - "Position": { - "x": 107.995361, - "y": 21.3978081, - "z": -334.356323 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "ba82fb90-fa3c-4568-97bc-b32b51a5bfb5", + "Position": { + "x": 56.58, + "y": 27.06, + "z": -11.05 + }, + "Rotation": 64.67698, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneCenterBot", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d628477f-2aac-49bc-b456-5cad12c28976", - "Position": { - "x": -69.872, - "y": 27.168, - "z": -26.6200027 - }, - "Rotation": 102.751755, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "bbb3c805-5135-425c-a032-5cadbc45d73c", + "Position": { + "x": 364.347168, + "y": 16.7021942, + "z": -187.650757 + }, + "Rotation": 229.3703, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGoshan", - "CorePointId": 8 - }, - { - "Id": "d63ba590-b4a3-4900-9acc-75676391d134", - "Position": { - "x": 150.890015, - "y": 19.6321869, - "z": -408.969971 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "bcf2c1cc-e07e-4336-9f3a-15863b3d1918", + "Position": { + "x": 1.89001465, + "y": 21.4521942, + "z": 253.079956 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d88f3ee6-6bde-4ce6-b2ca-6892da942650", - "Position": { - "x": 105.345337, - "y": 21.3978081, - "z": -332.136353 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "bdfd38df-2573-4712-8b82-c2d795ced0c2", + "Position": { + "x": -138.319, + "y": 27.1252861, + "z": 153.20401 + }, + "Rotation": 238.732925, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneTrucks", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d900affa-7653-4463-884f-e61b5a8e20f5", - "Position": { - "x": 315.939575, - "y": 16.8321953, - "z": -140.75647 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "bf26dcac-b23c-474b-8bc7-9dc569e52e6e", + "Position": { + "x": -169.452881, + "y": 21.4521942, + "z": -391.343872 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d9e39109-bb78-4633-8592-417672f783a6", - "Position": { - "x": -215.150024, - "y": 21.4521942, - "z": 5.76001 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c013b3dc-1fc1-45fc-8729-35ab4942fbcc", + "Position": { + "x": 14.8699989, + "y": 36.58, + "z": -81.87 + }, + "Rotation": 348.493042, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneCenter", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "da52dacd-02f4-4387-8d92-d3b544ea4e34", - "Position": { - "x": -157.41, - "y": 27.1199989, - "z": -72.74 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "c01f4c0a-2022-471c-9e56-6c250f443d41", + "Position": { + "x": 110.685425, + "y": 21.3978081, + "z": -326.996338 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGoshan", - "CorePointId": 8 - }, - { - "Id": "dadceca6-a380-426d-a5b0-238b76e3ba0f", - "Position": { - "x": -185.12, - "y": 21.4521942, - "z": 131.13 - }, - "Rotation": 111.17, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c0727897-2679-4989-9a2a-5c044743d841", + "Position": { + "x": 104.085449, + "y": 21.3978081, + "z": -334.1463 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "db073e9c-ccf2-4a48-8427-25b2b5514967", - "Position": { - "x": 284.0028, - "y": 21.4321976, - "z": 85.38306 - }, - "Rotation": 272.052246, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c4955fcd-ac95-44de-9901-f7802d19015b", + "Position": { + "x": -26.5500031, + "y": 21.5170021, + "z": 75.45 + }, + "Rotation": 76.86639, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneOLIPark", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "db112e77-f0bc-45f7-90d3-3fadd6ea75a4", - "Position": { - "x": 280.62, - "y": 21.4521942, - "z": -9.160034 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c622da3b-f686-462f-8791-df6a918595a1", + "Position": { + "x": 252.91, + "y": 21.4840012, + "z": 15.58 + }, + "Rotation": 345.420654, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dc39af9f-7905-4452-b46b-b57b0a9adc39", - "Position": { - "x": -201.039978, - "y": 21.4521942, - "z": -75.44995 - }, - "Rotation": 144.44, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "cac3029a-cbad-4827-b9e8-a9222ba23c0e", + "Position": { + "x": -251.92, + "y": 21.4300022, + "z": -375.93 + }, + "Rotation": 76.86639, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZonePowerStation", + "CorePointId": 10 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dc76e355-8fbb-4dd0-bf93-d5b981a8275d", - "Position": { - "x": 277.25, - "y": 21.4521942, - "z": -9.709961 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "cae4f991-b69d-4520-b068-e8b5903ef4c9", + "Position": { + "x": -168.00293, + "y": 21.4521942, + "z": -392.463867 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dd44f639-8868-4e16-9aa1-0036d615c2a8", - "Position": { - "x": -17.4884033, - "y": 22.5821915, - "z": -402.074951 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "cd1fe11e-2b28-4567-babb-4fcb5e83c4dd", + "Position": { + "x": -26.4800034, + "y": 21.5170021, + "z": 81.67999 + }, + "Rotation": 96.8581161, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneOLIPark", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dd96ca7a-f268-4b1a-9ce7-24a23a89d400", - "Position": { - "x": -83.233, - "y": 27.1000023, - "z": 140.055 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "ce33e4d2-b937-4f4a-9573-4300871cd74e", + "Position": { + "x": 3.85998535, + "y": 21.4521942, + "z": 252.609985 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOLI", - "CorePointId": 7 - }, - { - "Id": "e1335910-f703-4e5e-b8a4-c1cdcb432a68", - "Position": { - "x": 73.5639954, - "y": 27.0864677, - "z": 170.887 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "ceb7c0d7-53bb-4fce-a43a-56b0c692e5cb", + "Position": { + "x": 362.76416, + "y": 16.5621948, + "z": -185.49231 + }, + "Rotation": 229.3703, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneOLI", - "CorePointId": 7 - }, - { - "Id": "e2361123-1b32-4639-8ef5-29ab9d16d76c", - "Position": { - "x": -179.80542, - "y": 21.4178123, - "z": 142.7362 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "d1ff4163-c16b-42e2-a81d-f1445bfd14a4", + "Position": { + "x": 284.252563, + "y": 21.4321976, + "z": 90.93677 + }, + "Rotation": 272.052246, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e4834439-c939-45e0-beff-d94805204504", - "Position": { - "x": -195.530029, - "y": 24.9221878, - "z": 274.719971 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d27c7203-8b21-415d-8244-dc416ed63d20", + "Position": { + "x": -4.124634, + "y": 27.152813, + "z": -104.256348 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e85c6322-a6eb-430c-844c-17d0dea510e9", - "Position": { - "x": -215.140015, - "y": 21.4521942, - "z": 7.43994141 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d30b1c3a-e98e-43bc-b875-82e3bd2c5ff0", + "Position": { + "x": -337.585083, + "y": 21.4321976, + "z": 265.785278 + }, + "Rotation": 109.723984, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e9f910fe-c024-4d0c-8186-0a12253ba0ee", - "Position": { - "x": 95.46997, - "y": 21.6221924, - "z": -412.24 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d3effa8a-6054-41ef-834a-300474479ab9", + "Position": { + "x": -180.337463, + "y": 21.4178123, + "z": 146.214233 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "eb5eee75-8f6f-4f80-8cc3-a86873dcb66f", - "Position": { - "x": 264.680023, - "y": 21.3412533, - "z": -1.15999985 - }, - "Rotation": 182.805145, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "d456aa65-b5c5-473f-92d5-85f28f55fef3", + "Position": { + "x": -335.873657, + "y": 22.1201935, + "z": 256.930664 + }, + "Rotation": 109.723984, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 6 - }, - { - "Id": "ebcfec46-fc7c-4ffb-9ae0-cb5faebc4520", - "Position": { - "x": -252.640015, - "y": 21.4521942, - "z": 55.69995 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d491e46c-b19f-4ba4-af35-d6cb22e8dec4", + "Position": { + "x": 107.995361, + "y": 21.3978081, + "z": -334.356323 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ed063ffb-a83d-43f6-bc4a-343d473da2ab", - "Position": { - "x": -24.221, - "y": 27.119, - "z": -0.748000145 - }, - "Rotation": 91.26827, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "d628477f-2aac-49bc-b456-5cad12c28976", + "Position": { + "x": -69.872, + "y": 27.168, + "z": -26.6200027 + }, + "Rotation": 102.751755, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneGoshan", + "CorePointId": 8 }, - "BotZoneName": "ZoneCenterBot", - "CorePointId": 14 - }, - { - "Id": "eef064f2-7daa-41bc-ae11-d5deb297f691", - "Position": { - "x": -69.982, - "y": 27.168, - "z": -27.945 - }, - "Rotation": 102.751755, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "d63ba590-b4a3-4900-9acc-75676391d134", + "Position": { + "x": 150.890015, + "y": 19.6321869, + "z": -408.969971 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGoshan", - "CorePointId": 8 - }, - { - "Id": "f122d1e7-4430-4b31-88b1-464783b9670c", - "Position": { - "x": 174.319336, - "y": 22.9421921, - "z": 384.197632 - }, - "Rotation": 181.724625, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d88f3ee6-6bde-4ce6-b2ca-6892da942650", + "Position": { + "x": 105.345337, + "y": 21.3978081, + "z": -332.136353 + }, + "Rotation": 320.478577, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f12f771f-4408-4db4-8926-47bd2ec53e8f", - "Position": { - "x": -15.04834, - "y": 21.8281937, - "z": -399.905029 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d900affa-7653-4463-884f-e61b5a8e20f5", + "Position": { + "x": 315.939575, + "y": 16.8321953, + "z": -140.75647 + }, + "Rotation": 267.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f5e70152-8845-44bf-94c0-d586cac03006", - "Position": { - "x": -13.8846436, - "y": 27.152813, - "z": -118.446289 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d9e39109-bb78-4633-8592-417672f783a6", + "Position": { + "x": -215.150024, + "y": 21.4521942, + "z": 5.76001 + }, + "Rotation": 86.82, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f619410f-4c28-4b44-98c8-bddd9638b12f", - "Position": { - "x": 284.190552, - "y": 21.4321976, - "z": 89.203 - }, - "Rotation": 272.052246, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f6c87742-c82b-4688-aeab-4fa434d630f9", - "Position": { - "x": -154.54, - "y": 21.3502865, - "z": 159.28 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "BotZoneName": "ZoneTrucks", - "CorePointId": 5 - }, - { - "Id": "f9c5f978-ab8d-459d-a7d3-653117c47a39", - "Position": { - "x": 95.8900146, - "y": 21.6721878, - "z": -414.839844 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f9da0976-cd2a-4990-b957-215b0ed00ac8", - "Position": { - "x": -168.412842, - "y": 21.4521942, - "z": -389.0738 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fa4dde22-b27b-47df-b90a-01d1adbea2b4", - "Position": { - "x": -69.575, - "y": 27.218998, - "z": -99.7319946 - }, - "Rotation": 179.248642, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "BotZoneName": "ZoneGoshan", - "CorePointId": 8 - }, - { - "Id": "fada2feb-2f5c-47b1-af58-5aa3f498d99b", - "Position": { - "x": 3.12536621, - "y": 27.152813, - "z": -129.276367 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fb16c236-0d82-405f-97d3-1311a6c55a1e", - "Position": { - "x": 162.405518, - "y": 22.2621918, - "z": 381.5232 - }, - "Rotation": 181.724625, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallSE", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fb857198-9943-4917-a29e-058ed8f818c4", - "Position": { - "x": -51.92, - "y": 27.12, - "z": -204.12999 - }, - "Rotation": 248.358978, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "BotZoneName": "ZoneIDEA", - "CorePointId": 18 - }, - { - "Id": "fc5ce718-9376-43c8-8ac5-336ce18e688d", - "Position": { - "x": 364.1361, - "y": 16.8221931, - "z": -189.043091 - }, - "Rotation": 229.3703, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "MallNW", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - } - ], - "maxItemCountInLocation": [], - "AirdropParameters": [ - { - "PlaneAirdropStartMin": 300, - "PlaneAirdropStartMax": 900, - "PlaneAirdropEnd": 1800, - "PlaneAirdropChance": 0.2, - "PlaneAirdropMax": 1, - "PlaneAirdropCooldownMin": 800, - "PlaneAirdropCooldownMax": 900, - "AirdropPointDeactivateDistance": 100, - "MinPlayersCountToSpawnAirdrop": 6, - "UnsuccessfulTryPenalty": 600 - } - ], - "MatchMakerMinPlayersByWaitTime": [ - { - "time": 60, - "minPlayers": 7 - }, - { - "time": 70, - "minPlayers": 6 - }, - { - "time": 120, - "minPlayers": 5 - }, - { - "time": 180, - "minPlayers": 4 - }, - { - "time": 250, - "minPlayers": 3 - }, - { - "time": 330, - "minPlayers": 2 - }, - { - "time": 420, - "minPlayers": 1 - } - ], - "transits": [ - { - "id": 6, - "active": true, - "name": "INT_TRANSIT_6", - "location": "bigmap", - "description": "INT_TRANSIT_6_DESC", - "activateAfterSec": 420, - "target": "56f40101d2720b2a4d8b45d6", - "time": 30, - "conditions": "INT_TRANSIT_6_COND" - }, - { - "id": 7, - "active": false, - "name": "INT_TRANSIT_7", - "location": "TarkovStreets", - "description": "INT_TRANSIT_7_DESC", - "activateAfterSec": 420, - "target": "5714dc692459777137212e12", - "time": 30, - "conditions": "INT_TRANSIT_7_COND" - } - ], - "Id": "Interchange", - "_Id": "5714dbc024597771384a510d", - "Loot": [ - { - "Id": "container_Shopping_Mall_DesignStuff_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a828", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a828", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "da52dacd-02f4-4387-8d92-d3b544ea4e34", + "Position": { + "x": -157.41, + "y": 27.1199989, + "z": -72.74 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb4d91ae71bfb1007a82a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb4d91ae71bfb1007a828", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneGoshan", + "CorePointId": 8 + }, + { + "Id": "dadceca6-a380-426d-a5b0-238b76e3ba0f", + "Position": { + "x": -185.12, + "y": 21.4521942, + "z": 131.13 + }, + "Rotation": 111.17, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a82c", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb4d91ae71bfb1007a828", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "db073e9c-ccf2-4a48-8427-25b2b5514967", + "Position": { + "x": 284.0028, + "y": 21.4321976, + "z": 85.38306 + }, + "Rotation": 272.052246, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a82e", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb4d91ae71bfb1007a828", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00241", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a830", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a830", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "db112e77-f0bc-45f7-90d3-3fadd6ea75a4", + "Position": { + "x": 280.62, + "y": 21.4521942, + "z": -9.160034 + }, + "Rotation": 267.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a832", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a830", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 893 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00704", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a834", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a834", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "dc39af9f-7905-4452-b46b-b57b0a9adc39", + "Position": { + "x": -201.039978, + "y": 21.4521942, + "z": -75.44995 + }, + "Rotation": 144.44, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00703", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a836", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a836", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "dc76e355-8fbb-4dd0-bf93-d5b981a8275d", + "Position": { + "x": 277.25, + "y": 21.4521942, + "z": -9.709961 + }, + "Rotation": 267.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a838", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb4d91ae71bfb1007a836", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00702", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a83a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a83a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "dd44f639-8868-4e16-9aa1-0036d615c2a8", + "Position": { + "x": -17.4884033, + "y": 22.5821915, + "z": -402.074951 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a83c", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb4d91ae71bfb1007a83a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00701", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a83e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a83e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "dd96ca7a-f268-4b1a-9ce7-24a23a89d400", + "Position": { + "x": -83.233, + "y": 27.1000023, + "z": 140.055 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00293", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "ZoneOLI", + "CorePointId": 7 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a840", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a840", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e1335910-f703-4e5e-b8a4-c1cdcb432a68", + "Position": { + "x": 73.5639954, + "y": 27.0864677, + "z": 170.887 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00292", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "ZoneOLI", + "CorePointId": 7 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a842", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a842", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e2361123-1b32-4639-8ef5-29ab9d16d76c", + "Position": { + "x": -179.80542, + "y": 21.4178123, + "z": 142.7362 + }, + "Rotation": 100.993141, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00678", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a844", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a844", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e4834439-c939-45e0-beff-d94805204504", + "Position": { + "x": -195.530029, + "y": 24.9221878, + "z": 274.719971 + }, + "Rotation": 155.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00559", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a846", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a846", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e85c6322-a6eb-430c-844c-17d0dea510e9", + "Position": { + "x": -215.140015, + "y": 21.4521942, + "z": 7.43994141 + }, + "Rotation": 86.82, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a848", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007a846", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e9f910fe-c024-4d0c-8186-0a12253ba0ee", + "Position": { + "x": 95.46997, + "y": 21.6221924, + "z": -412.24 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a84a", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb4d91ae71bfb1007a846", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a84c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a84c", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "eb5eee75-8f6f-4f80-8cc3-a86873dcb66f", + "Position": { + "x": 264.680023, + "y": 21.3412533, + "z": -1.15999985 + }, + "Rotation": 182.805145, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 } }, - { - "_id": "66cbb4d91ae71bfb1007a84d", - "_tpl": "66015072e9f84d5680039678", - "parentId": "66cbb4d91ae71bfb1007a84c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } + "BotZoneName": "ZoneRoad", + "CorePointId": 6 + }, + { + "Id": "ebcfec46-fc7c-4ffb-9ae0-cb5faebc4520", + "Position": { + "x": -252.640015, + "y": 21.4521942, + "z": 55.69995 + }, + "Rotation": 86.82, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a84e", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "66cbb4d91ae71bfb1007a84d", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4d91ae71bfb1007a84f", - "_tpl": "6601546f86889319850bd566", - "parentId": "66cbb4d91ae71bfb1007a84e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11.0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ed063ffb-a83d-43f6-bc4a-343d473da2ab", + "Position": { + "x": -24.221, + "y": 27.119, + "z": -0.748000145 + }, + "Rotation": 91.26827, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb4d91ae71bfb1007a850", - "_tpl": "57f4c844245977379d5c14d1", - "parentId": "66cbb4d91ae71bfb1007a84c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "BotZoneName": "ZoneCenterBot", + "CorePointId": 14 + }, + { + "Id": "eef064f2-7daa-41bc-ae11-d5deb297f691", + "Position": { + "x": -69.982, + "y": 27.168, + "z": -27.945 + }, + "Rotation": 102.751755, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb4d91ae71bfb1007a851", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66cbb4d91ae71bfb1007a850", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007a852", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbb4d91ae71bfb1007a850", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4d91ae71bfb1007a853", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb4d91ae71bfb1007a852", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16.0 + "BotZoneName": "ZoneGoshan", + "CorePointId": 8 + }, + { + "Id": "f122d1e7-4430-4b31-88b1-464783b9670c", + "Position": { + "x": 174.319336, + "y": 22.9421921, + "z": 384.197632 + }, + "Rotation": 181.724625, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a855", - "_tpl": "5c5db63a2e2216000f1b284a", - "parentId": "66cbb4d91ae71bfb1007a84c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00256", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a857", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a857", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f12f771f-4408-4db4-8926-47bd2ec53e8f", + "Position": { + "x": -15.04834, + "y": 21.8281937, + "z": -399.905029 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a859", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a857", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 741 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f5e70152-8845-44bf-94c0-d586cac03006", + "Position": { + "x": -13.8846436, + "y": 27.152813, + "z": -118.446289 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a85b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a857", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1122 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f619410f-4c28-4b44-98c8-bddd9638b12f", + "Position": { + "x": 284.190552, + "y": 21.4321976, + "z": 89.203 + }, + "Rotation": 272.052246, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00469", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a85d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a85d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a85f", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66cbb4d91ae71bfb1007a85d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a861", - "_tpl": "5e2af00086f7746d3f3c33f7", - "parentId": "66cbb4d91ae71bfb1007a85d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "Id": "f6c87742-c82b-4688-aeab-4fa434d630f9", + "Position": { + "x": -154.54, + "y": 21.3502865, + "z": 159.28 + }, + "Rotation": 76.86639, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 110 } }, - { - "_id": "66cbb4d91ae71bfb1007a863", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb4d91ae71bfb1007a85d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00323", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneTrucks", + "CorePointId": 5 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a865", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a865", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f9c5f978-ab8d-459d-a7d3-653117c47a39", + "Position": { + "x": 95.8900146, + "y": 21.6721878, + "z": -414.839844 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a867", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a865", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 724 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f9da0976-cd2a-4990-b957-215b0ed00ac8", + "Position": { + "x": -168.412842, + "y": 21.4521942, + "z": -389.0738 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a869", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a865", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 676 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "fa4dde22-b27b-47df-b90a-01d1adbea2b4", + "Position": { + "x": -69.575, + "y": 27.218998, + "z": -99.7319946 + }, + "Rotation": 179.248642, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 } }, - { - "_id": "66cbb4d91ae71bfb1007a86b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a865", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1024 + "BotZoneName": "ZoneGoshan", + "CorePointId": 8 + }, + { + "Id": "fada2feb-2f5c-47b1-af58-5aa3f498d99b", + "Position": { + "x": 3.12536621, + "y": 27.152813, + "z": -129.276367 + }, + "Rotation": 58.550293, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a86d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a865", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1036 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00535", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a86f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a86f", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fb16c236-0d82-405f-97d3-1311a6c55a1e", + "Position": { + "x": 162.405518, + "y": 22.2621918, + "z": 381.5232 + }, + "Rotation": 181.724625, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallSE", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00751", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a871", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a871", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fb857198-9943-4917-a29e-058ed8f818c4", + "Position": { + "x": -51.92, + "y": 27.12, + "z": -204.12999 + }, + "Rotation": 248.358978, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb4d91ae71bfb1007a873", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66cbb4d91ae71bfb1007a871", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneIDEA", + "CorePointId": 18 + }, + { + "Id": "fc5ce718-9376-43c8-8ac5-336ce18e688d", + "Position": { + "x": 364.1361, + "y": 16.8221931, + "z": -189.043091 + }, + "Rotation": 229.3703, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "MallNW", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb4d91ae71bfb1007a875", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb4d91ae71bfb1007a871", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00532", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 + } + ], + "maxItemCountInLocation": [], + "AirdropParameters": [ + { + "PlaneAirdropStartMin": 300, + "PlaneAirdropStartMax": 900, + "PlaneAirdropEnd": 1800, + "PlaneAirdropChance": 0.2, + "PlaneAirdropMax": 1, + "PlaneAirdropCooldownMin": 800, + "PlaneAirdropCooldownMax": 900, + "AirdropPointDeactivateDistance": 100, + "MinPlayersCountToSpawnAirdrop": 6, + "UnsuccessfulTryPenalty": 600 + } + ], + "MatchMakerMinPlayersByWaitTime": [ + { + "time": 60, + "minPlayers": 7 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 70, + "minPlayers": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a877", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a877", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a879", - "_tpl": "57347baf24597738002c6178", - "parentId": "66cbb4d91ae71bfb1007a877", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00644", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 120, + "minPlayers": 5 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 180, + "minPlayers": 4 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a87b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a87b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a87d", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbb4d91ae71bfb1007a87b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 250, + "minPlayers": 3 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 330, + "minPlayers": 2 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a87f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a87f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "time": 420, + "minPlayers": 1 + } + ], + "transits": [ + { + "id": 6, + "active": true, + "name": "INT_TRANSIT_6", + "location": "bigmap", + "description": "INT_TRANSIT_6_DESC", + "activateAfterSec": 420, + "target": "56f40101d2720b2a4d8b45d6", + "time": 30, + "conditions": "INT_TRANSIT_6_COND" + }, + { + "id": 7, + "active": false, + "name": "INT_TRANSIT_7", + "location": "TarkovStreets", + "description": "INT_TRANSIT_7_DESC", + "activateAfterSec": 420, + "target": "5714dc692459777137212e12", + "time": 30, + "conditions": "INT_TRANSIT_7_COND" + } + ], + "Id": "Interchange", + "_Id": "5714dbc024597771384a510d", + "Loot": [ + { + "Id": "container_Shopping_Mall_DesignStuff_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a881", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb4d91ae71bfb1007a87f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a828", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a828", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a82a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb4d91ae71bfb1007a828", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a82c", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb4d91ae71bfb1007a828", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a82e", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb4d91ae71bfb1007a828", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00241", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a883", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb4d91ae71bfb1007a87f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a830", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a830", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a832", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a830", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 893 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00704", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a885", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb4d91ae71bfb1007a87f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a834", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a834", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00357", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a887", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a887", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00703", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a889", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb4d91ae71bfb1007a887", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a88b", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbb4d91ae71bfb1007a887", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a836", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a836", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a838", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb4d91ae71bfb1007a836", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00702", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a88d", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb4d91ae71bfb1007a887", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a83a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a83a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a83c", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb4d91ae71bfb1007a83a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00571", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a88f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a88f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00701", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a891", - "_tpl": "635a758bfefc88a93f021b8a", - "parentId": "66cbb4d91ae71bfb1007a88f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a83e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a83e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00527", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a893", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a893", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00293", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a895", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb4d91ae71bfb1007a893", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a897", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb4d91ae71bfb1007a893", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a840", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a840", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00762", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a899", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a899", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00292", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a89b", - "_tpl": "57ffb0062459777a045af529", - "parentId": "66cbb4d91ae71bfb1007a899", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a89d", - "_tpl": "5b39f8db5acfc40016387a1b", - "parentId": "66cbb4d91ae71bfb1007a899", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a842", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a842", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00678", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a89f", - "_tpl": "63f4ba71f31d4a33b87bd046", - "parentId": "66cbb4d91ae71bfb1007a899", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a8a1", - "_tpl": "560d657b4bdc2da74d8b4572", - "parentId": "66cbb4d91ae71bfb1007a899", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8a3", - "_tpl": "59e0be5d86f7742d48765bd2", - "parentId": "66cbb4d91ae71bfb1007a899", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a844", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a844", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00439", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a8a5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8a5", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00559", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8a7", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb4d91ae71bfb1007a8a5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00210", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a8a9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8a9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8ab", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb4d91ae71bfb1007a8a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a846", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a846", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a848", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007a846", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a84a", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb4d91ae71bfb1007a846", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00548", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a8ad", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8ad", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8af", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007a8ad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8b1", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007a8ad", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a8b3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8b3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a8b5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8b5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a84c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a84c", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a84d", + "_tpl": "66015072e9f84d5680039678", + "parentId": "66cbb4d91ae71bfb1007a84c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007a84e", + "_tpl": "66015dc4aaad2f54cb04c56a", + "parentId": "66cbb4d91ae71bfb1007a84d", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007a84f", + "_tpl": "6601546f86889319850bd566", + "parentId": "66cbb4d91ae71bfb1007a84e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a850", + "_tpl": "57f4c844245977379d5c14d1", + "parentId": "66cbb4d91ae71bfb1007a84c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a851", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66cbb4d91ae71bfb1007a850", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007a852", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbb4d91ae71bfb1007a850", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007a853", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb4d91ae71bfb1007a852", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a855", + "_tpl": "5c5db63a2e2216000f1b284a", + "parentId": "66cbb4d91ae71bfb1007a84c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a8b7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8b7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00256", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a857", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a857", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a859", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a857", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 741 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a85b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a857", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1122 + } } - } - ] - }, - { - "Id": "Lootable_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a8b9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8b9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00469", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8bb", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb4d91ae71bfb1007a8b9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a85d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a85d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a85f", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66cbb4d91ae71bfb1007a85d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a861", + "_tpl": "5e2af00086f7746d3f3c33f7", + "parentId": "66cbb4d91ae71bfb1007a85d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a863", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb4d91ae71bfb1007a85d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00452", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a8bd", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8bd", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00323", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8bf", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbb4d91ae71bfb1007a8bd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a865", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a865", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a867", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a865", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 724 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a869", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a865", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 676 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a86b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a865", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1024 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a86d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a865", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1036 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00535", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8c1", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb4d91ae71bfb1007a8bd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a86f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a86f", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00534", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a8c3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8c3", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00751", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8c5", - "_tpl": "60926df0132d4d12c81fd9df", - "parentId": "66cbb4d91ae71bfb1007a8c3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8c7", - "_tpl": "5addc00b5acfc4001669f144", - "parentId": "66cbb4d91ae71bfb1007a8c3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a871", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a871", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a8c9", - "_tpl": "655cb6b5d680a544f30607fa", - "parentId": "66cbb4d91ae71bfb1007a8c3", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a873", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66cbb4d91ae71bfb1007a871", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a8cb", - "_tpl": "5b07dd285acfc4001754240d", - "parentId": "66cbb4d91ae71bfb1007a8c3", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a875", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb4d91ae71bfb1007a871", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00442", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a8cd", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8cd", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00532", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8cf", - "_tpl": "57cffd8224597763b03fc609", - "parentId": "66cbb4d91ae71bfb1007a8cd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a877", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a877", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a879", + "_tpl": "57347baf24597738002c6178", + "parentId": "66cbb4d91ae71bfb1007a877", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00644", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8d1", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb4d91ae71bfb1007a8cd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a87b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a87b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 24 + { + "_id": "66cbb4d91ae71bfb1007a87d", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbb4d91ae71bfb1007a87b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb4d91ae71bfb1007a8d3", - "_tpl": "6450ec2e7da7133e5a09ca96", - "parentId": "66cbb4d91ae71bfb1007a8cd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00273", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a8d5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8d5", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8d7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a8d5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 705 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00335", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a8d9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8d9", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8db", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a8d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a87f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a87f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1082 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a8dd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a8d9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 753 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00334", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a8df", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8df", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a8e1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a8df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a881", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb4d91ae71bfb1007a87f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 789 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a8e3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a8df", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a883", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb4d91ae71bfb1007a87f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1040 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a8e5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a8df", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 848 + { + "_id": "66cbb4d91ae71bfb1007a885", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb4d91ae71bfb1007a87f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00636", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a8e7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8e7", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00357", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8e9", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb4d91ae71bfb1007a8e7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00677", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a8eb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8eb", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8ec", - "_tpl": "64a5366719bab53bd203bf33", - "parentId": "66cbb4d91ae71bfb1007a8eb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a887", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a887", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a889", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb4d91ae71bfb1007a887", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a88b", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbb4d91ae71bfb1007a887", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a88d", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb4d91ae71bfb1007a887", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00571", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8ed", - "_tpl": "656fac30c6baea13cd07e10c", - "parentId": "66cbb4d91ae71bfb1007a8ec", - "slotId": "Front_plate" - }, - { - "_id": "66cbb4d91ae71bfb1007a8ee", - "_tpl": "656fac30c6baea13cd07e10c", - "parentId": "66cbb4d91ae71bfb1007a8ec", - "slotId": "Back_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8ef", - "_tpl": "5b432d215acfc4771e1c6624", - "parentId": "66cbb4d91ae71bfb1007a8eb", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a88f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a88f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a891", + "_tpl": "635a758bfefc88a93f021b8a", + "parentId": "66cbb4d91ae71bfb1007a88f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00527", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8f0", - "_tpl": "657bb92fa1c61ee0c303631f", - "parentId": "66cbb4d91ae71bfb1007a8ef", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb4d91ae71bfb1007a8f1", - "_tpl": "657bb99db30eca976305117f", - "parentId": "66cbb4d91ae71bfb1007a8ef", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8f3", - "_tpl": "637f57d2f5ef8c33840d36c4", - "parentId": "66cbb4d91ae71bfb1007a8eb", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a893", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a893", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a8f5", - "_tpl": "618b9643526131765025ab35", - "parentId": "66cbb4d91ae71bfb1007a8eb", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a895", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb4d91ae71bfb1007a893", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a8f7", - "_tpl": "5649b2314bdc2d79388b4576", - "parentId": "66cbb4d91ae71bfb1007a8eb", - "slotId": "main", - "location": { - "x": 5, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a897", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb4d91ae71bfb1007a893", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00624", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a8f9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8f9", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a8fb", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbb4d91ae71bfb1007a8f9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00762", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a8fd", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb4d91ae71bfb1007a8f9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00806", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a8ff", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a8ff", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a901", - "_tpl": "5fb655a72b1b027b1f50bd06", - "parentId": "66cbb4d91ae71bfb1007a8ff", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a899", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a899", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a903", - "_tpl": "64785e7c19d732620e045e15", - "parentId": "66cbb4d91ae71bfb1007a8ff", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a89b", + "_tpl": "57ffb0062459777a045af529", + "parentId": "66cbb4d91ae71bfb1007a899", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a905", - "_tpl": "58d2947e86f77447aa070d53", - "parentId": "66cbb4d91ae71bfb1007a8ff", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a89d", + "_tpl": "5b39f8db5acfc40016387a1b", + "parentId": "66cbb4d91ae71bfb1007a899", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a907", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbb4d91ae71bfb1007a8ff", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a89f", + "_tpl": "63f4ba71f31d4a33b87bd046", + "parentId": "66cbb4d91ae71bfb1007a899", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 27 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a909", - "_tpl": "56ea7165d2720b6e518b4583", - "parentId": "66cbb4d91ae71bfb1007a8ff", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a8a1", + "_tpl": "560d657b4bdc2da74d8b4572", + "parentId": "66cbb4d91ae71bfb1007a899", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8a3", + "_tpl": "59e0be5d86f7742d48765bd2", + "parentId": "66cbb4d91ae71bfb1007a899", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00247", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a90b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a90b", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00439", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a90d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a90b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 964 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a90f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a90b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a8a5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8a5", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 921 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a911", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a90b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 752 + { + "_id": "66cbb4d91ae71bfb1007a8a7", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb4d91ae71bfb1007a8a5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00381", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a913", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a913", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00210", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a915", - "_tpl": "59d790f486f77403cb06aec6", - "parentId": "66cbb4d91ae71bfb1007a913", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a8a9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8a9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a8ab", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb4d91ae71bfb1007a8a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00548", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a916", - "_tpl": "644674a13d52156624001fbc", - "parentId": "66cbb4d91ae71bfb1007a913", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a8ad", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8ad", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66cbb4d91ae71bfb1007a8af", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007a8ad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "Foldable": { - "Folded": false + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8b1", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007a8ad", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "Lootable_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a917", - "_tpl": "6450ec2e7da7133e5a09ca96", - "parentId": "66cbb4d91ae71bfb1007a916", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a91d", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbb4d91ae71bfb1007a917", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a918", - "_tpl": "6450f21a3d52156624001fcf", - "parentId": "66cbb4d91ae71bfb1007a916", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007a919", - "_tpl": "6451167ad4928d46d30be3fd", - "parentId": "66cbb4d91ae71bfb1007a916", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb4d91ae71bfb1007a91a", - "_tpl": "645122f6d4928d46d30be3ff", - "parentId": "66cbb4d91ae71bfb1007a916", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007a91b", - "_tpl": "64527a263d52156624001fd7", - "parentId": "66cbb4d91ae71bfb1007a91a", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007a91c", - "_tpl": "644675573d52156624001fc9", - "parentId": "66cbb4d91ae71bfb1007a91a", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007a91e", - "_tpl": "61a4c8884f95bc3b2c5dc96f", - "parentId": "66cbb4d91ae71bfb1007a913", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 1 - }, - "upd": { - "FireMode": { - "FireMode": "single" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a8b3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8b3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "Lootable_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a91f", - "_tpl": "619f54a1d25cbd424731fb99", - "parentId": "66cbb4d91ae71bfb1007a91e", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a923", - "_tpl": "62330b3ed4dc74626d570b95", - "parentId": "66cbb4d91ae71bfb1007a91f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a8b5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8b5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a920", - "_tpl": "619f4cee4c58466fe1228435", - "parentId": "66cbb4d91ae71bfb1007a91e", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a921", - "_tpl": "619f4d304c58466fe1228437", - "parentId": "66cbb4d91ae71bfb1007a91e", - "slotId": "mod_sight_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a8b7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8b7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "Lootable_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a922", - "_tpl": "619f4bffd25cbd424731fb97", - "parentId": "66cbb4d91ae71bfb1007a91e", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a925", - "_tpl": "5d1b198cd7ad1a604869ad72", - "parentId": "66cbb4d91ae71bfb1007a913", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a8b9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8b9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a927", - "_tpl": "6698c9e07356874dfe0a0b88", - "parentId": "66cbb4d91ae71bfb1007a913", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a8bb", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb4d91ae71bfb1007a8b9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00733", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a929", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a929", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00452", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a92b", - "_tpl": "59e7715586f7742ee5789605", - "parentId": "66cbb4d91ae71bfb1007a929", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a92d", - "_tpl": "5d1b371186f774253763a656", - "parentId": "66cbb4d91ae71bfb1007a929", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a8bd", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8bd", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8bf", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbb4d91ae71bfb1007a8bd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8c1", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb4d91ae71bfb1007a8bd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a92f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a92f", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00534", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a931", - "_tpl": "57513fcc24597720a31c09a6", - "parentId": "66cbb4d91ae71bfb1007a92f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a933", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbb4d91ae71bfb1007a92f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a8c3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8c3", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a935", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66cbb4d91ae71bfb1007a92f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a8c5", + "_tpl": "60926df0132d4d12c81fd9df", + "parentId": "66cbb4d91ae71bfb1007a8c3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a937", - "_tpl": "65815f0e647e3d7246384e14", - "parentId": "66cbb4d91ae71bfb1007a92f", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a8c7", + "_tpl": "5addc00b5acfc4001669f144", + "parentId": "66cbb4d91ae71bfb1007a8c3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8c9", + "_tpl": "655cb6b5d680a544f30607fa", + "parentId": "66cbb4d91ae71bfb1007a8c3", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8cb", + "_tpl": "5b07dd285acfc4001754240d", + "parentId": "66cbb4d91ae71bfb1007a8c3", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00386", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a939", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a939", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00442", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a93b", - "_tpl": "6269545d0e57f218e4548ca2", - "parentId": "66cbb4d91ae71bfb1007a939", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a93d", - "_tpl": "59db3a1d86f77429e05b4e92", - "parentId": "66cbb4d91ae71bfb1007a939", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a8cd", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8cd", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8cf", + "_tpl": "57cffd8224597763b03fc609", + "parentId": "66cbb4d91ae71bfb1007a8cd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8d1", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb4d91ae71bfb1007a8cd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 24 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8d3", + "_tpl": "6450ec2e7da7133e5a09ca96", + "parentId": "66cbb4d91ae71bfb1007a8cd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00295", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a93f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a93f", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00273", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a941", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a93f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1143 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a943", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a93f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a8d5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8d5", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1092 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a945", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a93f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 982 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00294", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a947", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a947", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a8d7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a8d5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 705 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00384", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a949", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a949", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00335", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a94b", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbb4d91ae71bfb1007a949", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a94d", - "_tpl": "5cadd954ae921500103bb3c2", - "parentId": "66cbb4d91ae71bfb1007a949", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a8d9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8d9", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8db", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a8d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1082 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8dd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a8d9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 753 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00166", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a94f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a94f", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a950", - "_tpl": "5ba26383d4351e00334c93d9", - "parentId": "66cbb4d91ae71bfb1007a94f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00334", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a951", - "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "66cbb4d91ae71bfb1007a950", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a956", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbb4d91ae71bfb1007a951", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a8df", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8df", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8e1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a8df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 789 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8e3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a8df", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1040 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8e5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a8df", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 848 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00636", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a952", - "_tpl": "5ba26acdd4351e003562908e", - "parentId": "66cbb4d91ae71bfb1007a950", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a953", - "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "66cbb4d91ae71bfb1007a950", - "slotId": "mod_sight_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a8e7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8e7", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a8e9", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb4d91ae71bfb1007a8e7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00677", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a954", - "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "66cbb4d91ae71bfb1007a950", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a955", - "_tpl": "5bcf0213d4351e0085327c17", - "parentId": "66cbb4d91ae71bfb1007a950", - "slotId": "mod_stock" - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00314", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a958", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a958", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a95a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a958", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a8eb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8eb", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1068 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a95c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a958", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a8ec", + "_tpl": "64a5366719bab53bd203bf33", + "parentId": "66cbb4d91ae71bfb1007a8eb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 701 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a95e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a958", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a8ed", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "66cbb4d91ae71bfb1007a8ec", + "slotId": "Front_plate" }, - "upd": { - "StackObjectsCount": 1116 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a960", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a958", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1028 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00263", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a962", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a962", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a964", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a962", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a8ee", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "66cbb4d91ae71bfb1007a8ec", + "slotId": "Back_plate" }, - "upd": { - "StackObjectsCount": 968 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a966", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a962", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a8ef", + "_tpl": "5b432d215acfc4771e1c6624", + "parentId": "66cbb4d91ae71bfb1007a8eb", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 984 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a968", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a962", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 737 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00654", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a96a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a96a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a96c", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb4d91ae71bfb1007a96a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a8f0", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "66cbb4d91ae71bfb1007a8ef", + "slotId": "Helmet_top" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a96e", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb4d91ae71bfb1007a96a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00400", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a970", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a970", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a972", - "_tpl": "5e2af4d286f7746d4159f07a", - "parentId": "66cbb4d91ae71bfb1007a970", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a8f1", + "_tpl": "657bb99db30eca976305117f", + "parentId": "66cbb4d91ae71bfb1007a8ef", + "slotId": "Helmet_back" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a974", - "_tpl": "5cc80f67e4a949035e43bbba", - "parentId": "66cbb4d91ae71bfb1007a970", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a8f3", + "_tpl": "637f57d2f5ef8c33840d36c4", + "parentId": "66cbb4d91ae71bfb1007a8eb", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 14 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a976", - "_tpl": "5e569a2e56edd02abe09f280", - "parentId": "66cbb4d91ae71bfb1007a970", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a8f5", + "_tpl": "618b9643526131765025ab35", + "parentId": "66cbb4d91ae71bfb1007a8eb", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a8f7", + "_tpl": "5649b2314bdc2d79388b4576", + "parentId": "66cbb4d91ae71bfb1007a8eb", + "slotId": "main", + "location": { + "x": 5, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00624", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a978", - "_tpl": "5e569a132642e66b0b68015c", - "parentId": "66cbb4d91ae71bfb1007a970", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a97a", - "_tpl": "5ef366938cef260c0642acad", - "parentId": "66cbb4d91ae71bfb1007a970", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a8f9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8f9", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a97c", - "_tpl": "560d657b4bdc2da74d8b4572", - "parentId": "66cbb4d91ae71bfb1007a970", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a8fb", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbb4d91ae71bfb1007a8f9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a97e", - "_tpl": "606f263a8900dc2d9a55b68d", - "parentId": "66cbb4d91ae71bfb1007a970", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a8fd", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb4d91ae71bfb1007a8f9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00509", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a980", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a980", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a982", - "_tpl": "5c10c8fd86f7743d7d706df3", - "parentId": "66cbb4d91ae71bfb1007a980", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00806", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a984", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb4d91ae71bfb1007a980", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00427", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a986", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a986", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a988", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "parentId": "66cbb4d91ae71bfb1007a986", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a8ff", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a8ff", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a98a", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66cbb4d91ae71bfb1007a986", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a901", + "_tpl": "5fb655a72b1b027b1f50bd06", + "parentId": "66cbb4d91ae71bfb1007a8ff", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a98c", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "66cbb4d91ae71bfb1007a986", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00339", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a98e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a98e", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a990", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a98e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a903", + "_tpl": "64785e7c19d732620e045e15", + "parentId": "66cbb4d91ae71bfb1007a8ff", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1107 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a992", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a98e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a905", + "_tpl": "58d2947e86f77447aa070d53", + "parentId": "66cbb4d91ae71bfb1007a8ff", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 844 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a994", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a98e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a907", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbb4d91ae71bfb1007a8ff", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 27 + } }, - "upd": { - "StackObjectsCount": 582 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a996", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a98e", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1084 + { + "_id": "66cbb4d91ae71bfb1007a909", + "_tpl": "56ea7165d2720b6e518b4583", + "parentId": "66cbb4d91ae71bfb1007a8ff", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00338", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a998", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a998", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00247", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a99a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a998", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 744 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a99c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a998", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 861 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a90b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a90b", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a90d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a90b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 964 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a90f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a90b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 921 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a911", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a90b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 752 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00243", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a99e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a99e", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00381", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9a0", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a99e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 841 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00185", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a9a2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9a2", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9a4", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb4d91ae71bfb1007a9a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a913", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a913", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9a5", - "_tpl": "5cadc190ae921500103bb3b6", - "parentId": "66cbb4d91ae71bfb1007a9a2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a915", + "_tpl": "59d790f486f77403cb06aec6", + "parentId": "66cbb4d91ae71bfb1007a913", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb4d91ae71bfb1007a916", + "_tpl": "644674a13d52156624001fbc", + "parentId": "66cbb4d91ae71bfb1007a913", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007a917", + "_tpl": "6450ec2e7da7133e5a09ca96", + "parentId": "66cbb4d91ae71bfb1007a916", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007a91d", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbb4d91ae71bfb1007a917", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a918", + "_tpl": "6450f21a3d52156624001fcf", + "parentId": "66cbb4d91ae71bfb1007a916", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007a919", + "_tpl": "6451167ad4928d46d30be3fd", + "parentId": "66cbb4d91ae71bfb1007a916", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb4d91ae71bfb1007a91a", + "_tpl": "645122f6d4928d46d30be3ff", + "parentId": "66cbb4d91ae71bfb1007a916", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007a91b", + "_tpl": "64527a263d52156624001fd7", + "parentId": "66cbb4d91ae71bfb1007a91a", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007a91c", + "_tpl": "644675573d52156624001fc9", + "parentId": "66cbb4d91ae71bfb1007a91a", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007a91e", + "_tpl": "61a4c8884f95bc3b2c5dc96f", + "parentId": "66cbb4d91ae71bfb1007a913", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 1 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007a91f", + "_tpl": "619f54a1d25cbd424731fb99", + "parentId": "66cbb4d91ae71bfb1007a91e", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007a923", + "_tpl": "62330b3ed4dc74626d570b95", + "parentId": "66cbb4d91ae71bfb1007a91f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a920", + "_tpl": "619f4cee4c58466fe1228435", + "parentId": "66cbb4d91ae71bfb1007a91e", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007a921", + "_tpl": "619f4d304c58466fe1228437", + "parentId": "66cbb4d91ae71bfb1007a91e", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4d91ae71bfb1007a922", + "_tpl": "619f4bffd25cbd424731fb97", + "parentId": "66cbb4d91ae71bfb1007a91e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007a925", + "_tpl": "5d1b198cd7ad1a604869ad72", + "parentId": "66cbb4d91ae71bfb1007a913", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a927", + "_tpl": "6698c9e07356874dfe0a0b88", + "parentId": "66cbb4d91ae71bfb1007a913", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66cbb4d91ae71bfb1007a9a6", - "_tpl": "5cadc1c6ae9215000f2775a4", - "parentId": "66cbb4d91ae71bfb1007a9a5", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007a9a7", - "_tpl": "5cadc390ae921500126a77f1", - "parentId": "66cbb4d91ae71bfb1007a9a6", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007a9a8", - "_tpl": "5cadc431ae921500113bb8d5", - "parentId": "66cbb4d91ae71bfb1007a9a5", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007a9a9", - "_tpl": "5cadc55cae921500103bb3be", - "parentId": "66cbb4d91ae71bfb1007a9a5", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007a9aa", - "_tpl": "5cadd940ae9215051e1c2316", - "parentId": "66cbb4d91ae71bfb1007a9a9", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007a9ab", - "_tpl": "5cadd919ae921500126a77f3", - "parentId": "66cbb4d91ae71bfb1007a9a9", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb4d91ae71bfb1007a9ac", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "66cbb4d91ae71bfb1007a9a5", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4d91ae71bfb1007a9ad", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb4d91ae71bfb1007a9ac", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9af", - "_tpl": "5f60bf4558eff926626a60f2", - "parentId": "66cbb4d91ae71bfb1007a9a2", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00385", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a9b1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9b1", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00733", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9b3", - "_tpl": "5dfa3d2b0dee1b22f862eade", - "parentId": "66cbb4d91ae71bfb1007a9b1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9b5", - "_tpl": "628a6678ccaab13006640e49", - "parentId": "66cbb4d91ae71bfb1007a9b1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a929", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a929", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9b7", - "_tpl": "5aa66be6e5b5b0214e506e97", - "parentId": "66cbb4d91ae71bfb1007a9b1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a92b", + "_tpl": "59e7715586f7742ee5789605", + "parentId": "66cbb4d91ae71bfb1007a929", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9b9", - "_tpl": "64807a29e5ffe165600abc97", - "parentId": "66cbb4d91ae71bfb1007a9b1", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a92d", + "_tpl": "5d1b371186f774253763a656", + "parentId": "66cbb4d91ae71bfb1007a929", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00328", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a9bb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9bb", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9bd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9bb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 964 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9bf", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9bb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a92f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a92f", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1050 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9c1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9bb", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 769 + { + "_id": "66cbb4d91ae71bfb1007a931", + "_tpl": "57513fcc24597720a31c09a6", + "parentId": "66cbb4d91ae71bfb1007a92f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a933", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbb4d91ae71bfb1007a92f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a935", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66cbb4d91ae71bfb1007a92f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a937", + "_tpl": "65815f0e647e3d7246384e14", + "parentId": "66cbb4d91ae71bfb1007a92f", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00796", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a9c3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9c3", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9c4", - "_tpl": "5a38e6bac4a2826c6e06d79b", - "parentId": "66cbb4d91ae71bfb1007a9c3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00386", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9c5", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "66cbb4d91ae71bfb1007a9c4", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9c8", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66cbb4d91ae71bfb1007a9c5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 1.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a939", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a939", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a93b", + "_tpl": "6269545d0e57f218e4548ca2", + "parentId": "66cbb4d91ae71bfb1007a939", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a93d", + "_tpl": "59db3a1d86f77429e05b4e92", + "parentId": "66cbb4d91ae71bfb1007a939", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00295", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9c6", - "_tpl": "5a38ef1fc4a282000b1521f6", - "parentId": "66cbb4d91ae71bfb1007a9c4", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9c7", - "_tpl": "5a38eecdc4a282329a73b512", - "parentId": "66cbb4d91ae71bfb1007a9c6", - "slotId": "mod_pistol_grip" - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00378", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a9ca", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9ca", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a93f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a93f", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a941", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a93f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1143 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a943", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a93f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1092 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a945", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a93f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 982 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00484", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a9cc", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9cc", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00294", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9ce", - "_tpl": "5c064c400db834001d23f468", - "parentId": "66cbb4d91ae71bfb1007a9cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00216", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a9d0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9d0", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9d2", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb4d91ae71bfb1007a9d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a947", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a947", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a9d4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9d4", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00384", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9d6", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007a9d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00767", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a9d8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9d8", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9da", - "_tpl": "5a9548c9159bd400133e97b3", - "parentId": "66cbb4d91ae71bfb1007a9d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a949", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a949", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9dc", - "_tpl": "570fd79bd2720bc7458b4583", - "parentId": "66cbb4d91ae71bfb1007a9d8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a94b", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbb4d91ae71bfb1007a949", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9de", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "66cbb4d91ae71bfb1007a9d8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a94d", + "_tpl": "5cadd954ae921500103bb3c2", + "parentId": "66cbb4d91ae71bfb1007a949", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00238", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a9e0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9e0", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00166", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9e2", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 640 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9e4", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9e0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 840 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00310", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a9e6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9e6", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9e8", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9e6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a94f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a94f", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 706 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9ea", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9e6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a950", + "_tpl": "5ba26383d4351e00334c93d9", + "parentId": "66cbb4d91ae71bfb1007a94f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 757 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9ec", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9e6", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a951", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "66cbb4d91ae71bfb1007a950", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1046 - } - }, - { - "_id": "66cbb4d91ae71bfb1007a9ee", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9e6", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1003 + { + "_id": "66cbb4d91ae71bfb1007a956", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbb4d91ae71bfb1007a951", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a952", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "66cbb4d91ae71bfb1007a950", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007a953", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "66cbb4d91ae71bfb1007a950", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4d91ae71bfb1007a954", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "66cbb4d91ae71bfb1007a950", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007a955", + "_tpl": "5bcf0213d4351e0085327c17", + "parentId": "66cbb4d91ae71bfb1007a950", + "slotId": "mod_stock" } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00129", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007a9f0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9f0", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00314", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9f2", - "_tpl": "5d6fc78386f77449d825f9dc", - "parentId": "66cbb4d91ae71bfb1007a9f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9f4", - "_tpl": "5c10c8fd86f7743d7d706df3", - "parentId": "66cbb4d91ae71bfb1007a9f0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a958", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a958", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a95a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a958", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1068 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a95c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a958", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 701 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a95e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a958", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1116 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a960", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a958", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1028 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00303", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a9f6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9f6", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00263", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9f8", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 874 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9fa", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9f6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 596 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a962", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a962", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a964", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a962", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 968 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a966", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a962", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 984 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a968", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a962", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 737 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00302", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007a9fc", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007a9fc", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00654", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007a9fe", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9fc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 868 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa00", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007a9fc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 829 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a96a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a96a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a96c", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb4d91ae71bfb1007a96a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a96e", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb4d91ae71bfb1007a96a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00666", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa02", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa02", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00400", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa04", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66cbb4d91ae71bfb1007aa02", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa06", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb4d91ae71bfb1007aa02", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a970", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a970", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa08", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66cbb4d91ae71bfb1007aa02", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00287", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aa0a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa0a", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a972", + "_tpl": "5e2af4d286f7746d4159f07a", + "parentId": "66cbb4d91ae71bfb1007a970", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a974", + "_tpl": "5cc80f67e4a949035e43bbba", + "parentId": "66cbb4d91ae71bfb1007a970", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 14 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a976", + "_tpl": "5e569a2e56edd02abe09f280", + "parentId": "66cbb4d91ae71bfb1007a970", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a978", + "_tpl": "5e569a132642e66b0b68015c", + "parentId": "66cbb4d91ae71bfb1007a970", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a97a", + "_tpl": "5ef366938cef260c0642acad", + "parentId": "66cbb4d91ae71bfb1007a970", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a97c", + "_tpl": "560d657b4bdc2da74d8b4572", + "parentId": "66cbb4d91ae71bfb1007a970", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a97e", + "_tpl": "606f263a8900dc2d9a55b68d", + "parentId": "66cbb4d91ae71bfb1007a970", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00286", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aa0c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa0c", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00509", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa0e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aa0c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 904 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa10", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aa0c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a980", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a980", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 603 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa12", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aa0c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 909 + { + "_id": "66cbb4d91ae71bfb1007a982", + "_tpl": "5c10c8fd86f7743d7d706df3", + "parentId": "66cbb4d91ae71bfb1007a980", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a984", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb4d91ae71bfb1007a980", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00410", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa14", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa14", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00427", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa16", - "_tpl": "5751a89d24597722aa0e8db0", - "parentId": "66cbb4d91ae71bfb1007aa14", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa18", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbb4d91ae71bfb1007aa14", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a986", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a986", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a988", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "parentId": "66cbb4d91ae71bfb1007a986", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a98a", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66cbb4d91ae71bfb1007a986", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a98c", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "66cbb4d91ae71bfb1007a986", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00561", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa1a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa1a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00339", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa1c", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb4d91ae71bfb1007aa1a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa1e", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb4d91ae71bfb1007aa1a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00550", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa20", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa20", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa22", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb4d91ae71bfb1007aa20", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a98e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a98e", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a990", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a98e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1107 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a992", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a98e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 844 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a994", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a98e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 582 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a996", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a98e", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1084 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00267", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aa24", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa24", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00338", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa26", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aa24", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 589 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00423", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa28", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa28", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa2a", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbb4d91ae71bfb1007aa28", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a998", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a998", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 50 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa2c", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb4d91ae71bfb1007aa28", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a99a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a998", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 744 + } }, - "upd": { - "StackObjectsCount": 46 + { + "_id": "66cbb4d91ae71bfb1007a99c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a998", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 861 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00243", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa2f", - "_tpl": "5737330a2459776af32363a1", - "parentId": "66cbb4d91ae71bfb1007aa28", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a99e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a99e", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a9a0", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a99e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 841 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00185", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa30", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbb4d91ae71bfb1007aa2f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa33", - "_tpl": "5737287724597765e1625ae2", - "parentId": "66cbb4d91ae71bfb1007aa28", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a9a2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9a2", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa34", - "_tpl": "573720e02459776143012541", - "parentId": "66cbb4d91ae71bfb1007aa33", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + { + "_id": "66cbb4d91ae71bfb1007a9a4", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb4d91ae71bfb1007a9a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9a5", + "_tpl": "5cadc190ae921500103bb3b6", + "parentId": "66cbb4d91ae71bfb1007a9a2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9a6", + "_tpl": "5cadc1c6ae9215000f2775a4", + "parentId": "66cbb4d91ae71bfb1007a9a5", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007a9a7", + "_tpl": "5cadc390ae921500126a77f1", + "parentId": "66cbb4d91ae71bfb1007a9a6", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007a9a8", + "_tpl": "5cadc431ae921500113bb8d5", + "parentId": "66cbb4d91ae71bfb1007a9a5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007a9a9", + "_tpl": "5cadc55cae921500103bb3be", + "parentId": "66cbb4d91ae71bfb1007a9a5", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007a9aa", + "_tpl": "5cadd940ae9215051e1c2316", + "parentId": "66cbb4d91ae71bfb1007a9a9", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007a9ab", + "_tpl": "5cadd919ae921500126a77f3", + "parentId": "66cbb4d91ae71bfb1007a9a9", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4d91ae71bfb1007a9ac", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "66cbb4d91ae71bfb1007a9a5", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007a9ad", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb4d91ae71bfb1007a9ac", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9af", + "_tpl": "5f60bf4558eff926626a60f2", + "parentId": "66cbb4d91ae71bfb1007a9a2", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00355", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa36", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa36", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00385", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa38", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb4d91ae71bfb1007aa36", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa3a", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbb4d91ae71bfb1007aa36", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a9b1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9b1", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa3c", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "66cbb4d91ae71bfb1007aa36", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a9b3", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "parentId": "66cbb4d91ae71bfb1007a9b1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9b5", + "_tpl": "628a6678ccaab13006640e49", + "parentId": "66cbb4d91ae71bfb1007a9b1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9b7", + "_tpl": "5aa66be6e5b5b0214e506e97", + "parentId": "66cbb4d91ae71bfb1007a9b1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9b9", + "_tpl": "64807a29e5ffe165600abc97", + "parentId": "66cbb4d91ae71bfb1007a9b1", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa3e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa3e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00328", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa40", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb4d91ae71bfb1007aa3e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa42", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbb4d91ae71bfb1007aa3e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a9bb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9bb", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa44", - "_tpl": "62a09dd4621468534a797ac7", - "parentId": "66cbb4d91ae71bfb1007aa3e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a9bd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9bb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 964 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9bf", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9bb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1050 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9c1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9bb", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 769 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00390", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa46", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa46", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00796", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa48", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66cbb4d91ae71bfb1007aa46", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa4a", - "_tpl": "5b84038986f774774913b0c1", - "parentId": "66cbb4d91ae71bfb1007aa46", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a9c3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9c3", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa4c", - "_tpl": "5cf50fc5d7f00c056c53f83c", - "parentId": "66cbb4d91ae71bfb1007aa46", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a9c4", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "parentId": "66cbb4d91ae71bfb1007a9c3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa4e", - "_tpl": "576a63cd2459771e796e0e11", - "parentId": "66cbb4d91ae71bfb1007aa46", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a9c5", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "66cbb4d91ae71bfb1007a9c4", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa4f", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66cbb4d91ae71bfb1007aa46", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a9c8", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66cbb4d91ae71bfb1007a9c5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 1.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9c6", + "_tpl": "5a38ef1fc4a282000b1521f6", + "parentId": "66cbb4d91ae71bfb1007a9c4", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007a9c7", + "_tpl": "5a38eecdc4a282329a73b512", + "parentId": "66cbb4d91ae71bfb1007a9c6", + "slotId": "mod_pistol_grip" } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00378", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa50", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66cbb4d91ae71bfb1007aa4f", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007aa51", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66cbb4d91ae71bfb1007aa4f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007aa52", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66cbb4d91ae71bfb1007aa4f", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa53", - "_tpl": "5736026a245977644601dc61", - "parentId": "66cbb4d91ae71bfb1007aa52", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a9ca", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9ca", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00313", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aa55", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa55", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00484", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa57", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aa55", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 679 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa59", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aa55", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a9cc", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9cc", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 788 + { + "_id": "66cbb4d91ae71bfb1007a9ce", + "_tpl": "5c064c400db834001d23f468", + "parentId": "66cbb4d91ae71bfb1007a9cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00216", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa5b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aa55", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 858 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00156", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa5d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa5d", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa5f", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb4d91ae71bfb1007aa5d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a9d0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9d0", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9d2", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb4d91ae71bfb1007a9d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00234", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aa61", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa61", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa63", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aa61", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 582 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00371", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa65", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa65", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa67", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbb4d91ae71bfb1007aa65", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a9d4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9d4", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa69", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "66cbb4d91ae71bfb1007aa65", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a9d6", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007a9d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00583", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa6b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa6b", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00767", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa6d", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb4d91ae71bfb1007aa6b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa6f", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007aa6b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a9d8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9d8", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9da", + "_tpl": "5a9548c9159bd400133e97b3", + "parentId": "66cbb4d91ae71bfb1007a9d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9dc", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "66cbb4d91ae71bfb1007a9d8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9de", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "66cbb4d91ae71bfb1007a9d8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00652", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa71", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa71", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00238", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa73", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbb4d91ae71bfb1007aa71", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa75", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb4d91ae71bfb1007aa71", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a9e0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9e0", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9e2", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 640 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9e4", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9e0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 840 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa77", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa77", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00310", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa79", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb4d91ae71bfb1007aa77", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa7b", - "_tpl": "57347baf24597738002c6178", - "parentId": "66cbb4d91ae71bfb1007aa77", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a9e6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9e6", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9e8", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9e6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 706 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9ea", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9e6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 757 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9ec", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9e6", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1046 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9ee", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9e6", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1003 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00670", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa7d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa7d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00129", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa7f", - "_tpl": "5ab8f39486f7745cd93a1cca", - "parentId": "66cbb4d91ae71bfb1007aa7d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa81", - "_tpl": "5b4325355acfc40019478126", - "parentId": "66cbb4d91ae71bfb1007aa7d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007a9f0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9f0", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa83", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbb4d91ae71bfb1007aa7d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a9f2", + "_tpl": "5d6fc78386f77449d825f9dc", + "parentId": "66cbb4d91ae71bfb1007a9f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9f4", + "_tpl": "5c10c8fd86f7743d7d706df3", + "parentId": "66cbb4d91ae71bfb1007a9f0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00405", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa85", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa85", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00303", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa87", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb4d91ae71bfb1007aa85", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00722", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa89", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa89", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa8b", - "_tpl": "59e3596386f774176c10a2a2", - "parentId": "66cbb4d91ae71bfb1007aa89", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a9f6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9f6", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa8d", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66cbb4d91ae71bfb1007aa89", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007a9f8", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 874 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007a9fa", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9f6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 596 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00302", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa8f", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb4d91ae71bfb1007aa89", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007a9fc", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007a9fc", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007a9fe", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9fc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 868 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa00", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007a9fc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 829 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00510", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa91", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa91", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00666", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa93", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb4d91ae71bfb1007aa91", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa02", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa02", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa04", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66cbb4d91ae71bfb1007aa02", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aa06", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb4d91ae71bfb1007aa02", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa08", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66cbb4d91ae71bfb1007aa02", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00287", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa95", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "66cbb4d91ae71bfb1007aa91", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aa0a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa0a", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00435", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aa97", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa97", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00369", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aa99", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aa99", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00286", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa9b", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66cbb4d91ae71bfb1007aa99", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aa9d", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbb4d91ae71bfb1007aa99", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aa0c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa0c", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aa9f", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb4d91ae71bfb1007aa99", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aa0e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aa0c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 904 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa10", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aa0c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 603 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa12", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aa0c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 909 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00499", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aaa1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aaa1", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00410", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aaa3", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb4d91ae71bfb1007aaa1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00265", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aaa5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aaa5", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aaa7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aaa5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 842 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa14", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa14", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa16", + "_tpl": "5751a89d24597722aa0e8db0", + "parentId": "66cbb4d91ae71bfb1007aa14", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa18", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbb4d91ae71bfb1007aa14", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00192", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aaa9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aaa9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00561", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aaab", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007aaa9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aaad", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb4d91ae71bfb1007aaa9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa1a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa1a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa1c", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb4d91ae71bfb1007aa1a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa1e", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb4d91ae71bfb1007aa1a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00345", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aaaf", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aaaf", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00550", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aab1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aaaf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 620 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00344", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aab3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aab3", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aab5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aab3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa20", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa20", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 855 + { + "_id": "66cbb4d91ae71bfb1007aa22", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb4d91ae71bfb1007aa20", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00267", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aab7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aab3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1128 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aab9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aab3", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1058 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aa24", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa24", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa26", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aa24", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 589 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00784", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aabb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aabb", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00423", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aabd", - "_tpl": "5a7afa25e899ef00135e31b0", - "parentId": "66cbb4d91ae71bfb1007aabb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aabf", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "66cbb4d91ae71bfb1007aabb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa28", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa28", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aac1", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "66cbb4d91ae71bfb1007aabb", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aa2a", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbb4d91ae71bfb1007aa28", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa2c", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb4d91ae71bfb1007aa28", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 46 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa2f", + "_tpl": "5737330a2459776af32363a1", + "parentId": "66cbb4d91ae71bfb1007aa28", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa30", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbb4d91ae71bfb1007aa2f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa33", + "_tpl": "5737287724597765e1625ae2", + "parentId": "66cbb4d91ae71bfb1007aa28", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa34", + "_tpl": "573720e02459776143012541", + "parentId": "66cbb4d91ae71bfb1007aa33", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00562", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aac3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aac3", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00355", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aac5", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb4d91ae71bfb1007aac3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aac7", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb4d91ae71bfb1007aac3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa36", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa36", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aac9", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbb4d91ae71bfb1007aac3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aa38", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb4d91ae71bfb1007aa36", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa3a", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbb4d91ae71bfb1007aa36", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa3c", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "66cbb4d91ae71bfb1007aa36", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00443", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aacb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aacb", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aacc", - "_tpl": "60339954d62c9b14ed777c06", - "parentId": "66cbb4d91ae71bfb1007aacb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa3e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa3e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa40", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb4d91ae71bfb1007aa3e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa42", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbb4d91ae71bfb1007aa3e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb4d91ae71bfb1007aa44", + "_tpl": "62a09dd4621468534a797ac7", + "parentId": "66cbb4d91ae71bfb1007aa3e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00390", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aacd", - "_tpl": "602e71bd53a60014f9705bfa", - "parentId": "66cbb4d91ae71bfb1007aacc", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007aace", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "66cbb4d91ae71bfb1007aacc", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4d91ae71bfb1007aad7", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb4d91ae71bfb1007aace", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aacf", - "_tpl": "602e63fb6335467b0c5ac94d", - "parentId": "66cbb4d91ae71bfb1007aacc", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007aad0", - "_tpl": "603372b4da11d6478d5a07ff", - "parentId": "66cbb4d91ae71bfb1007aacf", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007aad1", - "_tpl": "60337f5dce399e10262255d1", - "parentId": "66cbb4d91ae71bfb1007aad0", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007aad2", - "_tpl": "6034e3cb0ddce744014cb870", - "parentId": "66cbb4d91ae71bfb1007aacf", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007aad3", - "_tpl": "602e3f1254072b51b239f713", - "parentId": "66cbb4d91ae71bfb1007aacc", - "slotId": "mod_stock_001" - }, - { - "_id": "66cbb4d91ae71bfb1007aad4", - "_tpl": "602e620f9b513876d4338d9a", - "parentId": "66cbb4d91ae71bfb1007aad3", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb4d91ae71bfb1007aad5", - "_tpl": "6033749e88382f4fab3fd2c5", - "parentId": "66cbb4d91ae71bfb1007aacc", - "slotId": "mod_charge" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa46", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa46", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa48", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66cbb4d91ae71bfb1007aa46", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa4a", + "_tpl": "5b84038986f774774913b0c1", + "parentId": "66cbb4d91ae71bfb1007aa46", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa4c", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "parentId": "66cbb4d91ae71bfb1007aa46", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa4e", + "_tpl": "576a63cd2459771e796e0e11", + "parentId": "66cbb4d91ae71bfb1007aa46", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa4f", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66cbb4d91ae71bfb1007aa46", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa50", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66cbb4d91ae71bfb1007aa4f", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007aa51", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66cbb4d91ae71bfb1007aa4f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007aa52", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66cbb4d91ae71bfb1007aa4f", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007aa53", + "_tpl": "5736026a245977644601dc61", + "parentId": "66cbb4d91ae71bfb1007aa52", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00313", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aad6", - "_tpl": "602f85fd9b513876d4338d9c", - "parentId": "66cbb4d91ae71bfb1007aacc", - "slotId": "mod_tactical_000" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aad9", - "_tpl": "59e0d99486f7744a32234762", - "parentId": "66cbb4d91ae71bfb1007aacb", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aa55", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa55", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa57", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aa55", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 679 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa59", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aa55", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 788 + } }, - "upd": { - "StackObjectsCount": 36 + { + "_id": "66cbb4d91ae71bfb1007aa5b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aa55", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 858 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00156", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aada", - "_tpl": "669fa3f88abd2662d80eee77", - "parentId": "66cbb4d91ae71bfb1007aacb", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa5d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa5d", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb4d91ae71bfb1007aa5f", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb4d91ae71bfb1007aa5d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00234", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aadb", - "_tpl": "669fa4ba1bd4416eaa09b3c6", - "parentId": "66cbb4d91ae71bfb1007aada", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007aadc", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbb4d91ae71bfb1007aadb", - "slotId": "mod_sight_front" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aadd", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66cbb4d91ae71bfb1007aada", - "slotId": "mod_pistolgrip" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aa61", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa61", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa63", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aa61", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 582 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00371", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aade", - "_tpl": "669fa5019aa2a422600442f6", - "parentId": "66cbb4d91ae71bfb1007aada", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aadf", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbb4d91ae71bfb1007aade", - "slotId": "mod_sight_rear" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa65", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa65", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa67", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbb4d91ae71bfb1007aa65", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa69", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "66cbb4d91ae71bfb1007aa65", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00583", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aae0", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbb4d91ae71bfb1007aada", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aae1", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66cbb4d91ae71bfb1007aae0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa6b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa6b", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa6d", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb4d91ae71bfb1007aa6b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa6f", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007aa6b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00652", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aae3", - "_tpl": "622efbcb99f4ea1a4d6c9a15", - "parentId": "66cbb4d91ae71bfb1007aacb", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa71", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa71", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa73", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbb4d91ae71bfb1007aa71", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aa75", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb4d91ae71bfb1007aa71", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Test_for_export_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aae5", - "_tpl": "56ea7293d2720b8d4b8b45ba", - "parentId": "66cbb4d91ae71bfb1007aacb", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa77", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa77", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa79", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb4d91ae71bfb1007aa77", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa7b", + "_tpl": "57347baf24597738002c6178", + "parentId": "66cbb4d91ae71bfb1007aa77", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00318", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aae7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aae7", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00670", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aae9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aae7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 568 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa7d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa7d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa7f", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "66cbb4d91ae71bfb1007aa7d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa81", + "_tpl": "5b4325355acfc40019478126", + "parentId": "66cbb4d91ae71bfb1007aa7d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa83", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbb4d91ae71bfb1007aa7d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00127", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aaeb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aaeb", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00405", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aaed", - "_tpl": "5f60b85bbdb8e27dee3dc985", - "parentId": "66cbb4d91ae71bfb1007aaeb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa85", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa85", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aa87", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb4d91ae71bfb1007aa85", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00722", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aaef", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb4d91ae71bfb1007aaeb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa89", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa89", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa8b", + "_tpl": "59e3596386f774176c10a2a2", + "parentId": "66cbb4d91ae71bfb1007aa89", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa8d", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66cbb4d91ae71bfb1007aa89", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aa8f", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb4d91ae71bfb1007aa89", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00510", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aaf1", - "_tpl": "5c0d32fcd174af02a1659c75", - "parentId": "66cbb4d91ae71bfb1007aaeb", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa91", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa91", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa93", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb4d91ae71bfb1007aa91", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aa95", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "66cbb4d91ae71bfb1007aa91", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00435", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aaf3", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb4d91ae71bfb1007aaeb", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aa97", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa97", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00590", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aaf5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aaf5", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00369", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aaf7", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66cbb4d91ae71bfb1007aaf5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00417", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aaf9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aaf9", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aafb", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb4d91ae71bfb1007aaf9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aa99", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aa99", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa9b", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66cbb4d91ae71bfb1007aa99", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa9d", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbb4d91ae71bfb1007aa99", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aa9f", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb4d91ae71bfb1007aa99", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00490", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aafd", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aafd", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00499", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aaff", - "_tpl": "62a0a043cf4a99369e2624a5", - "parentId": "66cbb4d91ae71bfb1007aafd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00747", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab01", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab01", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab03", - "_tpl": "5d1b2ffd86f77425243e8d17", - "parentId": "66cbb4d91ae71bfb1007ab01", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aaa1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aaa1", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab05", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb4d91ae71bfb1007ab01", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aaa3", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb4d91ae71bfb1007aaa1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00588", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab07", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab07", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00265", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab09", - "_tpl": "57514643245977207f2c2d09", - "parentId": "66cbb4d91ae71bfb1007ab07", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00251", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ab0b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab0b", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab0d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab0b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aaa5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aaa5", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 756 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab0f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab0b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1096 + { + "_id": "66cbb4d91ae71bfb1007aaa7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aaa5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 842 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00398", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab11", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab11", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00192", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab13", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb4d91ae71bfb1007ab11", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 11 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab15", - "_tpl": "577d128124597739d65d0e56", - "parentId": "66cbb4d91ae71bfb1007ab11", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aaa9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aaa9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab16", - "_tpl": "5ac66d9b5acfc4001633997a", - "parentId": "66cbb4d91ae71bfb1007ab11", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab17", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb4d91ae71bfb1007ab16", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb4d91ae71bfb1007ab18", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb4d91ae71bfb1007ab17", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007ab19", - "_tpl": "5ac72e945acfc43f3b691116", - "parentId": "66cbb4d91ae71bfb1007ab16", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007ab1a", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb4d91ae71bfb1007ab16", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007ab1b", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb4d91ae71bfb1007ab16", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007ab1c", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb4d91ae71bfb1007ab16", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007ab1d", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb4d91ae71bfb1007ab16", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007ab1e", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbb4d91ae71bfb1007ab16", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4d91ae71bfb1007ab1f", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb4d91ae71bfb1007ab1e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30.0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab21", - "_tpl": "5e56991336989c75ab4f03f6", - "parentId": "66cbb4d91ae71bfb1007ab11", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007aaab", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007aaa9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aaad", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb4d91ae71bfb1007aaa9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00345", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab23", - "_tpl": "5c18b90d2e2216152142466b", - "parentId": "66cbb4d91ae71bfb1007ab11", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab25", - "_tpl": "57838f0b2459774a256959b2", - "parentId": "66cbb4d91ae71bfb1007ab11", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aaaf", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aaaf", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab27", - "_tpl": "5c78f2792e221600106f4683", - "parentId": "66cbb4d91ae71bfb1007ab11", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aab1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aaaf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 620 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab29", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab29", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab2b", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbb4d91ae71bfb1007ab29", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00344", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab2d", - "_tpl": "5c6bf4aa2e2216001219b0ae", - "parentId": "66cbb4d91ae71bfb1007ab29", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00444", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab2f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab2f", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab31", - "_tpl": "59e6542b86f77411dc52a77a", - "parentId": "66cbb4d91ae71bfb1007ab2f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aab3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aab3", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 21 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab33", - "_tpl": "5c07dd120db834001c39092d", - "parentId": "66cbb4d91ae71bfb1007ab2f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007aab5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aab3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 855 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab35", - "_tpl": "6113d6c3290d254f5e6b27db", - "parentId": "66cbb4d91ae71bfb1007ab2f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007aab7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aab3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1128 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab37", - "_tpl": "5a9eb32da2750c00171b3f9c", - "parentId": "66cbb4d91ae71bfb1007ab2f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aab9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aab3", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1058 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab39", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab39", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00784", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab3b", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb4d91ae71bfb1007ab39", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab3d", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb4d91ae71bfb1007ab39", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aabb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aabb", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab3f", - "_tpl": "5d40425986f7743185265461", - "parentId": "66cbb4d91ae71bfb1007ab39", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00680", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab41", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab41", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab42", - "_tpl": "574d967124597745970e7c94", - "parentId": "66cbb4d91ae71bfb1007ab41", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007aabd", + "_tpl": "5a7afa25e899ef00135e31b0", + "parentId": "66cbb4d91ae71bfb1007aabb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aabf", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "66cbb4d91ae71bfb1007aabb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66cbb4d91ae71bfb1007aac1", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "66cbb4d91ae71bfb1007aabb", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00562", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab43", - "_tpl": "574dad8024597745964bf05c", - "parentId": "66cbb4d91ae71bfb1007ab42", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007ab44", - "_tpl": "634f02331f9f536910079b51", - "parentId": "66cbb4d91ae71bfb1007ab42", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007ab45", - "_tpl": "634f04d82e5def262d0b30c6", - "parentId": "66cbb4d91ae71bfb1007ab44", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbb4d91ae71bfb1007ab46", - "_tpl": "634f02d7517ccc8a960fc744", - "parentId": "66cbb4d91ae71bfb1007ab45", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb4d91ae71bfb1007ab47", - "_tpl": "634f08a21f9f536910079b5a", - "parentId": "66cbb4d91ae71bfb1007ab46", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbb4d91ae71bfb1007ab48", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "66cbb4d91ae71bfb1007ab45", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007ab49", - "_tpl": "587df3a12459772c28142567", - "parentId": "66cbb4d91ae71bfb1007ab42", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab4b", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb4d91ae71bfb1007ab49", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aac3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aac3", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aac5", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb4d91ae71bfb1007aac3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aac7", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb4d91ae71bfb1007aac3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aac9", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbb4d91ae71bfb1007aac3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00443", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab4a", - "_tpl": "634f05ca517ccc8a960fc748", - "parentId": "66cbb4d91ae71bfb1007ab42", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab4d", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb4d91ae71bfb1007ab41", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aacb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aacb", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aacc", + "_tpl": "60339954d62c9b14ed777c06", + "parentId": "66cbb4d91ae71bfb1007aacb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007aacd", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "66cbb4d91ae71bfb1007aacc", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007aace", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "66cbb4d91ae71bfb1007aacc", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007aad7", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb4d91ae71bfb1007aace", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aacf", + "_tpl": "602e63fb6335467b0c5ac94d", + "parentId": "66cbb4d91ae71bfb1007aacc", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007aad0", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "66cbb4d91ae71bfb1007aacf", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007aad1", + "_tpl": "60337f5dce399e10262255d1", + "parentId": "66cbb4d91ae71bfb1007aad0", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007aad2", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "66cbb4d91ae71bfb1007aacf", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007aad3", + "_tpl": "602e3f1254072b51b239f713", + "parentId": "66cbb4d91ae71bfb1007aacc", + "slotId": "mod_stock_001" + }, + { + "_id": "66cbb4d91ae71bfb1007aad4", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "66cbb4d91ae71bfb1007aad3", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb4d91ae71bfb1007aad5", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "66cbb4d91ae71bfb1007aacc", + "slotId": "mod_charge" + }, + { + "_id": "66cbb4d91ae71bfb1007aad6", + "_tpl": "602f85fd9b513876d4338d9c", + "parentId": "66cbb4d91ae71bfb1007aacc", + "slotId": "mod_tactical_000" + }, + { + "_id": "66cbb4d91ae71bfb1007aad9", + "_tpl": "59e0d99486f7744a32234762", + "parentId": "66cbb4d91ae71bfb1007aacb", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 36 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aada", + "_tpl": "669fa3f88abd2662d80eee77", + "parentId": "66cbb4d91ae71bfb1007aacb", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007aadb", + "_tpl": "669fa4ba1bd4416eaa09b3c6", + "parentId": "66cbb4d91ae71bfb1007aada", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007aadc", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbb4d91ae71bfb1007aadb", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4d91ae71bfb1007aadd", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66cbb4d91ae71bfb1007aada", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb4d91ae71bfb1007aade", + "_tpl": "669fa5019aa2a422600442f6", + "parentId": "66cbb4d91ae71bfb1007aada", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007aadf", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbb4d91ae71bfb1007aade", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007aae0", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbb4d91ae71bfb1007aada", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007aae1", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66cbb4d91ae71bfb1007aae0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aae3", + "_tpl": "622efbcb99f4ea1a4d6c9a15", + "parentId": "66cbb4d91ae71bfb1007aacb", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aae5", + "_tpl": "56ea7293d2720b8d4b8b45ba", + "parentId": "66cbb4d91ae71bfb1007aacb", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00317", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ab4f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab4f", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00318", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab51", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab4f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 867 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab53", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab4f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aae7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aae7", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 562 + { + "_id": "66cbb4d91ae71bfb1007aae9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aae7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 568 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00127", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab55", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab4f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 759 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab57", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab4f", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 903 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aaeb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aaeb", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aaed", + "_tpl": "5f60b85bbdb8e27dee3dc985", + "parentId": "66cbb4d91ae71bfb1007aaeb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aaef", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb4d91ae71bfb1007aaeb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aaf1", + "_tpl": "5c0d32fcd174af02a1659c75", + "parentId": "66cbb4d91ae71bfb1007aaeb", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aaf3", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb4d91ae71bfb1007aaeb", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00116", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab59", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab59", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00590", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab5b", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb4d91ae71bfb1007ab59", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab5d", - "_tpl": "62a61c988ec41a51b34758d5", - "parentId": "66cbb4d91ae71bfb1007ab59", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aaf5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aaf5", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aaf7", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66cbb4d91ae71bfb1007aaf5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00417", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab5f", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb4d91ae71bfb1007ab59", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab61", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66cbb4d91ae71bfb1007ab59", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aaf9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aaf9", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aafb", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb4d91ae71bfb1007aaf9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00255", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ab63", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab63", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00490", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab65", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab63", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 875 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab67", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab63", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 939 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00580", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ab69", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab69", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aafd", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aafd", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aaff", + "_tpl": "62a0a043cf4a99369e2624a5", + "parentId": "66cbb4d91ae71bfb1007aafd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00051", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ab6b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab6b", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00747", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab6d", - "_tpl": "5d0a3a58d7ad1a669c15ca14", - "parentId": "66cbb4d91ae71bfb1007ab6b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab6f", - "_tpl": "6567e7681265c8a131069b0f", - "parentId": "66cbb4d91ae71bfb1007ab6b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab01", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab01", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab71", - "_tpl": "5c064c400db834001d23f468", - "parentId": "66cbb4d91ae71bfb1007ab6b", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ab03", + "_tpl": "5d1b2ffd86f77425243e8d17", + "parentId": "66cbb4d91ae71bfb1007ab01", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ab05", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb4d91ae71bfb1007ab01", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00588", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab73", - "_tpl": "62ff9920fe938a24c90c10d2", - "parentId": "66cbb4d91ae71bfb1007ab6b", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab07", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab07", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ab09", + "_tpl": "57514643245977207f2c2d09", + "parentId": "66cbb4d91ae71bfb1007ab07", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00251", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab75", - "_tpl": "5888945a2459774bf43ba385", - "parentId": "66cbb4d91ae71bfb1007ab6b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00227", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ab77", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab77", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab79", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab77", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 583 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ab0b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab0b", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab0d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab0b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 756 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab0f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab0b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1096 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00606", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab7b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab7b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00398", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab7d", - "_tpl": "618a75c9a3884f56c957ca1b", - "parentId": "66cbb4d91ae71bfb1007ab7b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00584", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab7f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab7f", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab81", - "_tpl": "5b04473a5acfc40018632f70", - "parentId": "66cbb4d91ae71bfb1007ab7f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab11", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab11", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab83", - "_tpl": "638de3603a1a4031d8260b8c", - "parentId": "66cbb4d91ae71bfb1007ab7f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ab13", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb4d91ae71bfb1007ab11", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 11 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab85", - "_tpl": "5887431f2459777e1612938f", - "parentId": "66cbb4d91ae71bfb1007ab7f", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 11 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00208", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab87", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab87", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab89", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb4d91ae71bfb1007ab87", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ab15", + "_tpl": "577d128124597739d65d0e56", + "parentId": "66cbb4d91ae71bfb1007ab11", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab8b", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb4d91ae71bfb1007ab87", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ab16", + "_tpl": "5ac66d9b5acfc4001633997a", + "parentId": "66cbb4d91ae71bfb1007ab11", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab17", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb4d91ae71bfb1007ab16", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007ab18", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb4d91ae71bfb1007ab17", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007ab19", + "_tpl": "5ac72e945acfc43f3b691116", + "parentId": "66cbb4d91ae71bfb1007ab16", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007ab1a", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb4d91ae71bfb1007ab16", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007ab1b", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb4d91ae71bfb1007ab16", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007ab1c", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb4d91ae71bfb1007ab16", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007ab1d", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb4d91ae71bfb1007ab16", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007ab1e", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbb4d91ae71bfb1007ab16", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007ab1f", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb4d91ae71bfb1007ab1e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab21", + "_tpl": "5e56991336989c75ab4f03f6", + "parentId": "66cbb4d91ae71bfb1007ab11", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab23", + "_tpl": "5c18b90d2e2216152142466b", + "parentId": "66cbb4d91ae71bfb1007ab11", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab25", + "_tpl": "57838f0b2459774a256959b2", + "parentId": "66cbb4d91ae71bfb1007ab11", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab27", + "_tpl": "5c78f2792e221600106f4683", + "parentId": "66cbb4d91ae71bfb1007ab11", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00714", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ab8d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab8d", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab8f", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb4d91ae71bfb1007ab8d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00679", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ab91", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab91", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ab93", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab93", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab95", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab93", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1126 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00756", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ab97", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab97", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab29", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab29", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab2b", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbb4d91ae71bfb1007ab29", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab2d", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "parentId": "66cbb4d91ae71bfb1007ab29", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00257", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ab99", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ab99", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00444", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab9b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab99", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1032 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ab9d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab99", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab2f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab2f", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 563 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ab9f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ab99", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 974 + { + "_id": "66cbb4d91ae71bfb1007ab31", + "_tpl": "59e6542b86f77411dc52a77a", + "parentId": "66cbb4d91ae71bfb1007ab2f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 21 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab33", + "_tpl": "5c07dd120db834001c39092d", + "parentId": "66cbb4d91ae71bfb1007ab2f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab35", + "_tpl": "6113d6c3290d254f5e6b27db", + "parentId": "66cbb4d91ae71bfb1007ab2f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab37", + "_tpl": "5a9eb32da2750c00171b3f9c", + "parentId": "66cbb4d91ae71bfb1007ab2f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00791", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aba1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aba1", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aba3", - "_tpl": "60098ad7c2240c0fe85c570a", - "parentId": "66cbb4d91ae71bfb1007aba1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aba5", - "_tpl": "5b4326435acfc433000ed01d", - "parentId": "66cbb4d91ae71bfb1007aba1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab39", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab39", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aba7", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb4d91ae71bfb1007aba1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ab3b", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb4d91ae71bfb1007ab39", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab3d", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb4d91ae71bfb1007ab39", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab3f", + "_tpl": "5d40425986f7743185265461", + "parentId": "66cbb4d91ae71bfb1007ab39", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aba9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aba9", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00680", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abab", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb4d91ae71bfb1007aba9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abad", - "_tpl": "5d6d2e22a4b9361bd5780d05", - "parentId": "66cbb4d91ae71bfb1007aba9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab41", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab41", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007abaf", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66cbb4d91ae71bfb1007aba9", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ab42", + "_tpl": "574d967124597745970e7c94", + "parentId": "66cbb4d91ae71bfb1007ab41", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007abb1", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb4d91ae71bfb1007aba9", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ab43", + "_tpl": "574dad8024597745964bf05c", + "parentId": "66cbb4d91ae71bfb1007ab42", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007ab44", + "_tpl": "634f02331f9f536910079b51", + "parentId": "66cbb4d91ae71bfb1007ab42", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007ab45", + "_tpl": "634f04d82e5def262d0b30c6", + "parentId": "66cbb4d91ae71bfb1007ab44", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbb4d91ae71bfb1007ab46", + "_tpl": "634f02d7517ccc8a960fc744", + "parentId": "66cbb4d91ae71bfb1007ab45", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007ab47", + "_tpl": "634f08a21f9f536910079b5a", + "parentId": "66cbb4d91ae71bfb1007ab46", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbb4d91ae71bfb1007ab48", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "66cbb4d91ae71bfb1007ab45", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007ab49", + "_tpl": "587df3a12459772c28142567", + "parentId": "66cbb4d91ae71bfb1007ab42", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007ab4b", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb4d91ae71bfb1007ab49", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab4a", + "_tpl": "634f05ca517ccc8a960fc748", + "parentId": "66cbb4d91ae71bfb1007ab42", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007ab4d", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb4d91ae71bfb1007ab41", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00367", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007abb3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abb3", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00317", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abb5", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb4d91ae71bfb1007abb3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 23 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abb7", - "_tpl": "6601546f86889319850bd566", - "parentId": "66cbb4d91ae71bfb1007abb3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ab4f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab4f", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 38 - } - }, - { - "_id": "66cbb4d91ae71bfb1007abb9", - "_tpl": "5c0d56a986f774449d5de529", - "parentId": "66cbb4d91ae71bfb1007abb3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 19 + { + "_id": "66cbb4d91ae71bfb1007ab51", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab4f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 867 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab53", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab4f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 562 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab55", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab4f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 759 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab57", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab4f", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 903 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00319", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007abbb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abbb", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00116", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abbd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007abbb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 578 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00597", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007abbf", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abbf", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abc1", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007abbf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab59", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab59", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007abc3", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb4d91ae71bfb1007abbf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ab5b", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb4d91ae71bfb1007ab59", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab5d", + "_tpl": "62a61c988ec41a51b34758d5", + "parentId": "66cbb4d91ae71bfb1007ab59", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab5f", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb4d91ae71bfb1007ab59", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab61", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66cbb4d91ae71bfb1007ab59", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00184", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007abc5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abc5", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00255", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abc7", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb4d91ae71bfb1007abc5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abc9", - "_tpl": "5bd0716d86f774171822ef4b", - "parentId": "66cbb4d91ae71bfb1007abc5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ab63", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab63", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007abcb", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb4d91ae71bfb1007abc5", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ab65", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab63", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 875 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab67", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab63", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 939 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00530", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007abcd", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abcd", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00580", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abcf", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb4d91ae71bfb1007abcd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abd1", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb4d91ae71bfb1007abcd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ab69", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab69", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00568", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007abd3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abd3", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00051", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abd5", - "_tpl": "5af0534a86f7743b6f354284", - "parentId": "66cbb4d91ae71bfb1007abd3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abd7", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbb4d91ae71bfb1007abd3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ab6b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab6b", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007abd9", - "_tpl": "59e3556c86f7741776641ac2", - "parentId": "66cbb4d91ae71bfb1007abd3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ab6d", + "_tpl": "5d0a3a58d7ad1a669c15ca14", + "parentId": "66cbb4d91ae71bfb1007ab6b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab6f", + "_tpl": "6567e7681265c8a131069b0f", + "parentId": "66cbb4d91ae71bfb1007ab6b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab71", + "_tpl": "5c064c400db834001d23f468", + "parentId": "66cbb4d91ae71bfb1007ab6b", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab73", + "_tpl": "62ff9920fe938a24c90c10d2", + "parentId": "66cbb4d91ae71bfb1007ab6b", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab75", + "_tpl": "5888945a2459774bf43ba385", + "parentId": "66cbb4d91ae71bfb1007ab6b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00429", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007abdb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abdb", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00227", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abdd", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbb4d91ae71bfb1007abdb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00301", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007abdf", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abdf", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00300", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007abe1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abe1", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abe3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007abe1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ab77", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab77", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 787 + { + "_id": "66cbb4d91ae71bfb1007ab79", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab77", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 583 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00606", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abe5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007abe1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1146 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abe7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007abe1", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab7b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab7b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1031 - } - }, - { - "_id": "66cbb4d91ae71bfb1007abe9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007abe1", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1101 + { + "_id": "66cbb4d91ae71bfb1007ab7d", + "_tpl": "618a75c9a3884f56c957ca1b", + "parentId": "66cbb4d91ae71bfb1007ab7b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007abeb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abeb", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00584", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abed", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb4d91ae71bfb1007abeb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abef", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb4d91ae71bfb1007abeb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab7f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab7f", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab81", + "_tpl": "5b04473a5acfc40018632f70", + "parentId": "66cbb4d91ae71bfb1007ab7f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab83", + "_tpl": "638de3603a1a4031d8260b8c", + "parentId": "66cbb4d91ae71bfb1007ab7f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab85", + "_tpl": "5887431f2459777e1612938f", + "parentId": "66cbb4d91ae71bfb1007ab7f", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 11 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007abf1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abf1", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00208", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abf3", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "parentId": "66cbb4d91ae71bfb1007abf1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abf5", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb4d91ae71bfb1007abf1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab87", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab87", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab89", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb4d91ae71bfb1007ab87", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab8b", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb4d91ae71bfb1007ab87", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007abf7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abf7", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00714", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abf9", - "_tpl": "5d1b31ce86f7742523398394", - "parentId": "66cbb4d91ae71bfb1007abf7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abfb", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb4d91ae71bfb1007abf7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ab8d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab8d", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab8f", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb4d91ae71bfb1007ab8d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00479", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007abfd", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007abfd", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00679", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007abff", - "_tpl": "62a09ec84f842e1bd12da3f2", - "parentId": "66cbb4d91ae71bfb1007abfd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ab91", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab91", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00543", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac01", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac01", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac03", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb4d91ae71bfb1007ac01", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac05", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb4d91ae71bfb1007ac01", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ab93", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab93", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ab95", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab93", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1126 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00553", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac07", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac07", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00756", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac09", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb4d91ae71bfb1007ac07", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac0b", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb4d91ae71bfb1007ac07", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ab97", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab97", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00399", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac0d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac0d", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00257", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac0f", - "_tpl": "5649d9a14bdc2d79388b4580", - "parentId": "66cbb4d91ae71bfb1007ac0d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac11", - "_tpl": "5a0d716f1526d8000d26b1e2", - "parentId": "66cbb4d91ae71bfb1007ac0d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ab99", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ab99", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac13", - "_tpl": "58889c7324597754281f9439", - "parentId": "66cbb4d91ae71bfb1007ac0d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ab9b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab99", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1032 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac15", - "_tpl": "5a7b4960e899ef197b331a2d", - "parentId": "66cbb4d91ae71bfb1007ac0d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ab9d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab99", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 563 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ab9f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ab99", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 974 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00791", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac17", - "_tpl": "5b2388675acfc4771e1be0be", - "parentId": "66cbb4d91ae71bfb1007ac0d", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac19", - "_tpl": "625eb0faa6e3a82193267ad9", - "parentId": "66cbb4d91ae71bfb1007ac0d", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aba1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aba1", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac1b", - "_tpl": "5c61627a2e22160012542c55", - "parentId": "66cbb4d91ae71bfb1007ac0d", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007aba3", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "66cbb4d91ae71bfb1007aba1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac1d", - "_tpl": "59e770b986f7742cbd762754", - "parentId": "66cbb4d91ae71bfb1007ac0d", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 1 + { + "_id": "66cbb4d91ae71bfb1007aba5", + "_tpl": "5b4326435acfc433000ed01d", + "parentId": "66cbb4d91ae71bfb1007aba1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac1f", - "_tpl": "64b9e2037fdfb81df81e3c25", - "parentId": "66cbb4d91ae71bfb1007ac0d", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aba7", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb4d91ae71bfb1007aba1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00096", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac21", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac21", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac23", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66cbb4d91ae71bfb1007ac21", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00325", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ac25", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac25", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac27", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac25", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aba9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aba9", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 835 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac29", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac25", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1060 + { + "_id": "66cbb4d91ae71bfb1007abab", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb4d91ae71bfb1007aba9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abad", + "_tpl": "5d6d2e22a4b9361bd5780d05", + "parentId": "66cbb4d91ae71bfb1007aba9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abaf", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66cbb4d91ae71bfb1007aba9", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abb1", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb4d91ae71bfb1007aba9", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00413", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac2b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac2b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00367", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac2d", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66cbb4d91ae71bfb1007ac2b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00481", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac2f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac2f", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac31", - "_tpl": "5649d9a14bdc2d79388b4580", - "parentId": "66cbb4d91ae71bfb1007ac2f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007abb3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abb3", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac33", - "_tpl": "5d123102d7ad1a004e475fe5", - "parentId": "66cbb4d91ae71bfb1007ac2f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007abb5", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb4d91ae71bfb1007abb3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 23 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac35", - "_tpl": "5c87a07c2e2216001219d4a2", - "parentId": "66cbb4d91ae71bfb1007ac2f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007abb7", + "_tpl": "6601546f86889319850bd566", + "parentId": "66cbb4d91ae71bfb1007abb3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 38 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abb9", + "_tpl": "5c0d56a986f774449d5de529", + "parentId": "66cbb4d91ae71bfb1007abb3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 19 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00351", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ac37", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac37", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00319", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac39", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac37", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 765 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac3b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac37", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 840 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00380", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ac3d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac3d", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007abbb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abbb", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abbd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007abbb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 578 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00242", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ac3f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac3f", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00597", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac41", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac3f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 848 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac43", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac3f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 586 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007abbf", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abbf", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abc1", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007abbf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abc3", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb4d91ae71bfb1007abbf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00593", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac45", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac45", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00184", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac47", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb4d91ae71bfb1007ac45", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00415", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac49", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac49", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac4b", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb4d91ae71bfb1007ac49", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007abc5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abc5", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac4d", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb4d91ae71bfb1007ac49", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007abc7", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb4d91ae71bfb1007abc5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac4f", - "_tpl": "619cbfccbedcde2f5b3f7bdd", - "parentId": "66cbb4d91ae71bfb1007ac49", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007abc9", + "_tpl": "5bd0716d86f774171822ef4b", + "parentId": "66cbb4d91ae71bfb1007abc5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abcb", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb4d91ae71bfb1007abc5", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00125", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac51", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac51", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00530", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac53", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbb4d91ae71bfb1007ac51", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac55", - "_tpl": "5d96141523f0ea1b7f2aacab", - "parentId": "66cbb4d91ae71bfb1007ac51", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007abcd", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abcd", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac57", - "_tpl": "59e3556c86f7741776641ac2", - "parentId": "66cbb4d91ae71bfb1007ac51", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007abcf", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb4d91ae71bfb1007abcd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abd1", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb4d91ae71bfb1007abcd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00494", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac59", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac59", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00568", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac5b", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbb4d91ae71bfb1007ac59", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac5d", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb4d91ae71bfb1007ac59", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007abd3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abd3", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac5f", - "_tpl": "5b4325355acfc40019478126", - "parentId": "66cbb4d91ae71bfb1007ac59", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007abd5", + "_tpl": "5af0534a86f7743b6f354284", + "parentId": "66cbb4d91ae71bfb1007abd3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abd7", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbb4d91ae71bfb1007abd3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abd9", + "_tpl": "59e3556c86f7741776641ac2", + "parentId": "66cbb4d91ae71bfb1007abd3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00640", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac61", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac61", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00429", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac63", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66cbb4d91ae71bfb1007ac61", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac65", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbb4d91ae71bfb1007ac61", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007abdb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abdb", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abdd", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbb4d91ae71bfb1007abdb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00800", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac67", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac67", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00301", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac69", - "_tpl": "5d6fc78386f77449d825f9dc", - "parentId": "66cbb4d91ae71bfb1007ac67", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac6b", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007ac67", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007abdf", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abdf", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00483", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac6d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac6d", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00300", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac6f", - "_tpl": "5649af884bdc2d1b2b8b4589", - "parentId": "66cbb4d91ae71bfb1007ac6d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac71", - "_tpl": "623c3c1f37b4b31470357737", - "parentId": "66cbb4d91ae71bfb1007ac6d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007abe1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abe1", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac73", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "66cbb4d91ae71bfb1007ac6d", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007abe3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007abe1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 787 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abe5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007abe1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1146 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abe7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007abe1", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1031 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007abe9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007abe1", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1101 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac75", - "_tpl": "661e52e29c8b4dadef008577", - "parentId": "66cbb4d91ae71bfb1007ac6d", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00620", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac77", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac77", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac79", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb4d91ae71bfb1007ac77", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007abeb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abeb", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abed", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb4d91ae71bfb1007abeb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abef", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb4d91ae71bfb1007abeb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00199", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac7b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac7b", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac7d", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb4d91ae71bfb1007ac7b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00343", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ac7f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac7f", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac81", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac7f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 860 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007abf1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abf1", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abf3", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "parentId": "66cbb4d91ae71bfb1007abf1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007abf5", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb4d91ae71bfb1007abf1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00342", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ac83", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac83", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac85", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac83", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 693 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac87", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac83", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007abf7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abf7", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1141 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac89", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac83", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007abf9", + "_tpl": "5d1b31ce86f7742523398394", + "parentId": "66cbb4d91ae71bfb1007abf7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 985 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac8b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac83", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1002 + { + "_id": "66cbb4d91ae71bfb1007abfb", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb4d91ae71bfb1007abf7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00148", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac8d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac8d", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac8e", - "_tpl": "5c06c6a80db834001b735491", - "parentId": "66cbb4d91ae71bfb1007ac8d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac8f", - "_tpl": "6571199565daf6aa960c9b10", - "parentId": "66cbb4d91ae71bfb1007ac8e", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb4d91ae71bfb1007ac90", - "_tpl": "657119d49eb8c145180dbb95", - "parentId": "66cbb4d91ae71bfb1007ac8e", - "slotId": "Helmet_back" + { + "Id": "container_Shopping_Mall_DesignStuff_00479", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac91", - "_tpl": "657119fea330b8c9060f7afc", - "parentId": "66cbb4d91ae71bfb1007ac8e", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00403", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ac93", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac93", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac95", - "_tpl": "623c3c1f37b4b31470357737", - "parentId": "66cbb4d91ae71bfb1007ac93", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007abfd", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007abfd", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007abff", + "_tpl": "62a09ec84f842e1bd12da3f2", + "parentId": "66cbb4d91ae71bfb1007abfd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00543", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac97", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "66cbb4d91ae71bfb1007ac93", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ac9a", - "_tpl": "573724b42459776125652ac2", - "parentId": "66cbb4d91ae71bfb1007ac93", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac01", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac01", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac9b", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb4d91ae71bfb1007ac9a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00281", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ac9d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ac9d", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ac9f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac9d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ac03", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb4d91ae71bfb1007ac01", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 638 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aca1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ac9d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 812 + { + "_id": "66cbb4d91ae71bfb1007ac05", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb4d91ae71bfb1007ac01", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00283", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aca3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aca3", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00553", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aca5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aca3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 649 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aca7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aca3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 725 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac07", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac07", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac09", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb4d91ae71bfb1007ac07", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac0b", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb4d91ae71bfb1007ac07", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00477", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aca9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aca9", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00399", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acab", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66cbb4d91ae71bfb1007aca9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acad", - "_tpl": "606eef756d0bd7580617baf8", - "parentId": "66cbb4d91ae71bfb1007aca9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac0d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac0d", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007acaf", - "_tpl": "57ac965c24597706be5f975c", - "parentId": "66cbb4d91ae71bfb1007aca9", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ac0f", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "66cbb4d91ae71bfb1007ac0d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007acb1", - "_tpl": "5bb20df1d4351e00347787d5", - "parentId": "66cbb4d91ae71bfb1007aca9", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ac11", + "_tpl": "5a0d716f1526d8000d26b1e2", + "parentId": "66cbb4d91ae71bfb1007ac0d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac13", + "_tpl": "58889c7324597754281f9439", + "parentId": "66cbb4d91ae71bfb1007ac0d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac15", + "_tpl": "5a7b4960e899ef197b331a2d", + "parentId": "66cbb4d91ae71bfb1007ac0d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac17", + "_tpl": "5b2388675acfc4771e1be0be", + "parentId": "66cbb4d91ae71bfb1007ac0d", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac19", + "_tpl": "625eb0faa6e3a82193267ad9", + "parentId": "66cbb4d91ae71bfb1007ac0d", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac1b", + "_tpl": "5c61627a2e22160012542c55", + "parentId": "66cbb4d91ae71bfb1007ac0d", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac1d", + "_tpl": "59e770b986f7742cbd762754", + "parentId": "66cbb4d91ae71bfb1007ac0d", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac1f", + "_tpl": "64b9e2037fdfb81df81e3c25", + "parentId": "66cbb4d91ae71bfb1007ac0d", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00299", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007acb3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007acb3", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00096", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acb5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007acb3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 801 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acb7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007acb3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac21", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac21", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 676 - } - }, - { - "_id": "66cbb4d91ae71bfb1007acb9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007acb3", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1091 + { + "_id": "66cbb4d91ae71bfb1007ac23", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66cbb4d91ae71bfb1007ac21", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00298", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007acbb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007acbb", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00325", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acbd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007acbb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 828 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00661", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007acbf", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007acbf", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acc1", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb4d91ae71bfb1007acbf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ac25", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac25", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007acc3", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb4d91ae71bfb1007acbf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ac27", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac25", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 835 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ac29", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac25", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1060 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00413", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acc5", - "_tpl": "5af0534a86f7743b6f354284", - "parentId": "66cbb4d91ae71bfb1007acbf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac2b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac2b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac2d", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66cbb4d91ae71bfb1007ac2b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00760", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007acc7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007acc7", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00481", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acc8", - "_tpl": "59984ab886f7743e98271174", - "parentId": "66cbb4d91ae71bfb1007acc7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac2f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac2f", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac31", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "66cbb4d91ae71bfb1007ac2f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac33", + "_tpl": "5d123102d7ad1a004e475fe5", + "parentId": "66cbb4d91ae71bfb1007ac2f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac35", + "_tpl": "5c87a07c2e2216001219d4a2", + "parentId": "66cbb4d91ae71bfb1007ac2f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00351", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acc9", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb4d91ae71bfb1007acc8", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acca", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb4d91ae71bfb1007acc8", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ac37", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac37", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac39", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac37", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 765 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac3b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac37", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 840 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00380", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007accb", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbb4d91ae71bfb1007acc8", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acd1", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb4d91ae71bfb1007accb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ac3d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac3d", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00242", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007accc", - "_tpl": "5998597786f77414ea6da093", - "parentId": "66cbb4d91ae71bfb1007acc8", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007accd", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb4d91ae71bfb1007acc8", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acce", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb4d91ae71bfb1007acc8", - "slotId": "mod_sight_rear" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ac3f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac3f", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac41", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac3f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 848 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac43", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac3f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 586 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00593", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007accf", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb4d91ae71bfb1007acc8", - "slotId": "mod_gas_block" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acd0", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb4d91ae71bfb1007accf", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00449", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007acd3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007acd3", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac45", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac45", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac47", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb4d91ae71bfb1007ac45", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00415", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acd5", - "_tpl": "607ffb988900dc2d9a55b6e4", - "parentId": "66cbb4d91ae71bfb1007acd3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac49", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac49", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac4b", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb4d91ae71bfb1007ac49", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac4d", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb4d91ae71bfb1007ac49", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ac4f", + "_tpl": "619cbfccbedcde2f5b3f7bdd", + "parentId": "66cbb4d91ae71bfb1007ac49", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00125", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acd7", - "_tpl": "5bfe86a20db834001d23e8f7", - "parentId": "66cbb4d91ae71bfb1007acd3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac51", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac51", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac53", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbb4d91ae71bfb1007ac51", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac55", + "_tpl": "5d96141523f0ea1b7f2aacab", + "parentId": "66cbb4d91ae71bfb1007ac51", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ac57", + "_tpl": "59e3556c86f7741776641ac2", + "parentId": "66cbb4d91ae71bfb1007ac51", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00494", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acd9", - "_tpl": "606f263a8900dc2d9a55b68d", - "parentId": "66cbb4d91ae71bfb1007acd3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac59", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac59", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac5b", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbb4d91ae71bfb1007ac59", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac5d", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb4d91ae71bfb1007ac59", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ac5f", + "_tpl": "5b4325355acfc40019478126", + "parentId": "66cbb4d91ae71bfb1007ac59", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00640", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acdb", - "_tpl": "5a9fbb84a2750c00137fa685", - "parentId": "66cbb4d91ae71bfb1007acd3", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac61", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac61", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac63", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66cbb4d91ae71bfb1007ac61", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac65", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbb4d91ae71bfb1007ac61", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00244", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007acdd", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007acdd", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00800", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acdf", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007acdd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 789 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac67", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac67", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac69", + "_tpl": "5d6fc78386f77449d825f9dc", + "parentId": "66cbb4d91ae71bfb1007ac67", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac6b", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007ac67", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00350", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ace1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ace1", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00483", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ace3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ace1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 785 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00708", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ace5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ace5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00707", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ace7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ace7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00706", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ace9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ace9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aceb", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb4d91ae71bfb1007ace9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac6d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac6d", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac6f", + "_tpl": "5649af884bdc2d1b2b8b4589", + "parentId": "66cbb4d91ae71bfb1007ac6d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac71", + "_tpl": "623c3c1f37b4b31470357737", + "parentId": "66cbb4d91ae71bfb1007ac6d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac73", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "66cbb4d91ae71bfb1007ac6d", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac75", + "_tpl": "661e52e29c8b4dadef008577", + "parentId": "66cbb4d91ae71bfb1007ac6d", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00705", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aced", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aced", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00620", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acef", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb4d91ae71bfb1007aced", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00557", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007acf1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007acf1", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acf3", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007acf1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac77", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac77", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac79", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb4d91ae71bfb1007ac77", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00665", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007acf5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007acf5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00199", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acf7", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb4d91ae71bfb1007acf5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acf9", - "_tpl": "5c0e531d86f7747fa23f4d42", - "parentId": "66cbb4d91ae71bfb1007acf5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac7b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac7b", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007acfb", - "_tpl": "66b37f114410565a8f6789e2", - "parentId": "66cbb4d91ae71bfb1007acf5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ac7d", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb4d91ae71bfb1007ac7b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00582", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007acfd", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007acfd", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00343", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007acff", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb4d91ae71bfb1007acfd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad01", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb4d91ae71bfb1007acfd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ac7f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac7f", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac81", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac7f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 860 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00801", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad03", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad03", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00342", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad05", - "_tpl": "60b0f561c4449e4cb624c1d7", - "parentId": "66cbb4d91ae71bfb1007ad03", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ac83", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac83", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac85", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac83", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 693 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac87", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac83", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1141 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac89", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac83", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 985 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ac8b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac83", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1002 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00148", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad07", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb4d91ae71bfb1007ad03", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac8d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac8d", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac8e", + "_tpl": "5c06c6a80db834001b735491", + "parentId": "66cbb4d91ae71bfb1007ac8d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac8f", + "_tpl": "6571199565daf6aa960c9b10", + "parentId": "66cbb4d91ae71bfb1007ac8e", + "slotId": "Helmet_top" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ac90", + "_tpl": "657119d49eb8c145180dbb95", + "parentId": "66cbb4d91ae71bfb1007ac8e", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb4d91ae71bfb1007ac91", + "_tpl": "657119fea330b8c9060f7afc", + "parentId": "66cbb4d91ae71bfb1007ac8e", + "slotId": "Helmet_ears" } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00403", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad09", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb4d91ae71bfb1007ad03", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ac93", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac93", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac95", + "_tpl": "623c3c1f37b4b31470357737", + "parentId": "66cbb4d91ae71bfb1007ac93", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac97", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "66cbb4d91ae71bfb1007ac93", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac9a", + "_tpl": "573724b42459776125652ac2", + "parentId": "66cbb4d91ae71bfb1007ac93", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac9b", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb4d91ae71bfb1007ac9a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00225", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad0b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad0b", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00281", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad0d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad0b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ac9d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ac9d", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ac9f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac9d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 638 + } }, - "upd": { - "StackObjectsCount": 727 + { + "_id": "66cbb4d91ae71bfb1007aca1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ac9d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 812 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00283", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad0f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad0b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 950 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aca3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aca3", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aca5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aca3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 649 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aca7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aca3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 725 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00258", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad11", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad11", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00477", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad13", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad11", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1145 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00523", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad15", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad15", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad17", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb4d91ae71bfb1007ad15", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00085", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad19", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad19", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad1b", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbb4d91ae71bfb1007ad19", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aca9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aca9", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad1d", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "parentId": "66cbb4d91ae71bfb1007ad19", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00377", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad1f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad1f", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007acab", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66cbb4d91ae71bfb1007aca9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007acad", + "_tpl": "606eef756d0bd7580617baf8", + "parentId": "66cbb4d91ae71bfb1007aca9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007acaf", + "_tpl": "57ac965c24597706be5f975c", + "parentId": "66cbb4d91ae71bfb1007aca9", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007acb1", + "_tpl": "5bb20df1d4351e00347787d5", + "parentId": "66cbb4d91ae71bfb1007aca9", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00537", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad21", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad21", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00299", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad23", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb4d91ae71bfb1007ad21", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00321", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad25", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad25", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad27", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad25", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007acb3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007acb3", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1110 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad29", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad25", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007acb5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007acb3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 801 + } }, - "upd": { - "StackObjectsCount": 779 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad2b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad25", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 583 + { + "_id": "66cbb4d91ae71bfb1007acb7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007acb3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 676 + } + }, + { + "_id": "66cbb4d91ae71bfb1007acb9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007acb3", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1091 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00312", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad2d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad2d", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00298", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad2f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad2d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 755 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad31", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad2d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007acbb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007acbb", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1148 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad33", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad2d", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 826 + { + "_id": "66cbb4d91ae71bfb1007acbd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007acbb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 828 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00642", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad35", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad35", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00661", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad37", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbb4d91ae71bfb1007ad35", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad39", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007ad35", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007acbf", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007acbf", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007acc1", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb4d91ae71bfb1007acbf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007acc3", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb4d91ae71bfb1007acbf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007acc5", + "_tpl": "5af0534a86f7743b6f354284", + "parentId": "66cbb4d91ae71bfb1007acbf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00805", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad3b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad3b", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00760", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad3d", - "_tpl": "5a71e4f48dc32e001207fb26", - "parentId": "66cbb4d91ae71bfb1007ad3b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad3f", - "_tpl": "572b7fa524597762b747ce82", - "parentId": "66cbb4d91ae71bfb1007ad3b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007acc7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007acc7", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad41", - "_tpl": "56ea7293d2720b8d4b8b45ba", - "parentId": "66cbb4d91ae71bfb1007ad3b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007acc8", + "_tpl": "59984ab886f7743e98271174", + "parentId": "66cbb4d91ae71bfb1007acc7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad43", - "_tpl": "5b7be46e5acfc400170e2dcf", - "parentId": "66cbb4d91ae71bfb1007ad3b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007acc9", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb4d91ae71bfb1007acc8", + "slotId": "mod_pistol_grip" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad45", - "_tpl": "5aaa5e60e5b5b000140293d6", - "parentId": "66cbb4d91ae71bfb1007ad3b", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007acca", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb4d91ae71bfb1007acc8", + "slotId": "mod_stock" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad47", - "_tpl": "5b099bb25acfc400186331e8", - "parentId": "66cbb4d91ae71bfb1007ad3b", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007accb", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbb4d91ae71bfb1007acc8", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad49", - "_tpl": "55d45f484bdc2d972f8b456d", - "parentId": "66cbb4d91ae71bfb1007ad3b", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007acd1", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb4d91ae71bfb1007accb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007accc", + "_tpl": "5998597786f77414ea6da093", + "parentId": "66cbb4d91ae71bfb1007acc8", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007accd", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb4d91ae71bfb1007acc8", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007acce", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb4d91ae71bfb1007acc8", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007accf", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb4d91ae71bfb1007acc8", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007acd0", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb4d91ae71bfb1007accf", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00275", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad4b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad4b", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00449", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad4d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad4b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 855 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00134", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad4f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad4f", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad51", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb4d91ae71bfb1007ad4f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007acd3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007acd3", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad53", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbb4d91ae71bfb1007ad4f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007acd5", + "_tpl": "607ffb988900dc2d9a55b6e4", + "parentId": "66cbb4d91ae71bfb1007acd3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad55", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb4d91ae71bfb1007ad4f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007acd7", + "_tpl": "5bfe86a20db834001d23e8f7", + "parentId": "66cbb4d91ae71bfb1007acd3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad57", - "_tpl": "5d02778e86f774203e7dedbe", - "parentId": "66cbb4d91ae71bfb1007ad4f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 + { + "_id": "66cbb4d91ae71bfb1007acd9", + "_tpl": "606f263a8900dc2d9a55b68d", + "parentId": "66cbb4d91ae71bfb1007acd3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad58", - "_tpl": "5b40e2bc5acfc40016388216", - "parentId": "66cbb4d91ae71bfb1007ad4f", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007acdb", + "_tpl": "5a9fbb84a2750c00137fa685", + "parentId": "66cbb4d91ae71bfb1007acd3", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00244", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad59", - "_tpl": "657112234269e9a568089eac", - "parentId": "66cbb4d91ae71bfb1007ad58", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb4d91ae71bfb1007ad5a", - "_tpl": "657112a4818110db4600aa66", - "parentId": "66cbb4d91ae71bfb1007ad58", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad5b", - "_tpl": "657112ce22996eaf110881fb", - "parentId": "66cbb4d91ae71bfb1007ad58", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00249", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad5d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad5d", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007acdd", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007acdd", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007acdf", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007acdd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 789 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00686", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad5f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad5f", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00350", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad61", - "_tpl": "619621a4de3cdf1d2614a7a7", - "parentId": "66cbb4d91ae71bfb1007ad5f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad63", - "_tpl": "669924a69950f5f4cd060295", - "parentId": "66cbb4d91ae71bfb1007ad5f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ace1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ace1", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad64", - "_tpl": "59984ab886f7743e98271174", - "parentId": "66cbb4d91ae71bfb1007ad5f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ace3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ace1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 785 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00708", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad65", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb4d91ae71bfb1007ad64", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007ad66", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb4d91ae71bfb1007ad64", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007ad67", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbb4d91ae71bfb1007ad64", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad6d", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb4d91ae71bfb1007ad67", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ace5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ace5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00707", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad68", - "_tpl": "5998597786f77414ea6da093", - "parentId": "66cbb4d91ae71bfb1007ad64", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007ad69", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb4d91ae71bfb1007ad64", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007ad6a", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb4d91ae71bfb1007ad64", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad6b", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb4d91ae71bfb1007ad64", - "slotId": "mod_gas_block" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ace7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ace7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00706", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad6c", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb4d91ae71bfb1007ad6b", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad6f", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "66cbb4d91ae71bfb1007ad5f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ace9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ace9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad71", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbb4d91ae71bfb1007ad5f", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 57 + { + "_id": "66cbb4d91ae71bfb1007aceb", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb4d91ae71bfb1007ace9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00280", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad73", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad73", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00705", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad75", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad73", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 659 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00248", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad77", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad77", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad79", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad77", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1101 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aced", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aced", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007acef", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb4d91ae71bfb1007aced", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00724", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad7b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad7b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00557", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad7d", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb4d91ae71bfb1007ad7b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad7f", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66cbb4d91ae71bfb1007ad7b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007acf1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007acf1", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad81", - "_tpl": "590c639286f774151567fa95", - "parentId": "66cbb4d91ae71bfb1007ad7b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00347", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad83", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad83", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007acf3", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007acf1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00346", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad85", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad85", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00665", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad87", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad85", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1117 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad89", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad85", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007acf5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007acf5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 803 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad8b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad85", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007acf7", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb4d91ae71bfb1007acf5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1028 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad8d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad85", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 671 + { + "_id": "66cbb4d91ae71bfb1007acf9", + "_tpl": "5c0e531d86f7747fa23f4d42", + "parentId": "66cbb4d91ae71bfb1007acf5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007acfb", + "_tpl": "66b37f114410565a8f6789e2", + "parentId": "66cbb4d91ae71bfb1007acf5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00572", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad8f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad8f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00582", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad91", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb4d91ae71bfb1007ad8f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad93", - "_tpl": "60098af40accd37ef2175f27", - "parentId": "66cbb4d91ae71bfb1007ad8f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007acfd", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007acfd", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad95", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb4d91ae71bfb1007ad8f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007acff", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb4d91ae71bfb1007acfd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad01", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb4d91ae71bfb1007acfd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00752", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ad97", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad97", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00801", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad99", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66cbb4d91ae71bfb1007ad97", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ad9b", - "_tpl": "5b432b2f5acfc4771e1c6622", - "parentId": "66cbb4d91ae71bfb1007ad97", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad03", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad03", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ad9d", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb4d91ae71bfb1007ad97", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad05", + "_tpl": "60b0f561c4449e4cb624c1d7", + "parentId": "66cbb4d91ae71bfb1007ad03", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad07", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb4d91ae71bfb1007ad03", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad09", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb4d91ae71bfb1007ad03", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00269", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ad9f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ad9f", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00225", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ada1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad9f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 678 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ada3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad9f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad0b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad0b", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 567 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ada5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ad9f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 578 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00075", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ada7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ada7", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ada9", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb4d91ae71bfb1007ada7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad0d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad0b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 727 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad0f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad0b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 950 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00746", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007adab", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007adab", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00258", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adad", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb4d91ae71bfb1007adab", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adaf", - "_tpl": "5ab8f4ff86f77431c60d91ba", - "parentId": "66cbb4d91ae71bfb1007adab", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad11", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad11", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007adb1", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbb4d91ae71bfb1007adab", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad13", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad11", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1145 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00209", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007adb3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007adb3", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00523", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adb5", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb4d91ae71bfb1007adb3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adb7", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66cbb4d91ae71bfb1007adb3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad15", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad15", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad17", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb4d91ae71bfb1007ad15", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00304", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007adb9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007adb9", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00085", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adbb", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007adb9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 880 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adbd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007adb9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad19", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad19", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 699 - } - }, - { - "_id": "66cbb4d91ae71bfb1007adbf", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007adb9", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ad1b", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbb4d91ae71bfb1007ad19", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 861 - } - }, - { - "_id": "66cbb4d91ae71bfb1007adc1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007adb9", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 704 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00252", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007adc3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007adc3", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad1d", + "_tpl": "59faf7ca86f7740dbe19f6c2", + "parentId": "66cbb4d91ae71bfb1007ad19", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00311", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007adc5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007adc5", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00377", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adc7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007adc5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 670 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00074", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007adc9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007adc9", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adca", - "_tpl": "59e7711e86f7746cae05fbe1", - "parentId": "66cbb4d91ae71bfb1007adc9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad1f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad1f", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00537", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adcb", - "_tpl": "657ba50c23918923cb0df56c", - "parentId": "66cbb4d91ae71bfb1007adca", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb4d91ae71bfb1007adcc", - "_tpl": "657ba5439ba22f103e08139f", - "parentId": "66cbb4d91ae71bfb1007adca", - "slotId": "Helmet_back" - }, - { - "_id": "66cbb4d91ae71bfb1007adcd", - "_tpl": "657ba57af58ba5a62501079e", - "parentId": "66cbb4d91ae71bfb1007adca", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007add0", - "_tpl": "5649ed104bdc2d3d1c8b458b", - "parentId": "66cbb4d91ae71bfb1007adc9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad21", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad21", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007add1", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb4d91ae71bfb1007add0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbb4d91ae71bfb1007add3", - "_tpl": "5c0695860db834001b735461", - "parentId": "66cbb4d91ae71bfb1007adc9", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad23", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb4d91ae71bfb1007ad21", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00474", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007add5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007add5", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00321", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007add7", - "_tpl": "55d48ebc4bdc2d8c2f8b456c", - "parentId": "66cbb4d91ae71bfb1007add5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007add9", - "_tpl": "5c6d710d2e22165df16b81e7", - "parentId": "66cbb4d91ae71bfb1007add5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad25", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad25", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007addb", - "_tpl": "5fc4b9b17283c4046c5814d7", - "parentId": "66cbb4d91ae71bfb1007add5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ad27", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad25", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1110 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007addd", - "_tpl": "5a33e75ac4a2826c6e06d759", - "parentId": "66cbb4d91ae71bfb1007add5", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 + { + "_id": "66cbb4d91ae71bfb1007ad29", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad25", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 779 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007addf", - "_tpl": "5a0d63621526d8dba31fe3bf", - "parentId": "66cbb4d91ae71bfb1007add5", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad2b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad25", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 583 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00132", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ade1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ade1", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00312", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ade3", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "parentId": "66cbb4d91ae71bfb1007ade1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ade5", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb4d91ae71bfb1007ade1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad2d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad2d", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ade7", - "_tpl": "5bc9bc53d4351e00367fbcee", - "parentId": "66cbb4d91ae71bfb1007ade1", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad2f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad2d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 755 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad31", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad2d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1148 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad33", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad2d", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 826 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ade9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ade9", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00642", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adeb", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbb4d91ae71bfb1007ade9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adec", - "_tpl": "5ac66d015acfc400180ae6e4", - "parentId": "66cbb4d91ae71bfb1007ade9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad35", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad35", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad37", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbb4d91ae71bfb1007ad35", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad39", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007ad35", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00805", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aded", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb4d91ae71bfb1007adec", - "slotId": "mod_gas_block" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adee", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb4d91ae71bfb1007aded", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007adef", - "_tpl": "5ac72e725acfc400180ae701", - "parentId": "66cbb4d91ae71bfb1007adec", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007adf0", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb4d91ae71bfb1007adec", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007adf1", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb4d91ae71bfb1007adec", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007adf2", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb4d91ae71bfb1007adec", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007adf3", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb4d91ae71bfb1007adec", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007adf4", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66cbb4d91ae71bfb1007adec", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4d91ae71bfb1007adf5", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb4d91ae71bfb1007adf4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007adf7", - "_tpl": "5d6d3943a4b9360dbc46d0cc", - "parentId": "66cbb4d91ae71bfb1007ade9", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad3b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad3b", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007adf9", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb4d91ae71bfb1007ade9", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad3d", + "_tpl": "5a71e4f48dc32e001207fb26", + "parentId": "66cbb4d91ae71bfb1007ad3b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad3f", + "_tpl": "572b7fa524597762b747ce82", + "parentId": "66cbb4d91ae71bfb1007ad3b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad41", + "_tpl": "56ea7293d2720b8d4b8b45ba", + "parentId": "66cbb4d91ae71bfb1007ad3b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad43", + "_tpl": "5b7be46e5acfc400170e2dcf", + "parentId": "66cbb4d91ae71bfb1007ad3b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad45", + "_tpl": "5aaa5e60e5b5b000140293d6", + "parentId": "66cbb4d91ae71bfb1007ad3b", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad47", + "_tpl": "5b099bb25acfc400186331e8", + "parentId": "66cbb4d91ae71bfb1007ad3b", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad49", + "_tpl": "55d45f484bdc2d972f8b456d", + "parentId": "66cbb4d91ae71bfb1007ad3b", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00375", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007adfb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007adfb", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00275", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007adfd", - "_tpl": "6033fa48ffd42c541047f728", - "parentId": "66cbb4d91ae71bfb1007adfb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00397", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007adff", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007adff", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae01", - "_tpl": "5c079ec50db834001966a706", - "parentId": "66cbb4d91ae71bfb1007adff", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad4b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad4b", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad4d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad4b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 855 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00134", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae03", - "_tpl": "56e33680d2720be2748b4576", - "parentId": "66cbb4d91ae71bfb1007adff", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae05", - "_tpl": "5cbda392ae92155f3c17c39f", - "parentId": "66cbb4d91ae71bfb1007adff", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad4f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad4f", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae07", - "_tpl": "626673016f1edc06f30cf6d5", - "parentId": "66cbb4d91ae71bfb1007adff", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 1 + { + "_id": "66cbb4d91ae71bfb1007ad51", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb4d91ae71bfb1007ad4f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae09", - "_tpl": "5d135e83d7ad1a21b83f42d8", - "parentId": "66cbb4d91ae71bfb1007adff", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad53", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbb4d91ae71bfb1007ad4f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad55", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb4d91ae71bfb1007ad4f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad57", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "66cbb4d91ae71bfb1007ad4f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad58", + "_tpl": "5b40e2bc5acfc40016388216", + "parentId": "66cbb4d91ae71bfb1007ad4f", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad59", + "_tpl": "657112234269e9a568089eac", + "parentId": "66cbb4d91ae71bfb1007ad58", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb4d91ae71bfb1007ad5a", + "_tpl": "657112a4818110db4600aa66", + "parentId": "66cbb4d91ae71bfb1007ad58", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb4d91ae71bfb1007ad5b", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "66cbb4d91ae71bfb1007ad58", + "slotId": "Helmet_ears" } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00235", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ae0b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae0b", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00249", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae0d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae0b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 895 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00507", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae0f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae0f", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae11", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbb4d91ae71bfb1007ae0f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad5d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad5d", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00486", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae13", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae13", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00686", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae15", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66cbb4d91ae71bfb1007ae13", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae17", - "_tpl": "5bffcf7a0db83400232fea79", - "parentId": "66cbb4d91ae71bfb1007ae13", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad5f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad5f", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae19", - "_tpl": "5addbb945acfc4001a5fc44e", - "parentId": "66cbb4d91ae71bfb1007ae13", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ad61", + "_tpl": "619621a4de3cdf1d2614a7a7", + "parentId": "66cbb4d91ae71bfb1007ad5f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae1b", - "_tpl": "5c5db6652e221600113fba51", - "parentId": "66cbb4d91ae71bfb1007ae13", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ad63", + "_tpl": "669924a69950f5f4cd060295", + "parentId": "66cbb4d91ae71bfb1007ad5f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae1d", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "66cbb4d91ae71bfb1007ae13", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ad64", + "_tpl": "59984ab886f7743e98271174", + "parentId": "66cbb4d91ae71bfb1007ad5f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae1f", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbb4d91ae71bfb1007ae13", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ad65", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb4d91ae71bfb1007ad64", + "slotId": "mod_pistol_grip" }, - "upd": { - "StackObjectsCount": 40 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae21", - "_tpl": "5cebec00d7f00c065c53522a", - "parentId": "66cbb4d91ae71bfb1007ae13", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 + { + "_id": "66cbb4d91ae71bfb1007ad66", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb4d91ae71bfb1007ad64", + "slotId": "mod_stock" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae22", - "_tpl": "5d5e7d28a4b936645d161203", - "parentId": "66cbb4d91ae71bfb1007ae13", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ad67", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbb4d91ae71bfb1007ad64", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007ad6d", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb4d91ae71bfb1007ad67", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad68", + "_tpl": "5998597786f77414ea6da093", + "parentId": "66cbb4d91ae71bfb1007ad64", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007ad69", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb4d91ae71bfb1007ad64", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007ad6a", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb4d91ae71bfb1007ad64", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007ad6b", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb4d91ae71bfb1007ad64", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007ad6c", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb4d91ae71bfb1007ad6b", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007ad6f", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "66cbb4d91ae71bfb1007ad5f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad71", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbb4d91ae71bfb1007ad5f", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 57 + } } - }, - { - "_id": "66cbb4d91ae71bfb1007ae23", - "_tpl": "657f8a8d7db258e5600fe33d", - "parentId": "66cbb4d91ae71bfb1007ae22", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb4d91ae71bfb1007ae24", - "_tpl": "657f8b05f4c82973640b2348", - "parentId": "66cbb4d91ae71bfb1007ae22", - "slotId": "Helmet_back" - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00687", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae26", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae26", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00280", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae28", - "_tpl": "5ab8ee7786f7742d8f33f0b9", - "parentId": "66cbb4d91ae71bfb1007ae26", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae2a", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbb4d91ae71bfb1007ae26", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad73", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad73", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad75", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad73", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 659 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00248", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae2c", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66cbb4d91ae71bfb1007ae26", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad77", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad77", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 26 + { + "_id": "66cbb4d91ae71bfb1007ad79", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad77", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1101 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00724", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae2e", - "_tpl": "64b8f7c241772715af0f9c3d", - "parentId": "66cbb4d91ae71bfb1007ae26", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 19 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00651", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae30", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae30", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae32", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb4d91ae71bfb1007ae30", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad7b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad7b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae34", - "_tpl": "6571bde39837cc51b800c212", - "parentId": "66cbb4d91ae71bfb1007ae30", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ad7d", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb4d91ae71bfb1007ad7b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae36", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb4d91ae71bfb1007ae30", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad7f", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66cbb4d91ae71bfb1007ad7b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad81", + "_tpl": "590c639286f774151567fa95", + "parentId": "66cbb4d91ae71bfb1007ad7b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00735", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae38", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae38", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00347", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae3a", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66cbb4d91ae71bfb1007ae38", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae3c", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb4d91ae71bfb1007ae38", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad83", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad83", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00373", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae3e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae3e", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00346", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae40", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66cbb4d91ae71bfb1007ae3e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae42", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb4d91ae71bfb1007ae3e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad85", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad85", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad87", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad85", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1117 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad89", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad85", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 803 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad8b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad85", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1028 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad8d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad85", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 671 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00514", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae44", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae44", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00572", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae46", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb4d91ae71bfb1007ae44", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00239", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ae48", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae48", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae4a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae48", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad8f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad8f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 598 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae4c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae48", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 795 + { + "_id": "66cbb4d91ae71bfb1007ad91", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb4d91ae71bfb1007ad8f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad93", + "_tpl": "60098af40accd37ef2175f27", + "parentId": "66cbb4d91ae71bfb1007ad8f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad95", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb4d91ae71bfb1007ad8f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00098", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae4e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae4e", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00752", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae51", - "_tpl": "5737300424597769942d5a01", - "parentId": "66cbb4d91ae71bfb1007ae4e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ad97", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad97", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad99", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66cbb4d91ae71bfb1007ad97", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ad9b", + "_tpl": "5b432b2f5acfc4771e1c6622", + "parentId": "66cbb4d91ae71bfb1007ad97", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ad9d", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb4d91ae71bfb1007ad97", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00269", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae52", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb4d91ae71bfb1007ae51", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae55", - "_tpl": "65702532cfc010a0f5006a19", - "parentId": "66cbb4d91ae71bfb1007ae4e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ad9f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ad9f", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ada1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad9f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 678 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ada3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad9f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 567 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ada5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ad9f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 578 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00075", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae56", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66cbb4d91ae71bfb1007ae55", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae58", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb4d91ae71bfb1007ae4e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 46 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ada7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ada7", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ada9", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb4d91ae71bfb1007ada7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00541", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae5a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae5a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00746", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae5c", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb4d91ae71bfb1007ae5a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00422", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae5e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae5e", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae60", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbb4d91ae71bfb1007ae5e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 37 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007adab", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007adab", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adad", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb4d91ae71bfb1007adab", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adaf", + "_tpl": "5ab8f4ff86f77431c60d91ba", + "parentId": "66cbb4d91ae71bfb1007adab", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adb1", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbb4d91ae71bfb1007adab", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00587", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae62", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae62", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00209", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae64", - "_tpl": "5af0548586f7743a532b7e99", - "parentId": "66cbb4d91ae71bfb1007ae62", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae66", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbb4d91ae71bfb1007ae62", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007adb3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007adb3", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae68", - "_tpl": "5e2af4a786f7746d3f3c3400", - "parentId": "66cbb4d91ae71bfb1007ae62", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007adb5", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb4d91ae71bfb1007adb3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adb7", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66cbb4d91ae71bfb1007adb3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00713", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae6a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae6a", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae6c", - "_tpl": "5fbe7618d6fa9c00c571bb6c", - "parentId": "66cbb4d91ae71bfb1007ae6a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae6e", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb4d91ae71bfb1007ae6a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00272", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ae70", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae70", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00304", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae72", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae70", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 913 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00749", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae74", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae74", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae76", - "_tpl": "590c678286f77426c9660122", - "parentId": "66cbb4d91ae71bfb1007ae74", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007adb9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007adb9", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae78", - "_tpl": "5e54f79686f7744022011103", - "parentId": "66cbb4d91ae71bfb1007ae74", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00382", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae7a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae7a", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae7c", - "_tpl": "5c6d85e02e22165df16b81f4", - "parentId": "66cbb4d91ae71bfb1007ae7a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00567", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae7e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae7e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae80", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb4d91ae71bfb1007ae7e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007adbb", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007adb9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 880 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae82", - "_tpl": "5e2aedd986f7746d404f3aa4", - "parentId": "66cbb4d91ae71bfb1007ae7e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007adbd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007adb9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 699 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007ae84", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb4d91ae71bfb1007ae7e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007adbf", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007adb9", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 861 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adc1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007adb9", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 704 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00329", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ae86", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae86", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00252", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae88", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae86", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 591 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00282", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ae8a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae8a", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae8c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae8a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 609 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007adc3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007adc3", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00456", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae8e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae8e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00311", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae90", - "_tpl": "590c595c86f7747884343ad7", - "parentId": "66cbb4d91ae71bfb1007ae8e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00349", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ae92", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae92", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae94", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae92", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 830 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00348", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ae96", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae96", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007adc5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007adc5", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adc7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007adc5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 670 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00790", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007ae98", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae98", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00074", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae9a", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb4d91ae71bfb1007ae98", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007ae9c", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbb4d91ae71bfb1007ae98", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007adc9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007adc9", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adca", + "_tpl": "59e7711e86f7746cae05fbe1", + "parentId": "66cbb4d91ae71bfb1007adc9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adcb", + "_tpl": "657ba50c23918923cb0df56c", + "parentId": "66cbb4d91ae71bfb1007adca", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb4d91ae71bfb1007adcc", + "_tpl": "657ba5439ba22f103e08139f", + "parentId": "66cbb4d91ae71bfb1007adca", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb4d91ae71bfb1007adcd", + "_tpl": "657ba57af58ba5a62501079e", + "parentId": "66cbb4d91ae71bfb1007adca", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbb4d91ae71bfb1007add0", + "_tpl": "5649ed104bdc2d3d1c8b458b", + "parentId": "66cbb4d91ae71bfb1007adc9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007add1", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb4d91ae71bfb1007add0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb4d91ae71bfb1007add3", + "_tpl": "5c0695860db834001b735461", + "parentId": "66cbb4d91ae71bfb1007adc9", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00309", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007ae9e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007ae9e", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00474", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aea0", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae9e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 782 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aea2", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae9e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007add5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007add5", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 676 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aea4", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae9e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007add7", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "parentId": "66cbb4d91ae71bfb1007add5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 676 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aea6", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007ae9e", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1148 + { + "_id": "66cbb4d91ae71bfb1007add9", + "_tpl": "5c6d710d2e22165df16b81e7", + "parentId": "66cbb4d91ae71bfb1007add5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007addb", + "_tpl": "5fc4b9b17283c4046c5814d7", + "parentId": "66cbb4d91ae71bfb1007add5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007addd", + "_tpl": "5a33e75ac4a2826c6e06d759", + "parentId": "66cbb4d91ae71bfb1007add5", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007addf", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "66cbb4d91ae71bfb1007add5", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00765", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aea8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aea8", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00132", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aeaa", - "_tpl": "5bffe7c50db834001d23ece1", - "parentId": "66cbb4d91ae71bfb1007aea8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aeac", - "_tpl": "5e21ca18e4d47f0da15e77dd", - "parentId": "66cbb4d91ae71bfb1007aea8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ade1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ade1", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aeae", - "_tpl": "5fc4b97bab884124df0cd5e3", - "parentId": "66cbb4d91ae71bfb1007aea8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ade3", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "parentId": "66cbb4d91ae71bfb1007ade1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ade5", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb4d91ae71bfb1007ade1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ade7", + "_tpl": "5bc9bc53d4351e00367fbcee", + "parentId": "66cbb4d91ae71bfb1007ade1", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aeaf", - "_tpl": "5d5e9c74a4b9364855191c40", - "parentId": "66cbb4d91ae71bfb1007aea8", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aeb0", - "_tpl": "657f8b94f92cd718b70154ff", - "parentId": "66cbb4d91ae71bfb1007aeaf", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb4d91ae71bfb1007aeb1", - "_tpl": "657f8b43f92cd718b70154fb", - "parentId": "66cbb4d91ae71bfb1007aeaf", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aeb3", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbb4d91ae71bfb1007aea8", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 32 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ade9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ade9", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adeb", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbb4d91ae71bfb1007ade9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adec", + "_tpl": "5ac66d015acfc400180ae6e4", + "parentId": "66cbb4d91ae71bfb1007ade9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aded", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb4d91ae71bfb1007adec", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007adee", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb4d91ae71bfb1007aded", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007adef", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "66cbb4d91ae71bfb1007adec", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007adf0", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb4d91ae71bfb1007adec", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007adf1", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb4d91ae71bfb1007adec", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007adf2", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb4d91ae71bfb1007adec", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007adf3", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb4d91ae71bfb1007adec", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007adf4", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66cbb4d91ae71bfb1007adec", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007adf5", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb4d91ae71bfb1007adf4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adf7", + "_tpl": "5d6d3943a4b9360dbc46d0cc", + "parentId": "66cbb4d91ae71bfb1007ade9", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adf9", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb4d91ae71bfb1007ade9", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00433", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aeb5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aeb5", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aeb6", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "66cbb4d91ae71bfb1007aeb5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aeb7", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "66cbb4d91ae71bfb1007aeb6", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007aeb8", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "66cbb4d91ae71bfb1007aeb6", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007aeb9", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "66cbb4d91ae71bfb1007aeb8", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007aeba", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "66cbb4d91ae71bfb1007aeb8", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb4d91ae71bfb1007aebb", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "66cbb4d91ae71bfb1007aeb6", - "slotId": "mod_magazine" + { + "Id": "container_Shopping_Mall_DesignStuff_00375", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aebc", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb4d91ae71bfb1007aebb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aebe", - "_tpl": "5a37cb10c4a282329a73b4e7", - "parentId": "66cbb4d91ae71bfb1007aeb5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007adfb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007adfb", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007adfd", + "_tpl": "6033fa48ffd42c541047f728", + "parentId": "66cbb4d91ae71bfb1007adfb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00780", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aec0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aec0", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00397", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aec2", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb4d91ae71bfb1007aec0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00605", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aec4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aec4", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aec6", - "_tpl": "5c82343a2e221644f31c0611", - "parentId": "66cbb4d91ae71bfb1007aec4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007adff", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007adff", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae01", + "_tpl": "5c079ec50db834001966a706", + "parentId": "66cbb4d91ae71bfb1007adff", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae03", + "_tpl": "56e33680d2720be2748b4576", + "parentId": "66cbb4d91ae71bfb1007adff", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae05", + "_tpl": "5cbda392ae92155f3c17c39f", + "parentId": "66cbb4d91ae71bfb1007adff", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae07", + "_tpl": "626673016f1edc06f30cf6d5", + "parentId": "66cbb4d91ae71bfb1007adff", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae09", + "_tpl": "5d135e83d7ad1a21b83f42d8", + "parentId": "66cbb4d91ae71bfb1007adff", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00694", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aec8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aec8", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00235", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aeca", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aec8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 935 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00330", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aecc", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aecc", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00471", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aece", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aece", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aed0", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb4d91ae71bfb1007aece", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ae0b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae0b", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aed2", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb4d91ae71bfb1007aece", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ae0d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae0b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 895 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00307", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aed4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aed4", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00507", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aed6", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aed4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 763 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aed8", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aed4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 864 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae0f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae0f", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae11", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbb4d91ae71bfb1007ae0f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00455", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aeda", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aeda", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00486", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aedc", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb4d91ae71bfb1007aeda", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aede", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbb4d91ae71bfb1007aeda", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae13", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae13", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae15", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66cbb4d91ae71bfb1007ae13", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae17", + "_tpl": "5bffcf7a0db83400232fea79", + "parentId": "66cbb4d91ae71bfb1007ae13", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae19", + "_tpl": "5addbb945acfc4001a5fc44e", + "parentId": "66cbb4d91ae71bfb1007ae13", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae1b", + "_tpl": "5c5db6652e221600113fba51", + "parentId": "66cbb4d91ae71bfb1007ae13", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae1d", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "66cbb4d91ae71bfb1007ae13", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae1f", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbb4d91ae71bfb1007ae13", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae21", + "_tpl": "5cebec00d7f00c065c53522a", + "parentId": "66cbb4d91ae71bfb1007ae13", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae22", + "_tpl": "5d5e7d28a4b936645d161203", + "parentId": "66cbb4d91ae71bfb1007ae13", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae23", + "_tpl": "657f8a8d7db258e5600fe33d", + "parentId": "66cbb4d91ae71bfb1007ae22", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb4d91ae71bfb1007ae24", + "_tpl": "657f8b05f4c82973640b2348", + "parentId": "66cbb4d91ae71bfb1007ae22", + "slotId": "Helmet_back" } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00364", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aee0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aee0", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00687", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aee2", - "_tpl": "544fb3f34bdc2d03748b456a", - "parentId": "66cbb4d91ae71bfb1007aee0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aee4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aee4", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aee6", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66cbb4d91ae71bfb1007aee4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae26", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae26", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae28", + "_tpl": "5ab8ee7786f7742d8f33f0b9", + "parentId": "66cbb4d91ae71bfb1007ae26", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae2a", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbb4d91ae71bfb1007ae26", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae2c", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66cbb4d91ae71bfb1007ae26", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 26 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae2e", + "_tpl": "64b8f7c241772715af0f9c3d", + "parentId": "66cbb4d91ae71bfb1007ae26", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 19 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00368", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aee8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aee8", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00651", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aeea", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "66cbb4d91ae71bfb1007aee8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00333", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aeec", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aeec", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00332", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aeee", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aeee", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00264", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aef0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aef0", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aef2", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aef0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae30", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae30", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 763 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aef4", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007aef0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 688 + { + "_id": "66cbb4d91ae71bfb1007ae32", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb4d91ae71bfb1007ae30", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae34", + "_tpl": "6571bde39837cc51b800c212", + "parentId": "66cbb4d91ae71bfb1007ae30", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae36", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb4d91ae71bfb1007ae30", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00589", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aef6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aef6", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00735", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aef8", - "_tpl": "5b363e1b5acfc4771e1c5e80", - "parentId": "66cbb4d91ae71bfb1007aef6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aefa", - "_tpl": "5a6b5e468dc32e001207faf5", - "parentId": "66cbb4d91ae71bfb1007aef6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae38", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae38", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007aefc", - "_tpl": "5bc09a30d4351e00367fb7c8", - "parentId": "66cbb4d91ae71bfb1007aef6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ae3a", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66cbb4d91ae71bfb1007ae38", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae3c", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb4d91ae71bfb1007ae38", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00586", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aefe", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aefe", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00373", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af00", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb4d91ae71bfb1007aefe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00803", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af02", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af02", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00196", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af04", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af04", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af06", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb4d91ae71bfb1007af04", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae3e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae3e", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007af08", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbb4d91ae71bfb1007af04", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ae40", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66cbb4d91ae71bfb1007ae3e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae42", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb4d91ae71bfb1007ae3e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00130", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af0a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af0a", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00514", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af0c", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "parentId": "66cbb4d91ae71bfb1007af0a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af0d", - "_tpl": "66015072e9f84d5680039678", - "parentId": "66cbb4d91ae71bfb1007af0a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae44", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae44", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb4d91ae71bfb1007ae46", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb4d91ae71bfb1007ae44", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00239", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af0e", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "66cbb4d91ae71bfb1007af0d", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af0f", - "_tpl": "6601546f86889319850bd566", - "parentId": "66cbb4d91ae71bfb1007af0e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ae48", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae48", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae4a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae48", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 598 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae4c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae48", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 795 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00401", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af11", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af11", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00098", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af13", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb4d91ae71bfb1007af11", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af15", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb4d91ae71bfb1007af11", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae4e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae4e", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007af17", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb4d91ae71bfb1007af11", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007ae51", + "_tpl": "5737300424597769942d5a01", + "parentId": "66cbb4d91ae71bfb1007ae4e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007af19", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb4d91ae71bfb1007af11", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + { + "_id": "66cbb4d91ae71bfb1007ae52", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb4d91ae71bfb1007ae51", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae55", + "_tpl": "65702532cfc010a0f5006a19", + "parentId": "66cbb4d91ae71bfb1007ae4e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae56", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66cbb4d91ae71bfb1007ae55", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ae58", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb4d91ae71bfb1007ae4e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 46 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00541", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af1a", - "_tpl": "5c0e5edb86f77461f55ed1f7", - "parentId": "66cbb4d91ae71bfb1007af11", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae5a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae5a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae5c", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb4d91ae71bfb1007ae5a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00422", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af1b", - "_tpl": "6571dbd388ead79fcf091d71", - "parentId": "66cbb4d91ae71bfb1007af1a", - "slotId": "Soft_armor_front" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af1c", - "_tpl": "6571dbda88ead79fcf091d75", - "parentId": "66cbb4d91ae71bfb1007af1a", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbb4d91ae71bfb1007af1d", - "_tpl": "6571dbe07c02ae206002502e", - "parentId": "66cbb4d91ae71bfb1007af1a", - "slotId": "Soft_armor_left" - }, - { - "_id": "66cbb4d91ae71bfb1007af1e", - "_tpl": "6571dbeaee8ec43d520cf89e", - "parentId": "66cbb4d91ae71bfb1007af1a", - "slotId": "soft_armor_right" - }, - { - "_id": "66cbb4d91ae71bfb1007af1f", - "_tpl": "6571dbef88ead79fcf091d79", - "parentId": "66cbb4d91ae71bfb1007af1a", - "slotId": "Collar" - }, - { - "_id": "66cbb4d91ae71bfb1007af20", - "_tpl": "656f57dc27aed95beb08f628", - "parentId": "66cbb4d91ae71bfb1007af1a", - "slotId": "Front_plate" - }, - { - "_id": "66cbb4d91ae71bfb1007af21", - "_tpl": "656fac30c6baea13cd07e10c", - "parentId": "66cbb4d91ae71bfb1007af1a", - "slotId": "Back_plate" - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00480", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af23", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af23", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007af25", - "_tpl": "5fc3e466187fea44d52eda90", - "parentId": "66cbb4d91ae71bfb1007af23", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae5e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae5e", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae60", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbb4d91ae71bfb1007ae5e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 37 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00315", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af27", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af27", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00587", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af29", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af27", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae62", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae62", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae64", + "_tpl": "5af0548586f7743a532b7e99", + "parentId": "66cbb4d91ae71bfb1007ae62", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1014 + { + "_id": "66cbb4d91ae71bfb1007ae66", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbb4d91ae71bfb1007ae62", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae68", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "66cbb4d91ae71bfb1007ae62", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00713", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af2b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af27", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae6a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae6a", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 713 + { + "_id": "66cbb4d91ae71bfb1007ae6c", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "parentId": "66cbb4d91ae71bfb1007ae6a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae6e", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb4d91ae71bfb1007ae6a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00272", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af2d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af27", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 637 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ae70", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae70", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae72", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae70", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 913 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00502", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af2f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af2f", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00749", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af31", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66cbb4d91ae71bfb1007af2f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae74", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae74", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae76", + "_tpl": "590c678286f77426c9660122", + "parentId": "66cbb4d91ae71bfb1007ae74", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae78", + "_tpl": "5e54f79686f7744022011103", + "parentId": "66cbb4d91ae71bfb1007ae74", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af33", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af33", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00382", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af35", - "_tpl": "5e023e6e34d52a55c3304f71", - "parentId": "66cbb4d91ae71bfb1007af33", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae7a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae7a", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 15 + { + "_id": "66cbb4d91ae71bfb1007ae7c", + "_tpl": "5c6d85e02e22165df16b81f4", + "parentId": "66cbb4d91ae71bfb1007ae7a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00567", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af38", - "_tpl": "5c1260dc86f7746b106e8748", - "parentId": "66cbb4d91ae71bfb1007af33", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae7e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae7e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae80", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb4d91ae71bfb1007ae7e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae82", + "_tpl": "5e2aedd986f7746d404f3aa4", + "parentId": "66cbb4d91ae71bfb1007ae7e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ae84", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb4d91ae71bfb1007ae7e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00329", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af39", - "_tpl": "5c0d688c86f77413ae3407b2", - "parentId": "66cbb4d91ae71bfb1007af38", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af3c", - "_tpl": "5737250c2459776125652acc", - "parentId": "66cbb4d91ae71bfb1007af33", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ae86", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae86", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ae88", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae86", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 591 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00282", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af3d", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb4d91ae71bfb1007af3c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af40", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "parentId": "66cbb4d91ae71bfb1007af33", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ae8a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae8a", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ae8c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae8a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 609 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00456", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af41", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb4d91ae71bfb1007af40", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae8e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae8e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae90", + "_tpl": "590c595c86f7747884343ad7", + "parentId": "66cbb4d91ae71bfb1007ae8e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00229", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af43", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af43", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00349", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af45", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af43", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ae92", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae92", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 902 + { + "_id": "66cbb4d91ae71bfb1007ae94", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae92", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 830 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00348", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af47", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af43", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 610 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ae96", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae96", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00675", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af49", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af49", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00790", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af4b", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb4d91ae71bfb1007af49", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af4d", - "_tpl": "62a091170b9d3c46de5b6cf2", - "parentId": "66cbb4d91ae71bfb1007af49", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007ae98", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae98", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007af4f", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb4d91ae71bfb1007af49", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007ae9a", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb4d91ae71bfb1007ae98", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007ae9c", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbb4d91ae71bfb1007ae98", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00207", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af51", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af51", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00309", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af53", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb4d91ae71bfb1007af51", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 56 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00206", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af55", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af55", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af57", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66cbb4d91ae71bfb1007af55", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007ae9e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007ae9e", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aea0", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae9e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 782 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aea2", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae9e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 676 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aea4", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae9e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 676 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aea6", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007ae9e", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1148 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00205", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af59", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af59", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00765", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af5b", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb4d91ae71bfb1007af59", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00204", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af5d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af5d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00228", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af5f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af5f", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af61", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af5f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1102 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aea8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aea8", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aeaa", + "_tpl": "5bffe7c50db834001d23ece1", + "parentId": "66cbb4d91ae71bfb1007aea8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aeac", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "parentId": "66cbb4d91ae71bfb1007aea8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aeae", + "_tpl": "5fc4b97bab884124df0cd5e3", + "parentId": "66cbb4d91ae71bfb1007aea8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aeaf", + "_tpl": "5d5e9c74a4b9364855191c40", + "parentId": "66cbb4d91ae71bfb1007aea8", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aeb0", + "_tpl": "657f8b94f92cd718b70154ff", + "parentId": "66cbb4d91ae71bfb1007aeaf", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb4d91ae71bfb1007aeb1", + "_tpl": "657f8b43f92cd718b70154fb", + "parentId": "66cbb4d91ae71bfb1007aeaf", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb4d91ae71bfb1007aeb3", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbb4d91ae71bfb1007aea8", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 32 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00277", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af63", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af63", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00433", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af65", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af63", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 746 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00260", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af67", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af67", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af69", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af67", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aeb5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aeb5", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 705 - } - }, - { - "_id": "66cbb4d91ae71bfb1007af6b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af67", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1149 + { + "_id": "66cbb4d91ae71bfb1007aeb6", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "66cbb4d91ae71bfb1007aeb5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aeb7", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "66cbb4d91ae71bfb1007aeb6", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007aeb8", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "66cbb4d91ae71bfb1007aeb6", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007aeb9", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "66cbb4d91ae71bfb1007aeb8", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007aeba", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "66cbb4d91ae71bfb1007aeb8", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4d91ae71bfb1007aebb", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "66cbb4d91ae71bfb1007aeb6", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007aebc", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb4d91ae71bfb1007aebb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aebe", + "_tpl": "5a37cb10c4a282329a73b4e7", + "parentId": "66cbb4d91ae71bfb1007aeb5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00270", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af6d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af6d", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00780", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af6f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af6d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 922 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af71", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af6d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1069 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aec0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aec0", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aec2", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb4d91ae71bfb1007aec0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00804", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af73", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af73", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00605", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af75", - "_tpl": "5c90c3622e221601da359851", - "parentId": "66cbb4d91ae71bfb1007af73", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af77", - "_tpl": "62a61c988ec41a51b34758d5", - "parentId": "66cbb4d91ae71bfb1007af73", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aec4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aec4", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007af79", - "_tpl": "5d25a7b88abbc3054f3e60bc", - "parentId": "66cbb4d91ae71bfb1007af73", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aec6", + "_tpl": "5c82343a2e221644f31c0611", + "parentId": "66cbb4d91ae71bfb1007aec4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00799", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af7b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af7b", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00694", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aec8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aec8", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aeca", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aec8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 935 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af7d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af7d", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00330", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af7f", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66cbb4d91ae71bfb1007af7d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aecc", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aecc", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00327", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007af81", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af81", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00471", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af83", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af81", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 836 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af85", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af81", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aece", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aece", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 630 - } - }, - { - "_id": "66cbb4d91ae71bfb1007af87", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af81", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007aed0", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb4d91ae71bfb1007aece", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 897 - } - }, - { - "_id": "66cbb4d91ae71bfb1007af89", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007af81", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1081 + { + "_id": "66cbb4d91ae71bfb1007aed2", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb4d91ae71bfb1007aece", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af8b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af8b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00307", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af8d", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb4d91ae71bfb1007af8b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00598", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af8f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af8f", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af91", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb4d91ae71bfb1007af8f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aed4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aed4", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aed6", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aed4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 763 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aed8", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aed4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 864 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00354", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af93", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af93", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00455", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af95", - "_tpl": "5a0d716f1526d8000d26b1e2", - "parentId": "66cbb4d91ae71bfb1007af93", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af96", - "_tpl": "56e0598dd2720bb5668b45a6", - "parentId": "66cbb4d91ae71bfb1007af93", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aeda", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aeda", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aedc", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb4d91ae71bfb1007aeda", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb4d91ae71bfb1007aede", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbb4d91ae71bfb1007aeda", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00364", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af97", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66cbb4d91ae71bfb1007af96", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af9a", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb4d91ae71bfb1007af97", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aee0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aee0", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aee2", + "_tpl": "544fb3f34bdc2d03748b456a", + "parentId": "66cbb4d91ae71bfb1007aee0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af98", - "_tpl": "56e05b06d2720bb2668b4586", - "parentId": "66cbb4d91ae71bfb1007af96", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007af99", - "_tpl": "56e05a6ed2720bd0748b4567", - "parentId": "66cbb4d91ae71bfb1007af96", - "slotId": "mod_pistolgrip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007af9c", - "_tpl": "5947db3f86f77447880cf76f", - "parentId": "66cbb4d91ae71bfb1007af93", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aee4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aee4", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aee6", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66cbb4d91ae71bfb1007aee4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00613", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007af9e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007af9e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00368", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afa0", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb4d91ae71bfb1007af9e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afa2", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb4d91ae71bfb1007af9e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aee8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aee8", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007afa4", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb4d91ae71bfb1007af9e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aeea", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "66cbb4d91ae71bfb1007aee8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007afa6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007afa6", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007afa7", - "_tpl": "5a38e6bac4a2826c6e06d79b", - "parentId": "66cbb4d91ae71bfb1007afa6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00333", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afa8", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "66cbb4d91ae71bfb1007afa7", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afab", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66cbb4d91ae71bfb1007afa8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aeec", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aeec", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00332", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afa9", - "_tpl": "5a38ef1fc4a282000b1521f6", - "parentId": "66cbb4d91ae71bfb1007afa7", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007afaa", - "_tpl": "5a38eecdc4a282329a73b512", - "parentId": "66cbb4d91ae71bfb1007afa9", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afac", - "_tpl": "59984ab886f7743e98271174", - "parentId": "66cbb4d91ae71bfb1007afa6", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aeee", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aeee", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00264", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afad", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb4d91ae71bfb1007afac", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007afae", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb4d91ae71bfb1007afac", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007afaf", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbb4d91ae71bfb1007afac", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afb5", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb4d91ae71bfb1007afaf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aef0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aef0", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aef2", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aef0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 763 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aef4", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007aef0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 688 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00589", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afb0", - "_tpl": "5998597786f77414ea6da093", - "parentId": "66cbb4d91ae71bfb1007afac", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007afb1", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb4d91ae71bfb1007afac", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007afb2", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb4d91ae71bfb1007afac", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007afb3", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb4d91ae71bfb1007afac", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb4d91ae71bfb1007afb4", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb4d91ae71bfb1007afb3", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afb7", - "_tpl": "5c12688486f77426843c7d32", - "parentId": "66cbb4d91ae71bfb1007afa6", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aef6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aef6", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007afb9", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbb4d91ae71bfb1007afa6", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007aef8", + "_tpl": "5b363e1b5acfc4771e1c5e80", + "parentId": "66cbb4d91ae71bfb1007aef6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007afbb", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb4d91ae71bfb1007afa6", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007aefa", + "_tpl": "5a6b5e468dc32e001207faf5", + "parentId": "66cbb4d91ae71bfb1007aef6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aefc", + "_tpl": "5bc09a30d4351e00367fb7c8", + "parentId": "66cbb4d91ae71bfb1007aef6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00574", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007afbd", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007afbd", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00586", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afbf", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb4d91ae71bfb1007afbd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007afc1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007afc1", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afc3", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb4d91ae71bfb1007afc1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aefe", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aefe", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af00", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb4d91ae71bfb1007aefe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00803", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afc5", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb4d91ae71bfb1007afc1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af02", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af02", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007afc7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007afc7", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00196", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afc9", - "_tpl": "5c0009510db834001966907f", - "parentId": "66cbb4d91ae71bfb1007afc7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afcb", - "_tpl": "57838f0b2459774a256959b2", - "parentId": "66cbb4d91ae71bfb1007afc7", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af04", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af04", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007afcd", - "_tpl": "5bc5a351d4351e003477a414", - "parentId": "66cbb4d91ae71bfb1007afc7", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007af06", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb4d91ae71bfb1007af04", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af08", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbb4d91ae71bfb1007af04", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00130", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afcf", - "_tpl": "651bfe4d1065f87f082e7209", - "parentId": "66cbb4d91ae71bfb1007afc7", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afd1", - "_tpl": "5a38ed75c4a28232996e40c6", - "parentId": "66cbb4d91ae71bfb1007afc7", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af0a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af0a", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af0c", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "parentId": "66cbb4d91ae71bfb1007af0a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af0d", + "_tpl": "66015072e9f84d5680039678", + "parentId": "66cbb4d91ae71bfb1007af0a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007af0e", + "_tpl": "66015dc4aaad2f54cb04c56a", + "parentId": "66cbb4d91ae71bfb1007af0d", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007af0f", + "_tpl": "6601546f86889319850bd566", + "parentId": "66cbb4d91ae71bfb1007af0e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00236", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007afd3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007afd3", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00401", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afd5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007afd3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 618 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afd7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007afd3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1112 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af11", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af11", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af13", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb4d91ae71bfb1007af11", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af15", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb4d91ae71bfb1007af11", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af17", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb4d91ae71bfb1007af11", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af19", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb4d91ae71bfb1007af11", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af1a", + "_tpl": "5c0e5edb86f77461f55ed1f7", + "parentId": "66cbb4d91ae71bfb1007af11", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af1b", + "_tpl": "6571dbd388ead79fcf091d71", + "parentId": "66cbb4d91ae71bfb1007af1a", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbb4d91ae71bfb1007af1c", + "_tpl": "6571dbda88ead79fcf091d75", + "parentId": "66cbb4d91ae71bfb1007af1a", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbb4d91ae71bfb1007af1d", + "_tpl": "6571dbe07c02ae206002502e", + "parentId": "66cbb4d91ae71bfb1007af1a", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbb4d91ae71bfb1007af1e", + "_tpl": "6571dbeaee8ec43d520cf89e", + "parentId": "66cbb4d91ae71bfb1007af1a", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbb4d91ae71bfb1007af1f", + "_tpl": "6571dbef88ead79fcf091d79", + "parentId": "66cbb4d91ae71bfb1007af1a", + "slotId": "Collar" + }, + { + "_id": "66cbb4d91ae71bfb1007af20", + "_tpl": "656f57dc27aed95beb08f628", + "parentId": "66cbb4d91ae71bfb1007af1a", + "slotId": "Front_plate" + }, + { + "_id": "66cbb4d91ae71bfb1007af21", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "66cbb4d91ae71bfb1007af1a", + "slotId": "Back_plate" } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00407", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007afd9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007afd9", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00480", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afdb", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66cbb4d91ae71bfb1007afd9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af23", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af23", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af25", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "66cbb4d91ae71bfb1007af23", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00315", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afdd", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb4d91ae71bfb1007afd9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af27", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af27", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af29", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af27", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1014 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af2b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af27", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 713 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af2d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af27", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 637 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00655", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007afdf", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007afdf", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00502", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afe1", - "_tpl": "57347baf24597738002c6178", - "parentId": "66cbb4d91ae71bfb1007afdf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af2f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af2f", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af31", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66cbb4d91ae71bfb1007af2f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afe3", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb4d91ae71bfb1007afdf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af33", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af33", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af35", + "_tpl": "5e023e6e34d52a55c3304f71", + "parentId": "66cbb4d91ae71bfb1007af33", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 15 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af38", + "_tpl": "5c1260dc86f7746b106e8748", + "parentId": "66cbb4d91ae71bfb1007af33", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af39", + "_tpl": "5c0d688c86f77413ae3407b2", + "parentId": "66cbb4d91ae71bfb1007af38", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af3c", + "_tpl": "5737250c2459776125652acc", + "parentId": "66cbb4d91ae71bfb1007af33", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af3d", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb4d91ae71bfb1007af3c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af40", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "parentId": "66cbb4d91ae71bfb1007af33", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af41", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb4d91ae71bfb1007af40", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00612", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007afe5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007afe5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00229", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afe7", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb4d91ae71bfb1007afe5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af43", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af43", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af45", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af43", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 902 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af47", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af43", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 610 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00675", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afe9", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb4d91ae71bfb1007afe5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af49", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af49", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af4b", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb4d91ae71bfb1007af49", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af4d", + "_tpl": "62a091170b9d3c46de5b6cf2", + "parentId": "66cbb4d91ae71bfb1007af49", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af4f", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb4d91ae71bfb1007af49", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00207", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afeb", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb4d91ae71bfb1007afe5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af51", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af51", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af53", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb4d91ae71bfb1007af51", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 56 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00802", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007afed", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007afed", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00206", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007afef", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb4d91ae71bfb1007afed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af55", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af55", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af57", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66cbb4d91ae71bfb1007af55", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00205", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aff1", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb4d91ae71bfb1007afed", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af59", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af59", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af5b", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb4d91ae71bfb1007af59", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00204", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aff3", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66cbb4d91ae71bfb1007afed", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af5d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af5d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007aff5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aff5", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00214", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007aff7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007aff7", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00228", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007aff9", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb4d91ae71bfb1007aff7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007affb", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb4d91ae71bfb1007aff7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af5f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af5f", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007affd", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb4d91ae71bfb1007aff7", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af61", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af5f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1102 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00259", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007afff", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007afff", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00277", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b001", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007afff", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 760 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00560", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b003", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b003", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b005", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66cbb4d91ae71bfb1007b003", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af63", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af63", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b007", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66cbb4d91ae71bfb1007b003", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af65", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af63", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 746 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00779", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b009", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b009", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00260", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b00b", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb4d91ae71bfb1007b009", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b00d", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb4d91ae71bfb1007b009", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af67", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af67", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b00f", - "_tpl": "60b0f93284c20f0feb453da7", - "parentId": "66cbb4d91ae71bfb1007b009", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af69", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af67", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 705 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af6b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af67", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1149 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00274", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b011", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b011", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00270", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b013", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b011", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 570 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b015", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b011", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 739 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af6d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af6d", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af6f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af6d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 922 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af71", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af6d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1069 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00215", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b017", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b017", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00804", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b019", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb4d91ae71bfb1007b017", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af73", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af73", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af75", + "_tpl": "5c90c3622e221601da359851", + "parentId": "66cbb4d91ae71bfb1007af73", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af77", + "_tpl": "62a61c988ec41a51b34758d5", + "parentId": "66cbb4d91ae71bfb1007af73", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af79", + "_tpl": "5d25a7b88abbc3054f3e60bc", + "parentId": "66cbb4d91ae71bfb1007af73", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00799", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b01b", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66cbb4d91ae71bfb1007b017", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af7b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af7b", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00411", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b01d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b01d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b01f", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb4d91ae71bfb1007b01d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b021", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb4d91ae71bfb1007b01d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af7d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af7d", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b023", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb4d91ae71bfb1007b01d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af7f", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66cbb4d91ae71bfb1007af7d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00045", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b025", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b025", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00327", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b028", - "_tpl": "5c1127bdd174af44217ab8b9", - "parentId": "66cbb4d91ae71bfb1007b025", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007af81", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af81", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af83", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af81", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 836 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af85", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af81", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 630 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af87", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af81", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 897 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af89", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007af81", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1081 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b029", - "_tpl": "5c0d56a986f774449d5de529", - "parentId": "66cbb4d91ae71bfb1007b028", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af8b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af8b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af8d", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb4d91ae71bfb1007af8b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00233", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b02b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b02b", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00598", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b02d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b02b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1092 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af8f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af8f", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af91", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb4d91ae71bfb1007af8f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00787", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b02f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b02f", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00354", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b031", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "66cbb4d91ae71bfb1007b02f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00511", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b033", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b033", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b035", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb4d91ae71bfb1007b033", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af93", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af93", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b037", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb4d91ae71bfb1007b033", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007af95", + "_tpl": "5a0d716f1526d8000d26b1e2", + "parentId": "66cbb4d91ae71bfb1007af93", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af96", + "_tpl": "56e0598dd2720bb5668b45a6", + "parentId": "66cbb4d91ae71bfb1007af93", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007af97", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66cbb4d91ae71bfb1007af96", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007af9a", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb4d91ae71bfb1007af97", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007af98", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "66cbb4d91ae71bfb1007af96", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007af99", + "_tpl": "56e05a6ed2720bd0748b4567", + "parentId": "66cbb4d91ae71bfb1007af96", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb4d91ae71bfb1007af9c", + "_tpl": "5947db3f86f77447880cf76f", + "parentId": "66cbb4d91ae71bfb1007af93", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00503", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b039", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b039", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00613", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b03b", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbb4d91ae71bfb1007b039", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b03d", - "_tpl": "62a0a098de7ac8199358053b", - "parentId": "66cbb4d91ae71bfb1007b039", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007af9e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007af9e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afa0", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb4d91ae71bfb1007af9e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afa2", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb4d91ae71bfb1007af9e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afa4", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb4d91ae71bfb1007af9e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00379", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b03f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b03f", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b041", - "_tpl": "57aca93d2459771f2c7e26db", - "parentId": "66cbb4d91ae71bfb1007b03f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b043", - "_tpl": "5d0a3e8cd7ad1a6f6a3d35bd", - "parentId": "66cbb4d91ae71bfb1007b03f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007afa6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007afa6", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b045", - "_tpl": "5d6fc87386f77449db3db94e", - "parentId": "66cbb4d91ae71bfb1007b03f", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007afa7", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "parentId": "66cbb4d91ae71bfb1007afa6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afa8", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "66cbb4d91ae71bfb1007afa7", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007afab", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66cbb4d91ae71bfb1007afa8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afa9", + "_tpl": "5a38ef1fc4a282000b1521f6", + "parentId": "66cbb4d91ae71bfb1007afa7", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007afaa", + "_tpl": "5a38eecdc4a282329a73b512", + "parentId": "66cbb4d91ae71bfb1007afa9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007afac", + "_tpl": "59984ab886f7743e98271174", + "parentId": "66cbb4d91ae71bfb1007afa6", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afad", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb4d91ae71bfb1007afac", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007afae", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb4d91ae71bfb1007afac", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007afaf", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbb4d91ae71bfb1007afac", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007afb5", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb4d91ae71bfb1007afaf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afb0", + "_tpl": "5998597786f77414ea6da093", + "parentId": "66cbb4d91ae71bfb1007afac", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007afb1", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb4d91ae71bfb1007afac", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007afb2", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb4d91ae71bfb1007afac", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007afb3", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb4d91ae71bfb1007afac", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007afb4", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb4d91ae71bfb1007afb3", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007afb7", + "_tpl": "5c12688486f77426843c7d32", + "parentId": "66cbb4d91ae71bfb1007afa6", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afb9", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbb4d91ae71bfb1007afa6", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afbb", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb4d91ae71bfb1007afa6", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00457", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b047", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b047", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00574", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b049", - "_tpl": "59e3658a86f7741776641ac4", - "parentId": "66cbb4d91ae71bfb1007b047", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b04b", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbb4d91ae71bfb1007b047", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007afbd", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007afbd", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b04d", - "_tpl": "57347d9c245977448b40fa85", - "parentId": "66cbb4d91ae71bfb1007b047", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007afbf", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb4d91ae71bfb1007afbd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00727", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b04f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b04f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b051", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb4d91ae71bfb1007b04f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b053", - "_tpl": "5b43575a86f77424f443fe62", - "parentId": "66cbb4d91ae71bfb1007b04f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007afc1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007afc1", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afc3", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb4d91ae71bfb1007afc1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afc5", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb4d91ae71bfb1007afc1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00114", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b055", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b055", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b056", - "_tpl": "5e81c3cbac2bb513793cdc75", - "parentId": "66cbb4d91ae71bfb1007b055", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007afc7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007afc7", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afc9", + "_tpl": "5c0009510db834001966907f", + "parentId": "66cbb4d91ae71bfb1007afc7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afcb", + "_tpl": "57838f0b2459774a256959b2", + "parentId": "66cbb4d91ae71bfb1007afc7", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afcd", + "_tpl": "5bc5a351d4351e003477a414", + "parentId": "66cbb4d91ae71bfb1007afc7", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afcf", + "_tpl": "651bfe4d1065f87f082e7209", + "parentId": "66cbb4d91ae71bfb1007afc7", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb4d91ae71bfb1007afd1", + "_tpl": "5a38ed75c4a28232996e40c6", + "parentId": "66cbb4d91ae71bfb1007afc7", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00236", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b057", - "_tpl": "5e81c519cb2b95385c177551", - "parentId": "66cbb4d91ae71bfb1007b056", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007b058", - "_tpl": "5e81c6bf763d9f754677beff", - "parentId": "66cbb4d91ae71bfb1007b056", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007b059", - "_tpl": "5e81edc13397a21db957f6a1", - "parentId": "66cbb4d91ae71bfb1007b056", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007b05a", - "_tpl": "5e81ee4dcb2b95385c177582", - "parentId": "66cbb4d91ae71bfb1007b059", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007b05b", - "_tpl": "5e81ee213397a21db957f6a6", - "parentId": "66cbb4d91ae71bfb1007b059", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb4d91ae71bfb1007b05c", - "_tpl": "5e81c4ca763d9f754677befa", - "parentId": "66cbb4d91ae71bfb1007b056", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b060", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbb4d91ae71bfb1007b05c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007afd3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007afd3", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afd5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007afd3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 618 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afd7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007afd3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1112 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00407", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b05d", - "_tpl": "5e81c6a2ac2bb513793cdc7f", - "parentId": "66cbb4d91ae71bfb1007b056", - "slotId": "mod_trigger" - }, - { - "_id": "66cbb4d91ae71bfb1007b05e", - "_tpl": "5e81c550763d9f754677befd", - "parentId": "66cbb4d91ae71bfb1007b056", - "slotId": "mod_hammer" - }, - { - "_id": "66cbb4d91ae71bfb1007b05f", - "_tpl": "5e81c539cb2b95385c177553", - "parentId": "66cbb4d91ae71bfb1007b056", - "slotId": "mod_catch" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b062", - "_tpl": "60b0f93284c20f0feb453da7", - "parentId": "66cbb4d91ae71bfb1007b055", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007afd9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007afd9", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b064", - "_tpl": "5aa2b87de5b5b00016327c25", - "parentId": "66cbb4d91ae71bfb1007b055", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007afdb", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66cbb4d91ae71bfb1007afd9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afdd", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb4d91ae71bfb1007afd9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00276", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b066", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b066", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00655", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b068", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b066", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 750 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00271", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b06a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b06a", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b06c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b06a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007afdf", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007afdf", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1047 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b06e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b06a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 792 + { + "_id": "66cbb4d91ae71bfb1007afe1", + "_tpl": "57347baf24597738002c6178", + "parentId": "66cbb4d91ae71bfb1007afdf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afe3", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb4d91ae71bfb1007afdf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00115", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b070", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b070", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00612", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b072", - "_tpl": "59e366c186f7741778269d85", - "parentId": "66cbb4d91ae71bfb1007b070", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00758", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b074", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b074", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b076", - "_tpl": "5aa2b986e5b5b00014028f4c", - "parentId": "66cbb4d91ae71bfb1007b074", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007afe5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007afe5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afe7", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb4d91ae71bfb1007afe5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afe9", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb4d91ae71bfb1007afe5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007afeb", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb4d91ae71bfb1007afe5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00331", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b078", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b078", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00802", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b07a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b078", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 918 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b07c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b078", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007afed", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007afed", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 981 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b07e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b078", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007afef", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb4d91ae71bfb1007afed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 984 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b080", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b078", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1004 + { + "_id": "66cbb4d91ae71bfb1007aff1", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb4d91ae71bfb1007afed", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007aff3", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66cbb4d91ae71bfb1007afed", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00121", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b082", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b082", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b084", - "_tpl": "5ab8ee7786f7742d8f33f0b9", - "parentId": "66cbb4d91ae71bfb1007b082", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b086", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb4d91ae71bfb1007b082", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007aff5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aff5", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00462", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b088", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b088", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00214", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b08a", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbb4d91ae71bfb1007b088", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00566", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b08c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b08c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b08e", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb4d91ae71bfb1007b08c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007aff7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007aff7", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b090", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb4d91ae71bfb1007b08c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007aff9", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb4d91ae71bfb1007aff7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b092", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66cbb4d91ae71bfb1007b08c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007affb", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb4d91ae71bfb1007aff7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007affd", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb4d91ae71bfb1007aff7", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00308", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b094", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b094", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00259", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b096", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b094", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 572 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b098", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b094", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007afff", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007afff", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 784 + { + "_id": "66cbb4d91ae71bfb1007b001", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007afff", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 760 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00560", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b09a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b094", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 941 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b09c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b094", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 725 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b003", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b003", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b005", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66cbb4d91ae71bfb1007b003", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b007", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66cbb4d91ae71bfb1007b003", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00326", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b09e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b09e", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00779", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0a0", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b09e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 713 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0a2", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b09e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b009", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b009", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 722 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b0a4", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b09e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 611 + { + "_id": "66cbb4d91ae71bfb1007b00b", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb4d91ae71bfb1007b009", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b00d", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb4d91ae71bfb1007b009", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b00f", + "_tpl": "60b0f93284c20f0feb453da7", + "parentId": "66cbb4d91ae71bfb1007b009", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00546", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b0a6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0a6", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b0a8", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbb4d91ae71bfb1007b0a6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00274", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0aa", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb4d91ae71bfb1007b0a6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00632", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b0ac", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0ac", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0ae", - "_tpl": "573478bc24597738002c6175", - "parentId": "66cbb4d91ae71bfb1007b0ac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b011", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b011", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b0b0", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbb4d91ae71bfb1007b0ac", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b013", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b011", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 570 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b0b2", - "_tpl": "62a09ec84f842e1bd12da3f2", - "parentId": "66cbb4d91ae71bfb1007b0ac", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b015", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b011", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 739 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00807", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b0b4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0b4", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00215", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0b6", - "_tpl": "5cf78720d7f00c06595bc93e", - "parentId": "66cbb4d91ae71bfb1007b0b4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00285", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b0b8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0b8", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00284", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b0ba", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0ba", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0bc", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b0ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b017", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b017", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 830 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b0be", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b0ba", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 669 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00579", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b0c0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0c0", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b019", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb4d91ae71bfb1007b017", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b01b", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66cbb4d91ae71bfb1007b017", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00595", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b0c2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0c2", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00411", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0c4", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb4d91ae71bfb1007b0c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0c6", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb4d91ae71bfb1007b0c2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b01d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b01d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b01f", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb4d91ae71bfb1007b01d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b021", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb4d91ae71bfb1007b01d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b023", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb4d91ae71bfb1007b01d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00470", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b0c8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0c8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00045", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0ca", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbb4d91ae71bfb1007b0c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0cc", - "_tpl": "6176a40f0b8c0312ac75a3d3", - "parentId": "66cbb4d91ae71bfb1007b0c8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b025", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b025", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b0ce", - "_tpl": "637b620db7afa97bfc3d7009", - "parentId": "66cbb4d91ae71bfb1007b0c8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00223", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b0d0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0d0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b028", + "_tpl": "5c1127bdd174af44217ab8b9", + "parentId": "66cbb4d91ae71bfb1007b025", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b029", + "_tpl": "5c0d56a986f774449d5de529", + "parentId": "66cbb4d91ae71bfb1007b028", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00222", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b0d2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0d2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00233", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0d4", - "_tpl": "5ad5d64486f774079b080af8", - "parentId": "66cbb4d91ae71bfb1007b0d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00221", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b0d6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0d6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00220", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b0d8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0d8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0da", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb4d91ae71bfb1007b0d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b02b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b02b", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b02d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b02b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1092 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00667", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b0dc", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0dc", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00787", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0de", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbb4d91ae71bfb1007b0dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00689", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b0e0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0e0", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0e2", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "66cbb4d91ae71bfb1007b0e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b02f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b02f", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 5 + { + "_id": "66cbb4d91ae71bfb1007b031", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "66cbb4d91ae71bfb1007b02f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00511", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0e4", - "_tpl": "5d10b49bd7ad1a1a560708b0", - "parentId": "66cbb4d91ae71bfb1007b0e0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0e6", - "_tpl": "57cffb66245977632f391a99", - "parentId": "66cbb4d91ae71bfb1007b0e0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b033", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b033", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b0e8", - "_tpl": "606ef0812535c57a13424d20", - "parentId": "66cbb4d91ae71bfb1007b0e0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b035", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb4d91ae71bfb1007b033", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b037", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb4d91ae71bfb1007b033", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00503", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0ea", - "_tpl": "5d2c770c48f0354b4a07c100", - "parentId": "66cbb4d91ae71bfb1007b0e0", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0ec", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbb4d91ae71bfb1007b0e0", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b039", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b039", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 12 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b0ee", - "_tpl": "62669bccdb9ebb4daa44cd14", - "parentId": "66cbb4d91ae71bfb1007b0e0", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b03b", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbb4d91ae71bfb1007b039", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b03d", + "_tpl": "62a0a098de7ac8199358053b", + "parentId": "66cbb4d91ae71bfb1007b039", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00232", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b0f0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0f0", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00379", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0f2", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b0f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1020 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0f4", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b0f0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1012 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b03f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b03f", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b041", + "_tpl": "57aca93d2459771f2c7e26db", + "parentId": "66cbb4d91ae71bfb1007b03f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b043", + "_tpl": "5d0a3e8cd7ad1a6f6a3d35bd", + "parentId": "66cbb4d91ae71bfb1007b03f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b045", + "_tpl": "5d6fc87386f77449db3db94e", + "parentId": "66cbb4d91ae71bfb1007b03f", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b0f6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b0f6", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b0f7", - "_tpl": "5bd70322209c4d00d7167b8f", - "parentId": "66cbb4d91ae71bfb1007b0f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00457", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0f8", - "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "66cbb4d91ae71bfb1007b0f7", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0fd", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbb4d91ae71bfb1007b0f8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b047", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b047", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b049", + "_tpl": "59e3658a86f7741776641ac4", + "parentId": "66cbb4d91ae71bfb1007b047", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b04b", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbb4d91ae71bfb1007b047", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b04d", + "_tpl": "57347d9c245977448b40fa85", + "parentId": "66cbb4d91ae71bfb1007b047", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00727", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0f9", - "_tpl": "5ba26acdd4351e003562908e", - "parentId": "66cbb4d91ae71bfb1007b0f7", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007b0fa", - "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "66cbb4d91ae71bfb1007b0f7", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb4d91ae71bfb1007b0fb", - "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "66cbb4d91ae71bfb1007b0f7", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007b0fc", - "_tpl": "5bd704e7209c4d00d7167c31", - "parentId": "66cbb4d91ae71bfb1007b0f7", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b0ff", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66cbb4d91ae71bfb1007b0f6", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b04f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b04f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b101", - "_tpl": "65815f0e647e3d7246384e14", - "parentId": "66cbb4d91ae71bfb1007b0f6", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b051", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb4d91ae71bfb1007b04f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b053", + "_tpl": "5b43575a86f77424f443fe62", + "parentId": "66cbb4d91ae71bfb1007b04f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00114", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b103", - "_tpl": "66b5f693acff495a294927e3", - "parentId": "66cbb4d91ae71bfb1007b0f6", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b105", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb4d91ae71bfb1007b0f6", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b055", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b055", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b056", + "_tpl": "5e81c3cbac2bb513793cdc75", + "parentId": "66cbb4d91ae71bfb1007b055", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007b057", + "_tpl": "5e81c519cb2b95385c177551", + "parentId": "66cbb4d91ae71bfb1007b056", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007b058", + "_tpl": "5e81c6bf763d9f754677beff", + "parentId": "66cbb4d91ae71bfb1007b056", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007b059", + "_tpl": "5e81edc13397a21db957f6a1", + "parentId": "66cbb4d91ae71bfb1007b056", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007b05a", + "_tpl": "5e81ee4dcb2b95385c177582", + "parentId": "66cbb4d91ae71bfb1007b059", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007b05b", + "_tpl": "5e81ee213397a21db957f6a6", + "parentId": "66cbb4d91ae71bfb1007b059", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4d91ae71bfb1007b05c", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "66cbb4d91ae71bfb1007b056", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b060", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbb4d91ae71bfb1007b05c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b05d", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "parentId": "66cbb4d91ae71bfb1007b056", + "slotId": "mod_trigger" + }, + { + "_id": "66cbb4d91ae71bfb1007b05e", + "_tpl": "5e81c550763d9f754677befd", + "parentId": "66cbb4d91ae71bfb1007b056", + "slotId": "mod_hammer" + }, + { + "_id": "66cbb4d91ae71bfb1007b05f", + "_tpl": "5e81c539cb2b95385c177553", + "parentId": "66cbb4d91ae71bfb1007b056", + "slotId": "mod_catch" + }, + { + "_id": "66cbb4d91ae71bfb1007b062", + "_tpl": "60b0f93284c20f0feb453da7", + "parentId": "66cbb4d91ae71bfb1007b055", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b064", + "_tpl": "5aa2b87de5b5b00016327c25", + "parentId": "66cbb4d91ae71bfb1007b055", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00472", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b107", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b107", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b108", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66cbb4d91ae71bfb1007b107", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b109", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66cbb4d91ae71bfb1007b108", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007b10a", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66cbb4d91ae71bfb1007b108", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007b10b", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66cbb4d91ae71bfb1007b108", - "slotId": "mod_magazine" + { + "Id": "container_Shopping_Mall_DesignStuff_00276", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b10c", - "_tpl": "5736026a245977644601dc61", - "parentId": "66cbb4d91ae71bfb1007b10b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b10e", - "_tpl": "5e54f62086f774219b0f1937", - "parentId": "66cbb4d91ae71bfb1007b107", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b066", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b066", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b110", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb4d91ae71bfb1007b107", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b068", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b066", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 750 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00614", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b112", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b112", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00271", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b114", - "_tpl": "5a7ad4af51dfba0013379717", - "parentId": "66cbb4d91ae71bfb1007b112", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b06a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b06a", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b06c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b06a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1047 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b06e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b06a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 792 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00115", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b116", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb4d91ae71bfb1007b112", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b070", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b070", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b072", + "_tpl": "59e366c186f7741778269d85", + "parentId": "66cbb4d91ae71bfb1007b070", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00758", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b118", - "_tpl": "5cdeac5cd7f00c000f261694", - "parentId": "66cbb4d91ae71bfb1007b112", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b074", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b074", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b076", + "_tpl": "5aa2b986e5b5b00014028f4c", + "parentId": "66cbb4d91ae71bfb1007b074", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00797", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b11a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b11a", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00331", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b11b", - "_tpl": "5ac4cd105acfc40016339859", - "parentId": "66cbb4d91ae71bfb1007b11a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b078", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b078", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b07a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b078", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 918 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b07c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b078", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 981 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b07e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b078", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 984 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b080", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b078", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1004 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00121", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b11c", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb4d91ae71bfb1007b11b", - "slotId": "mod_gas_block" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b11d", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb4d91ae71bfb1007b11c", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007b11e", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "66cbb4d91ae71bfb1007b11b", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007b11f", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb4d91ae71bfb1007b11b", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007b120", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb4d91ae71bfb1007b11b", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007b121", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "66cbb4d91ae71bfb1007b11b", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007b122", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb4d91ae71bfb1007b11b", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b082", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b082", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b084", + "_tpl": "5ab8ee7786f7742d8f33f0b9", + "parentId": "66cbb4d91ae71bfb1007b082", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b086", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb4d91ae71bfb1007b082", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00462", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b123", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbb4d91ae71bfb1007b11b", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b124", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb4d91ae71bfb1007b123", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b088", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b088", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b08a", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbb4d91ae71bfb1007b088", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00745", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b126", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b126", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00566", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b128", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb4d91ae71bfb1007b126", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b08c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b08c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b08e", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb4d91ae71bfb1007b08c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b090", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb4d91ae71bfb1007b08c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b092", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66cbb4d91ae71bfb1007b08c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00230", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b12a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b12a", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00308", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b12c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b12a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b094", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b094", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b096", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b094", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 572 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b098", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b094", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 784 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b09a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b094", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 941 + } }, - "upd": { - "StackObjectsCount": 1101 + { + "_id": "66cbb4d91ae71bfb1007b09c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b094", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 725 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00326", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b12e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b12a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1077 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b09e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b09e", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0a0", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b09e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 713 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0a2", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b09e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 722 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0a4", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b09e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 611 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00250", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b130", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b130", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00546", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b132", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b130", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b0a6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0a6", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0a8", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbb4d91ae71bfb1007b0a6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 585 + { + "_id": "66cbb4d91ae71bfb1007b0aa", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb4d91ae71bfb1007b0a6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00632", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b134", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b130", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 932 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b0ac", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0ac", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0ae", + "_tpl": "573478bc24597738002c6175", + "parentId": "66cbb4d91ae71bfb1007b0ac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0b0", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbb4d91ae71bfb1007b0ac", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0b2", + "_tpl": "62a09ec84f842e1bd12da3f2", + "parentId": "66cbb4d91ae71bfb1007b0ac", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00352", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b136", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b136", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00807", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b138", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b136", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 613 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b0b4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0b4", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0b6", + "_tpl": "5cf78720d7f00c06595bc93e", + "parentId": "66cbb4d91ae71bfb1007b0b4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00464", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b13a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b13a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00285", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b13c", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb4d91ae71bfb1007b13a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b0b8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0b8", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b13e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b13e", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00284", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b140", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb4d91ae71bfb1007b13e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b0ba", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0ba", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0bc", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b0ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 830 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b0be", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b0ba", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 669 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00579", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b142", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66cbb4d91ae71bfb1007b13e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b0c0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0c0", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00700", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b144", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b144", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00595", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b0c2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0c2", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0c4", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb4d91ae71bfb1007b0c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0c6", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb4d91ae71bfb1007b0c2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00699", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b146", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b146", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00698", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b148", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b148", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00697", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b14a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b14a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00470", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b14c", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb4d91ae71bfb1007b14a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00437", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b14e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b14e", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b150", - "_tpl": "55d484b44bdc2d1d4e8b456d", - "parentId": "66cbb4d91ae71bfb1007b14e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b0c8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0c8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b152", - "_tpl": "5c82342f2e221644f31c060e", - "parentId": "66cbb4d91ae71bfb1007b14e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b0ca", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbb4d91ae71bfb1007b0c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b153", - "_tpl": "5d3eb3b0a4b93615055e84d2", - "parentId": "66cbb4d91ae71bfb1007b14e", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b0cc", + "_tpl": "6176a40f0b8c0312ac75a3d3", + "parentId": "66cbb4d91ae71bfb1007b0c8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb4d91ae71bfb1007b0ce", + "_tpl": "637b620db7afa97bfc3d7009", + "parentId": "66cbb4d91ae71bfb1007b0c8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00223", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b154", - "_tpl": "5d3eb5b6a4b9361eab311902", - "parentId": "66cbb4d91ae71bfb1007b153", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007b155", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "66cbb4d91ae71bfb1007b153", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007b156", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "66cbb4d91ae71bfb1007b155", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007b157", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "66cbb4d91ae71bfb1007b155", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb4d91ae71bfb1007b158", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "66cbb4d91ae71bfb1007b153", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b159", - "_tpl": "5cc80f8fe4a949033b0224a2", - "parentId": "66cbb4d91ae71bfb1007b158", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b0d0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0d0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00222", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b15a", - "_tpl": "5cadc190ae921500103bb3b6", - "parentId": "66cbb4d91ae71bfb1007b14e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b0d2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0d2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb4d91ae71bfb1007b0d4", + "_tpl": "5ad5d64486f774079b080af8", + "parentId": "66cbb4d91ae71bfb1007b0d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00221", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b15b", - "_tpl": "5cadc1c6ae9215000f2775a4", - "parentId": "66cbb4d91ae71bfb1007b15a", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007b15c", - "_tpl": "5cadc390ae921500126a77f1", - "parentId": "66cbb4d91ae71bfb1007b15b", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007b15d", - "_tpl": "5cadc431ae921500113bb8d5", - "parentId": "66cbb4d91ae71bfb1007b15a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007b15e", - "_tpl": "5cadc55cae921500103bb3be", - "parentId": "66cbb4d91ae71bfb1007b15a", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007b15f", - "_tpl": "5cadd940ae9215051e1c2316", - "parentId": "66cbb4d91ae71bfb1007b15e", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007b160", - "_tpl": "5cadd919ae921500126a77f3", - "parentId": "66cbb4d91ae71bfb1007b15e", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb4d91ae71bfb1007b161", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "66cbb4d91ae71bfb1007b15a", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b162", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb4d91ae71bfb1007b161", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b0d6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0d6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00776", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b164", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b164", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00220", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b166", - "_tpl": "59e35de086f7741778269d84", - "parentId": "66cbb4d91ae71bfb1007b164", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00775", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b168", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b168", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00774", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b16a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b16a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00773", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b16c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b16c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b16e", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb4d91ae71bfb1007b16c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b0d8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0d8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0da", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb4d91ae71bfb1007b0d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00475", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b170", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b170", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00667", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b172", - "_tpl": "5d3ef698a4b9361182109872", - "parentId": "66cbb4d91ae71bfb1007b170", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b174", - "_tpl": "5e2192a498a36665e8337386", - "parentId": "66cbb4d91ae71bfb1007b170", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b0dc", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0dc", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b0de", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbb4d91ae71bfb1007b0dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00689", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b176", - "_tpl": "57fd23e32459772d0805bcf1", - "parentId": "66cbb4d91ae71bfb1007b170", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b178", - "_tpl": "5fce16961f152d4312622bc9", - "parentId": "66cbb4d91ae71bfb1007b170", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b0e0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0e0", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0e2", + "_tpl": "5d6e6891a4b9361bd473feea", + "parentId": "66cbb4d91ae71bfb1007b0e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 5 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0e4", + "_tpl": "5d10b49bd7ad1a1a560708b0", + "parentId": "66cbb4d91ae71bfb1007b0e0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0e6", + "_tpl": "57cffb66245977632f391a99", + "parentId": "66cbb4d91ae71bfb1007b0e0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0e8", + "_tpl": "606ef0812535c57a13424d20", + "parentId": "66cbb4d91ae71bfb1007b0e0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0ea", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "66cbb4d91ae71bfb1007b0e0", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0ec", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbb4d91ae71bfb1007b0e0", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 12 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0ee", + "_tpl": "62669bccdb9ebb4daa44cd14", + "parentId": "66cbb4d91ae71bfb1007b0e0", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b17a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b17a", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00232", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b17c", - "_tpl": "58272b392459774b4c7b3ccd", - "parentId": "66cbb4d91ae71bfb1007b17a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b17e", - "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "66cbb4d91ae71bfb1007b17a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b0f0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0f0", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0f2", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b0f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1020 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0f4", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b0f0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1012 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00430", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b180", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b180", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b182", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "66cbb4d91ae71bfb1007b180", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00575", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b184", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b184", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b186", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb4d91ae71bfb1007b184", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b188", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b188", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b0f6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b0f6", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0f7", + "_tpl": "5bd70322209c4d00d7167b8f", + "parentId": "66cbb4d91ae71bfb1007b0f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0f8", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "66cbb4d91ae71bfb1007b0f7", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b0fd", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbb4d91ae71bfb1007b0f8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b0f9", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "66cbb4d91ae71bfb1007b0f7", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007b0fa", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "66cbb4d91ae71bfb1007b0f7", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4d91ae71bfb1007b0fb", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "66cbb4d91ae71bfb1007b0f7", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007b0fc", + "_tpl": "5bd704e7209c4d00d7167c31", + "parentId": "66cbb4d91ae71bfb1007b0f7", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007b0ff", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66cbb4d91ae71bfb1007b0f6", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b101", + "_tpl": "65815f0e647e3d7246384e14", + "parentId": "66cbb4d91ae71bfb1007b0f6", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b103", + "_tpl": "66b5f693acff495a294927e3", + "parentId": "66cbb4d91ae71bfb1007b0f6", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b105", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb4d91ae71bfb1007b0f6", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b18a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b18a", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00472", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b18c", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66cbb4d91ae71bfb1007b18a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b18d", - "_tpl": "5ac66d015acfc400180ae6e4", - "parentId": "66cbb4d91ae71bfb1007b18a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b107", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b107", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b108", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66cbb4d91ae71bfb1007b107", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b109", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66cbb4d91ae71bfb1007b108", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007b10a", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66cbb4d91ae71bfb1007b108", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007b10b", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66cbb4d91ae71bfb1007b108", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b10c", + "_tpl": "5736026a245977644601dc61", + "parentId": "66cbb4d91ae71bfb1007b10b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b10e", + "_tpl": "5e54f62086f774219b0f1937", + "parentId": "66cbb4d91ae71bfb1007b107", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b110", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb4d91ae71bfb1007b107", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00614", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b18e", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb4d91ae71bfb1007b18d", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb4d91ae71bfb1007b18f", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb4d91ae71bfb1007b18e", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007b190", - "_tpl": "5ac72e725acfc400180ae701", - "parentId": "66cbb4d91ae71bfb1007b18d", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007b191", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb4d91ae71bfb1007b18d", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b192", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb4d91ae71bfb1007b18d", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b112", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b112", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b114", + "_tpl": "5a7ad4af51dfba0013379717", + "parentId": "66cbb4d91ae71bfb1007b112", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b116", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb4d91ae71bfb1007b112", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b118", + "_tpl": "5cdeac5cd7f00c000f261694", + "parentId": "66cbb4d91ae71bfb1007b112", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00797", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b193", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb4d91ae71bfb1007b18d", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b194", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb4d91ae71bfb1007b18d", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b11a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b11a", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b11b", + "_tpl": "5ac4cd105acfc40016339859", + "parentId": "66cbb4d91ae71bfb1007b11a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b11c", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb4d91ae71bfb1007b11b", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007b11d", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb4d91ae71bfb1007b11c", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007b11e", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "66cbb4d91ae71bfb1007b11b", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007b11f", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb4d91ae71bfb1007b11b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007b120", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb4d91ae71bfb1007b11b", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007b121", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "66cbb4d91ae71bfb1007b11b", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007b122", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb4d91ae71bfb1007b11b", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007b123", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbb4d91ae71bfb1007b11b", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b124", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb4d91ae71bfb1007b123", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00745", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b195", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66cbb4d91ae71bfb1007b18d", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b196", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb4d91ae71bfb1007b195", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b126", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b126", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b128", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb4d91ae71bfb1007b126", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00755", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b198", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b198", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00230", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b19a", - "_tpl": "56ea8d2fd2720b7c698b4570", - "parentId": "66cbb4d91ae71bfb1007b198", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b12a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b12a", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b12c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b12a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1101 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b12e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b12a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1077 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00615", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b19c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b19c", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00250", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b19e", - "_tpl": "5c7d55f52e221644f31bff6a", - "parentId": "66cbb4d91ae71bfb1007b19c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b130", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b130", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b132", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b130", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 585 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b134", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b130", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 932 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00352", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1a0", - "_tpl": "570fd6c2d2720bc6458b457f", - "parentId": "66cbb4d91ae71bfb1007b19c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b136", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b136", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b138", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b136", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 613 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00464", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1a1", - "_tpl": "61f7c9e189e6fb1a5e3ea78d", - "parentId": "66cbb4d91ae71bfb1007b19c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b13a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b13a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb4d91ae71bfb1007b13c", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb4d91ae71bfb1007b13a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1a2", - "_tpl": "61f4012adfc9f01a816adda1", - "parentId": "66cbb4d91ae71bfb1007b1a1", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1a3", - "_tpl": "61f7b85367ddd414173fdb36", - "parentId": "66cbb4d91ae71bfb1007b1a2", - "slotId": "mod_handguard" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b13e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b13e", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b140", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb4d91ae71bfb1007b13e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b142", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66cbb4d91ae71bfb1007b13e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00700", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1a4", - "_tpl": "61f7b234ea4ab34f2f59c3ec", - "parentId": "66cbb4d91ae71bfb1007b1a1", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1a6", - "_tpl": "5ef61964ec7f42238c31e0c1", - "parentId": "66cbb4d91ae71bfb1007b19c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b144", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b144", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00246", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1a8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1a8", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00699", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1aa", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1a8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 752 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1ac", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1a8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 948 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b146", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b146", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00245", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1ae", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1ae", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00698", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1b0", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1092 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b148", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b148", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b1b2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1b2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00697", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1b4", - "_tpl": "619cbfccbedcde2f5b3f7bdd", - "parentId": "66cbb4d91ae71bfb1007b1b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b14a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b14a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b14c", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb4d91ae71bfb1007b14a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00437", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1b6", - "_tpl": "5c12688486f77426843c7d32", - "parentId": "66cbb4d91ae71bfb1007b1b2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b14e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b14e", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b150", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "66cbb4d91ae71bfb1007b14e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b152", + "_tpl": "5c82342f2e221644f31c060e", + "parentId": "66cbb4d91ae71bfb1007b14e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b153", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "parentId": "66cbb4d91ae71bfb1007b14e", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007b154", + "_tpl": "5d3eb5b6a4b9361eab311902", + "parentId": "66cbb4d91ae71bfb1007b153", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007b155", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "66cbb4d91ae71bfb1007b153", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007b156", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "66cbb4d91ae71bfb1007b155", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007b157", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "66cbb4d91ae71bfb1007b155", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4d91ae71bfb1007b158", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "66cbb4d91ae71bfb1007b153", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b159", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "66cbb4d91ae71bfb1007b158", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b15a", + "_tpl": "5cadc190ae921500103bb3b6", + "parentId": "66cbb4d91ae71bfb1007b14e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007b15b", + "_tpl": "5cadc1c6ae9215000f2775a4", + "parentId": "66cbb4d91ae71bfb1007b15a", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007b15c", + "_tpl": "5cadc390ae921500126a77f1", + "parentId": "66cbb4d91ae71bfb1007b15b", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007b15d", + "_tpl": "5cadc431ae921500113bb8d5", + "parentId": "66cbb4d91ae71bfb1007b15a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007b15e", + "_tpl": "5cadc55cae921500103bb3be", + "parentId": "66cbb4d91ae71bfb1007b15a", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007b15f", + "_tpl": "5cadd940ae9215051e1c2316", + "parentId": "66cbb4d91ae71bfb1007b15e", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007b160", + "_tpl": "5cadd919ae921500126a77f3", + "parentId": "66cbb4d91ae71bfb1007b15e", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4d91ae71bfb1007b161", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "66cbb4d91ae71bfb1007b15a", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b162", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb4d91ae71bfb1007b161", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00776", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1b8", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb4d91ae71bfb1007b1b2", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b164", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b164", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b166", + "_tpl": "59e35de086f7741778269d84", + "parentId": "66cbb4d91ae71bfb1007b164", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00316", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1ba", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1ba", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00775", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b168", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b168", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00742", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b1bc", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1bc", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00774", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b16a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b16a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00773", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1be", - "_tpl": "5c12688486f77426843c7d32", - "parentId": "66cbb4d91ae71bfb1007b1bc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b16c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b16c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b16e", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb4d91ae71bfb1007b16c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00475", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1c0", - "_tpl": "573478bc24597738002c6175", - "parentId": "66cbb4d91ae71bfb1007b1bc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b170", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b170", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b172", + "_tpl": "5d3ef698a4b9361182109872", + "parentId": "66cbb4d91ae71bfb1007b170", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b174", + "_tpl": "5e2192a498a36665e8337386", + "parentId": "66cbb4d91ae71bfb1007b170", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b176", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "66cbb4d91ae71bfb1007b170", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b178", + "_tpl": "5fce16961f152d4312622bc9", + "parentId": "66cbb4d91ae71bfb1007b170", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1c2", - "_tpl": "6389c6463485cf0eeb260715", - "parentId": "66cbb4d91ae71bfb1007b1bc", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b17a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b17a", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b17c", + "_tpl": "58272b392459774b4c7b3ccd", + "parentId": "66cbb4d91ae71bfb1007b17a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b17e", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "66cbb4d91ae71bfb1007b17a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00793", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b1c4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1c4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00430", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1c6", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb4d91ae71bfb1007b1c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b180", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b180", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b182", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "66cbb4d91ae71bfb1007b180", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00575", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1c8", - "_tpl": "5751a89d24597722aa0e8db0", - "parentId": "66cbb4d91ae71bfb1007b1c4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b184", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b184", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b186", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb4d91ae71bfb1007b184", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00712", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1ca", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1ca", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b188", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b188", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00711", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1cc", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1cc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00710", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1ce", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1ce", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00709", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1d0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1d0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00289", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1d2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1d2", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1d4", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 664 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1d6", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1d2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 749 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b18a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b18a", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b18c", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66cbb4d91ae71bfb1007b18a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b18d", + "_tpl": "5ac66d015acfc400180ae6e4", + "parentId": "66cbb4d91ae71bfb1007b18a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b18e", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb4d91ae71bfb1007b18d", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007b18f", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb4d91ae71bfb1007b18e", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007b190", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "66cbb4d91ae71bfb1007b18d", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007b191", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb4d91ae71bfb1007b18d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007b192", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb4d91ae71bfb1007b18d", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007b193", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb4d91ae71bfb1007b18d", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007b194", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb4d91ae71bfb1007b18d", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007b195", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66cbb4d91ae71bfb1007b18d", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b196", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb4d91ae71bfb1007b195", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00288", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1d8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1d8", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00755", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1da", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1122 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1dc", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1d8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b198", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b198", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 749 + { + "_id": "66cbb4d91ae71bfb1007b19a", + "_tpl": "56ea8d2fd2720b7c698b4570", + "parentId": "66cbb4d91ae71bfb1007b198", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00615", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1de", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1d8", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b19c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b19c", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b19e", + "_tpl": "5c7d55f52e221644f31bff6a", + "parentId": "66cbb4d91ae71bfb1007b19c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1a0", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "66cbb4d91ae71bfb1007b19c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1a1", + "_tpl": "61f7c9e189e6fb1a5e3ea78d", + "parentId": "66cbb4d91ae71bfb1007b19c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1a2", + "_tpl": "61f4012adfc9f01a816adda1", + "parentId": "66cbb4d91ae71bfb1007b1a1", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007b1a3", + "_tpl": "61f7b85367ddd414173fdb36", + "parentId": "66cbb4d91ae71bfb1007b1a2", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007b1a4", + "_tpl": "61f7b234ea4ab34f2f59c3ec", + "parentId": "66cbb4d91ae71bfb1007b1a1", + "slotId": "mod_stock" }, - "upd": { - "StackObjectsCount": 1108 + { + "_id": "66cbb4d91ae71bfb1007b1a6", + "_tpl": "5ef61964ec7f42238c31e0c1", + "parentId": "66cbb4d91ae71bfb1007b19c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00246", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1e0", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1d8", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 700 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1a8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1a8", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1aa", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1a8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 752 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1ac", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1a8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 948 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00659", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b1e2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1e2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00245", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1e4", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb4d91ae71bfb1007b1e2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1ae", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1ae", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1b0", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1092 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00322", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1e6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1e6", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1e8", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1e6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b1b2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1b2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1b4", + "_tpl": "619cbfccbedcde2f5b3f7bdd", + "parentId": "66cbb4d91ae71bfb1007b1b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1b6", + "_tpl": "5c12688486f77426843c7d32", + "parentId": "66cbb4d91ae71bfb1007b1b2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 651 + { + "_id": "66cbb4d91ae71bfb1007b1b8", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb4d91ae71bfb1007b1b2", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00316", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1ea", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1e6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1031 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1ba", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1ba", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b1ec", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1ec", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00742", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1ee", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb4d91ae71bfb1007b1ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b1bc", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1bc", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1be", + "_tpl": "5c12688486f77426843c7d32", + "parentId": "66cbb4d91ae71bfb1007b1bc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1c0", + "_tpl": "573478bc24597738002c6175", + "parentId": "66cbb4d91ae71bfb1007b1bc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b1c2", + "_tpl": "6389c6463485cf0eeb260715", + "parentId": "66cbb4d91ae71bfb1007b1bc", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00793", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1f0", - "_tpl": "5ab8f04f86f774585f4237d8", - "parentId": "66cbb4d91ae71bfb1007b1ec", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b1c4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1c4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1c6", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb4d91ae71bfb1007b1c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b1c8", + "_tpl": "5751a89d24597722aa0e8db0", + "parentId": "66cbb4d91ae71bfb1007b1c4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00712", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1f2", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbb4d91ae71bfb1007b1ec", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1ca", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1ca", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00268", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b1f4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1f4", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00711", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1f6", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b1f4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1104 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1cc", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1cc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00591", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b1f8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1f8", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00710", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1fa", - "_tpl": "5a16b8a9fcdbcb00165aa6ca", - "parentId": "66cbb4d91ae71bfb1007b1f8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1ce", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1ce", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00634", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b1fc", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b1fc", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00709", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b1fe", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb4d91ae71bfb1007b1fc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b200", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbb4d91ae71bfb1007b1fc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1d0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1d0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00211", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b202", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b202", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00289", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b204", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb4d91ae71bfb1007b202", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b206", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb4d91ae71bfb1007b202", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00394", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b208", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b208", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1d2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1d2", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1d4", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 664 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1d6", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1d2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 749 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00653", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b20a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b20a", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00288", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b20b", - "_tpl": "5f2a9575926fd9352339381f", - "parentId": "66cbb4d91ae71bfb1007b20a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1d8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1d8", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1da", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1122 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1dc", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1d8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 749 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1de", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1d8", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1108 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb4d91ae71bfb1007b1e0", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1d8", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 700 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00659", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b20c", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "66cbb4d91ae71bfb1007b20b", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b212", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbb4d91ae71bfb1007b20c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b1e2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1e2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1e4", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb4d91ae71bfb1007b1e2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00322", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b20d", - "_tpl": "5f2aa46b878ef416f538b567", - "parentId": "66cbb4d91ae71bfb1007b20b", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007b20e", - "_tpl": "5f2aa4464b50c14bcf07acdb", - "parentId": "66cbb4d91ae71bfb1007b20d", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007b20f", - "_tpl": "5f2aa47a200e2c0ee46efa71", - "parentId": "66cbb4d91ae71bfb1007b20b", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007b210", - "_tpl": "5f2aa493cd375f14e15eea72", - "parentId": "66cbb4d91ae71bfb1007b20f", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbb4d91ae71bfb1007b211", - "_tpl": "5f2aa49f9b44de6b1b4e68d4", - "parentId": "66cbb4d91ae71bfb1007b20b", - "slotId": "mod_mount" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b214", - "_tpl": "5bc09a30d4351e00367fb7c8", - "parentId": "66cbb4d91ae71bfb1007b20a", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1e6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1e6", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b216", - "_tpl": "5dff772da3651922b360bf91", - "parentId": "66cbb4d91ae71bfb1007b20a", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b1e8", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1e6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 651 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b1ea", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1e6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1031 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b218", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66cbb4d91ae71bfb1007b20a", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b21a", - "_tpl": "5b40e61f5acfc4001a599bec", - "parentId": "66cbb4d91ae71bfb1007b20a", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b1ec", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1ec", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1ee", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb4d91ae71bfb1007b1ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1f0", + "_tpl": "5ab8f04f86f774585f4237d8", + "parentId": "66cbb4d91ae71bfb1007b1ec", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1f2", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbb4d91ae71bfb1007b1ec", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b21c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b21c", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00268", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b21e", - "_tpl": "5aa2b87de5b5b00016327c25", - "parentId": "66cbb4d91ae71bfb1007b21c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00426", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b220", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b220", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b222", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb4d91ae71bfb1007b220", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b1f4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1f4", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b224", - "_tpl": "5ede4739e0350d05467f73e8", - "parentId": "66cbb4d91ae71bfb1007b220", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b1f6", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b1f4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1104 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00570", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b226", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b226", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00591", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b228", - "_tpl": "5734773724597737fd047c14", - "parentId": "66cbb4d91ae71bfb1007b226", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00451", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b22a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b22a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b22c", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb4d91ae71bfb1007b22a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b1f8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1f8", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b1fa", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "66cbb4d91ae71bfb1007b1f8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00634", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b22e", - "_tpl": "5e2af02c86f7746d420957d4", - "parentId": "66cbb4d91ae71bfb1007b22a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b230", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbb4d91ae71bfb1007b22a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b1fc", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b1fc", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b1fe", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb4d91ae71bfb1007b1fc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b200", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbb4d91ae71bfb1007b1fc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00306", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b232", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b232", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00211", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b234", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b232", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 832 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b236", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b232", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 910 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b202", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b202", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b204", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb4d91ae71bfb1007b202", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b206", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb4d91ae71bfb1007b202", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00549", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b238", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b238", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00394", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b23a", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66cbb4d91ae71bfb1007b238", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b208", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b208", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00578", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b23c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b23c", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00653", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b23e", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb4d91ae71bfb1007b23c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b240", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbb4d91ae71bfb1007b23c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b20a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b20a", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b242", - "_tpl": "5f0c892565703e5c461894e9", - "parentId": "66cbb4d91ae71bfb1007b23c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b20b", + "_tpl": "5f2a9575926fd9352339381f", + "parentId": "66cbb4d91ae71bfb1007b20a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007b20c", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "66cbb4d91ae71bfb1007b20b", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b212", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbb4d91ae71bfb1007b20c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b20d", + "_tpl": "5f2aa46b878ef416f538b567", + "parentId": "66cbb4d91ae71bfb1007b20b", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007b20e", + "_tpl": "5f2aa4464b50c14bcf07acdb", + "parentId": "66cbb4d91ae71bfb1007b20d", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007b20f", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "parentId": "66cbb4d91ae71bfb1007b20b", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007b210", + "_tpl": "5f2aa493cd375f14e15eea72", + "parentId": "66cbb4d91ae71bfb1007b20f", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbb4d91ae71bfb1007b211", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "parentId": "66cbb4d91ae71bfb1007b20b", + "slotId": "mod_mount" + }, + { + "_id": "66cbb4d91ae71bfb1007b214", + "_tpl": "5bc09a30d4351e00367fb7c8", + "parentId": "66cbb4d91ae71bfb1007b20a", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b216", + "_tpl": "5dff772da3651922b360bf91", + "parentId": "66cbb4d91ae71bfb1007b20a", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b218", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66cbb4d91ae71bfb1007b20a", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b21a", + "_tpl": "5b40e61f5acfc4001a599bec", + "parentId": "66cbb4d91ae71bfb1007b20a", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b244", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b244", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b246", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb4d91ae71bfb1007b244", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b248", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb4d91ae71bfb1007b244", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b21c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b21c", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b24a", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbb4d91ae71bfb1007b244", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b21e", + "_tpl": "5aa2b87de5b5b00016327c25", + "parentId": "66cbb4d91ae71bfb1007b21c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00585", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b24c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b24c", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00426", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b24e", - "_tpl": "606ef0812535c57a13424d20", - "parentId": "66cbb4d91ae71bfb1007b24c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00757", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b250", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b250", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00552", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b252", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b252", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b254", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb4d91ae71bfb1007b252", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b220", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b220", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b222", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb4d91ae71bfb1007b220", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b224", + "_tpl": "5ede4739e0350d05467f73e8", + "parentId": "66cbb4d91ae71bfb1007b220", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00420", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b256", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b256", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00570", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b258", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb4d91ae71bfb1007b256", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b25a", - "_tpl": "5734773724597737fd047c14", - "parentId": "66cbb4d91ae71bfb1007b256", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b226", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b226", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b25c", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb4d91ae71bfb1007b256", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b228", + "_tpl": "5734773724597737fd047c14", + "parentId": "66cbb4d91ae71bfb1007b226", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00513", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b25e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b25e", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00451", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b260", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbb4d91ae71bfb1007b25e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00786", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b262", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b262", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b264", - "_tpl": "624c29ce09cd027dff2f8cd7", - "parentId": "66cbb4d91ae71bfb1007b262", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b22a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b22a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b266", - "_tpl": "5f3e77f59103d430b93f94c1", - "parentId": "66cbb4d91ae71bfb1007b262", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b22c", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb4d91ae71bfb1007b22a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b268", - "_tpl": "5ea16ada09aa976f2e7a51be", - "parentId": "66cbb4d91ae71bfb1007b262", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b22e", + "_tpl": "5e2af02c86f7746d420957d4", + "parentId": "66cbb4d91ae71bfb1007b22a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b230", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbb4d91ae71bfb1007b22a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00306", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b26a", - "_tpl": "5c6d7b3d2e221600114c9b7d", - "parentId": "66cbb4d91ae71bfb1007b262", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b26c", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbb4d91ae71bfb1007b262", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b232", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b232", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b234", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b232", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 832 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b236", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b232", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 910 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b26e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b26e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00549", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b270", - "_tpl": "5d1b385e86f774252167b98a", - "parentId": "66cbb4d91ae71bfb1007b26e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b238", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b238", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b23a", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66cbb4d91ae71bfb1007b238", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00578", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b272", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb4d91ae71bfb1007b26e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00297", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b274", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b274", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b276", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b274", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b23c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b23c", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 946 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b278", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b274", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1046 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00296", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b27a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b27a", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b23e", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb4d91ae71bfb1007b23c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b240", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbb4d91ae71bfb1007b23c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b242", + "_tpl": "5f0c892565703e5c461894e9", + "parentId": "66cbb4d91ae71bfb1007b23c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00768", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b27c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b27c", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b27e", - "_tpl": "62a09dd4621468534a797ac7", - "parentId": "66cbb4d91ae71bfb1007b27c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b280", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbb4d91ae71bfb1007b27c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b244", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b244", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 8 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b282", - "_tpl": "5b8403a086f7747ff856f4e2", - "parentId": "66cbb4d91ae71bfb1007b27c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b246", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb4d91ae71bfb1007b244", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b284", - "_tpl": "5cadd954ae921500103bb3c2", - "parentId": "66cbb4d91ae71bfb1007b27c", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b248", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb4d91ae71bfb1007b244", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b24a", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbb4d91ae71bfb1007b244", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00585", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b286", - "_tpl": "6259bdcabd28e4721447a2aa", - "parentId": "66cbb4d91ae71bfb1007b27c", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b288", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "66cbb4d91ae71bfb1007b27c", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b24c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b24c", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 5 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b28a", - "_tpl": "59eb7ebe86f7740b373438ce", - "parentId": "66cbb4d91ae71bfb1007b27c", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b24e", + "_tpl": "606ef0812535c57a13424d20", + "parentId": "66cbb4d91ae71bfb1007b24c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00551", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b28c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b28c", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00757", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b28e", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007b28c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b290", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007b28c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b250", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b250", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00436", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b292", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b292", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00552", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b294", - "_tpl": "5c878e9d2e2216000f201903", - "parentId": "66cbb4d91ae71bfb1007b292", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b296", - "_tpl": "5ef1ba28c64c5d0dfc0571a5", - "parentId": "66cbb4d91ae71bfb1007b292", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b252", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b252", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b254", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb4d91ae71bfb1007b252", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00420", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b298", - "_tpl": "5e4abc1f86f774069619fbaa", - "parentId": "66cbb4d91ae71bfb1007b292", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b29a", - "_tpl": "64be7095047e826eae02b0c1", - "parentId": "66cbb4d91ae71bfb1007b292", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b256", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b256", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b29c", - "_tpl": "618ba91477b82356f91ae0e8", - "parentId": "66cbb4d91ae71bfb1007b292", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b258", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb4d91ae71bfb1007b256", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b25a", + "_tpl": "5734773724597737fd047c14", + "parentId": "66cbb4d91ae71bfb1007b256", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b25c", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb4d91ae71bfb1007b256", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b29e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b29e", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00513", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2a0", - "_tpl": "5aa2ba46e5b5b000137b758d", - "parentId": "66cbb4d91ae71bfb1007b29e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b25e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b25e", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b260", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbb4d91ae71bfb1007b25e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00786", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2a2", - "_tpl": "62a08f4c4f842e1bd12d9d62", - "parentId": "66cbb4d91ae71bfb1007b29e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b262", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b262", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b264", + "_tpl": "624c29ce09cd027dff2f8cd7", + "parentId": "66cbb4d91ae71bfb1007b262", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b266", + "_tpl": "5f3e77f59103d430b93f94c1", + "parentId": "66cbb4d91ae71bfb1007b262", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b268", + "_tpl": "5ea16ada09aa976f2e7a51be", + "parentId": "66cbb4d91ae71bfb1007b262", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b26a", + "_tpl": "5c6d7b3d2e221600114c9b7d", + "parentId": "66cbb4d91ae71bfb1007b262", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b26c", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbb4d91ae71bfb1007b262", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00191", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b2a4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2a4", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2a6", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb4d91ae71bfb1007b2a4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b26e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b26e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b270", + "_tpl": "5d1b385e86f774252167b98a", + "parentId": "66cbb4d91ae71bfb1007b26e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b272", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb4d91ae71bfb1007b26e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00577", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b2a8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2a8", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00297", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2aa", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "66cbb4d91ae71bfb1007b2a8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b274", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b274", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b276", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b274", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 946 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b278", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b274", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1046 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00296", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2ac", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb4d91ae71bfb1007b2a8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b27a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b27a", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00324", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b2ae", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2ae", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00768", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2b0", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b2ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 706 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00266", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b2b2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2b2", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00718", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b2b4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2b4", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2b6", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb4d91ae71bfb1007b2b4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b27c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b27c", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b27e", + "_tpl": "62a09dd4621468534a797ac7", + "parentId": "66cbb4d91ae71bfb1007b27c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b280", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbb4d91ae71bfb1007b27c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b282", + "_tpl": "5b8403a086f7747ff856f4e2", + "parentId": "66cbb4d91ae71bfb1007b27c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b284", + "_tpl": "5cadd954ae921500103bb3c2", + "parentId": "66cbb4d91ae71bfb1007b27c", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b286", + "_tpl": "6259bdcabd28e4721447a2aa", + "parentId": "66cbb4d91ae71bfb1007b27c", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b288", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "66cbb4d91ae71bfb1007b27c", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 5 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b28a", + "_tpl": "59eb7ebe86f7740b373438ce", + "parentId": "66cbb4d91ae71bfb1007b27c", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00485", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b2b8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2b8", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00551", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2ba", - "_tpl": "5649b2314bdc2d79388b4576", - "parentId": "66cbb4d91ae71bfb1007b2b8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b28c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b28c", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b28e", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007b28c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b290", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007b28c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00226", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b2bc", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2bc", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00436", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2be", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b2bc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 919 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b292", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b292", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b294", + "_tpl": "5c878e9d2e2216000f201903", + "parentId": "66cbb4d91ae71bfb1007b292", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b296", + "_tpl": "5ef1ba28c64c5d0dfc0571a5", + "parentId": "66cbb4d91ae71bfb1007b292", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b298", + "_tpl": "5e4abc1f86f774069619fbaa", + "parentId": "66cbb4d91ae71bfb1007b292", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b29a", + "_tpl": "64be7095047e826eae02b0c1", + "parentId": "66cbb4d91ae71bfb1007b292", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b29c", + "_tpl": "618ba91477b82356f91ae0e8", + "parentId": "66cbb4d91ae71bfb1007b292", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b2c0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2c0", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2c2", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbb4d91ae71bfb1007b2c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b29e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b29e", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2a0", + "_tpl": "5aa2ba46e5b5b000137b758d", + "parentId": "66cbb4d91ae71bfb1007b29e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2a2", + "_tpl": "62a08f4c4f842e1bd12d9d62", + "parentId": "66cbb4d91ae71bfb1007b29e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00237", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b2c4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2c4", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00191", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2c6", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b2c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b2a4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2a4", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 855 + { + "_id": "66cbb4d91ae71bfb1007b2a6", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb4d91ae71bfb1007b2a4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00577", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2c8", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b2c4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 952 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b2a8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2a8", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2aa", + "_tpl": "619256e5f8af2c1a4e1f5d92", + "parentId": "66cbb4d91ae71bfb1007b2a8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2ac", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb4d91ae71bfb1007b2a8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00391", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b2ca", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2ca", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00324", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2cc", - "_tpl": "6699249f3c4fda6471005cba", - "parentId": "66cbb4d91ae71bfb1007b2ca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b2ae", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2ae", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b2b0", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b2ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 706 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00266", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2cd", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66cbb4d91ae71bfb1007b2ca", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b2b2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2b2", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00718", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2ce", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66cbb4d91ae71bfb1007b2cd", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2cf", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66cbb4d91ae71bfb1007b2cd", - "slotId": "mod_pistol_grip" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b2b4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2b4", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2b6", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb4d91ae71bfb1007b2b4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00485", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2d0", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66cbb4d91ae71bfb1007b2cd", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2d1", - "_tpl": "5736026a245977644601dc61", - "parentId": "66cbb4d91ae71bfb1007b2d0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b2b8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2b8", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2ba", + "_tpl": "5649b2314bdc2d79388b4576", + "parentId": "66cbb4d91ae71bfb1007b2b8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00226", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2d3", - "_tpl": "5df25b6c0b92095fd441e4cf", - "parentId": "66cbb4d91ae71bfb1007b2ca", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b2bc", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2bc", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b2be", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b2bc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 919 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2d5", - "_tpl": "59e770f986f7742cbe3164ef", - "parentId": "66cbb4d91ae71bfb1007b2ca", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00278", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b2d7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2d7", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2d9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b2d7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 915 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b2c0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2c0", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2c2", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbb4d91ae71bfb1007b2c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00564", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b2db", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2db", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00237", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2dd", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb4d91ae71bfb1007b2db", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2df", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbb4d91ae71bfb1007b2db", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b2c4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2c4", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b2e1", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb4d91ae71bfb1007b2db", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b2c6", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b2c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 855 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2c8", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b2c4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 952 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00476", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b2e3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2e3", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00391", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2e5", - "_tpl": "5fbe7618d6fa9c00c571bb6c", - "parentId": "66cbb4d91ae71bfb1007b2e3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2e7", - "_tpl": "58d2946386f774496974c37e", - "parentId": "66cbb4d91ae71bfb1007b2e3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b2ca", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2ca", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b2e9", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbb4d91ae71bfb1007b2e3", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2cc", + "_tpl": "6699249f3c4fda6471005cba", + "parentId": "66cbb4d91ae71bfb1007b2ca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b2ea", - "_tpl": "5d2f0d8048f0356c925bc3b0", - "parentId": "66cbb4d91ae71bfb1007b2e3", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2cd", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66cbb4d91ae71bfb1007b2ca", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2ce", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66cbb4d91ae71bfb1007b2cd", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007b2cf", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66cbb4d91ae71bfb1007b2cd", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007b2d0", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66cbb4d91ae71bfb1007b2cd", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b2d1", + "_tpl": "5736026a245977644601dc61", + "parentId": "66cbb4d91ae71bfb1007b2d0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb4d91ae71bfb1007b2d3", + "_tpl": "5df25b6c0b92095fd441e4cf", + "parentId": "66cbb4d91ae71bfb1007b2ca", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2d5", + "_tpl": "59e770f986f7742cbe3164ef", + "parentId": "66cbb4d91ae71bfb1007b2ca", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00278", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2eb", - "_tpl": "5d2f213448f0355009199284", - "parentId": "66cbb4d91ae71bfb1007b2ea", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4d91ae71bfb1007b2f1", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb4d91ae71bfb1007b2eb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b2ec", - "_tpl": "5d2f261548f03576f500e7b7", - "parentId": "66cbb4d91ae71bfb1007b2ea", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007b2ed", - "_tpl": "5d2f259b48f0355a844acd74", - "parentId": "66cbb4d91ae71bfb1007b2ec", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007b2ee", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "66cbb4d91ae71bfb1007b2ec", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007b2ef", - "_tpl": "5d2f25bc48f03502573e5d85", - "parentId": "66cbb4d91ae71bfb1007b2ec", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007b2f0", - "_tpl": "5d2f2d5748f03572ec0c0139", - "parentId": "66cbb4d91ae71bfb1007b2ea", - "slotId": "mod_charge" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2f3", - "_tpl": "6621455e3aceea9e2b0b01e7", - "parentId": "66cbb4d91ae71bfb1007b2e3", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b2d7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2d7", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2d9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b2d7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 915 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b2f5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b2f5", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00564", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2f7", - "_tpl": "623b2e9d11c3296b440d1638", - "parentId": "66cbb4d91ae71bfb1007b2f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2f8", - "_tpl": "644674a13d52156624001fbc", - "parentId": "66cbb4d91ae71bfb1007b2f5", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b2db", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2db", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66cbb4d91ae71bfb1007b2dd", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb4d91ae71bfb1007b2db", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "Foldable": { - "Folded": false + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2df", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbb4d91ae71bfb1007b2db", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b2e1", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb4d91ae71bfb1007b2db", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00476", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b2f9", - "_tpl": "6450ec2e7da7133e5a09ca96", - "parentId": "66cbb4d91ae71bfb1007b2f8", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4d91ae71bfb1007b2ff", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbb4d91ae71bfb1007b2f9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b2fa", - "_tpl": "6450f21a3d52156624001fcf", - "parentId": "66cbb4d91ae71bfb1007b2f8", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007b2fb", - "_tpl": "6451167ad4928d46d30be3fd", - "parentId": "66cbb4d91ae71bfb1007b2f8", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb4d91ae71bfb1007b2fc", - "_tpl": "645122f6d4928d46d30be3ff", - "parentId": "66cbb4d91ae71bfb1007b2f8", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007b2fd", - "_tpl": "64527a263d52156624001fd7", - "parentId": "66cbb4d91ae71bfb1007b2fc", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007b2fe", - "_tpl": "644675573d52156624001fc9", - "parentId": "66cbb4d91ae71bfb1007b2fc", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b301", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "66cbb4d91ae71bfb1007b2f5", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b2e3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2e3", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b303", - "_tpl": "5cadf6eeae921500134b2799", - "parentId": "66cbb4d91ae71bfb1007b2f5", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2e5", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "parentId": "66cbb4d91ae71bfb1007b2e3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 27 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b305", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbb4d91ae71bfb1007b2f5", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2e7", + "_tpl": "58d2946386f774496974c37e", + "parentId": "66cbb4d91ae71bfb1007b2e3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b307", - "_tpl": "66a0d1f88486c69fce00fdf6", - "parentId": "66cbb4d91ae71bfb1007b2f5", - "slotId": "main", - "location": { - "x": 2, - "y": 3, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2e9", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbb4d91ae71bfb1007b2e3", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 29 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b309", - "_tpl": "5f3e7801153b8571434a924c", - "parentId": "66cbb4d91ae71bfb1007b2f5", - "slotId": "main", - "location": { - "x": 3, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00090", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b30b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b30b", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b30d", - "_tpl": "5c1265fc86f7743f896a21c2", - "parentId": "66cbb4d91ae71bfb1007b30b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2ea", + "_tpl": "5d2f0d8048f0356c925bc3b0", + "parentId": "66cbb4d91ae71bfb1007b2e3", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b30f", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbb4d91ae71bfb1007b30b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2eb", + "_tpl": "5d2f213448f0355009199284", + "parentId": "66cbb4d91ae71bfb1007b2ea", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b311", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb4d91ae71bfb1007b30b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2f1", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb4d91ae71bfb1007b2eb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b313", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbb4d91ae71bfb1007b30b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b2ec", + "_tpl": "5d2f261548f03576f500e7b7", + "parentId": "66cbb4d91ae71bfb1007b2ea", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007b2ed", + "_tpl": "5d2f259b48f0355a844acd74", + "parentId": "66cbb4d91ae71bfb1007b2ec", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007b2ee", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "66cbb4d91ae71bfb1007b2ec", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007b2ef", + "_tpl": "5d2f25bc48f03502573e5d85", + "parentId": "66cbb4d91ae71bfb1007b2ec", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007b2f0", + "_tpl": "5d2f2d5748f03572ec0c0139", + "parentId": "66cbb4d91ae71bfb1007b2ea", + "slotId": "mod_charge" + }, + { + "_id": "66cbb4d91ae71bfb1007b2f3", + "_tpl": "6621455e3aceea9e2b0b01e7", + "parentId": "66cbb4d91ae71bfb1007b2e3", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00539", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b315", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b315", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b317", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007b315", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00240", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b319", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b319", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b31b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b319", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b2f5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b2f5", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 665 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b31d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b319", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 853 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00504", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b31f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b31f", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b321", - "_tpl": "5d4042a986f7743185265463", - "parentId": "66cbb4d91ae71bfb1007b31f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00772", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b323", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b323", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b325", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb4d91ae71bfb1007b323", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00771", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b327", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b327", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00770", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b329", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b329", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00769", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b32b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b32b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b32d", - "_tpl": "5ad5d49886f77455f9731921", - "parentId": "66cbb4d91ae71bfb1007b32b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00467", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b32f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b32f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b331", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb4d91ae71bfb1007b32f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b333", - "_tpl": "5e2af4a786f7746d3f3c3400", - "parentId": "66cbb4d91ae71bfb1007b32f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2f7", + "_tpl": "623b2e9d11c3296b440d1638", + "parentId": "66cbb4d91ae71bfb1007b2f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b335", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb4d91ae71bfb1007b32f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00231", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b337", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b337", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b339", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b337", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 909 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00531", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b33b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b33b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b33d", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb4d91ae71bfb1007b33b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2f8", + "_tpl": "644674a13d52156624001fbc", + "parentId": "66cbb4d91ae71bfb1007b2f5", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b33f", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb4d91ae71bfb1007b33b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00376", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b341", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b341", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b342", - "_tpl": "5ac66d725acfc43b321d4b60", - "parentId": "66cbb4d91ae71bfb1007b341", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b343", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb4d91ae71bfb1007b342", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb4d91ae71bfb1007b344", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb4d91ae71bfb1007b343", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007b345", - "_tpl": "5ac72e895acfc43b321d4bd5", - "parentId": "66cbb4d91ae71bfb1007b342", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007b346", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb4d91ae71bfb1007b342", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007b347", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb4d91ae71bfb1007b342", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007b348", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb4d91ae71bfb1007b342", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007b349", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb4d91ae71bfb1007b342", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007b34a", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66cbb4d91ae71bfb1007b342", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4d91ae71bfb1007b34b", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb4d91ae71bfb1007b34a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 19.0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b34c", - "_tpl": "669fa39b48fc9f8db6035a0c", - "parentId": "66cbb4d91ae71bfb1007b341", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2f9", + "_tpl": "6450ec2e7da7133e5a09ca96", + "parentId": "66cbb4d91ae71bfb1007b2f8", + "slotId": "mod_magazine" }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb4d91ae71bfb1007b2ff", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbb4d91ae71bfb1007b2f9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 } - } - }, - { - "_id": "66cbb4d91ae71bfb1007b34d", - "_tpl": "669fa47da0bab4e8510d9526", - "parentId": "66cbb4d91ae71bfb1007b34c", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4d91ae71bfb1007b34e", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbb4d91ae71bfb1007b34d", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb4d91ae71bfb1007b34f", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66cbb4d91ae71bfb1007b34c", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbb4d91ae71bfb1007b350", - "_tpl": "669fa4d97a09bc295603b496", - "parentId": "66cbb4d91ae71bfb1007b34c", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007b351", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbb4d91ae71bfb1007b350", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007b352", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbb4d91ae71bfb1007b34c", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4d91ae71bfb1007b353", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66cbb4d91ae71bfb1007b352", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b355", - "_tpl": "5b4327aa5acfc400175496e0", - "parentId": "66cbb4d91ae71bfb1007b341", - "slotId": "main", - "location": { - "x": 4, - "y": 1, - "r": 0 }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b357", - "_tpl": "57cffb66245977632f391a99", - "parentId": "66cbb4d91ae71bfb1007b341", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00305", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b359", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b359", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b35b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b359", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 966 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00279", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b35d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b35d", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b35f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b35d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 970 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00519", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b361", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b361", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b363", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb4d91ae71bfb1007b361", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00555", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b365", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b365", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b367", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb4d91ae71bfb1007b365", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2fa", + "_tpl": "6450f21a3d52156624001fcf", + "parentId": "66cbb4d91ae71bfb1007b2f8", + "slotId": "mod_pistol_grip" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b369", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbb4d91ae71bfb1007b365", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00360", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b36b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b36b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b36d", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb4d91ae71bfb1007b36b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2fb", + "_tpl": "6451167ad4928d46d30be3fd", + "parentId": "66cbb4d91ae71bfb1007b2f8", + "slotId": "mod_stock_000" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b36f", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb4d91ae71bfb1007b36b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2fc", + "_tpl": "645122f6d4928d46d30be3ff", + "parentId": "66cbb4d91ae71bfb1007b2f8", + "slotId": "mod_barrel" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b371", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "66cbb4d91ae71bfb1007b36b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b373", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b373", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b375", - "_tpl": "5cf508bfd7f00c056e24104e", - "parentId": "66cbb4d91ae71bfb1007b373", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2fd", + "_tpl": "64527a263d52156624001fd7", + "parentId": "66cbb4d91ae71bfb1007b2fc", + "slotId": "mod_muzzle" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b377", - "_tpl": "5b2388675acfc4771e1be0be", - "parentId": "66cbb4d91ae71bfb1007b373", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b2fe", + "_tpl": "644675573d52156624001fc9", + "parentId": "66cbb4d91ae71bfb1007b2fc", + "slotId": "mod_handguard" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b379", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "66cbb4d91ae71bfb1007b373", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b301", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "66cbb4d91ae71bfb1007b2f5", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b37b", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "66cbb4d91ae71bfb1007b373", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 1 + { + "_id": "66cbb4d91ae71bfb1007b303", + "_tpl": "5cadf6eeae921500134b2799", + "parentId": "66cbb4d91ae71bfb1007b2f5", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 27 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b37d", - "_tpl": "5bb20d92d4351e00853263eb", - "parentId": "66cbb4d91ae71bfb1007b373", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b37f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b37f", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b381", - "_tpl": "59d6272486f77466146386ff", - "parentId": "66cbb4d91ae71bfb1007b37f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00601", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b383", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b383", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b385", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb4d91ae71bfb1007b383", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b305", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbb4d91ae71bfb1007b2f5", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b387", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb4d91ae71bfb1007b383", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b307", + "_tpl": "66a0d1f88486c69fce00fdf6", + "parentId": "66cbb4d91ae71bfb1007b2f5", + "slotId": "main", + "location": { + "x": 2, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 29 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b309", + "_tpl": "5f3e7801153b8571434a924c", + "parentId": "66cbb4d91ae71bfb1007b2f5", + "slotId": "main", + "location": { + "x": 3, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00087", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b389", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b389", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00090", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b38b", - "_tpl": "5b40e61f5acfc4001a599bec", - "parentId": "66cbb4d91ae71bfb1007b389", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b38d", - "_tpl": "57513f9324597720a7128161", - "parentId": "66cbb4d91ae71bfb1007b389", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b30b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b30b", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b38f", - "_tpl": "57347d9c245977448b40fa85", - "parentId": "66cbb4d91ae71bfb1007b389", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b30d", + "_tpl": "5c1265fc86f7743f896a21c2", + "parentId": "66cbb4d91ae71bfb1007b30b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b391", - "_tpl": "62a09e73af34e73a266d932a", - "parentId": "66cbb4d91ae71bfb1007b389", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00798", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b393", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b393", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b395", - "_tpl": "5c878ebb2e2216001219d48a", - "parentId": "66cbb4d91ae71bfb1007b393", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00341", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b397", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b397", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00340", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b399", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b399", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b39b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b399", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 668 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00434", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b39d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b39d", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00404", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b39f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b39f", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3a1", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbb4d91ae71bfb1007b39f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00717", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b3a3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3a3", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3a5", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb4d91ae71bfb1007b3a3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00600", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b3a7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3a7", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3a9", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66cbb4d91ae71bfb1007b3a7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b30f", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbb4d91ae71bfb1007b30b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3ab", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb4d91ae71bfb1007b3a7", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00610", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b3ad", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3ad", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3af", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66cbb4d91ae71bfb1007b3ad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b311", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb4d91ae71bfb1007b30b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b313", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbb4d91ae71bfb1007b30b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00539", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3b1", - "_tpl": "5d1b2fa286f77425227d1674", - "parentId": "66cbb4d91ae71bfb1007b3ad", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3b3", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb4d91ae71bfb1007b3ad", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b315", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b315", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b317", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007b315", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00370", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b3b5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3b5", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00240", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3b7", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66cbb4d91ae71bfb1007b3b5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00492", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b3b9", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3b9", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3bb", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb4d91ae71bfb1007b3b9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b319", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b319", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3bd", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbb4d91ae71bfb1007b3b9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b31b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b319", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 665 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b31d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b319", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 853 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00261", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b3bf", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3bf", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00504", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3c1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 862 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3c3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3bf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 810 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00291", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b3c5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3c5", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b31f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b31f", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b321", + "_tpl": "5d4042a986f7743185265463", + "parentId": "66cbb4d91ae71bfb1007b31f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00290", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b3c7", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3c7", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00772", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3c9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3c7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1038 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3cb", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3c7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b323", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b323", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 791 + { + "_id": "66cbb4d91ae71bfb1007b325", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb4d91ae71bfb1007b323", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00771", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3cd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3c7", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 620 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3cf", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3c7", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 711 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b327", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b327", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00320", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b3d1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3d1", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00770", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3d3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3d1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 808 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b329", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b329", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00424", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b3d5", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3d5", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00769", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3d8", - "_tpl": "657025a81419851aef03e724", - "parentId": "66cbb4d91ae71bfb1007b3d5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b32b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b32b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b32d", + "_tpl": "5ad5d49886f77455f9731921", + "parentId": "66cbb4d91ae71bfb1007b32b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00467", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3d9", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb4d91ae71bfb1007b3d8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3db", - "_tpl": "64b8f7b5389d7ffd620ccba2", - "parentId": "66cbb4d91ae71bfb1007b3d5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b32f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b32f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b331", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb4d91ae71bfb1007b32f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b333", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "66cbb4d91ae71bfb1007b32f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 15 + { + "_id": "66cbb4d91ae71bfb1007b335", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb4d91ae71bfb1007b32f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00231", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3de", - "_tpl": "657025c9cfc010a0f5006a38", - "parentId": "66cbb4d91ae71bfb1007b3d5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b337", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b337", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b339", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b337", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 909 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00531", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3df", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbb4d91ae71bfb1007b3de", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b33b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b33b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b33d", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb4d91ae71bfb1007b33b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b33f", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb4d91ae71bfb1007b33b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00337", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b3e1", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3e1", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00376", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3e3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3e1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b341", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b341", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b342", + "_tpl": "5ac66d725acfc43b321d4b60", + "parentId": "66cbb4d91ae71bfb1007b341", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b343", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb4d91ae71bfb1007b342", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007b344", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb4d91ae71bfb1007b343", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007b345", + "_tpl": "5ac72e895acfc43b321d4bd5", + "parentId": "66cbb4d91ae71bfb1007b342", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007b346", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb4d91ae71bfb1007b342", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007b347", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb4d91ae71bfb1007b342", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007b348", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb4d91ae71bfb1007b342", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007b349", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb4d91ae71bfb1007b342", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007b34a", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66cbb4d91ae71bfb1007b342", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b34b", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb4d91ae71bfb1007b34a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 19.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b34c", + "_tpl": "669fa39b48fc9f8db6035a0c", + "parentId": "66cbb4d91ae71bfb1007b341", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007b34d", + "_tpl": "669fa47da0bab4e8510d9526", + "parentId": "66cbb4d91ae71bfb1007b34c", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007b34e", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbb4d91ae71bfb1007b34d", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4d91ae71bfb1007b34f", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66cbb4d91ae71bfb1007b34c", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb4d91ae71bfb1007b350", + "_tpl": "669fa4d97a09bc295603b496", + "parentId": "66cbb4d91ae71bfb1007b34c", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007b351", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbb4d91ae71bfb1007b350", + "slotId": "mod_sight_rear" }, - "upd": { - "StackObjectsCount": 800 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3e5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3e1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b352", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbb4d91ae71bfb1007b34c", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 656 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3e7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3e1", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b353", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66cbb4d91ae71bfb1007b352", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } }, - "upd": { - "StackObjectsCount": 1087 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3e9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3e1", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 639 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00336", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b3eb", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3eb", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3ed", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b3eb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 913 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00491", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b3ef", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3ef", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3f1", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "66cbb4d91ae71bfb1007b3ef", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b355", + "_tpl": "5b4327aa5acfc400175496e0", + "parentId": "66cbb4d91ae71bfb1007b341", + "slotId": "main", + "location": { + "x": 4, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b357", + "_tpl": "57cffb66245977632f391a99", + "parentId": "66cbb4d91ae71bfb1007b341", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b3f3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3f3", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00305", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3f5", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbb4d91ae71bfb1007b3f3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 6 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3f9", - "_tpl": "657024a4bfc87b3a3409322c", - "parentId": "66cbb4d91ae71bfb1007b3f3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b359", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b359", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3fa", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66cbb4d91ae71bfb1007b3f9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b3fb", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66cbb4d91ae71bfb1007b3f9", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + { + "_id": "66cbb4d91ae71bfb1007b35b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b359", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 966 + } } - } - ] - }, - { - "Id": "n1", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b3fd", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b3fd", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00279", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b3ff", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb4d91ae71bfb1007b3fd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 31 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b401", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbb4d91ae71bfb1007b3fd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 48 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b35d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b35d", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b35f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b35d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 970 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00438", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b403", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b403", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00519", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b405", - "_tpl": "59fc48e086f77463b1118392", - "parentId": "66cbb4d91ae71bfb1007b403", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00641", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b407", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b407", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b409", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb4d91ae71bfb1007b407", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b361", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b361", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b40b", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb4d91ae71bfb1007b407", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b363", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb4d91ae71bfb1007b361", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00516", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b40d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b40d", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00555", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b40f", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb4d91ae71bfb1007b40d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b411", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbb4d91ae71bfb1007b40d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b365", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b365", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b413", - "_tpl": "5c0e531d86f7747fa23f4d42", - "parentId": "66cbb4d91ae71bfb1007b40d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00526", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b415", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b415", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b417", - "_tpl": "60391afc25aff57af81f7085", - "parentId": "66cbb4d91ae71bfb1007b415", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b367", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb4d91ae71bfb1007b365", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b419", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb4d91ae71bfb1007b415", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b369", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbb4d91ae71bfb1007b365", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00253", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b41b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b41b", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00360", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b41d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b41b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 869 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00626", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b41f", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b41f", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b421", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb4d91ae71bfb1007b41f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b36b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b36b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b423", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb4d91ae71bfb1007b41f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb4d91ae71bfb1007b36d", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb4d91ae71bfb1007b36b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b425", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb4d91ae71bfb1007b41f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b36f", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb4d91ae71bfb1007b36b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b371", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "66cbb4d91ae71bfb1007b36b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00262", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b427", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b427", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b429", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b427", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 840 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00754", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b42b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b42b", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b42d", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbb4d91ae71bfb1007b42b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b373", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b373", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 40 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b42f", - "_tpl": "5c0d5e4486f77478390952fe", - "parentId": "66cbb4d91ae71bfb1007b42b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 17 + { + "_id": "66cbb4d91ae71bfb1007b375", + "_tpl": "5cf508bfd7f00c056e24104e", + "parentId": "66cbb4d91ae71bfb1007b373", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b377", + "_tpl": "5b2388675acfc4771e1be0be", + "parentId": "66cbb4d91ae71bfb1007b373", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b379", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "66cbb4d91ae71bfb1007b373", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b37b", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "66cbb4d91ae71bfb1007b373", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b37d", + "_tpl": "5bb20d92d4351e00853263eb", + "parentId": "66cbb4d91ae71bfb1007b373", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b431", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b431", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b433", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb4d91ae71bfb1007b431", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b435", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbb4d91ae71bfb1007b431", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b37f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b37f", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b381", + "_tpl": "59d6272486f77466146386ff", + "parentId": "66cbb4d91ae71bfb1007b37f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00463", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b437", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b437", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00601", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b439", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb4d91ae71bfb1007b437", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00544", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b43b", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b43b", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b43d", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb4d91ae71bfb1007b43b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b383", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b383", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4d91ae71bfb1007b43f", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb4d91ae71bfb1007b43b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00374", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b441", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b441", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb4d91ae71bfb1007b385", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb4d91ae71bfb1007b383", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b387", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb4d91ae71bfb1007b383", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00254", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b443", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b443", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00087", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b445", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b443", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 939 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b447", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b443", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 923 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b389", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b389", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b38b", + "_tpl": "5b40e61f5acfc4001a599bec", + "parentId": "66cbb4d91ae71bfb1007b389", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b38d", + "_tpl": "57513f9324597720a7128161", + "parentId": "66cbb4d91ae71bfb1007b389", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b38f", + "_tpl": "57347d9c245977448b40fa85", + "parentId": "66cbb4d91ae71bfb1007b389", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b391", + "_tpl": "62a09e73af34e73a266d932a", + "parentId": "66cbb4d91ae71bfb1007b389", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Shopping_Mall_DesignStuff_00353", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb4d91ae71bfb1007b449", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b449", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Shopping_Mall_DesignStuff_00798", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b44b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b449", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b393", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b393", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 758 + { + "_id": "66cbb4d91ae71bfb1007b395", + "_tpl": "5c878ebb2e2216001219d48a", + "parentId": "66cbb4d91ae71bfb1007b393", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00341", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b44d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb4d91ae71bfb1007b449", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1140 - } - } - ] - }, - { - "Id": "Arena_loot_ammo (6) [da796133-eaef-40f6-a5ca-5000157fc6c3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -198.228, - "y": 22.8800011, - "z": -344.6142 - }, - "Rotation": { - "x": 2.2175734, - "y": 270.3273, - "z": 268.8867 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b450", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b450", - "_tpl": "657024f01419851aef03e715", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b451", - "_tpl": "59e690b686f7746c9f75e848", - "parentId": "66cbb4d91ae71bfb1007b450", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b397", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b397", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Arena_loot_armor (2) [9838a2cf-2ee1-41d6-95ef-b44075d92241]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -193.889374, - "y": 20.4390011, - "z": -344.861145 - }, - "Rotation": { - "x": 273.0464, - "y": 310.401825, - "z": 267.29068 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b452", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b452", - "_tpl": "6038b4b292ec1c3103795a0b" - }, - { - "_id": "66cbb4d91ae71bfb1007b453", - "_tpl": "6575e71760703324250610c3", - "parentId": "66cbb4d91ae71bfb1007b452", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbb4d91ae71bfb1007b454", - "_tpl": "6575e72660703324250610c7", - "parentId": "66cbb4d91ae71bfb1007b452", - "slotId": "Soft_armor_back" + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00340", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b455", - "_tpl": "656fa76500d62bcd2e024080", - "parentId": "66cbb4d91ae71bfb1007b452", - "slotId": "Front_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b456", - "_tpl": "656fa76500d62bcd2e024080", - "parentId": "66cbb4d91ae71bfb1007b452", - "slotId": "Back_plate" - } - ] - }, - { - "Id": "Arena_loot_gp (4) [82c0a391-dbf4-4c4e-9b80-21ca588378d7]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": -199.402969, - "y": 22.099, - "z": -345.05957 - }, - "Rotation": { - "x": 271.2833, - "y": 284.7635, - "z": 254.11412 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b458", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b458", - "_tpl": "5d235b4d86f7742e017bc88a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_headphones (1) [e4a16989-6930-474e-a372-92dd9afa1f19]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -199.162216, - "y": 22.376, - "z": -344.455933 - }, - "Rotation": { - "x": 5.529851, - "y": 357.954437, - "z": 6.03116348e-8 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b45a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b45a", - "_tpl": "5e4d34ca86f774264f758330", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_headphones (2) [5ada6596-7481-413c-9aa2-47e25cb19a68]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -199.150772, - "y": 22.397, - "z": -344.783478 - }, - "Rotation": { - "x": 83.62926, - "y": 357.954468, - "z": 9.617739e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b45c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b45c", - "_tpl": "5e4d34ca86f774264f758330", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b399", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b399", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b39b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b399", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 668 + } } - } - ] - }, - { - "Id": "Arena_loot_helmet [6e90e455-197b-4811-b7fc-5b4d28688fc3]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -193.497284, - "y": 21.699, - "z": -347.381317 - }, - "Rotation": { - "x": 76.93526, - "y": 280.155273, - "z": 10.405714 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b45d", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b45d", - "_tpl": "5645bc214bdc2d363b8b4571" - }, - { - "_id": "66cbb4d91ae71bfb1007b45e", - "_tpl": "657bae18b7e9ca9a02045c0a", - "parentId": "66cbb4d91ae71bfb1007b45d", - "slotId": "Helmet_top" + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00434", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b45f", - "_tpl": "657baeaacfcf63c951052db3", - "parentId": "66cbb4d91ae71bfb1007b45d", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b460", - "_tpl": "657baecbc6f689d3a205b863", - "parentId": "66cbb4d91ae71bfb1007b45d", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "Arena_loot_plate (1) [a25c1e1c-e7f8-4849-b29c-ceb95e97bbbf]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -199.167572, - "y": 21.409, - "z": -344.601074 - }, - "Rotation": { - "x": 90.0, - "y": 0.401988924, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b462", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b462", - "_tpl": "657b28d25f444d6dff0c6c77", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_plate (2) [eaac49b5-0707-4d51-bce9-bcb450621814]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -200.2281, - "y": 22.0880013, - "z": -347.7325 - }, - "Rotation": { - "x": 90.0, - "y": 0.401988924, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b464", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b464", - "_tpl": "656fa53d94b480b8a500c0e4", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_plate (3) [39f7a306-5f92-475c-8286-08739b08419f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -200.5099, - "y": 22.0880013, - "z": -347.730347 - }, - "Rotation": { - "x": 90.0, - "y": 0.401988924, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b466", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b466", - "_tpl": "6557458f83942d705f0c4962", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b39d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b39d", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Arena_loot_plate (4) [6275d100-fd5d-4d52-84dc-e416bd4fafb5]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -200.2281, - "y": 22.301, - "z": -347.79422 - }, - "Rotation": { - "x": 90.0, - "y": 0.401988924, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b468", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b468", - "_tpl": "64afd81707e2cf40e903a316", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_loot_weapon (1) [f79ec0de-108e-41a2-a1c9-482dd08a28f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -200.310226, - "y": 21.377, - "z": -344.673828 - }, - "Rotation": { - "x": 359.052368, - "y": 183.61618, - "z": 93.50142 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b469", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b469", - "_tpl": "5644bd2b4bdc2d3b4c8b4572" - }, - { - "_id": "66cbb4d91ae71bfb1007b46a", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb4d91ae71bfb1007b469", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb4d91ae71bfb1007b46b", - "_tpl": "57cffddc24597763133760c6", - "parentId": "66cbb4d91ae71bfb1007b46a", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007b46c", - "_tpl": "57cffcd624597763133760c5", - "parentId": "66cbb4d91ae71bfb1007b46b", - "slotId": "mod_mount_003" - }, - { - "_id": "66cbb4d91ae71bfb1007b46d", - "_tpl": "5649ab884bdc2ded0b8b457f", - "parentId": "66cbb4d91ae71bfb1007b469", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4d91ae71bfb1007b46e", - "_tpl": "5649ae4a4bdc2d1b2b8b4588", - "parentId": "66cbb4d91ae71bfb1007b469", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007b46f", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "66cbb4d91ae71bfb1007b469", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4d91ae71bfb1007b470", - "_tpl": "5649d9a14bdc2d79388b4580", - "parentId": "66cbb4d91ae71bfb1007b469", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4d91ae71bfb1007b471", - "_tpl": "58491f3324597764bc48fa02", - "parentId": "66cbb4d91ae71bfb1007b470", - "slotId": "mod_scope" - }, - { - "_id": "66cbb4d91ae71bfb1007b472", - "_tpl": "5649b2314bdc2d79388b4576", - "parentId": "66cbb4d91ae71bfb1007b469", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007b473", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "66cbb4d91ae71bfb1007b472", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007b474", - "_tpl": "58d2946386f774496974c37e", - "parentId": "66cbb4d91ae71bfb1007b473", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb4d91ae71bfb1007b475", - "_tpl": "58d2912286f7744e27117493", - "parentId": "66cbb4d91ae71bfb1007b474", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4d91ae71bfb1007b476", - "_tpl": "55d482194bdc2d1d4e8b456b", - "parentId": "66cbb4d91ae71bfb1007b469", - "slotId": "mod_magazine" + { + "Id": "container_Shopping_Mall_DesignStuff_00404", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b477", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb4d91ae71bfb1007b476", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 43.0 - } - } - ] - }, - { - "Id": "Arena_loot_weapon (3) [ffe832c2-32f4-4337-9cf5-d2af5a98039f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -194.7732, - "y": 21.405201, - "z": -347.843567 - }, - "Rotation": { - "x": 2.2175734, - "y": 270.3273, - "z": 268.8867 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b478", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b478", - "_tpl": "65290f395ae2ae97b80fdf2d", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b39f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b39f", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3a1", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbb4d91ae71bfb1007b39f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00717", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b479", - "_tpl": "5d15cf3bd7ad1a67e71518b2", - "parentId": "66cbb4d91ae71bfb1007b478", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007b47a", - "_tpl": "6529119424cbe3c74a05e5bb", - "parentId": "66cbb4d91ae71bfb1007b478", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b47b", - "_tpl": "652910565ae2ae97b80fdf35", - "parentId": "66cbb4d91ae71bfb1007b47a", - "slotId": "mod_barrel" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b3a3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3a3", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3a5", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb4d91ae71bfb1007b3a3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00600", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b47c", - "_tpl": "652910bc24cbe3c74a05e5b9", - "parentId": "66cbb4d91ae71bfb1007b47b", - "slotId": "mod_gas_block" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b47d", - "_tpl": "6529113b5ae2ae97b80fdf39", - "parentId": "66cbb4d91ae71bfb1007b47b", - "slotId": "mod_muzzle" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b3a7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3a7", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3a9", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66cbb4d91ae71bfb1007b3a7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3ab", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb4d91ae71bfb1007b3a7", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00610", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b47e", - "_tpl": "652911e650dc782999054b9d", - "parentId": "66cbb4d91ae71bfb1007b47d", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b47f", - "_tpl": "652910ef50dc782999054b97", - "parentId": "66cbb4d91ae71bfb1007b47a", - "slotId": "mod_handguard" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b3ad", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3ad", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3af", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66cbb4d91ae71bfb1007b3ad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3b1", + "_tpl": "5d1b2fa286f77425227d1674", + "parentId": "66cbb4d91ae71bfb1007b3ad", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3b3", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb4d91ae71bfb1007b3ad", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00370", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b480", - "_tpl": "57cffb66245977632f391a99", - "parentId": "66cbb4d91ae71bfb1007b47f", - "slotId": "mod_foregrip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b481", - "_tpl": "558022b54bdc2dac148b458d", - "parentId": "66cbb4d91ae71bfb1007b47a", - "slotId": "mod_scope" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b3b5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3b5", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3b7", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66cbb4d91ae71bfb1007b3b5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00492", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b482", - "_tpl": "6529109524cbe3c74a05e5b7", - "parentId": "66cbb4d91ae71bfb1007b478", - "slotId": "mod_charge" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b483", - "_tpl": "5fbcc429900b1d5091531dd7", - "parentId": "66cbb4d91ae71bfb1007b478", - "slotId": "mod_stock_000" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b3b9", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3b9", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3bb", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb4d91ae71bfb1007b3b9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3bd", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbb4d91ae71bfb1007b3b9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00261", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b484", - "_tpl": "65293c38fc460e50a509cb25", - "parentId": "66cbb4d91ae71bfb1007b478", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b485", - "_tpl": "6529302b8c26af6326029fb7", - "parentId": "66cbb4d91ae71bfb1007b484", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20.0 - } - } - ] - }, - { - "Id": "Arena_loot_weapon [fd535685-2408-4ed1-b618-5737dd75d1a6]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -199.83522, - "y": 23.256, - "z": -344.7144 - }, - "Rotation": { - "x": 359.8879, - "y": 93.12037, - "z": 269.584137 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b486", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b486", - "_tpl": "5dcbd56fdbd3d91b3e5468d5", - "upd": { - "FireMode": { - "FireMode": "single" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b3bf", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3bf", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3c1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 862 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3c3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3bf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 810 } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00291", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b487", - "_tpl": "5c48a2c22e221602b313fb6c", - "parentId": "66cbb4d91ae71bfb1007b486", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4d91ae71bfb1007b488", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "66cbb4d91ae71bfb1007b486", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b494", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbb4d91ae71bfb1007b488", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b3c5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3c5", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00290", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b489", - "_tpl": "5dcbd6b46ec07c0c4347a564", - "parentId": "66cbb4d91ae71bfb1007b486", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4d91ae71bfb1007b48a", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "66cbb4d91ae71bfb1007b489", - "slotId": "mod_mount_000" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b48b", - "_tpl": "58c157be86f77403c74b2bb6", - "parentId": "66cbb4d91ae71bfb1007b48a", - "slotId": "mod_foregrip" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b3c7", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3c7", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3c9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3c7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1038 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3cb", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3c7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 791 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3cd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3c7", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 620 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3cf", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3c7", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 711 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00320", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b48c", - "_tpl": "5c06595c0db834001a66af6c", - "parentId": "66cbb4d91ae71bfb1007b489", - "slotId": "mod_tactical" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b48d", - "_tpl": "5dcbe9431e1f4616d354987e", - "parentId": "66cbb4d91ae71bfb1007b486", - "slotId": "mod_barrel" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b3d1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3d1", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3d3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3d1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 808 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00424", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b48e", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "66cbb4d91ae71bfb1007b48d", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b48f", - "_tpl": "59db7eed86f77461f8380365", - "parentId": "66cbb4d91ae71bfb1007b486", - "slotId": "mod_scope" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b3d5", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3d5", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3d8", + "_tpl": "657025a81419851aef03e724", + "parentId": "66cbb4d91ae71bfb1007b3d5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3d9", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb4d91ae71bfb1007b3d8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3db", + "_tpl": "64b8f7b5389d7ffd620ccba2", + "parentId": "66cbb4d91ae71bfb1007b3d5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 15 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3de", + "_tpl": "657025c9cfc010a0f5006a38", + "parentId": "66cbb4d91ae71bfb1007b3d5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3df", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbb4d91ae71bfb1007b3de", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00337", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b490", - "_tpl": "5c052a900db834001a66acbd", - "parentId": "66cbb4d91ae71bfb1007b48f", - "slotId": "mod_scope" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b491", - "_tpl": "5a33bab6c4a28200741e22f8", - "parentId": "66cbb4d91ae71bfb1007b490", - "slotId": "mod_mount" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b3e1", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3e1", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3e3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3e1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 800 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3e5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3e1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 656 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3e7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3e1", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1087 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3e9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3e1", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 639 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00336", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b492", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "66cbb4d91ae71bfb1007b491", - "slotId": "mod_scope" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b493", - "_tpl": "5dfa3d7ac41b2312ea33362a", - "parentId": "66cbb4d91ae71bfb1007b486", - "slotId": "mod_sight_rear" - } - ] - }, - { - "Id": "arm_cloth_head (14) [154a48bc-d6fe-4a45-ab2f-ead807735846]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -21.2596436, - "y": 27.19981, - "z": -111.5813 - }, - "Rotation": { - "x": 60.38777, - "y": 214.022644, - "z": 180.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b496", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b496", - "_tpl": "5aa2b9ede5b5b000137b758b", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b3eb", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3eb", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3ed", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b3eb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 913 + } } - } - ] - }, - { - "Id": "arm_cloth_head (18) [076a99d7-ef9d-4e5e-9841-bd0a55505c0f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -33.949585, - "y": 29.1828117, - "z": -112.940308 - }, - "Rotation": { - "x": 0.0, - "y": 195.8384, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b498", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b498", - "_tpl": "5aa2ba46e5b5b000137b758d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00491", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b3ef", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3ef", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3f1", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "66cbb4d91ae71bfb1007b3ef", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "arm_cloth_head (25) [45a0bc9e-c9da-4e11-ac8c-890c9d91446b]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 77.42444, - "y": 29.1228065, - "z": -20.1743164 - }, - "Rotation": { - "x": 0.0, - "y": 145.35553, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b49a", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b49a", - "_tpl": "5aa2ba46e5b5b000137b758d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b3f3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3f3", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3f5", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbb4d91ae71bfb1007b3f3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 6 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3f9", + "_tpl": "657024a4bfc87b3a3409322c", + "parentId": "66cbb4d91ae71bfb1007b3f3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3fa", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66cbb4d91ae71bfb1007b3f9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3fb", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66cbb4d91ae71bfb1007b3f9", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "arm_cloth_head (6) [2d1623a0-377b-46f4-aa98-3a20e4ad2858]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 35.0723877, - "y": 28.7308083, - "z": -182.46936 - }, - "Rotation": { - "x": 0.0, - "y": 41.7954254, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b49c", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b49c", - "_tpl": "5aa2ba19e5b5b00014028f4e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "n1", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b3fd", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b3fd", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b3ff", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb4d91ae71bfb1007b3fd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 31 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b401", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbb4d91ae71bfb1007b3fd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 48 + } } - } - ] - }, - { - "Id": "arm_cloth_head (7) [0eb6a930-3b70-4639-b995-871bf411a5f0]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 32.9294434, - "y": 28.7368126, - "z": -183.005371 - }, - "Rotation": { - "x": 0.0, - "y": 7.548645, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b49e", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b49e", - "_tpl": "5aa2b9ede5b5b000137b758b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00438", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b403", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b403", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b405", + "_tpl": "59fc48e086f77463b1118392", + "parentId": "66cbb4d91ae71bfb1007b403", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "arm_cloth_head (9) [3bc2ba0e-ed3b-479c-923d-34896cabbc51]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -28.85962, - "y": 28.7468071, - "z": 32.3776855 - }, - "Rotation": { - "x": 0.0, - "y": 180.633118, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4a0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4a0", - "_tpl": "5aa2ba19e5b5b00014028f4e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00641", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b407", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b407", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b409", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb4d91ae71bfb1007b407", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b40b", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb4d91ae71bfb1007b407", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "arm_cloth_head [9c758bc6-b221-4b83-86ba-340ceda4da2f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 62.2803955, - "y": 27.8178062, - "z": -195.134277 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4a2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4a2", - "_tpl": "5aa2b89be5b5b0001569311f", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "armor_all (1) [d2064013-4fd2-4f54-a2f5-a900a3562d49]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -16.80066, - "y": 27.05981, - "z": -41.4243164 - }, - "Rotation": { - "x": 279.033325, - "y": 0.9554168, - "z": 359.861084 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4a3", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4a3", - "_tpl": "609e8540d5c319764c2bc2e9" + { + "Id": "container_Shopping_Mall_DesignStuff_00516", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b4a4", - "_tpl": "6572e5221b5bc1185508c24f", - "parentId": "66cbb4d91ae71bfb1007b4a3", - "slotId": "Soft_armor_front" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b4a5", - "_tpl": "6572e52f73c0eabb700109a0", - "parentId": "66cbb4d91ae71bfb1007b4a3", - "slotId": "Soft_armor_back" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b40d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b40d", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b40f", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb4d91ae71bfb1007b40d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b411", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbb4d91ae71bfb1007b40d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b413", + "_tpl": "5c0e531d86f7747fa23f4d42", + "parentId": "66cbb4d91ae71bfb1007b40d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00526", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b4a6", - "_tpl": "6572e53c73c0eabb700109a4", - "parentId": "66cbb4d91ae71bfb1007b4a3", - "slotId": "Soft_armor_left" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b4a7", - "_tpl": "6572e54873c0eabb700109a8", - "parentId": "66cbb4d91ae71bfb1007b4a3", - "slotId": "soft_armor_right" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b415", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b415", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b417", + "_tpl": "60391afc25aff57af81f7085", + "parentId": "66cbb4d91ae71bfb1007b415", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b419", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb4d91ae71bfb1007b415", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00253", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b4a8", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "66cbb4d91ae71bfb1007b4a3", - "slotId": "Front_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b4a9", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "66cbb4d91ae71bfb1007b4a3", - "slotId": "Back_plate" - } - ] - }, - { - "Id": "armor_all [4c260a02-4d96-41b2-9380-8b5eaa573e3f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -11.7446289, - "y": 27.0658073, - "z": -40.5813 - }, - "Rotation": { - "x": 276.950562, - "y": 272.5888, - "z": 359.574066 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4aa", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4aa", - "_tpl": "62a09d79de7ac81993580530" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b41b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b41b", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b41d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b41b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 869 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00626", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b4ab", - "_tpl": "6572e048371fccfbf909d5d8", - "parentId": "66cbb4d91ae71bfb1007b4aa", - "slotId": "Soft_armor_front" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b4ac", - "_tpl": "6572e059371fccfbf909d5dc", - "parentId": "66cbb4d91ae71bfb1007b4aa", - "slotId": "Soft_armor_back" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b41f", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b41f", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b421", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb4d91ae71bfb1007b41f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b423", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb4d91ae71bfb1007b41f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b425", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb4d91ae71bfb1007b41f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Shopping_Mall_DesignStuff_00262", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b4ad", - "_tpl": "6572e06219b4b511af012f89", - "parentId": "66cbb4d91ae71bfb1007b4aa", - "slotId": "Soft_armor_left" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4d91ae71bfb1007b4ae", - "_tpl": "6572e06819b4b511af012f8d", - "parentId": "66cbb4d91ae71bfb1007b4aa", - "slotId": "soft_armor_right" - } - ] - }, - { - "Id": "fast_food(small) (216) [bfa22f41-55a2-47f3-ae92-e5f972a10122]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 89.3145752, - "y": 37.5808067, - "z": -34.67859 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b427", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b427", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b429", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b427", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 840 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4b0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4b0", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00754", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b42b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b42b", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b42d", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbb4d91ae71bfb1007b42b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b42f", + "_tpl": "5c0d5e4486f77478390952fe", + "parentId": "66cbb4d91ae71bfb1007b42b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 17 + } } - } - ] - }, - { - "Id": "fast_food(small) (224) [0030122d-cdad-4718-8f2a-12703ac4a988]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 103.318848, - "y": 37.6508064, - "z": -41.3675537 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4b2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4b2", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b431", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b431", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b433", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb4d91ae71bfb1007b431", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b435", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbb4d91ae71bfb1007b431", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food(small) (226) [a0fea6ad-d2e9-4b28-afa3-906940d97f4c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 24.93628, - "y": 37.9408073, - "z": -39.69568 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4b4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4b4", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00463", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b437", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b437", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b439", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb4d91ae71bfb1007b437", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food(small) (229) [c753dd89-154c-4c88-988c-41d7cafb3ee1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.5095215, - "y": 37.9408073, - "z": -39.6400146 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4b6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4b6", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00544", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b43b", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b43b", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b43d", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb4d91ae71bfb1007b43b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b43f", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb4d91ae71bfb1007b43b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food(small) (249) [81c81584-5857-44f0-bcc1-34c4db512ce2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 14.2661133, - "y": 37.2178078, - "z": -29.3088379 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4b8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4b8", - "_tpl": "59e358a886f7741776641ac3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00374", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b441", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b441", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food(small) (250) [aa63d551-9926-47ae-8af9-eb1233a7e5f8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 10.7874756, - "y": 37.72111, - "z": -24.9283447 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4ba", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4ba", - "_tpl": "5e2af02c86f7746d420957d4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00254", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b443", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b443", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b445", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b443", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 939 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b447", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b443", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 923 + } } - } - ] - }, - { - "Id": "fast_food(small) (253) [c38a3e0d-bb8a-4584-a58f-2b673b66bec3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 8.937378, - "y": 37.72111, - "z": -25.8707275 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4bc", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4bc", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Shopping_Mall_DesignStuff_00353", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb4d91ae71bfb1007b449", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b449", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b44b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b449", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 758 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b44d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb4d91ae71bfb1007b449", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1140 + } } - } - ] - }, - { - "Id": "fast_food(small) (257) [0c858e9c-8660-4fcc-b280-f840514ad172]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -35.4023438, - "y": 37.43881, - "z": -94.70117 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4be", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4be", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_ammo (6) [da796133-eaef-40f6-a5ca-5000157fc6c3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -198.228, + "y": 22.8800011, + "z": -344.6142 + }, + "Rotation": { + "x": 2.2175734, + "y": 270.3273, + "z": 268.8867 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b450", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b450", + "_tpl": "657024f01419851aef03e715", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b451", + "_tpl": "59e690b686f7746c9f75e848", + "parentId": "66cbb4d91ae71bfb1007b450", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "fast_food(small) (263) [f92a4727-43fb-40ec-84b3-288e991564eb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 5.395996, - "y": 37.8768044, - "z": -39.821167 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4c0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4c0", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_armor (2) [9838a2cf-2ee1-41d6-95ef-b44075d92241]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -193.889374, + "y": 20.4390011, + "z": -344.861145 + }, + "Rotation": { + "x": 273.0464, + "y": 310.401825, + "z": 267.29068 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b452", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b452", + "_tpl": "6038b4b292ec1c3103795a0b" + }, + { + "_id": "66cbb4d91ae71bfb1007b453", + "_tpl": "6575e71760703324250610c3", + "parentId": "66cbb4d91ae71bfb1007b452", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbb4d91ae71bfb1007b454", + "_tpl": "6575e72660703324250610c7", + "parentId": "66cbb4d91ae71bfb1007b452", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbb4d91ae71bfb1007b455", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "66cbb4d91ae71bfb1007b452", + "slotId": "Front_plate" + }, + { + "_id": "66cbb4d91ae71bfb1007b456", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "66cbb4d91ae71bfb1007b452", + "slotId": "Back_plate" } - } - ] - }, - { - "Id": "fast_food(small) (265) [2f6f8ea5-6d10-4bb4-b1f8-350b8cf02a76]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.960815, - "y": 37.8768044, - "z": -31.9998779 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4c2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4c2", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_gp (4) [82c0a391-dbf4-4c4e-9b80-21ca588378d7]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": -199.402969, + "y": 22.099, + "z": -345.05957 + }, + "Rotation": { + "x": 271.2833, + "y": 284.7635, + "z": 254.11412 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b458", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b458", + "_tpl": "5d235b4d86f7742e017bc88a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food(small) (265) [fb634e70-6573-4c79-bf23-64acebefdef6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -46.026, - "y": 38.06181, - "z": -102.781006 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4c4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4c4", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_headphones (1) [e4a16989-6930-474e-a372-92dd9afa1f19]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -199.162216, + "y": 22.376, + "z": -344.455933 + }, + "Rotation": { + "x": 5.529851, + "y": 357.954437, + "z": 6.03116348e-8 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b45a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b45a", + "_tpl": "5e4d34ca86f774264f758330", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food(small) (268) [b28bb77d-d35e-4f47-be4c-ca2d36ef56e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.927734, - "y": 37.8768044, - "z": -36.7047119 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4c6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4c6", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_headphones (2) [5ada6596-7481-413c-9aa2-47e25cb19a68]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -199.150772, + "y": 22.397, + "z": -344.783478 + }, + "Rotation": { + "x": 83.62926, + "y": 357.954468, + "z": 9.617739e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b45c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b45c", + "_tpl": "5e4d34ca86f774264f758330", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food(small) (269) [ad83e534-80a1-4eea-8862-3f70fb9dd881]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.927612, - "y": 37.8768044, - "z": -36.3132324 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4c8", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4c8", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_helmet [6e90e455-197b-4811-b7fc-5b4d28688fc3]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -193.497284, + "y": 21.699, + "z": -347.381317 + }, + "Rotation": { + "x": 76.93526, + "y": 280.155273, + "z": 10.405714 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b45d", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b45d", + "_tpl": "5645bc214bdc2d363b8b4571" + }, + { + "_id": "66cbb4d91ae71bfb1007b45e", + "_tpl": "657bae18b7e9ca9a02045c0a", + "parentId": "66cbb4d91ae71bfb1007b45d", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb4d91ae71bfb1007b45f", + "_tpl": "657baeaacfcf63c951052db3", + "parentId": "66cbb4d91ae71bfb1007b45d", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb4d91ae71bfb1007b460", + "_tpl": "657baecbc6f689d3a205b863", + "parentId": "66cbb4d91ae71bfb1007b45d", + "slotId": "Helmet_ears" } - } - ] - }, - { - "Id": "fast_food(small) (269) [c04c7d1a-130f-41f5-8b5a-0d6d547c296a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -29.05188, - "y": 37.9028053, - "z": -9.310669 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4ca", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4ca", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_plate (1) [a25c1e1c-e7f8-4849-b29c-ceb95e97bbbf]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -199.167572, + "y": 21.409, + "z": -344.601074 + }, + "Rotation": { + "x": 90.0, + "y": 0.401988924, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b462", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b462", + "_tpl": "657b28d25f444d6dff0c6c77", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food(small) (281) [9e1815e0-e9a0-4d94-a257-32ad2516a27a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -15.5236816, - "y": 37.8768044, - "z": -26.15686 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4cc", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4cc", - "_tpl": "57513f07245977207e26a311", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_plate (2) [eaac49b5-0707-4d51-bce9-bcb450621814]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -200.2281, + "y": 22.0880013, + "z": -347.7325 + }, + "Rotation": { + "x": 90.0, + "y": 0.401988924, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b464", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b464", + "_tpl": "656fa53d94b480b8a500c0e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food_and_technikal(small) (214) [8d582e60-664f-4643-ac2d-cdb0d801376a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.16809, - "y": 37.22981, - "z": -30.8432617 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4ce", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4ce", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_plate (3) [39f7a306-5f92-475c-8286-08739b08419f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -200.5099, + "y": 22.0880013, + "z": -347.730347 + }, + "Rotation": { + "x": 90.0, + "y": 0.401988924, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b466", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b466", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food_cafe(small) (228) [98fadbb2-d119-4cac-8e98-e9aff1b3310a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 90.15881, - "y": 37.35081, - "z": -57.1204834 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4d0", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4d0", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_plate (4) [6275d100-fd5d-4d52-84dc-e416bd4fafb5]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -200.2281, + "y": 22.301, + "z": -347.79422 + }, + "Rotation": { + "x": 90.0, + "y": 0.401988924, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b468", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b468", + "_tpl": "64afd81707e2cf40e903a316", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fast_food_cafe(small) (231) [cb023bd9-2294-412f-bb76-0f13e37d5228]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 90.1600342, - "y": 37.35081, - "z": -55.03064 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4d2", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4d2", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_weapon (1) [f79ec0de-108e-41a2-a1c9-482dd08a28f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -200.310226, + "y": 21.377, + "z": -344.673828 + }, + "Rotation": { + "x": 359.052368, + "y": 183.61618, + "z": 93.50142 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b469", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b469", + "_tpl": "5644bd2b4bdc2d3b4c8b4572" + }, + { + "_id": "66cbb4d91ae71bfb1007b46a", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb4d91ae71bfb1007b469", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007b46b", + "_tpl": "57cffddc24597763133760c6", + "parentId": "66cbb4d91ae71bfb1007b46a", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007b46c", + "_tpl": "57cffcd624597763133760c5", + "parentId": "66cbb4d91ae71bfb1007b46b", + "slotId": "mod_mount_003" + }, + { + "_id": "66cbb4d91ae71bfb1007b46d", + "_tpl": "5649ab884bdc2ded0b8b457f", + "parentId": "66cbb4d91ae71bfb1007b469", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007b46e", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "parentId": "66cbb4d91ae71bfb1007b469", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007b46f", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "66cbb4d91ae71bfb1007b469", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007b470", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "66cbb4d91ae71bfb1007b469", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4d91ae71bfb1007b471", + "_tpl": "58491f3324597764bc48fa02", + "parentId": "66cbb4d91ae71bfb1007b470", + "slotId": "mod_scope" + }, + { + "_id": "66cbb4d91ae71bfb1007b472", + "_tpl": "5649b2314bdc2d79388b4576", + "parentId": "66cbb4d91ae71bfb1007b469", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007b473", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "66cbb4d91ae71bfb1007b472", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007b474", + "_tpl": "58d2946386f774496974c37e", + "parentId": "66cbb4d91ae71bfb1007b473", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb4d91ae71bfb1007b475", + "_tpl": "58d2912286f7744e27117493", + "parentId": "66cbb4d91ae71bfb1007b474", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4d91ae71bfb1007b476", + "_tpl": "55d482194bdc2d1d4e8b456b", + "parentId": "66cbb4d91ae71bfb1007b469", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b477", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb4d91ae71bfb1007b476", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 43.0 + } } - } - ] - }, - { - "Id": "fast_food_cafe(small) (235) [cb5da2ba-5a4f-4a4c-ada6-14d95fdd3873]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.66882, - "y": 36.9428062, - "z": -57.67578 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4d4", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4d4", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_weapon (3) [ffe832c2-32f4-4337-9cf5-d2af5a98039f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -194.7732, + "y": 21.405201, + "z": -347.843567 + }, + "Rotation": { + "x": 2.2175734, + "y": 270.3273, + "z": 268.8867 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b478", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b478", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007b479", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "parentId": "66cbb4d91ae71bfb1007b478", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007b47a", + "_tpl": "6529119424cbe3c74a05e5bb", + "parentId": "66cbb4d91ae71bfb1007b478", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4d91ae71bfb1007b47b", + "_tpl": "652910565ae2ae97b80fdf35", + "parentId": "66cbb4d91ae71bfb1007b47a", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007b47c", + "_tpl": "652910bc24cbe3c74a05e5b9", + "parentId": "66cbb4d91ae71bfb1007b47b", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4d91ae71bfb1007b47d", + "_tpl": "6529113b5ae2ae97b80fdf39", + "parentId": "66cbb4d91ae71bfb1007b47b", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007b47e", + "_tpl": "652911e650dc782999054b9d", + "parentId": "66cbb4d91ae71bfb1007b47d", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007b47f", + "_tpl": "652910ef50dc782999054b97", + "parentId": "66cbb4d91ae71bfb1007b47a", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007b480", + "_tpl": "57cffb66245977632f391a99", + "parentId": "66cbb4d91ae71bfb1007b47f", + "slotId": "mod_foregrip" + }, + { + "_id": "66cbb4d91ae71bfb1007b481", + "_tpl": "558022b54bdc2dac148b458d", + "parentId": "66cbb4d91ae71bfb1007b47a", + "slotId": "mod_scope" + }, + { + "_id": "66cbb4d91ae71bfb1007b482", + "_tpl": "6529109524cbe3c74a05e5b7", + "parentId": "66cbb4d91ae71bfb1007b478", + "slotId": "mod_charge" + }, + { + "_id": "66cbb4d91ae71bfb1007b483", + "_tpl": "5fbcc429900b1d5091531dd7", + "parentId": "66cbb4d91ae71bfb1007b478", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb4d91ae71bfb1007b484", + "_tpl": "65293c38fc460e50a509cb25", + "parentId": "66cbb4d91ae71bfb1007b478", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b485", + "_tpl": "6529302b8c26af6326029fb7", + "parentId": "66cbb4d91ae71bfb1007b484", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20.0 + } } - } - ] - }, - { - "Id": "fast_food_cafe(small) (239) [c539e986-2125-4614-95be-abb3859fb868]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 90.1600342, - "y": 36.9428062, - "z": -54.9032 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4d91ae71bfb1007b4d6", - "Items": [ - { - "_id": "66cbb4d91ae71bfb1007b4d6", - "_tpl": "575146b724597720a27126d5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_loot_weapon [fd535685-2408-4ed1-b618-5737dd75d1a6]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -199.83522, + "y": 23.256, + "z": -344.7144 + }, + "Rotation": { + "x": 359.8879, + "y": 93.12037, + "z": 269.584137 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b486", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b486", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4d91ae71bfb1007b487", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "66cbb4d91ae71bfb1007b486", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4d91ae71bfb1007b488", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "66cbb4d91ae71bfb1007b486", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4d91ae71bfb1007b494", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbb4d91ae71bfb1007b488", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbb4d91ae71bfb1007b489", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "parentId": "66cbb4d91ae71bfb1007b486", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4d91ae71bfb1007b48a", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "66cbb4d91ae71bfb1007b489", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbb4d91ae71bfb1007b48b", + "_tpl": "58c157be86f77403c74b2bb6", + "parentId": "66cbb4d91ae71bfb1007b48a", + "slotId": "mod_foregrip" + }, + { + "_id": "66cbb4d91ae71bfb1007b48c", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "66cbb4d91ae71bfb1007b489", + "slotId": "mod_tactical" + }, + { + "_id": "66cbb4d91ae71bfb1007b48d", + "_tpl": "5dcbe9431e1f4616d354987e", + "parentId": "66cbb4d91ae71bfb1007b486", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4d91ae71bfb1007b48e", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "66cbb4d91ae71bfb1007b48d", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4d91ae71bfb1007b48f", + "_tpl": "59db7eed86f77461f8380365", + "parentId": "66cbb4d91ae71bfb1007b486", + "slotId": "mod_scope" + }, + { + "_id": "66cbb4d91ae71bfb1007b490", + "_tpl": "5c052a900db834001a66acbd", + "parentId": "66cbb4d91ae71bfb1007b48f", + "slotId": "mod_scope" + }, + { + "_id": "66cbb4d91ae71bfb1007b491", + "_tpl": "5a33bab6c4a28200741e22f8", + "parentId": "66cbb4d91ae71bfb1007b490", + "slotId": "mod_mount" + }, + { + "_id": "66cbb4d91ae71bfb1007b492", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "66cbb4d91ae71bfb1007b491", + "slotId": "mod_scope" + }, + { + "_id": "66cbb4d91ae71bfb1007b493", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "parentId": "66cbb4d91ae71bfb1007b486", + "slotId": "mod_sight_rear" } - } - ] - }, - { - "Id": "food_zone (233) [da38d3d3-93bf-4781-9f9a-20e2b997d6bc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.64026, - "y": 37.66981, - "z": -94.6376953 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b4d8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b4d8", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "arm_cloth_head (14) [154a48bc-d6fe-4a45-ab2f-ead807735846]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -21.2596436, + "y": 27.19981, + "z": -111.5813 + }, + "Rotation": { + "x": 60.38777, + "y": 214.022644, + "z": 180.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b496", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b496", + "_tpl": "5aa2b9ede5b5b000137b758b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_zone (237) [65e80f87-82cb-40e7-9770-ce7a6355fa2a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 40.83618, - "y": 37.66981, - "z": -145.6748 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b4da", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b4da", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "arm_cloth_head (18) [076a99d7-ef9d-4e5e-9841-bd0a55505c0f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -33.949585, + "y": 29.1828117, + "z": -112.940308 + }, + "Rotation": { + "x": 0.0, + "y": 195.8384, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b498", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b498", + "_tpl": "5aa2ba46e5b5b000137b758d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_zone (241) [9dd549ba-1f1a-4fa2-a429-159803b6d183]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -24.8927, - "y": 37.66981, - "z": -72.25073 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b4dc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b4dc", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "arm_cloth_head (25) [45a0bc9e-c9da-4e11-ac8c-890c9d91446b]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 77.42444, + "y": 29.1228065, + "z": -20.1743164 + }, + "Rotation": { + "x": 0.0, + "y": 145.35553, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b49a", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b49a", + "_tpl": "5aa2ba46e5b5b000137b758d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_zone (245) [d25c199e-a149-48d2-ba94-10f6c44699a9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -37.2330322, - "y": 37.8908119, - "z": -99.20679 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b4de", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b4de", - "_tpl": "57513f07245977207e26a311", - "upd": { - "StackObjectsCount": 1 + { + "Id": "arm_cloth_head (6) [2d1623a0-377b-46f4-aa98-3a20e4ad2858]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 35.0723877, + "y": 28.7308083, + "z": -182.46936 + }, + "Rotation": { + "x": 0.0, + "y": 41.7954254, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b49c", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b49c", + "_tpl": "5aa2ba19e5b5b00014028f4e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_zone (249) [8eb90bd6-11f5-4873-9273-d525c8f2ebc3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -30.8964844, - "y": 37.66981, - "z": -93.07471 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b4e0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b4e0", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "gun_akm (6) [823f31b4-8a56-40d6-959f-ae269a773eba]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -173.120178, - "y": 28.30381, - "z": -60.2845078 - }, - "Rotation": { - "x": 2.561321e-6, - "y": 172.799225, - "z": 95.26099 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b4e1", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b4e1", - "_tpl": "59d6088586f774275f37482f" - }, - { - "_id": "66cbb4da1ae71bfb1007b4e2", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "66cbb4da1ae71bfb1007b4e1", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb4da1ae71bfb1007b4e3", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "66cbb4da1ae71bfb1007b4e2", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4da1ae71bfb1007b4e4", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "66cbb4da1ae71bfb1007b4e1", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4da1ae71bfb1007b4e5", - "_tpl": "59e62cc886f77440d40b52a1", - "parentId": "66cbb4da1ae71bfb1007b4e1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4da1ae71bfb1007b4e6", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "66cbb4da1ae71bfb1007b4e1", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4da1ae71bfb1007b4e7", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "66cbb4da1ae71bfb1007b4e1", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4da1ae71bfb1007b4e8", - "_tpl": "59d6514b86f774171a068a08", - "parentId": "66cbb4da1ae71bfb1007b4e1", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4da1ae71bfb1007b4e9", - "_tpl": "59d625f086f774661516605d", - "parentId": "66cbb4da1ae71bfb1007b4e1", - "slotId": "mod_magazine" + { + "Id": "arm_cloth_head (7) [0eb6a930-3b70-4639-b995-871bf411a5f0]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 32.9294434, + "y": 28.7368126, + "z": -183.005371 + }, + "Rotation": { + "x": 0.0, + "y": 7.548645, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b4ea", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb4da1ae71bfb1007b4e9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10.0 - } - } - ] - }, - { - "Id": "gun_m4a1_preset (4) [fddfcd06-eb9f-495c-b602-3b7a2adf6376]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -59.81566, - "y": 22.28881, - "z": -293.3288 - }, - "Rotation": { - "x": 272.453674, - "y": 26.30637, - "z": 338.0702 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b4eb", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b4eb", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "FireMode": { - "FireMode": "single" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b49e", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b49e", + "_tpl": "5aa2b9ede5b5b000137b758b", + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "arm_cloth_head (9) [3bc2ba0e-ed3b-479c-923d-34896cabbc51]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -28.85962, + "y": 28.7468071, + "z": 32.3776855 + }, + "Rotation": { + "x": 0.0, + "y": 180.633118, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b4ec", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "66cbb4da1ae71bfb1007b4eb", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4da1ae71bfb1007b4ed", - "_tpl": "5d1340b3d7ad1a0b52682ed7", - "parentId": "66cbb4da1ae71bfb1007b4eb", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4da1ae71bfb1007b4fb", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbb4da1ae71bfb1007b4ed", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 23.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4a0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4a0", + "_tpl": "5aa2ba19e5b5b00014028f4e", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb4da1ae71bfb1007b4ee", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "66cbb4da1ae71bfb1007b4eb", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4da1ae71bfb1007b4ef", - "_tpl": "5c0a2cec0db834001b7ce47d", - "parentId": "66cbb4da1ae71bfb1007b4ee", - "slotId": "mod_scope" - }, - { - "_id": "66cbb4da1ae71bfb1007b4f0", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "66cbb4da1ae71bfb1007b4ee", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4da1ae71bfb1007b4f1", - "_tpl": "5ea172e498dacb342978818e", - "parentId": "66cbb4da1ae71bfb1007b4f0", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4da1ae71bfb1007b4f2", - "_tpl": "5ea17bbc09aa976f2e7a51cd", - "parentId": "66cbb4da1ae71bfb1007b4f1", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4da1ae71bfb1007b4f3", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "66cbb4da1ae71bfb1007b4f0", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb4da1ae71bfb1007b4f4", - "_tpl": "5ea16ada09aa976f2e7a51be", - "parentId": "66cbb4da1ae71bfb1007b4ee", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb4da1ae71bfb1007b4f5", - "_tpl": "5c06595c0db834001a66af6c", - "parentId": "66cbb4da1ae71bfb1007b4f4", - "slotId": "mod_tactical_000" - }, - { - "_id": "66cbb4da1ae71bfb1007b4f6", - "_tpl": "5c17804b2e2216152006c02f", - "parentId": "66cbb4da1ae71bfb1007b4f4", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb4da1ae71bfb1007b4f7", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "66cbb4da1ae71bfb1007b4ee", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4da1ae71bfb1007b4f8", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "66cbb4da1ae71bfb1007b4eb", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4da1ae71bfb1007b4f9", - "_tpl": "5ae30c9a5acfc408fb139a03", - "parentId": "66cbb4da1ae71bfb1007b4f8", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb4da1ae71bfb1007b4fa", - "_tpl": "5ea16d4d5aad6446a939753d", - "parentId": "66cbb4da1ae71bfb1007b4eb", - "slotId": "mod_charge" - } - ] - }, - { - "Id": "gun_nato (1) [7328295c-7915-4c22-8a5c-85c8a5e4e346]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -11.3447571, - "y": 28.7768116, - "z": -15.931057 - }, - "Rotation": { - "x": 0.0, - "y": 89.76005, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b4fc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b4fc", - "_tpl": "6183afd850224f204c1da514", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" + { + "Id": "arm_cloth_head [9c758bc6-b221-4b83-86ba-340ceda4da2f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 62.2803955, + "y": 27.8178062, + "z": -195.134277 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4a2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4a2", + "_tpl": "5aa2b89be5b5b0001569311f", + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66cbb4da1ae71bfb1007b4fd", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "66cbb4da1ae71bfb1007b4fc", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4da1ae71bfb1007b4fe", - "_tpl": "618168dc8004cc50514c34fc", - "parentId": "66cbb4da1ae71bfb1007b4fc", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4da1ae71bfb1007b50b", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbb4da1ae71bfb1007b4fe", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18.0 + ] + }, + { + "Id": "armor_all (1) [d2064013-4fd2-4f54-a2f5-a900a3562d49]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -16.80066, + "y": 27.05981, + "z": -41.4243164 + }, + "Rotation": { + "x": 279.033325, + "y": 0.9554168, + "z": 359.861084 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4a3", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4a3", + "_tpl": "609e8540d5c319764c2bc2e9" + }, + { + "_id": "66cbb4d91ae71bfb1007b4a4", + "_tpl": "6572e5221b5bc1185508c24f", + "parentId": "66cbb4d91ae71bfb1007b4a3", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbb4d91ae71bfb1007b4a5", + "_tpl": "6572e52f73c0eabb700109a0", + "parentId": "66cbb4d91ae71bfb1007b4a3", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbb4d91ae71bfb1007b4a6", + "_tpl": "6572e53c73c0eabb700109a4", + "parentId": "66cbb4d91ae71bfb1007b4a3", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbb4d91ae71bfb1007b4a7", + "_tpl": "6572e54873c0eabb700109a8", + "parentId": "66cbb4d91ae71bfb1007b4a3", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbb4d91ae71bfb1007b4a8", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "66cbb4d91ae71bfb1007b4a3", + "slotId": "Front_plate" + }, + { + "_id": "66cbb4d91ae71bfb1007b4a9", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "66cbb4d91ae71bfb1007b4a3", + "slotId": "Back_plate" } - }, - { - "_id": "66cbb4da1ae71bfb1007b4ff", - "_tpl": "6165adcdd3a39d50044c120f", - "parentId": "66cbb4da1ae71bfb1007b4fc", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4da1ae71bfb1007b500", - "_tpl": "6183b084a112697a4b3a6e6c", - "parentId": "66cbb4da1ae71bfb1007b4ff", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb4da1ae71bfb1007b501", - "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "66cbb4da1ae71bfb1007b500", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4da1ae71bfb1007b502", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "66cbb4da1ae71bfb1007b500", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb4da1ae71bfb1007b503", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "66cbb4da1ae71bfb1007b4ff", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4da1ae71bfb1007b504", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "66cbb4da1ae71bfb1007b4ff", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbb4da1ae71bfb1007b505", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "66cbb4da1ae71bfb1007b4ff", - "slotId": "mod_mount_001" - }, - { - "_id": "66cbb4da1ae71bfb1007b506", - "_tpl": "61816734d8e3106d9806c1f3", - "parentId": "66cbb4da1ae71bfb1007b4fc", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4da1ae71bfb1007b507", - "_tpl": "618167528004cc50514c34f9", - "parentId": "66cbb4da1ae71bfb1007b506", - "slotId": "mod_stock_001" - }, - { - "_id": "66cbb4da1ae71bfb1007b508", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "66cbb4da1ae71bfb1007b507", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4da1ae71bfb1007b509", - "_tpl": "618167441cb55961fa0fdc71", - "parentId": "66cbb4da1ae71bfb1007b506", - "slotId": "mod_stock_002" - }, - { - "_id": "66cbb4da1ae71bfb1007b50a", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "66cbb4da1ae71bfb1007b4fc", - "slotId": "mod_charge" - } - ] - }, - { - "Id": "gun_preset_sv98 [b0ed6f5c-7e20-4cfd-9977-d561e342ed16]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -23.5145111, - "y": 28.81681, - "z": -27.5633965 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b50c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b50c", - "_tpl": "55801eed4bdc2d89578b4588", - "upd": { - "FireMode": { - "FireMode": "single" - } + { + "Id": "armor_all [4c260a02-4d96-41b2-9380-8b5eaa573e3f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -11.7446289, + "y": 27.0658073, + "z": -40.5813 + }, + "Rotation": { + "x": 276.950562, + "y": 272.5888, + "z": 359.574066 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4aa", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4aa", + "_tpl": "62a09d79de7ac81993580530" + }, + { + "_id": "66cbb4d91ae71bfb1007b4ab", + "_tpl": "6572e048371fccfbf909d5d8", + "parentId": "66cbb4d91ae71bfb1007b4aa", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbb4d91ae71bfb1007b4ac", + "_tpl": "6572e059371fccfbf909d5dc", + "parentId": "66cbb4d91ae71bfb1007b4aa", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbb4d91ae71bfb1007b4ad", + "_tpl": "6572e06219b4b511af012f89", + "parentId": "66cbb4d91ae71bfb1007b4aa", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbb4d91ae71bfb1007b4ae", + "_tpl": "6572e06819b4b511af012f8d", + "parentId": "66cbb4d91ae71bfb1007b4aa", + "slotId": "soft_armor_right" } + ] + }, + { + "Id": "fast_food(small) (216) [bfa22f41-55a2-47f3-ae92-e5f972a10122]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 89.3145752, + "y": 37.5808067, + "z": -34.67859 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b50d", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "parentId": "66cbb4da1ae71bfb1007b50c", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb4da1ae71bfb1007b50e", - "_tpl": "5887431f2459777e1612938f", - "parentId": "66cbb4da1ae71bfb1007b50d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4b0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4b0", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb4da1ae71bfb1007b50f", - "_tpl": "5c0517910db83400232ffee5", - "parentId": "66cbb4da1ae71bfb1007b50c", - "slotId": "mod_scope" - }, - { - "_id": "66cbb4da1ae71bfb1007b510", - "_tpl": "56083e1b4bdc2dc8488b4572", - "parentId": "66cbb4da1ae71bfb1007b50c", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4da1ae71bfb1007b511", - "_tpl": "5c4eec9b2e2216398b5aaba2", - "parentId": "66cbb4da1ae71bfb1007b50c", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4da1ae71bfb1007b512", - "_tpl": "5c4eecc32e221602b412b440", - "parentId": "66cbb4da1ae71bfb1007b511", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4da1ae71bfb1007b513", - "_tpl": "61faa91878830f069b6b7967", - "parentId": "66cbb4da1ae71bfb1007b50c", - "slotId": "mod_stock" - } - ] - }, - { - "Id": "GunsafeSpawn 1 (2)(Clone) [af17a8e7-ea75-412f-8457-75ec4a6352b6]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -37.8518829, - "y": 27.6628075, - "z": 1.178 - }, - "Rotation": { - "x": 270.019775, - "y": 38.9584274, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b515", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b515", - "_tpl": "576a5ed62459771e9c2096cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "fast_food(small) (224) [0030122d-cdad-4718-8f2a-12703ac4a988]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 103.318848, + "y": 37.6508064, + "z": -41.3675537 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b516", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbb4da1ae71bfb1007b515", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4b2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4b2", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "GunsafeSpawn 4(Clone) [25e7ae7a-8401-4fc2-a2b7-300fee6f24ba]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -23.3151741, - "y": 27.42036, - "z": -39.0144119 - }, - "Rotation": { - "x": 270.0, - "y": 92.05776, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b517", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b517", - "_tpl": "59f9cabd86f7743a10721f46" - }, - { - "_id": "66cbb4da1ae71bfb1007b518", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb4da1ae71bfb1007b517", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb4da1ae71bfb1007b519", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb4da1ae71bfb1007b517", - "slotId": "mod_stock" - }, - { - "_id": "66cbb4da1ae71bfb1007b51a", - "_tpl": "5998529a86f774647f44f421", - "parentId": "66cbb4da1ae71bfb1007b517", - "slotId": "mod_magazine" + { + "Id": "fast_food(small) (226) [a0fea6ad-d2e9-4b28-afa3-906940d97f4c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 24.93628, + "y": 37.9408073, + "z": -39.69568 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b520", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb4da1ae71bfb1007b51a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4b4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4b4", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb4da1ae71bfb1007b51b", - "_tpl": "5998598e86f7740b3f498a86", - "parentId": "66cbb4da1ae71bfb1007b517", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb4da1ae71bfb1007b51c", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb4da1ae71bfb1007b517", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb4da1ae71bfb1007b51d", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb4da1ae71bfb1007b517", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb4da1ae71bfb1007b51e", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb4da1ae71bfb1007b517", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb4da1ae71bfb1007b51f", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb4da1ae71bfb1007b51e", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "loot_ammo (1) [4fcc304c-32b8-4ddc-9609-8b6ae06dcf42]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.60144, - "y": 28.0228081, - "z": -63.4932861 - }, - "Rotation": { - "x": 0.0, - "y": 29.1808128, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b523", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b523", - "_tpl": "657024011419851aef03e6f4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "fast_food(small) (229) [c753dd89-154c-4c88-988c-41d7cafb3ee1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.5095215, + "y": 37.9408073, + "z": -39.6400146 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b524", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "66cbb4da1ae71bfb1007b523", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4b6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4b6", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo (102) [60910e0f-93a0-4cef-a2ec-e4617b4f0dae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 282.937378, - "y": 22.3348122, - "z": -1.93334961 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b528", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b528", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "fast_food(small) (249) [81c81584-5857-44f0-bcc1-34c4db512ce2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 14.2661133, + "y": 37.2178078, + "z": -29.3088379 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b529", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb4da1ae71bfb1007b528", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4b8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4b8", + "_tpl": "59e358a886f7741776641ac3", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "fast_food(small) (250) [aa63d551-9926-47ae-8af9-eb1233a7e5f8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 10.7874756, + "y": 37.72111, + "z": -24.9283447 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b52a", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb4da1ae71bfb1007b528", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4ba", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4ba", + "_tpl": "5e2af02c86f7746d420957d4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo (15) [2cfae447-ed2e-4533-b209-0a083835b5f2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.94934, - "y": 27.8178062, - "z": 80.9447 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b52e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b52e", - "_tpl": "65702479c5d7d4cb4d07855e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "fast_food(small) (253) [c38a3e0d-bb8a-4584-a58f-2b673b66bec3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 8.937378, + "y": 37.72111, + "z": -25.8707275 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b52f", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66cbb4da1ae71bfb1007b52e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4bc", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4bc", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "fast_food(small) (257) [0c858e9c-8660-4fcc-b280-f840514ad172]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -35.4023438, + "y": 37.43881, + "z": -94.70117 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b530", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66cbb4da1ae71bfb1007b52e", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4be", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4be", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo (17) [a75c480f-33bf-4b18-b9e0-241fefd92abc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -51.6806641, - "y": 28.3028069, - "z": -23.1022949 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b533", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b533", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food(small) (263) [f92a4727-43fb-40ec-84b3-288e991564eb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 5.395996, + "y": 37.8768044, + "z": -39.821167 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4c0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4c0", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "fast_food(small) (265) [2f6f8ea5-6d10-4bb4-b1f8-350b8cf02a76]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.960815, + "y": 37.8768044, + "z": -31.9998779 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b534", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66cbb4da1ae71bfb1007b533", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4c2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4c2", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo (23) [c7979eda-c7e2-4251-a6a9-27365c0a24c7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 71.4483643, - "y": 27.9008064, - "z": -6.14831543 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b537", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b537", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food(small) (265) [fb634e70-6573-4c79-bf23-64acebefdef6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -46.026, + "y": 38.06181, + "z": -102.781006 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4c4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4c4", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "fast_food(small) (268) [b28bb77d-d35e-4f47-be4c-ca2d36ef56e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.927734, + "y": 37.8768044, + "z": -36.7047119 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b538", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66cbb4da1ae71bfb1007b537", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4c6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4c6", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo (27) [6a3a8a32-0d19-4f8a-ab2c-b6b89435c525]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -71.56763, - "y": 27.8488121, - "z": -3.47937 - }, - "Rotation": { - "x": 0.0, - "y": 327.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b53b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b53b", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food(small) (269) [ad83e534-80a1-4eea-8862-3f70fb9dd881]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.927612, + "y": 37.8768044, + "z": -36.3132324 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4c8", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4c8", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "fast_food(small) (269) [c04c7d1a-130f-41f5-8b5a-0d6d547c296a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -29.05188, + "y": 37.9028053, + "z": -9.310669 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b53c", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb4da1ae71bfb1007b53b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4ca", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4ca", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo (33) [4fcd684d-5230-4223-aa3e-aaedfcce6fe1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -94.2616, - "y": 22.50481, - "z": -293.9093 - }, - "Rotation": { - "x": 0.0, - "y": 296.999939, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b53f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b53f", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food(small) (281) [9e1815e0-e9a0-4d94-a257-32ad2516a27a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -15.5236816, + "y": 37.8768044, + "z": -26.15686 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4cc", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4cc", + "_tpl": "57513f07245977207e26a311", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "fast_food_and_technikal(small) (214) [8d582e60-664f-4643-ac2d-cdb0d801376a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.16809, + "y": 37.22981, + "z": -30.8432617 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b540", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbb4da1ae71bfb1007b53f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4ce", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4ce", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo (4) [a8887d34-a7c9-42b3-8b0d-e3d065670412]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 76.2243652, - "y": 22.2238121, - "z": 77.46069 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b544", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b544", - "_tpl": "657024a91419851aef03e70c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food_cafe(small) (228) [98fadbb2-d119-4cac-8e98-e9aff1b3310a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 90.15881, + "y": 37.35081, + "z": -57.1204834 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4d0", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4d0", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "fast_food_cafe(small) (231) [cb023bd9-2294-412f-bb76-0f13e37d5228]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 90.1600342, + "y": 37.35081, + "z": -55.03064 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b545", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "66cbb4da1ae71bfb1007b544", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4d2", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4d2", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "fast_food_cafe(small) (235) [cb5da2ba-5a4f-4a4c-ada6-14d95fdd3873]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.66882, + "y": 36.9428062, + "z": -57.67578 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b546", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "66cbb4da1ae71bfb1007b544", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4d4", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4d4", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo (61) [ed812a42-7bd7-467c-81a3-7fc32be745e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -167.773621, - "y": 27.3978081, - "z": -35.5163574 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b549", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b549", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food_cafe(small) (239) [c539e986-2125-4614-95be-abb3859fb868]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 90.1600342, + "y": 36.9428062, + "z": -54.9032 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4d91ae71bfb1007b4d6", + "Items": [ + { + "_id": "66cbb4d91ae71bfb1007b4d6", + "_tpl": "575146b724597720a27126d5", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food_zone (233) [da38d3d3-93bf-4781-9f9a-20e2b997d6bc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.64026, + "y": 37.66981, + "z": -94.6376953 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b54a", - "_tpl": "5a269f97c4a282000b151807", - "parentId": "66cbb4da1ae71bfb1007b549", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b4d8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b4d8", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo (7) [3d6404ee-1db4-4358-b637-c1ab0b2a57fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 54.8144531, - "y": 22.9578133, - "z": 190.942627 - }, - "Rotation": { - "x": 0.0, - "y": 240.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b54d", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b54d", - "_tpl": "657026251419851aef03e72a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (237) [65e80f87-82cb-40e7-9770-ce7a6355fa2a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 40.83618, + "y": 37.66981, + "z": -145.6748 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b4da", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b4da", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food_zone (241) [9dd549ba-1f1a-4fa2-a429-159803b6d183]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -24.8927, + "y": 37.66981, + "z": -72.25073 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b54e", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbb4da1ae71bfb1007b54d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b4dc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b4dc", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo (75) [de4619ef-a83c-4aa2-89ca-6ad98f285482]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.557373, - "y": 28.1688118, - "z": -11.5252686 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b551", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b551", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (245) [d25c199e-a149-48d2-ba94-10f6c44699a9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -37.2330322, + "y": 37.8908119, + "z": -99.20679 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b4de", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b4de", + "_tpl": "57513f07245977207e26a311", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food_zone (249) [8eb90bd6-11f5-4873-9273-d525c8f2ebc3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -30.8964844, + "y": 37.66981, + "z": -93.07471 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b552", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb4da1ae71bfb1007b551", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b4e0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b4e0", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "gun_akm (6) [823f31b4-8a56-40d6-959f-ae269a773eba]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -173.120178, + "y": 28.30381, + "z": -60.2845078 + }, + "Rotation": { + "x": 2.561321e-6, + "y": 172.799225, + "z": 95.26099 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b4e1", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b4e1", + "_tpl": "59d6088586f774275f37482f" + }, + { + "_id": "66cbb4da1ae71bfb1007b4e2", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "66cbb4da1ae71bfb1007b4e1", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4da1ae71bfb1007b4e3", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "66cbb4da1ae71bfb1007b4e2", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4da1ae71bfb1007b4e4", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "66cbb4da1ae71bfb1007b4e1", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4da1ae71bfb1007b4e5", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "66cbb4da1ae71bfb1007b4e1", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4da1ae71bfb1007b4e6", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "66cbb4da1ae71bfb1007b4e1", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4da1ae71bfb1007b4e7", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "66cbb4da1ae71bfb1007b4e1", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4da1ae71bfb1007b4e8", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "66cbb4da1ae71bfb1007b4e1", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4da1ae71bfb1007b4e9", + "_tpl": "59d625f086f774661516605d", + "parentId": "66cbb4da1ae71bfb1007b4e1", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4da1ae71bfb1007b4ea", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb4da1ae71bfb1007b4e9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10.0 + } } - } - ] - }, - { - "Id": "loot_ammo (76) [7d88754f-510e-4097-8e8b-ec367225ee50]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.4654541, - "y": 28.01781, - "z": -11.4593506 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b555", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b555", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb4da1ae71bfb1007b556", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbb4da1ae71bfb1007b555", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + { + "Id": "gun_m4a1_preset (4) [fddfcd06-eb9f-495c-b602-3b7a2adf6376]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -59.81566, + "y": 22.28881, + "z": -293.3288 + }, + "Rotation": { + "x": 272.453674, + "y": 26.30637, + "z": 338.0702 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b4eb", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b4eb", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4da1ae71bfb1007b4ec", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "66cbb4da1ae71bfb1007b4eb", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4da1ae71bfb1007b4ed", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "parentId": "66cbb4da1ae71bfb1007b4eb", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4da1ae71bfb1007b4fb", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbb4da1ae71bfb1007b4ed", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 23.0 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b4ee", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "66cbb4da1ae71bfb1007b4eb", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4da1ae71bfb1007b4ef", + "_tpl": "5c0a2cec0db834001b7ce47d", + "parentId": "66cbb4da1ae71bfb1007b4ee", + "slotId": "mod_scope" + }, + { + "_id": "66cbb4da1ae71bfb1007b4f0", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "66cbb4da1ae71bfb1007b4ee", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4da1ae71bfb1007b4f1", + "_tpl": "5ea172e498dacb342978818e", + "parentId": "66cbb4da1ae71bfb1007b4f0", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4da1ae71bfb1007b4f2", + "_tpl": "5ea17bbc09aa976f2e7a51cd", + "parentId": "66cbb4da1ae71bfb1007b4f1", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4da1ae71bfb1007b4f3", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "66cbb4da1ae71bfb1007b4f0", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4da1ae71bfb1007b4f4", + "_tpl": "5ea16ada09aa976f2e7a51be", + "parentId": "66cbb4da1ae71bfb1007b4ee", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb4da1ae71bfb1007b4f5", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "66cbb4da1ae71bfb1007b4f4", + "slotId": "mod_tactical_000" + }, + { + "_id": "66cbb4da1ae71bfb1007b4f6", + "_tpl": "5c17804b2e2216152006c02f", + "parentId": "66cbb4da1ae71bfb1007b4f4", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4da1ae71bfb1007b4f7", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "66cbb4da1ae71bfb1007b4ee", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4da1ae71bfb1007b4f8", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "66cbb4da1ae71bfb1007b4eb", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4da1ae71bfb1007b4f9", + "_tpl": "5ae30c9a5acfc408fb139a03", + "parentId": "66cbb4da1ae71bfb1007b4f8", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb4da1ae71bfb1007b4fa", + "_tpl": "5ea16d4d5aad6446a939753d", + "parentId": "66cbb4da1ae71bfb1007b4eb", + "slotId": "mod_charge" } - } - ] - }, - { - "Id": "loot_ammo (79) [01cf5ba7-ddc5-4d6c-9eb4-82bfdf436c0d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -17.4655762, - "y": 28.19981, - "z": -0.892334 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b559", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b559", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "gun_nato (1) [7328295c-7915-4c22-8a5c-85c8a5e4e346]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -11.3447571, + "y": 28.7768116, + "z": -15.931057 + }, + "Rotation": { + "x": 0.0, + "y": 89.76005, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b55a", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66cbb4da1ae71bfb1007b559", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b4fc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b4fc", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4da1ae71bfb1007b4fd", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "66cbb4da1ae71bfb1007b4fc", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4da1ae71bfb1007b4fe", + "_tpl": "618168dc8004cc50514c34fc", + "parentId": "66cbb4da1ae71bfb1007b4fc", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4da1ae71bfb1007b50b", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbb4da1ae71bfb1007b4fe", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18.0 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b4ff", + "_tpl": "6165adcdd3a39d50044c120f", + "parentId": "66cbb4da1ae71bfb1007b4fc", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4da1ae71bfb1007b500", + "_tpl": "6183b084a112697a4b3a6e6c", + "parentId": "66cbb4da1ae71bfb1007b4ff", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb4da1ae71bfb1007b501", + "_tpl": "618178aa1cb55961fa0fdc80", + "parentId": "66cbb4da1ae71bfb1007b500", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4da1ae71bfb1007b502", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "66cbb4da1ae71bfb1007b500", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb4da1ae71bfb1007b503", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "66cbb4da1ae71bfb1007b4ff", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4da1ae71bfb1007b504", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "66cbb4da1ae71bfb1007b4ff", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbb4da1ae71bfb1007b505", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "66cbb4da1ae71bfb1007b4ff", + "slotId": "mod_mount_001" + }, + { + "_id": "66cbb4da1ae71bfb1007b506", + "_tpl": "61816734d8e3106d9806c1f3", + "parentId": "66cbb4da1ae71bfb1007b4fc", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4da1ae71bfb1007b507", + "_tpl": "618167528004cc50514c34f9", + "parentId": "66cbb4da1ae71bfb1007b506", + "slotId": "mod_stock_001" + }, + { + "_id": "66cbb4da1ae71bfb1007b508", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "66cbb4da1ae71bfb1007b507", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4da1ae71bfb1007b509", + "_tpl": "618167441cb55961fa0fdc71", + "parentId": "66cbb4da1ae71bfb1007b506", + "slotId": "mod_stock_002" + }, + { + "_id": "66cbb4da1ae71bfb1007b50a", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "66cbb4da1ae71bfb1007b4fc", + "slotId": "mod_charge" } - } - ] - }, - { - "Id": "loot_ammo (8) [68541ab0-0ac2-4746-98c0-135c3a92c132]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 55.5964355, - "y": 22.9578133, - "z": 190.565674 - }, - "Rotation": { - "x": 0.0, - "y": 240.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b55d", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b55d", - "_tpl": "65702614c5d7d4cb4d07858b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "gun_preset_sv98 [b0ed6f5c-7e20-4cfd-9977-d561e342ed16]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -23.5145111, + "y": 28.81681, + "z": -27.5633965 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b55e", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb4da1ae71bfb1007b55d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b50c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b50c", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb4da1ae71bfb1007b50d", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "66cbb4da1ae71bfb1007b50c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4da1ae71bfb1007b50e", + "_tpl": "5887431f2459777e1612938f", + "parentId": "66cbb4da1ae71bfb1007b50d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b50f", + "_tpl": "5c0517910db83400232ffee5", + "parentId": "66cbb4da1ae71bfb1007b50c", + "slotId": "mod_scope" + }, + { + "_id": "66cbb4da1ae71bfb1007b510", + "_tpl": "56083e1b4bdc2dc8488b4572", + "parentId": "66cbb4da1ae71bfb1007b50c", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4da1ae71bfb1007b511", + "_tpl": "5c4eec9b2e2216398b5aaba2", + "parentId": "66cbb4da1ae71bfb1007b50c", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4da1ae71bfb1007b512", + "_tpl": "5c4eecc32e221602b412b440", + "parentId": "66cbb4da1ae71bfb1007b511", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4da1ae71bfb1007b513", + "_tpl": "61faa91878830f069b6b7967", + "parentId": "66cbb4da1ae71bfb1007b50c", + "slotId": "mod_stock" } - } - ] - }, - { - "Id": "loot_ammo (82) [8000c7d5-9345-407c-905e-86b68fe22625]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -13.70166, - "y": 28.1088066, - "z": -18.9202881 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b561", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b561", - "_tpl": "64aceab0426a303417060654", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "GunsafeSpawn 1 (2)(Clone) [af17a8e7-ea75-412f-8457-75ec4a6352b6]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -37.8518829, + "y": 27.6628075, + "z": 1.178 + }, + "Rotation": { + "x": 270.019775, + "y": 38.9584274, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b562", - "_tpl": "64b8f7b5389d7ffd620ccba2", - "parentId": "66cbb4da1ae71bfb1007b561", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b515", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b515", + "_tpl": "576a5ed62459771e9c2096cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b516", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbb4da1ae71bfb1007b515", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4 + } } - } - ] - }, - { - "Id": "loot_ammo (89) [6b991cdc-e6bb-46d8-a3c5-85a206e0c028]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 48.4423828, - "y": 37.3758125, - "z": -46.0803223 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b565", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b565", - "_tpl": "657025a4bfc87b3a34093250", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "GunsafeSpawn 4(Clone) [25e7ae7a-8401-4fc2-a2b7-300fee6f24ba]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -23.3151741, + "y": 27.42036, + "z": -39.0144119 + }, + "Rotation": { + "x": 270.0, + "y": 92.05776, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b566", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "66cbb4da1ae71bfb1007b565", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b517", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b517", + "_tpl": "59f9cabd86f7743a10721f46" + }, + { + "_id": "66cbb4da1ae71bfb1007b518", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb4da1ae71bfb1007b517", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb4da1ae71bfb1007b519", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb4da1ae71bfb1007b517", + "slotId": "mod_stock" + }, + { + "_id": "66cbb4da1ae71bfb1007b51a", + "_tpl": "5998529a86f774647f44f421", + "parentId": "66cbb4da1ae71bfb1007b517", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb4da1ae71bfb1007b520", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb4da1ae71bfb1007b51a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b51b", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "66cbb4da1ae71bfb1007b517", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb4da1ae71bfb1007b51c", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb4da1ae71bfb1007b517", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb4da1ae71bfb1007b51d", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb4da1ae71bfb1007b517", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb4da1ae71bfb1007b51e", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb4da1ae71bfb1007b517", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb4da1ae71bfb1007b51f", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb4da1ae71bfb1007b51e", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "loot_ammo_rare (10) [7791cb00-ecc2-4547-b911-3b767da11425]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -20.1186523, - "y": 21.94981, - "z": 145.313721 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b569", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b569", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo (1) [4fcc304c-32b8-4ddc-9609-8b6ae06dcf42]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.60144, + "y": 28.0228081, + "z": -63.4932861 + }, + "Rotation": { + "x": 0.0, + "y": 29.1808128, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b56a", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbb4da1ae71bfb1007b569", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b523", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b523", + "_tpl": "657024011419851aef03e6f4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b524", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "66cbb4da1ae71bfb1007b523", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_ammo_rare (20) [5e28cea2-4b21-4ec9-be61-d8b9f46ee899]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -19.4875488, - "y": 27.28181, - "z": 7.27063 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b56d", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b56d", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo (102) [60910e0f-93a0-4cef-a2ec-e4617b4f0dae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 282.937378, + "y": 22.3348122, + "z": -1.93334961 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b56e", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbb4da1ae71bfb1007b56d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b528", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b528", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b529", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb4da1ae71bfb1007b528", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b52a", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb4da1ae71bfb1007b528", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_ammo_rare (24) [f0b34681-ef91-44d1-85a2-a7f10425d33b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -13.7205811, - "y": 27.8498116, - "z": 4.35168457 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b571", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b571", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo (15) [2cfae447-ed2e-4533-b209-0a083835b5f2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.94934, + "y": 27.8178062, + "z": 80.9447 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b572", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb4da1ae71bfb1007b571", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b52e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b52e", + "_tpl": "65702479c5d7d4cb4d07855e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b52f", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66cbb4da1ae71bfb1007b52e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b530", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66cbb4da1ae71bfb1007b52e", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_ammo_rare (5) [23bad3a3-8bf9-48ae-924a-16dcd4e09416]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 108.290405, - "y": 22.42081, - "z": -60.65332 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b575", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b575", - "_tpl": "657024d8c5d7d4cb4d078567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo (17) [a75c480f-33bf-4b18-b9e0-241fefd92abc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -51.6806641, + "y": 28.3028069, + "z": -23.1022949 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b576", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb4da1ae71bfb1007b575", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "loot_auto_stuff_akum [3067a983-99f1-4f65-a45c-d49c7e3e9262]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -154.827576, - "y": 27.9158134, - "z": 19.5876465 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b578", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b578", - "_tpl": "5733279d245977289b77ec24", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b533", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b533", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b534", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66cbb4da1ae71bfb1007b533", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_auto_stuff_akum [d68b0c2d-e0df-4045-bd6d-c079d36136c0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -55.0476074, - "y": 28.661808, - "z": 192.09668 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b57a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b57a", - "_tpl": "5733279d245977289b77ec24", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_book_osnovu [30a2adf6-f355-4f90-9b1d-5215e6e0403f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -31.44458, - "y": 27.5668068, - "z": -136.191284 - }, - "Rotation": { - "x": 81.42493, - "y": 338.5908, - "z": 344.927856 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b57c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b57c", - "_tpl": "5ae9a4fc86f7746e381e1753", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (23) [c7979eda-c7e2-4251-a6a9-27365c0a24c7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 71.4483643, + "y": 27.9008064, + "z": -6.14831543 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b537", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b537", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b538", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66cbb4da1ae71bfb1007b537", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_book_venskiy [f63598e7-ff72-4757-82e7-64436142ed41]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 20.2713623, - "y": 36.60581, - "z": -4.425293 - }, - "Rotation": { - "x": 4.094518, - "y": 47.09365, - "z": 2.06513071 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b57e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b57e", - "_tpl": "5ae9a3f586f7740aab00e4e6", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_ammo (27) [6a3a8a32-0d19-4f8a-ab2c-b6b89435c525]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -71.56763, + "y": 27.8488121, + "z": -3.47937 + }, + "Rotation": { + "x": 0.0, + "y": 327.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b53b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b53b", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b53c", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb4da1ae71bfb1007b53b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_building (57) [06affb73-d2ea-4c61-bdbc-9775cc85db11]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.5716553, - "y": 28.11481, - "z": 73.206665 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b580", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b580", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (33) [4fcd684d-5230-4223-aa3e-aaedfcce6fe1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -94.2616, + "y": 22.50481, + "z": -293.9093 + }, + "Rotation": { + "x": 0.0, + "y": 296.999939, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b53f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b53f", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b540", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbb4da1ae71bfb1007b53f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_building (61) [95cede0e-5ce0-4471-9c8a-ce3111971b9b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 4.44042969, - "y": 28.0588112, - "z": -30.33435 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b582", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b582", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (4) [a8887d34-a7c9-42b3-8b0d-e3d065670412]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 76.2243652, + "y": 22.2238121, + "z": 77.46069 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b544", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b544", + "_tpl": "657024a91419851aef03e70c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b545", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "66cbb4da1ae71bfb1007b544", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b546", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "66cbb4da1ae71bfb1007b544", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_building (69) [bd2cdffd-589e-4e17-bd5d-d56dd2ee1218]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 51.59436, - "y": 37.7178078, - "z": 19.23462 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b584", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b584", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (61) [ed812a42-7bd7-467c-81a3-7fc32be745e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -167.773621, + "y": 27.3978081, + "z": -35.5163574 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b549", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b549", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b54a", + "_tpl": "5a269f97c4a282000b151807", + "parentId": "66cbb4da1ae71bfb1007b549", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_building (70) [e181876a-6c20-4b81-9fb3-d671665a04e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 53.5404053, - "y": 37.8288078, - "z": 19.1036377 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b586", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b586", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (7) [3d6404ee-1db4-4358-b637-c1ab0b2a57fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 54.8144531, + "y": 22.9578133, + "z": 190.942627 + }, + "Rotation": { + "x": 0.0, + "y": 240.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b54d", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b54d", + "_tpl": "657026251419851aef03e72a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b54e", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbb4da1ae71bfb1007b54d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_building (77) [1ea4efd7-a851-4775-864f-19380df7d82d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 51.51538, - "y": 37.7318077, - "z": -150.622314 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b588", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b588", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (75) [de4619ef-a83c-4aa2-89ca-6ad98f285482]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.557373, + "y": 28.1688118, + "z": -11.5252686 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b551", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b551", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b552", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb4da1ae71bfb1007b551", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_building (80) [76300d42-1c9f-49a6-a297-c309470eeecd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.2644043, - "y": 37.5818062, - "z": 13.4116211 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b58a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b58a", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (76) [7d88754f-510e-4097-8e8b-ec367225ee50]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.4654541, + "y": 28.01781, + "z": -11.4593506 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b555", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b555", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b556", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbb4da1ae71bfb1007b555", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_building_mater (3) [cff0e7d0-b52f-42a9-8511-d8435092e640]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.2827682, - "y": 28.3826752, - "z": 71.964 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b58c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b58c", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (79) [01cf5ba7-ddc5-4d6c-9eb4-82bfdf436c0d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -17.4655762, + "y": 28.19981, + "z": -0.892334 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b559", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b559", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b55a", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66cbb4da1ae71bfb1007b559", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_building_mater (7) [885c78bd-6638-4625-8e99-28a85ef92d8e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 41.89277, - "y": 28.3226757, - "z": 67.20999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b58e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b58e", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (8) [68541ab0-0ac2-4746-98c0-135c3a92c132]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 55.5964355, + "y": 22.9578133, + "z": 190.565674 + }, + "Rotation": { + "x": 0.0, + "y": 240.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b55d", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b55d", + "_tpl": "65702614c5d7d4cb4d07858b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b55e", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb4da1ae71bfb1007b55d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (206) [2829aab4-4f0f-4c2e-b144-7f8ea5d3930b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -112.41333, - "y": 28.3138084, - "z": -63.01062 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b590", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b590", - "_tpl": "57347da92459774491567cf5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (82) [8000c7d5-9345-407c-905e-86b68fe22625]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -13.70166, + "y": 28.1088066, + "z": -18.9202881 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b561", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b561", + "_tpl": "64aceab0426a303417060654", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b562", + "_tpl": "64b8f7b5389d7ffd620ccba2", + "parentId": "66cbb4da1ae71bfb1007b561", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (210) [7d5b75c7-c7bf-49b5-b4ea-6982370dce30]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.341309, - "y": 28.3138084, - "z": -122.189819 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b592", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b592", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo (89) [6b991cdc-e6bb-46d8-a3c5-85a206e0c028]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 48.4423828, + "y": 37.3758125, + "z": -46.0803223 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b565", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b565", + "_tpl": "657025a4bfc87b3a34093250", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b566", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "66cbb4da1ae71bfb1007b565", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (212) [98b1b826-f5e2-4389-9491-af7c92a8ec87]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.911987, - "y": 28.3138084, - "z": -127.057739 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b594", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b594", - "_tpl": "57513f07245977207e26a311", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_rare (10) [7791cb00-ecc2-4547-b911-3b767da11425]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -20.1186523, + "y": 21.94981, + "z": 145.313721 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b569", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b569", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b56a", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbb4da1ae71bfb1007b569", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (221) [67ae2679-8771-4fe8-99ac-e20fe6813c85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -118.333984, - "y": 27.96481, - "z": -131.831421 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b596", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b596", - "_tpl": "57347d8724597744596b4e76", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_rare (20) [5e28cea2-4b21-4ec9-be61-d8b9f46ee899]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -19.4875488, + "y": 27.28181, + "z": 7.27063 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b56d", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b56d", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b56e", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbb4da1ae71bfb1007b56d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (225) [c8ec7db2-d038-4652-9b27-31ff6e8d5da7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -106.59021, - "y": 28.3318062, - "z": -131.53186 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b598", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b598", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_rare (24) [f0b34681-ef91-44d1-85a2-a7f10425d33b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -13.7205811, + "y": 27.8498116, + "z": 4.35168457 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b571", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b571", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b572", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb4da1ae71bfb1007b571", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (228) [20388834-63ee-4834-9162-2a328fe62a49]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.567139, - "y": 27.9828072, - "z": -141.81958 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b59a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b59a", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_rare (5) [23bad3a3-8bf9-48ae-924a-16dcd4e09416]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 108.290405, + "y": 22.42081, + "z": -60.65332 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b575", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b575", + "_tpl": "657024d8c5d7d4cb4d078567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b576", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb4da1ae71bfb1007b575", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (238) [d3104a83-649f-4a18-a400-dc1dbbfff906]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.530762, - "y": 27.9828072, - "z": -149.744873 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b59c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b59c", - "_tpl": "57513f9324597720a7128161", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_auto_stuff_akum [3067a983-99f1-4f65-a45c-d49c7e3e9262]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -154.827576, + "y": 27.9158134, + "z": 19.5876465 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b578", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b578", + "_tpl": "5733279d245977289b77ec24", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (243) [3c694960-a9c6-4ffe-8ee2-5fa09d1aaa09]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.436157, - "y": 27.9828072, - "z": -152.782715 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b59e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b59e", - "_tpl": "5673de654bdc2d180f8b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_auto_stuff_akum [d68b0c2d-e0df-4045-bd6d-c079d36136c0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -55.0476074, + "y": 28.661808, + "z": 192.09668 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b57a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b57a", + "_tpl": "5733279d245977289b77ec24", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (247) [b34366ab-6d1b-47ab-b346-a61bc389f664]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.318481, - "y": 28.3318062, - "z": -155.694092 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5a0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5a0", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_book_osnovu [30a2adf6-f355-4f90-9b1d-5215e6e0403f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -31.44458, + "y": 27.5668068, + "z": -136.191284 + }, + "Rotation": { + "x": 81.42493, + "y": 338.5908, + "z": 344.927856 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b57c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b57c", + "_tpl": "5ae9a4fc86f7746e381e1753", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (272) [31199d33-a791-44a1-9804-810a61500513]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.894409, - "y": 27.6148033, - "z": -151.35437 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5a2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5a2", - "_tpl": "5673de654bdc2d180f8b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_book_venskiy [f63598e7-ff72-4757-82e7-64436142ed41]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 20.2713623, + "y": 36.60581, + "z": -4.425293 + }, + "Rotation": { + "x": 4.094518, + "y": 47.09365, + "z": 2.06513071 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b57e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b57e", + "_tpl": "5ae9a3f586f7740aab00e4e6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (278) [ab656915-8ba9-4a9c-a329-974a94a3add6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.87085, - "y": 27.9828072, - "z": -154.400269 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5a4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5a4", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building (57) [06affb73-d2ea-4c61-bdbc-9775cc85db11]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.5716553, + "y": 28.11481, + "z": 73.206665 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b580", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b580", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (281) [aab3bfb0-fa66-4629-91b8-084d4869e3d8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.938232, - "y": 27.6338081, - "z": -162.456787 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5a6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5a6", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building (61) [95cede0e-5ce0-4471-9c8a-ce3111971b9b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 4.44042969, + "y": 28.0588112, + "z": -30.33435 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b582", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b582", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (287) [36cfb9b8-26ce-482a-9a3a-fdca175a01c7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.841675, - "y": 27.9828072, - "z": -160.596069 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5a8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5a8", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building (69) [bd2cdffd-589e-4e17-bd5d-d56dd2ee1218]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 51.59436, + "y": 37.7178078, + "z": 19.23462 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b584", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b584", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (294) [ea2e4353-87af-48bc-a280-91f3cbf0b771]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.891479, - "y": 28.3168068, - "z": -172.237061 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5aa", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5aa", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building (70) [e181876a-6c20-4b81-9fb3-d671665a04e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 53.5404053, + "y": 37.8288078, + "z": 19.1036377 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b586", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b586", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (303) [4816b749-5080-43a2-882d-6f3cae1d2b1e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.282837, - "y": 27.9828072, - "z": -159.337036 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5ac", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5ac", - "_tpl": "57513f9324597720a7128161", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building (77) [1ea4efd7-a851-4775-864f-19380df7d82d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 51.51538, + "y": 37.7318077, + "z": -150.622314 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b588", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b588", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (321) [b534945b-baee-45b2-9ea5-6ce7c3d0ca80]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.391724, - "y": 27.6338081, - "z": -166.456543 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5ae", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5ae", - "_tpl": "544fb62a4bdc2dfb738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building (80) [76300d42-1c9f-49a6-a297-c309470eeecd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.2644043, + "y": 37.5818062, + "z": 13.4116211 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b58a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b58a", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (330) [f70094b6-84fa-4cc4-8795-e0e7d10fedcb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.429077, - "y": 28.3168068, - "z": -170.42749 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5b0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5b0", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building_mater (3) [cff0e7d0-b52f-42a9-8511-d8435092e640]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.2827682, + "y": 28.3826752, + "z": 71.964 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b58c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b58c", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (343) [890e733f-68fd-41b8-b2e2-87b9c5af9d69]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.713379, - "y": 27.9828072, - "z": -167.710815 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5b2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5b2", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building_mater (7) [885c78bd-6638-4625-8e99-28a85ef92d8e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 41.89277, + "y": 28.3226757, + "z": 67.20999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b58e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b58e", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (351) [8fcd73fe-1502-4e17-a1d8-9e5aae82d41e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.578125, - "y": 27.9828072, - "z": -165.935791 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5b4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5b4", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (206) [2829aab4-4f0f-4c2e-b144-7f8ea5d3930b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -112.41333, + "y": 28.3138084, + "z": -63.01062 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b590", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b590", + "_tpl": "57347da92459774491567cf5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (352) [f92acbea-3972-41f6-ab0e-637206288ef1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.6698, - "y": 27.2758064, - "z": -166.409668 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5b6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5b6", - "_tpl": "544fb62a4bdc2dfb738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (210) [7d5b75c7-c7bf-49b5-b4ea-6982370dce30]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.341309, + "y": 28.3138084, + "z": -122.189819 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b592", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b592", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (356) [ec1e76e3-e5d8-46f8-a289-6efd67a34337]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.722168, - "y": 27.9828072, - "z": -159.332153 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5b8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5b8", - "_tpl": "57513f9324597720a7128161", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (212) [98b1b826-f5e2-4389-9491-af7c92a8ec87]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.911987, + "y": 28.3138084, + "z": -127.057739 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b594", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b594", + "_tpl": "57513f07245977207e26a311", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (361) [cd4b8a00-71fa-4b90-94b3-8f63663bb05a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.602295, - "y": 27.6338081, - "z": -162.585938 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5ba", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5ba", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (221) [67ae2679-8771-4fe8-99ac-e20fe6813c85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -118.333984, + "y": 27.96481, + "z": -131.831421 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b596", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b596", + "_tpl": "57347d8724597744596b4e76", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (366) [971c2253-532d-47cd-bb3f-e49422359b04]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.611694, - "y": 28.3168068, - "z": -161.212891 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5bc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5bc", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (225) [c8ec7db2-d038-4652-9b27-31ff6e8d5da7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -106.59021, + "y": 28.3318062, + "z": -131.53186 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b598", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b598", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (371) [6b72d13e-6167-4092-904b-1c1c49d53068]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.680908, - "y": 27.9828072, - "z": -157.965576 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5be", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5be", - "_tpl": "57513fcc24597720a31c09a6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (228) [20388834-63ee-4834-9162-2a328fe62a49]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.567139, + "y": 27.9828072, + "z": -141.81958 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b59a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b59a", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (392) [b5bb142c-33c8-47e8-a0aa-81d96e1af813]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.115112, - "y": 27.9828072, - "z": -167.9768 - }, - "Rotation": { - "x": 0.0, - "y": 272.946777, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5c0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5c0", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (238) [d3104a83-649f-4a18-a400-dc1dbbfff906]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.530762, + "y": 27.9828072, + "z": -149.744873 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b59c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b59c", + "_tpl": "57513f9324597720a7128161", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (407) [a99e14a2-c6d1-4ac0-b1b5-f19c67de81aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.13147, - "y": 27.9828072, - "z": -162.885986 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5c2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5c2", - "_tpl": "544fb62a4bdc2dfb738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (243) [3c694960-a9c6-4ffe-8ee2-5fa09d1aaa09]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.436157, + "y": 27.9828072, + "z": -152.782715 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b59e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b59e", + "_tpl": "5673de654bdc2d180f8b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (417) [fd77114e-50fc-4290-bc8c-62c821428fef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.174072, - "y": 27.6338081, - "z": -151.669556 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5c4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5c4", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (247) [b34366ab-6d1b-47ab-b346-a61bc389f664]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.318481, + "y": 28.3318062, + "z": -155.694092 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5a0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5a0", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (422) [78297ba3-718d-43dd-ac0d-8bd9f983e962]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.155884, - "y": 28.3168068, - "z": -154.926636 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5c6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5c6", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (272) [31199d33-a791-44a1-9804-810a61500513]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.894409, + "y": 27.6148033, + "z": -151.35437 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5a2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5a2", + "_tpl": "5673de654bdc2d180f8b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (424) [67e2d2c0-3763-4f99-a253-6dad17d39bc7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.127441, - "y": 27.2758064, - "z": -152.858154 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5c8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5c8", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (278) [ab656915-8ba9-4a9c-a329-974a94a3add6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.87085, + "y": 27.9828072, + "z": -154.400269 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5a4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5a4", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (438) [e878ef3f-e6a9-4379-9995-721e45eb70a9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.879883, - "y": 27.6338081, - "z": -157.5708 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5ca", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5ca", - "_tpl": "57513f9324597720a7128161", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (281) [aab3bfb0-fa66-4629-91b8-084d4869e3d8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.938232, + "y": 27.6338081, + "z": -162.456787 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5a6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5a6", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (450) [14cc4cf0-a3a7-4697-90f4-91b434c280ac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.841431, - "y": 27.6338081, - "z": -165.564575 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5cc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5cc", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (287) [36cfb9b8-26ce-482a-9a3a-fdca175a01c7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.841675, + "y": 27.9828072, + "z": -160.596069 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5a8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5a8", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (459) [0421ed44-c2b2-4a04-b6e1-159e8db5afb7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.774536, - "y": 27.998806, - "z": -173.348022 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5ce", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5ce", - "_tpl": "544fb62a4bdc2dfb738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (294) [ea2e4353-87af-48bc-a280-91f3cbf0b771]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.891479, + "y": 28.3168068, + "z": -172.237061 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5aa", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5aa", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (461) [f423b83f-51af-4937-ba33-7c04d3316746]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.80896, - "y": 28.00581, - "z": -172.145508 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5d0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5d0", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (303) [4816b749-5080-43a2-882d-6f3cae1d2b1e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.282837, + "y": 27.9828072, + "z": -159.337036 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5ac", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5ac", + "_tpl": "57513f9324597720a7128161", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (462) [c2588d2a-6e8c-4300-b65e-5b2618f39451]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.7793, - "y": 27.65681, - "z": -172.609863 - }, - "Rotation": { - "x": 0.0, - "y": 91.30322, - "z": 0.0 + ] + }, + { + "Id": "loot_canned_food_drink (321) [b534945b-baee-45b2-9ea5-6ce7c3d0ca80]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.391724, + "y": 27.6338081, + "z": -166.456543 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5ae", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5ae", + "_tpl": "544fb62a4bdc2dfb738b4568", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5d2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5d2", - "_tpl": "57347d8724597744596b4e76", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (330) [f70094b6-84fa-4cc4-8795-e0e7d10fedcb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.429077, + "y": 28.3168068, + "z": -170.42749 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5b0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5b0", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (469) [40923288-1984-4e17-bc1c-5a833b82e749]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -126.676514, - "y": 28.0168037, - "z": -177.917725 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5d4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5d4", - "_tpl": "57513fcc24597720a31c09a6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (343) [890e733f-68fd-41b8-b2e2-87b9c5af9d69]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.713379, + "y": 27.9828072, + "z": -167.710815 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5b2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5b2", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (482) [4fb792b8-7aa2-4181-b287-ac91ac4c7b51]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.6958, - "y": 27.3158073, - "z": -177.980957 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5d6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5d6", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (351) [8fcd73fe-1502-4e17-a1d8-9e5aae82d41e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.578125, + "y": 27.9828072, + "z": -165.935791 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5b4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5b4", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (498) [36541393-9b6a-431a-93f0-ad102917ddd9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -117.424805, - "y": 27.3158073, - "z": -177.992432 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5d8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5d8", - "_tpl": "57347d5f245977448b40fa81", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (352) [f92acbea-3972-41f6-ab0e-637206288ef1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.6698, + "y": 27.2758064, + "z": -166.409668 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5b6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5b6", + "_tpl": "544fb62a4bdc2dfb738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (511) [a589155c-fac4-4c04-b714-85389fd73f9b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -113.529541, - "y": 28.33781, - "z": -177.907471 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5da", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5da", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (356) [ec1e76e3-e5d8-46f8-a289-6efd67a34337]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.722168, + "y": 27.9828072, + "z": -159.332153 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5b8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5b8", + "_tpl": "57513f9324597720a7128161", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (514) [efabaeab-d632-4fdc-a6a8-3f43cbd42a9c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -112.110474, - "y": 27.6648064, - "z": -177.9574 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5dc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5dc", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (361) [cd4b8a00-71fa-4b90-94b3-8f63663bb05a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.602295, + "y": 27.6338081, + "z": -162.585938 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5ba", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5ba", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (516) [72471c7a-c8b4-44ef-a89a-7a5d8b6d7bfa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.792847, - "y": 27.3158073, - "z": -178.010254 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5de", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5de", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (366) [971c2253-532d-47cd-bb3f-e49422359b04]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.611694, + "y": 28.3168068, + "z": -161.212891 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5bc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5bc", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (521) [4ec8be54-7f47-46ac-8728-193554f6aa85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -110.708984, - "y": 28.33781, - "z": -178.000732 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5e0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5e0", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (371) [6b72d13e-6167-4092-904b-1c1c49d53068]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.680908, + "y": 27.9828072, + "z": -157.965576 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5be", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5be", + "_tpl": "57513fcc24597720a31c09a6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (523) [a23381d2-b58b-4c26-b57e-60791ef7cf13]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -110.6958, - "y": 27.3278084, - "z": -177.919556 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5e2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5e2", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (392) [b5bb142c-33c8-47e8-a0aa-81d96e1af813]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.115112, + "y": 27.9828072, + "z": -167.9768 + }, + "Rotation": { + "x": 0.0, + "y": 272.946777, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5c0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5c0", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (527) [e10f7233-fe39-48a2-b706-ee314a233ad7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -108.75061, - "y": 27.998806, - "z": -178.025513 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5e4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5e4", - "_tpl": "57513f9324597720a7128161", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (407) [a99e14a2-c6d1-4ac0-b1b5-f19c67de81aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.13147, + "y": 27.9828072, + "z": -162.885986 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5c2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5c2", + "_tpl": "544fb62a4bdc2dfb738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (535) [2699816c-086b-4d3c-9093-ad261771c106]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -105.746216, - "y": 27.6648064, - "z": -177.956055 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5e6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5e6", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (417) [fd77114e-50fc-4290-bc8c-62c821428fef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.174072, + "y": 27.6338081, + "z": -151.669556 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5c4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5c4", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (537) [6269809a-36df-41b2-bcdf-678b7491b605]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -106.030273, - "y": 27.998806, - "z": -178.025635 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5e8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5e8", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (422) [78297ba3-718d-43dd-ac0d-8bd9f983e962]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.155884, + "y": 28.3168068, + "z": -154.926636 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5c6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5c6", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (540) [3ee5d631-b9fb-4559-b5f8-38228ebfead6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -105.30188, - "y": 27.71381, - "z": -177.983887 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5ea", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5ea", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (424) [67e2d2c0-3763-4f99-a253-6dad17d39bc7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.127441, + "y": 27.2758064, + "z": -152.858154 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5c8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5c8", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (551) [9af8dc9b-3a33-40f1-90bb-548d366341c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -102.509644, - "y": 28.33781, - "z": -178.000366 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5ec", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5ec", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (438) [e878ef3f-e6a9-4379-9995-721e45eb70a9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.879883, + "y": 27.6338081, + "z": -157.5708 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5ca", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5ca", + "_tpl": "57513f9324597720a7128161", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (554) [6048f543-ee1c-428d-8413-b45f491243f7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -101.144775, - "y": 27.6648064, - "z": -177.957153 - }, - "Rotation": { - "x": 0.0, - "y": 178.4625, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5ee", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5ee", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (450) [14cc4cf0-a3a7-4697-90f4-91b434c280ac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.841431, + "y": 27.6338081, + "z": -165.564575 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5cc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5cc", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (567) [ea2a4b3d-9e1e-4609-8c56-6d7f54185568]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.605835, - "y": 27.6148033, - "z": -140.585938 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5f0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5f0", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (459) [0421ed44-c2b2-4a04-b6e1-159e8db5afb7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.774536, + "y": 27.998806, + "z": -173.348022 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5ce", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5ce", + "_tpl": "544fb62a4bdc2dfb738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (568) [d5efe83b-de26-42bc-8b65-22ae1b161fe7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.667236, - "y": 27.9828072, - "z": -139.2334 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5f2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5f2", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (461) [f423b83f-51af-4937-ba33-7c04d3316746]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.80896, + "y": 28.00581, + "z": -172.145508 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5d0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5d0", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (572) [fd3bb0c4-bccd-4383-a401-9c263d9cdd4e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.634766, - "y": 27.6148033, - "z": -141.489868 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5f4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5f4", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (462) [c2588d2a-6e8c-4300-b65e-5b2618f39451]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.7793, + "y": 27.65681, + "z": -172.609863 + }, + "Rotation": { + "x": 0.0, + "y": 91.30322, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5d2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5d2", + "_tpl": "57347d8724597744596b4e76", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (576) [5298ac59-67b9-45ff-98e2-47e224ff49a2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.614868, - "y": 28.3168068, - "z": -144.073486 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5f6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5f6", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (469) [40923288-1984-4e17-bc1c-5a833b82e749]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -126.676514, + "y": 28.0168037, + "z": -177.917725 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5d4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5d4", + "_tpl": "57513fcc24597720a31c09a6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (580) [297a4b26-1522-4586-b4e0-f09f2f826ac7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.6676, - "y": 27.9828072, - "z": -143.873047 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5f8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5f8", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (482) [4fb792b8-7aa2-4181-b287-ac91ac4c7b51]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.6958, + "y": 27.3158073, + "z": -177.980957 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5d6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5d6", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (582) [37c4d17d-ef38-4746-8705-7db3a20af3b5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.61438, - "y": 28.3168068, - "z": -146.4314 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5fa", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5fa", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (498) [36541393-9b6a-431a-93f0-ad102917ddd9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -117.424805, + "y": 27.3158073, + "z": -177.992432 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5d8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5d8", + "_tpl": "57347d5f245977448b40fa81", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (586) [a4dde133-0c11-4f6b-82f7-fc038e2c810c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.667114, - "y": 27.9828072, - "z": -146.231079 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5fc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5fc", - "_tpl": "57347d5f245977448b40fa81", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (511) [a589155c-fac4-4c04-b714-85389fd73f9b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -113.529541, + "y": 28.33781, + "z": -177.907471 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5da", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5da", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (590) [19cecc97-536a-45c8-83ae-29fb8e3427bc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.117188, - "y": 27.6148033, - "z": -146.579224 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b5fe", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b5fe", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (514) [efabaeab-d632-4fdc-a6a8-3f43cbd42a9c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -112.110474, + "y": 27.6648064, + "z": -177.9574 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5dc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5dc", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (597) [2e7a35d1-bd56-4218-b97c-d527c628dcad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.088257, - "y": 27.6148033, - "z": -144.413452 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b600", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b600", - "_tpl": "57513f9324597720a7128161", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (516) [72471c7a-c8b4-44ef-a89a-7a5d8b6d7bfa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.792847, + "y": 27.3158073, + "z": -178.010254 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5de", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5de", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (602) [190c5ec2-4127-4f5c-9c67-a6f783d8cdf6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.139038, - "y": 27.6408043, - "z": -141.574219 - }, - "Rotation": { - "x": 0.0, - "y": 94.6804047, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b602", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b602", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (521) [4ec8be54-7f47-46ac-8728-193554f6aa85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -110.708984, + "y": 28.33781, + "z": -178.000732 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5e0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5e0", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_canned_food_drink (604) [09e6a3fc-0d20-42ae-b869-e25412548cc4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.104614, - "y": 28.0088081, - "z": -141.7539 - }, - "Rotation": { - "x": 0.0, - "y": 94.6804047, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b604", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b604", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (523) [a23381d2-b58b-4c26-b57e-60791ef7cf13]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -110.6958, + "y": 27.3278084, + "z": -177.919556 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5e2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5e2", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_closh (19) [a9403422-170e-4165-b955-69ef191e6a54]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.29541, - "y": 37.50581, - "z": 21.699707 - }, - "Rotation": { - "x": 0.0, - "y": 29.1808128, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b606", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b606", - "_tpl": "5e2af41e86f774755a234b67", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (527) [e10f7233-fe39-48a2-b706-ee314a233ad7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -108.75061, + "y": 27.998806, + "z": -178.025513 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5e4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5e4", + "_tpl": "57513f9324597720a7128161", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_closh (30) [e286b43b-511c-42b3-8877-7f1275e5c09e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 51.9483643, - "y": 37.0818062, - "z": 39.2677 - }, - "Rotation": { - "x": 0.0, - "y": 29.1808128, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b608", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b608", - "_tpl": "5e2af4d286f7746d4159f07a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (535) [2699816c-086b-4d3c-9093-ad261771c106]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -105.746216, + "y": 27.6648064, + "z": -177.956055 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5e6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5e6", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_closh (35) [49d6e832-101a-4ca7-b42c-981346fe96b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 54.55945, - "y": 36.7358131, - "z": 46.2927246 - }, - "Rotation": { - "x": 0.0, - "y": 29.1808128, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b60a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b60a", - "_tpl": "5e2af4a786f7746d3f3c3400", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (537) [6269809a-36df-41b2-bcdf-678b7491b605]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -106.030273, + "y": 27.998806, + "z": -178.025635 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5e8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5e8", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_closh (37) [3748d95c-7a31-4e7d-b052-cdcb529b9119]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.6883545, - "y": 36.99081, - "z": 65.57068 - }, - "Rotation": { - "x": 0.0, - "y": 29.1808128, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b60c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b60c", - "_tpl": "5e2af4a786f7746d3f3c3400", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (540) [3ee5d631-b9fb-4559-b5f8-38228ebfead6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -105.30188, + "y": 27.71381, + "z": -177.983887 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5ea", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5ea", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_closh (45) [66acd9e8-74c8-4f53-aee0-0fce113d13a9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 40.37744, - "y": 37.38381, - "z": 66.56665 - }, - "Rotation": { - "x": 0.0, - "y": 29.1808128, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b60e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b60e", - "_tpl": "5e2af41e86f774755a234b67", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (551) [9af8dc9b-3a33-40f1-90bb-548d366341c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -102.509644, + "y": 28.33781, + "z": -178.000366 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5ec", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5ec", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_closh (51) [185b89a2-965b-4fc9-b703-00df3f4eb915]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 31.39038, - "y": 37.6658134, - "z": 45.0316162 - }, - "Rotation": { - "x": 0.0, - "y": 29.1808128, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b610", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b610", - "_tpl": "5e2af47786f7746d404f3aaa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (554) [6048f543-ee1c-428d-8413-b45f491243f7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -101.144775, + "y": 27.6648064, + "z": -177.957153 + }, + "Rotation": { + "x": 0.0, + "y": 178.4625, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5ee", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5ee", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_closh (55) [c87ef76e-c992-4190-b5cb-669691f08188]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.6494141, - "y": 37.69781, - "z": 40.7536621 - }, - "Rotation": { - "x": 0.0, - "y": 29.1808128, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b612", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b612", - "_tpl": "5e2af41e86f774755a234b67", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (567) [ea2a4b3d-9e1e-4609-8c56-6d7f54185568]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.605835, + "y": 27.6148033, + "z": -140.585938 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5f0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5f0", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_drink (57) [045870d1-cf97-426a-be5a-2d52cf804727]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -158.3996, - "y": 27.9578133, - "z": 28.5716553 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b614", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b614", - "_tpl": "57513fcc24597720a31c09a6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (568) [d5efe83b-de26-42bc-8b65-22ae1b161fe7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.667236, + "y": 27.9828072, + "z": -139.2334 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5f2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5f2", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (10) [0187628e-5981-4a81-9bd9-eeb7dcac4e37]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -17.5726318, - "y": 28.54781, - "z": -302.489319 - }, - "Rotation": { - "x": 0.0, - "y": 308.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b616", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b616", - "_tpl": "590a3cd386f77436f20848cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (572) [fd3bb0c4-bccd-4383-a401-9c263d9cdd4e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.634766, + "y": 27.6148033, + "z": -141.489868 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5f4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5f4", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (105) [fe3c1603-a254-4791-a5aa-3986a5a43be9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 95.89136, - "y": 36.86681, - "z": 66.4397 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b618", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b618", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (576) [5298ac59-67b9-45ff-98e2-47e224ff49a2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.614868, + "y": 28.3168068, + "z": -144.073486 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5f6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5f6", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (110) [6c324533-36a6-436c-a9b2-ecca29a93746]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.55139, - "y": 37.1918068, - "z": 68.57971 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b61a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b61a", - "_tpl": "57347cd0245977445a2d6ff1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (580) [297a4b26-1522-4586-b4e0-f09f2f826ac7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.6676, + "y": 27.9828072, + "z": -143.873047 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5f8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5f8", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (14) [12df3bf0-8c36-4f10-bf06-928ec9111ce5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -12.6695557, - "y": 28.0538063, - "z": -68.39136 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b61c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b61c", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (582) [37c4d17d-ef38-4746-8705-7db3a20af3b5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.61438, + "y": 28.3168068, + "z": -146.4314 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5fa", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5fa", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (23) [f10f918d-4041-493e-8352-aa7b0c6922e7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 22.57544, - "y": 28.0578117, - "z": -127.511353 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b61e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b61e", - "_tpl": "57347baf24597738002c6178", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (586) [a4dde133-0c11-4f6b-82f7-fc038e2c810c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.667114, + "y": 27.9828072, + "z": -146.231079 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5fc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5fc", + "_tpl": "57347d5f245977448b40fa81", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (26) [3ad6b602-ff87-43d0-8b65-1fee81e0a334]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.6654053, - "y": 28.24281, - "z": -103.80127 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b620", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b620", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (590) [19cecc97-536a-45c8-83ae-29fb8e3427bc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.117188, + "y": 27.6148033, + "z": -146.579224 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b5fe", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b5fe", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (3) [de147e95-3fe2-485f-8e20-a150f96f6937]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.406372, - "y": 28.0838127, - "z": -295.772339 - }, - "Rotation": { - "x": 0.0, - "y": 284.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b622", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b622", - "_tpl": "590a3c0a86f774385a33c450", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (597) [2e7a35d1-bd56-4218-b97c-d527c628dcad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.088257, + "y": 27.6148033, + "z": -144.413452 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b600", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b600", + "_tpl": "57513f9324597720a7128161", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (31) [87acc87a-5e07-4d6a-b730-5d1da55b2d8b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 21.9523926, - "y": 28.0948067, - "z": 32.4766846 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b624", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b624", - "_tpl": "5d1b2ffd86f77425243e8d17", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (602) [190c5ec2-4127-4f5c-9c67-a6f783d8cdf6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.139038, + "y": 27.6408043, + "z": -141.574219 + }, + "Rotation": { + "x": 0.0, + "y": 94.6804047, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b602", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b602", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (32) [a3ca7112-caaf-4c00-a0d9-b38c920c05d4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 21.3844, - "y": 28.26881, - "z": -127.753296 - }, - "Rotation": { - "x": 0.0, - "y": 85.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b626", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b626", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_canned_food_drink (604) [09e6a3fc-0d20-42ae-b869-e25412548cc4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.104614, + "y": 28.0088081, + "z": -141.7539 + }, + "Rotation": { + "x": 0.0, + "y": 94.6804047, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b604", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b604", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (33) [5fef3ec9-8974-42b4-9ea9-59065c96159d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.0053711, - "y": 28.05981, - "z": 19.2047119 - }, - "Rotation": { - "x": 0.0, - "y": 290.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b628", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b628", - "_tpl": "5d1b304286f774253763a528", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_closh (19) [a9403422-170e-4165-b955-69ef191e6a54]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.29541, + "y": 37.50581, + "z": 21.699707 + }, + "Rotation": { + "x": 0.0, + "y": 29.1808128, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b606", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b606", + "_tpl": "5e2af41e86f774755a234b67", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (37) [4befc574-e850-45a0-ad61-42e3f9c29016]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 51.26245, - "y": 27.9978065, - "z": 49.4246826 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b62a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b62a", - "_tpl": "5734779624597737e04bf329", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_closh (30) [e286b43b-511c-42b3-8877-7f1275e5c09e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 51.9483643, + "y": 37.0818062, + "z": 39.2677 + }, + "Rotation": { + "x": 0.0, + "y": 29.1808128, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b608", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b608", + "_tpl": "5e2af4d286f7746d4159f07a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (39) [73a3922c-71a9-4ebc-a833-691e2c65519f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.57434, - "y": 28.402813, - "z": 41.7166748 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b62c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b62c", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_closh (35) [49d6e832-101a-4ca7-b42c-981346fe96b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 54.55945, + "y": 36.7358131, + "z": 46.2927246 + }, + "Rotation": { + "x": 0.0, + "y": 29.1808128, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b60a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b60a", + "_tpl": "5e2af4a786f7746d3f3c3400", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (40) [f4ea0e69-8d93-4db1-b881-92c52bcc944b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.286377, - "y": 28.11481, - "z": 32.4296875 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b62e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b62e", - "_tpl": "5909e99886f7740c983b9984", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_closh (37) [3748d95c-7a31-4e7d-b052-cdcb529b9119]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.6883545, + "y": 36.99081, + "z": 65.57068 + }, + "Rotation": { + "x": 0.0, + "y": 29.1808128, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b60c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b60c", + "_tpl": "5e2af4a786f7746d3f3c3400", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (43) [81c60199-e48f-4549-b537-67cf0194b217]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 97.7803955, - "y": 38.1938133, - "z": 33.2886963 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b630", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b630", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_closh (45) [66acd9e8-74c8-4f53-aee0-0fce113d13a9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 40.37744, + "y": 37.38381, + "z": 66.56665 + }, + "Rotation": { + "x": 0.0, + "y": 29.1808128, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b60e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b60e", + "_tpl": "5e2af41e86f774755a234b67", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (45) [b1a8adda-6823-4ae1-9145-6d48fbc53928]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.82739, - "y": 38.175808, - "z": 46.074707 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b632", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b632", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_closh (51) [185b89a2-965b-4fc9-b703-00df3f4eb915]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 31.39038, + "y": 37.6658134, + "z": 45.0316162 + }, + "Rotation": { + "x": 0.0, + "y": 29.1808128, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b610", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b610", + "_tpl": "5e2af47786f7746d404f3aaa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (48) [ccca4f2c-8ec9-4fd8-acb6-1906f82a2bd7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.97339, - "y": 38.4408073, - "z": 56.0526123 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b634", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b634", - "_tpl": "590a3efd86f77437d351a25b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_closh (55) [c87ef76e-c992-4190-b5cb-669691f08188]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.6494141, + "y": 37.69781, + "z": 40.7536621 + }, + "Rotation": { + "x": 0.0, + "y": 29.1808128, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b612", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b612", + "_tpl": "5e2af41e86f774755a234b67", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (49) [4f4bdb83-39ce-4661-b6ae-7670b0ae79da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 84.9543457, - "y": 38.0558128, - "z": 63.61267 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b636", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b636", - "_tpl": "59e35de086f7741778269d84", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_drink (57) [045870d1-cf97-426a-be5a-2d52cf804727]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -158.3996, + "y": 27.9578133, + "z": 28.5716553 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b614", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b614", + "_tpl": "57513fcc24597720a31c09a6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (5) [f8d7e5ea-91b1-4d8d-9c49-82e4a6a4f430]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.83740234, - "y": 28.18581, - "z": -298.676331 - }, - "Rotation": { - "x": 0.0, - "y": 284.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b638", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b638", - "_tpl": "59e35de086f7741778269d84", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (10) [0187628e-5981-4a81-9bd9-eeb7dcac4e37]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -17.5726318, + "y": 28.54781, + "z": -302.489319 + }, + "Rotation": { + "x": 0.0, + "y": 308.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b616", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b616", + "_tpl": "590a3cd386f77436f20848cb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (52) [e80d3125-ff83-4974-88da-9ac47b4faa70]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.43042, - "y": 38.2088127, - "z": 40.732666 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b63a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b63a", - "_tpl": "5d1b309586f77425227d1676", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (105) [fe3c1603-a254-4791-a5aa-3986a5a43be9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 95.89136, + "y": 36.86681, + "z": 66.4397 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b618", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b618", + "_tpl": "5c06779c86f77426e00dd782", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (54) [c6091330-0b85-4a5d-9eae-d97a0670082f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 18.7594, - "y": 28.11481, - "z": 32.39966 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b63c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b63c", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (110) [6c324533-36a6-436c-a9b2-ecca29a93746]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.55139, + "y": 37.1918068, + "z": 68.57971 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b61a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b61a", + "_tpl": "57347cd0245977445a2d6ff1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (64) [17bc6cee-db1e-4dad-8507-6369a97caf92]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 51.78943, - "y": 27.9948082, - "z": 47.265625 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b63e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b63e", - "_tpl": "5909e99886f7740c983b9984", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (14) [12df3bf0-8c36-4f10-bf06-928ec9111ce5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -12.6695557, + "y": 28.0538063, + "z": -68.39136 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b61c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b61c", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (71) [602a9886-4355-4421-8e45-9bf8cd943846]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.6413574, - "y": 27.3208122, - "z": 46.9836426 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b640", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b640", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (23) [f10f918d-4041-493e-8352-aa7b0c6922e7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 22.57544, + "y": 28.0578117, + "z": -127.511353 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b61e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b61e", + "_tpl": "57347baf24597738002c6178", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (77) [2f3f8d7f-43be-4117-bb69-3c9e090e7656]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.99536, - "y": 27.3698082, - "z": 46.02368 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b642", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b642", - "_tpl": "5d1b309586f77425227d1676", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (26) [3ad6b602-ff87-43d0-8b65-1fee81e0a334]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.6654053, + "y": 28.24281, + "z": -103.80127 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b620", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b620", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (84) [de7a265d-1817-4f1a-86c7-13e097a281fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 75.4834, - "y": 28.1508064, - "z": 41.8686523 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b644", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b644", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (3) [de147e95-3fe2-485f-8e20-a150f96f6937]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.406372, + "y": 28.0838127, + "z": -295.772339 + }, + "Rotation": { + "x": 0.0, + "y": 284.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b622", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b622", + "_tpl": "590a3c0a86f774385a33c450", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (87) [5fad4702-85d8-4096-8da2-2a2269418db9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 98.76941, - "y": 37.48081, - "z": 48.4996338 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b646", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b646", - "_tpl": "57347cd0245977445a2d6ff1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (31) [87acc87a-5e07-4d6a-b730-5d1da55b2d8b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 21.9523926, + "y": 28.0948067, + "z": 32.4766846 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b624", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b624", + "_tpl": "5d1b2ffd86f77425243e8d17", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (88) [f6a1338d-69e4-4ead-878b-31fffacdc616]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 98.73035, - "y": 37.1228065, - "z": 48.51465 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b648", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b648", - "_tpl": "590a3cd386f77436f20848cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (32) [a3ca7112-caaf-4c00-a0d9-b38c920c05d4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 21.3844, + "y": 28.26881, + "z": -127.753296 + }, + "Rotation": { + "x": 0.0, + "y": 85.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b626", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b626", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (89) [e786b0e1-face-4ea7-8b80-0de65716e7eb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 98.66638, - "y": 37.18481, - "z": 49.8416748 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b64a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b64a", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (33) [5fef3ec9-8974-42b4-9ea9-59065c96159d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.0053711, + "y": 28.05981, + "z": 19.2047119 + }, + "Rotation": { + "x": 0.0, + "y": 290.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b628", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b628", + "_tpl": "5d1b304286f774253763a528", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron (93) [8c83513e-9186-4abb-b1c8-4f531d0804b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.5904541, - "y": 37.67081, - "z": 54.1157227 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b64c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b64c", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (37) [4befc574-e850-45a0-ad61-42e3f9c29016]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 51.26245, + "y": 27.9978065, + "z": 49.4246826 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b62a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b62a", + "_tpl": "5734779624597737e04bf329", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup (2) [59733e55-215e-4e19-a8eb-4afcffcc5166]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 98.81738, - "y": 38.1628075, - "z": 38.36267 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b64e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b64e", - "_tpl": "590a3d9c86f774385926e510", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (39) [73a3922c-71a9-4ebc-a833-691e2c65519f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.57434, + "y": 28.402813, + "z": 41.7166748 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b62c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b62c", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [04ed1067-ddc5-4cbd-8773-448978d5838f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.734375, - "y": 27.7388115, - "z": 35.12964 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b650", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b650", - "_tpl": "590a3efd86f77437d351a25b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (40) [f4ea0e69-8d93-4db1-b881-92c52bcc944b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.286377, + "y": 28.11481, + "z": 32.4296875 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b62e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b62e", + "_tpl": "5909e99886f7740c983b9984", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [295b1d32-93ec-4295-a462-06e696958112]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.73938, - "y": 28.1928062, - "z": 41.9657 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b652", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b652", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (43) [81c60199-e48f-4549-b537-67cf0194b217]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 97.7803955, + "y": 38.1938133, + "z": 33.2886963 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b630", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b630", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [3c8e2d28-b31d-4bd1-8b01-02bcf426869b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 73.86243, - "y": 27.97681, - "z": 48.50769 - }, - "Rotation": { - "x": 0.0, - "y": 353.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b654", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b654", - "_tpl": "5672cb724bdc2dc2088b456b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (45) [b1a8adda-6823-4ae1-9145-6d48fbc53928]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.82739, + "y": 38.175808, + "z": 46.074707 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b632", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b632", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [3ed4f36b-d450-4806-b7b7-8cc8cd0f9e25]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -10.0266113, - "y": 28.4528084, - "z": -297.751343 - }, - "Rotation": { - "x": 0.0, - "y": 308.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b656", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b656", - "_tpl": "590a3d9c86f774385926e510", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (48) [ccca4f2c-8ec9-4fd8-acb6-1906f82a2bd7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.97339, + "y": 38.4408073, + "z": 56.0526123 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b634", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b634", + "_tpl": "590a3efd86f77437d351a25b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [5180d691-d725-4fe4-81d4-357e43abc47a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -5.97961426, - "y": 28.00481, - "z": -292.723328 - }, - "Rotation": { - "x": 0.0, - "y": 98.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b658", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b658", - "_tpl": "590a386e86f77429692b27ab", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (49) [4f4bdb83-39ce-4661-b6ae-7670b0ae79da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 84.9543457, + "y": 38.0558128, + "z": 63.61267 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b636", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b636", + "_tpl": "59e35de086f7741778269d84", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [730da61c-5dbc-4593-970d-9e16c4df087a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -204.245728, - "y": 22.9459114, - "z": -359.422546 - }, - "Rotation": { - "x": 0.0, - "y": 38.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b65a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b65a", - "_tpl": "590a3efd86f77437d351a25b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (5) [f8d7e5ea-91b1-4d8d-9c49-82e4a6a4f430]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.83740234, + "y": 28.18581, + "z": -298.676331 + }, + "Rotation": { + "x": 0.0, + "y": 284.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b638", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b638", + "_tpl": "59e35de086f7741778269d84", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [7490f902-9503-4b48-bf74-00c51357bb02]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.11145, - "y": 28.6478081, - "z": 47.1636963 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b65c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b65c", - "_tpl": "56742c324bdc2d150f8b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (52) [e80d3125-ff83-4974-88da-9ac47b4faa70]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.43042, + "y": 38.2088127, + "z": 40.732666 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b63a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b63a", + "_tpl": "5d1b309586f77425227d1676", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [8163145c-28cc-418a-bf0b-0b780840af19]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 90.94336, - "y": 38.0948067, - "z": 58.01465 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b65e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b65e", - "_tpl": "5672cb724bdc2dc2088b456b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (54) [c6091330-0b85-4a5d-9eae-d97a0670082f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 18.7594, + "y": 28.11481, + "z": 32.39966 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b63c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b63c", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [85f596a5-cde1-436e-95fc-4a29279000bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.11938477, - "y": 28.0958061, - "z": -294.148315 - }, - "Rotation": { - "x": 0.0, - "y": 51.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b660", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b660", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (64) [17bc6cee-db1e-4dad-8507-6369a97caf92]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 51.78943, + "y": 27.9948082, + "z": 47.265625 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b63e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b63e", + "_tpl": "5909e99886f7740c983b9984", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [8ea7c435-1782-4f8d-af43-166d83034920]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.6313477, - "y": 28.1048088, - "z": -101.8363 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b662", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b662", - "_tpl": "5bc9b720d4351e450201234b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (71) [602a9886-4355-4421-8e45-9bf8cd943846]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.6413574, + "y": 27.3208122, + "z": 46.9836426 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b640", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b640", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [a3153e09-20bd-41d0-9283-2806be54f39d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -13.6525879, - "y": 28.5028114, - "z": -68.09839 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b664", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b664", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (77) [2f3f8d7f-43be-4117-bb69-3c9e090e7656]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.99536, + "y": 27.3698082, + "z": 46.02368 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b642", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b642", + "_tpl": "5d1b309586f77425227d1676", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [adb41337-31a6-42cd-871c-23b66aac77eb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 24.043335, - "y": 28.07581, - "z": -127.5863 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b666", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b666", - "_tpl": "5672cb724bdc2dc2088b456b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (84) [de7a265d-1817-4f1a-86c7-13e097a281fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 75.4834, + "y": 28.1508064, + "z": 41.8686523 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b644", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b644", + "_tpl": "5c06779c86f77426e00dd782", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [c477ce7e-f7c6-423e-ad3e-527fb5ca63c7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 31.5933838, - "y": 28.2758064, - "z": 27.5606689 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b668", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b668", - "_tpl": "590a391c86f774385a33c404", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (87) [5fad4702-85d8-4096-8da2-2a2269418db9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 98.76941, + "y": 37.48081, + "z": 48.4996338 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b646", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b646", + "_tpl": "57347cd0245977445a2d6ff1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electron_sup [c99fa421-0a62-47d0-ac8f-bc6c1d46e7a9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 24.8574219, - "y": 28.4428062, - "z": 19.1317139 - }, - "Rotation": { - "x": 0.0, - "y": 290.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b66a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b66a", - "_tpl": "590a3efd86f77437d351a25b", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (617) [09820d72-9e61-4f58-9ec9-c4531e4f8d51]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -80.31238, - "y": 28.0968056, - "z": 94.1777344 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b66c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b66c", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (619) [d5f9d86e-6bf3-4d15-8489-7a100f579a62]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -87.46973, - "y": 28.0968056, - "z": 94.13037 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b66e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b66e", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (627) [c97cc062-00a7-487a-b492-97fd2fccda3a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.74646, - "y": 28.0968056, - "z": 103.827026 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b670", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b670", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (640) [ba6cf429-4c03-4164-af11-8d011cfddf56]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -90.54492, - "y": 28.0968056, - "z": 97.62463 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b672", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b672", - "_tpl": "62a0a043cf4a99369e2624a5", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (641) [bd0c9183-4049-4e42-8ad9-ae20a45495b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -91.51672, - "y": 28.0968056, - "z": 97.6464844 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b674", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b674", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (643) [dda57ecc-186b-40d0-9038-ee6799663325]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -97.95776, - "y": 28.0968056, - "z": 94.01404 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b676", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b676", - "_tpl": "65815f0e647e3d7246384e14", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (644) [b14bfa6c-6a36-4a18-9b94-7db03e35c113]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -100.624146, - "y": 28.0968056, - "z": 96.19165 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b678", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b678", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (647) [905ad043-73e2-48c9-84f7-966d744dfee2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -91.7334, - "y": 28.0968056, - "z": 114.147217 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b67a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b67a", - "_tpl": "577e1c9d2459773cd707c525", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (648) [b1fe7ad8-771c-4310-bcf2-4727ea3ef7da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -92.6366, - "y": 28.0968056, - "z": 119.3938 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b67c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b67c", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (654) [7370cc6b-7173-4972-b617-ff2d32c68acf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -92.03601, - "y": 28.0968056, - "z": 132.614746 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b67e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b67e", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_fast_food(small) (658) [f6dd521f-f7e3-403f-94a5-66a66d409a4b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -91.62073, - "y": 28.0968056, - "z": 120.563721 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": -1.644582e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b680", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b680", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (88) [f6a1338d-69e4-4ead-878b-31fffacdc616]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 98.73035, + "y": 37.1228065, + "z": 48.51465 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b648", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b648", + "_tpl": "590a3cd386f77436f20848cb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (11) [981b3a77-d267-4d62-bbd6-cc119695b2d7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 66.93445, - "y": 27.74181, - "z": -222.976318 - }, - "Rotation": { - "x": 0.0, - "y": 222.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b682", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b682", - "_tpl": "5448ff904bdc2d6f028b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (89) [e786b0e1-face-4ea7-8b80-0de65716e7eb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 98.66638, + "y": 37.18481, + "z": 49.8416748 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b64a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b64a", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (113) [452b86eb-c377-4a56-9014-9b6c6979288c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -16.416626, - "y": 37.7498131, - "z": -32.77832 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b684", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b684", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron (93) [8c83513e-9186-4abb-b1c8-4f531d0804b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.5904541, + "y": 37.67081, + "z": 54.1157227 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b64c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b64c", + "_tpl": "5c06779c86f77426e00dd782", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (118) [a52ae90d-f894-4924-b917-9d95965cd9a3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -31.3765869, - "y": 37.5678062, - "z": -34.1802979 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b686", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b686", - "_tpl": "57347d8724597744596b4e76", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup (2) [59733e55-215e-4e19-a8eb-4afcffcc5166]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 98.81738, + "y": 38.1628075, + "z": 38.36267 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b64e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b64e", + "_tpl": "590a3d9c86f774385926e510", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (141) [74af0db2-9a15-4588-9403-b32e1d4493dc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -47.1065674, - "y": 38.0948067, - "z": -110.78833 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b688", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b688", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [04ed1067-ddc5-4cbd-8773-448978d5838f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.734375, + "y": 27.7388115, + "z": 35.12964 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b650", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b650", + "_tpl": "590a3efd86f77437d351a25b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (153) [2349ef3c-e5d3-4edd-afa9-c620f4ac6334]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -94.34265, - "y": 27.5008125, - "z": 39.68567 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b68a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b68a", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [295b1d32-93ec-4295-a462-06e696958112]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.73938, + "y": 28.1928062, + "z": 41.9657 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b652", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b652", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (174) [34e26cab-36f2-4263-8e33-5eea1deba2bd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -96.05261, - "y": 27.52081, - "z": -170.684326 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b68c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b68c", - "_tpl": "57513f07245977207e26a311", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [3c8e2d28-b31d-4bd1-8b01-02bcf426869b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 73.86243, + "y": 27.97681, + "z": 48.50769 + }, + "Rotation": { + "x": 0.0, + "y": 353.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b654", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b654", + "_tpl": "5672cb724bdc2dc2088b456b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (180) [7af52349-0eac-442c-94e1-a7bdbcb41baf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -132.02356, - "y": 27.90681, - "z": 58.76367 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b68e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b68e", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [3ed4f36b-d450-4806-b7b7-8cc8cd0f9e25]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -10.0266113, + "y": 28.4528084, + "z": -297.751343 + }, + "Rotation": { + "x": 0.0, + "y": 308.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b656", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b656", + "_tpl": "590a3d9c86f774385926e510", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (182) [53f2afd4-1f4f-4717-8aef-6e7b1dfeaa02]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -46.67456, - "y": 21.4748116, - "z": 43.1016846 - }, - "Rotation": { - "x": 0.0, - "y": 334.7356, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b690", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b690", - "_tpl": "635a758bfefc88a93f021b8a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [5180d691-d725-4fe4-81d4-357e43abc47a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -5.97961426, + "y": 28.00481, + "z": -292.723328 + }, + "Rotation": { + "x": 0.0, + "y": 98.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b658", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b658", + "_tpl": "590a386e86f77429692b27ab", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (19) [842b2b96-28f3-4611-bbd1-a7d9058772af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -205.926575, - "y": 22.1908073, - "z": -362.352356 - }, - "Rotation": { - "x": 0.0, - "y": 222.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b692", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b692", - "_tpl": "57347d8724597744596b4e76", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [730da61c-5dbc-4593-970d-9e16c4df087a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -204.245728, + "y": 22.9459114, + "z": -359.422546 + }, + "Rotation": { + "x": 0.0, + "y": 38.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b65a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b65a", + "_tpl": "590a3efd86f77437d351a25b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (213) [4ca8b751-38f8-417c-ab69-b335ffad7003]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 70.76538, - "y": 28.4278069, - "z": -280.546326 - }, - "Rotation": { - "x": 0.0, - "y": 24.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b694", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b694", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [7490f902-9503-4b48-bf74-00c51357bb02]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.11145, + "y": 28.6478081, + "z": 47.1636963 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b65c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b65c", + "_tpl": "56742c324bdc2d150f8b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (26) [fd33bff2-b215-436b-9b70-5124cc7ab2f1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -47.01062, - "y": 21.4748116, - "z": 42.9547119 - }, - "Rotation": { - "x": 0.0, - "y": 334.7356, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b696", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b696", - "_tpl": "5d1b376e86f774252519444e", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_food (70) [7ef7cae2-629b-4686-be76-ba894afe9121]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.911621, - "y": 27.3988075, - "z": -143.937378 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "loot_electron_sup [8163145c-28cc-418a-bf0b-0b780840af19]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 90.94336, + "y": 38.0948067, + "z": 58.01465 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b65e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b65e", + "_tpl": "5672cb724bdc2dc2088b456b", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b698", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b698", - "_tpl": "5448ff904bdc2d6f028b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [85f596a5-cde1-436e-95fc-4a29279000bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.11938477, + "y": 28.0958061, + "z": -294.148315 + }, + "Rotation": { + "x": 0.0, + "y": 51.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b660", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b660", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (84) [c90d955a-6e6c-41cb-86ad-6b2878f7cc2e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.02161, - "y": 27.3338127, - "z": 96.8216553 - }, - "Rotation": { - "x": 0.0, - "y": 308.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b69a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b69a", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [8ea7c435-1782-4f8d-af43-166d83034920]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.6313477, + "y": 28.1048088, + "z": -101.8363 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b662", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b662", + "_tpl": "5bc9b720d4351e450201234b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (87) [4e0e1b23-46a7-4dec-86de-05daf41bef3c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.6806641, - "y": 28.2018089, - "z": -49.4453125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b69c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b69c", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [a3153e09-20bd-41d0-9283-2806be54f39d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -13.6525879, + "y": 28.5028114, + "z": -68.09839 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b664", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b664", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food (89) [8f054091-97ce-4ba6-a6ff-6c8d5beee31d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -61.3136, - "y": 28.15681, - "z": -42.0633545 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b69e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b69e", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [adb41337-31a6-42cd-871c-23b66aac77eb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 24.043335, + "y": 28.07581, + "z": -127.5863 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b666", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b666", + "_tpl": "5672cb724bdc2dc2088b456b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_and_technikal_zone (209) [fa1ae431-85a9-4680-aa4f-4c09f9b3edf1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 63.11145, - "y": 37.2348061, - "z": -81.15161 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6a0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6a0", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [c477ce7e-f7c6-423e-ad3e-527fb5ca63c7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 31.5933838, + "y": 28.2758064, + "z": 27.5606689 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b668", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b668", + "_tpl": "590a391c86f774385a33c404", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_simple (1) [eb72265f-a486-4851-81a5-8e53ef451fe5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -126.413574, - "y": 27.9688072, - "z": -81.5593262 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6a2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6a2", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_sup [c99fa421-0a62-47d0-ac8f-bc6c1d46e7a9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 24.8574219, + "y": 28.4428062, + "z": 19.1317139 + }, + "Rotation": { + "x": 0.0, + "y": 290.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b66a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b66a", + "_tpl": "590a3efd86f77437d351a25b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_simple (2) [305f2778-2d48-479d-ab60-85ff6913c978]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -126.573608, - "y": 28.39381, - "z": -82.34631 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6a4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6a4", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (617) [09820d72-9e61-4f58-9ec9-c4531e4f8d51]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -80.31238, + "y": 28.0968056, + "z": 94.1777344 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b66c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b66c", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_simple [7565c375-cc9d-41f7-8483-eeb9baad4aef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -90.86755, - "y": 27.55981, - "z": -70.99927 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6a6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6a6", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (619) [d5f9d86e-6bf3-4d15-8489-7a100f579a62]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -87.46973, + "y": 28.0968056, + "z": 94.13037 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b66e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b66e", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_simple [97fb7ab7-d6bc-46cb-b2a4-737a1b577536]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.821655, - "y": 27.9688072, - "z": -79.92139 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6a8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6a8", - "_tpl": "5448ff904bdc2d6f028b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (627) [c97cc062-00a7-487a-b492-97fd2fccda3a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.74646, + "y": 28.0968056, + "z": 103.827026 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b670", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b670", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_simple [f7e65b9c-4253-49a2-a955-f89290501871]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -115.159546, - "y": 28.01781, - "z": -18.4903564 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6aa", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6aa", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (640) [ba6cf429-4c03-4164-af11-8d011cfddf56]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -90.54492, + "y": 28.0968056, + "z": 97.62463 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b672", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b672", + "_tpl": "62a0a043cf4a99369e2624a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_tushenka [87b83932-85e7-4d20-8f98-6e080f97dec8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -165.254578, - "y": 27.8898125, - "z": -133.8623 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6ac", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6ac", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (641) [bd0c9183-4049-4e42-8ad9-ae20a45495b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -91.51672, + "y": 28.0968056, + "z": 97.6464844 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b674", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b674", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_zone (186) [f3a7c70f-8429-40b7-986d-798d45480735]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.4613037, - "y": 37.8158073, - "z": -34.98816 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6ae", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6ae", - "_tpl": "57513f07245977207e26a311", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (643) [dda57ecc-186b-40d0-9038-ee6799663325]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -97.95776, + "y": 28.0968056, + "z": 94.01404 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b676", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b676", + "_tpl": "65815f0e647e3d7246384e14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_zone (189) [534fe3d0-930e-4781-99d7-6be6d5786ef3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.97046, - "y": 37.1268044, - "z": -34.746582 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6b0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6b0", - "_tpl": "575146b724597720a27126d5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (644) [b14bfa6c-6a36-4a18-9b94-7db03e35c113]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -100.624146, + "y": 28.0968056, + "z": 96.19165 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b678", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b678", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_zone (193) [b88c4704-03fd-45f8-bb01-49b3afa95076]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 71.99927, - "y": 37.6068077, - "z": -32.973877 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6b2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6b2", - "_tpl": "57513f07245977207e26a311", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (647) [905ad043-73e2-48c9-84f7-966d744dfee2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -91.7334, + "y": 28.0968056, + "z": 114.147217 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b67a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b67a", + "_tpl": "577e1c9d2459773cd707c525", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_zone (195) [47e9b1e9-d4c4-4c9e-9b53-4bb93e8abfdd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 66.82886, - "y": 37.6068077, - "z": -39.0976563 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6b4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6b4", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (648) [b1fe7ad8-771c-4310-bcf2-4727ea3ef7da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -92.6366, + "y": 28.0968056, + "z": 119.3938 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b67c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b67c", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_fuel (74) [ece86e34-8662-4216-a543-6cbb7d365bdf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.16101, - "y": 28.4430046, - "z": -124.665039 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6b6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6b6", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (654) [7370cc6b-7173-4972-b617-ff2d32c68acf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -92.03601, + "y": 28.0968056, + "z": 132.614746 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b67e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b67e", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_housestuff (13) [5a633342-dcfa-469a-8f7e-daab0b9adf65]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 12.4073486, - "y": 28.17381, - "z": 35.14868 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6b8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6b8", - "_tpl": "59e35abd86f7741778269d82", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fast_food(small) (658) [f6dd521f-f7e3-403f-94a5-66a66d409a4b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -91.62073, + "y": 28.0968056, + "z": 120.563721 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": -1.644582e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b680", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b680", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_housestuff (21) [798d051b-fec8-4664-b795-3aaa440e0906]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 87.951416, - "y": 28.1398125, - "z": 120.738647 - }, - "Rotation": { - "x": 0.0, - "y": 296.999939, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6ba", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6ba", - "_tpl": "5e2af02c86f7746d420957d4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (11) [981b3a77-d267-4d62-bbd6-cc119695b2d7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 66.93445, + "y": 27.74181, + "z": -222.976318 + }, + "Rotation": { + "x": 0.0, + "y": 222.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b682", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b682", + "_tpl": "5448ff904bdc2d6f028b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_housestuff (23) [73116048-dea4-493f-b375-1ecf424890cf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 85.37634, - "y": 28.1658134, - "z": 150.3097 - }, - "Rotation": { - "x": 0.0, - "y": 142.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6bc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6bc", - "_tpl": "59e3556c86f7741776641ac2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (113) [452b86eb-c377-4a56-9014-9b6c6979288c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -16.416626, + "y": 37.7498131, + "z": -32.77832 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b684", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b684", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_housestuff (26) [657b8ffa-7207-4338-8d21-be818aa3dc95]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 79.0144043, - "y": 28.1278114, - "z": 156.310669 - }, - "Rotation": { - "x": 0.0, - "y": 164.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6be", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6be", - "_tpl": "5e2af00086f7746d3f3c33f7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (118) [a52ae90d-f894-4924-b917-9d95965cd9a3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -31.3765869, + "y": 37.5678062, + "z": -34.1802979 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b686", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b686", + "_tpl": "57347d8724597744596b4e76", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_housestuff (6) [2266fdb4-9500-449d-87e8-bcf72f6e00c5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 22.286377, - "y": 28.3138084, - "z": -242.098389 - }, - "Rotation": { - "x": 0.0, - "y": 291.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6c0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6c0", - "_tpl": "590a391c86f774385a33c404", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (141) [74af0db2-9a15-4588-9403-b32e1d4493dc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -47.1065674, + "y": 38.0948067, + "z": -110.78833 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b688", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b688", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jever (2) [edd4104d-1378-4cbf-9aff-dea623de440c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -46.8896332, - "y": 21.5808067, - "z": 44.2536469 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6c2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6c2", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (153) [2349ef3c-e5d3-4edd-afa9-c620f4ac6334]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -94.34265, + "y": 27.5008125, + "z": 39.68567 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b68a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b68a", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (3) [9d8c0ecd-25c4-47cc-9708-c27f1184fc6d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -37.2536621, - "y": 27.4138069, - "z": -11.6013184 - }, - "Rotation": { - "x": 0.0, - "y": 326.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6c4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6c4", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (174) [34e26cab-36f2-4263-8e33-5eea1deba2bd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -96.05261, + "y": 27.52081, + "z": -170.684326 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b68c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b68c", + "_tpl": "57513f07245977207e26a311", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (7) [ba0852b1-7b52-4014-87c1-cc496d46bbac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 25.5604248, - "y": 28.33881, - "z": -62.4713135 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6c6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6c6", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (180) [7af52349-0eac-442c-94e1-a7bdbcb41baf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -132.02356, + "y": 27.90681, + "z": 58.76367 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b68e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b68e", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (9) [e8a4841f-36f8-49ee-a745-0dfcb2b3c022]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.6153564, - "y": 28.22881, - "z": -14.2683105 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6c8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6c8", - "_tpl": "5d235a5986f77443f6329bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (182) [53f2afd4-1f4f-4717-8aef-6e7b1dfeaa02]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -46.67456, + "y": 21.4748116, + "z": 43.1016846 + }, + "Rotation": { + "x": 0.0, + "y": 334.7356, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b690", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b690", + "_tpl": "635a758bfefc88a93f021b8a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly [1750e356-1c19-4f68-aad3-f139d1cf5fd8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -49.0375977, - "y": 22.1348076, - "z": 45.008667 - }, - "Rotation": { - "x": 0.0, - "y": 301.681183, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6ca", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6ca", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (19) [842b2b96-28f3-4611-bbd1-a7d9058772af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -205.926575, + "y": 22.1908073, + "z": -362.352356 + }, + "Rotation": { + "x": 0.0, + "y": 222.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b692", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b692", + "_tpl": "57347d8724597744596b4e76", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (100) [15569c8f-d2be-49cc-be69-6decba868af0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.6374512, - "y": 27.6368065, - "z": -75.05029 - }, - "Rotation": { - "x": 0.0, - "y": 242.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6cc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6cc", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (213) [4ca8b751-38f8-417c-ab69-b335ffad7003]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 70.76538, + "y": 28.4278069, + "z": -280.546326 + }, + "Rotation": { + "x": 0.0, + "y": 24.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b694", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b694", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (102) [ed87b1f0-8cb5-4596-946e-e65de70316b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.333374, - "y": 37.6908073, - "z": 39.64673 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6ce", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6ce", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (26) [fd33bff2-b215-436b-9b70-5124cc7ab2f1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -47.01062, + "y": 21.4748116, + "z": 42.9547119 + }, + "Rotation": { + "x": 0.0, + "y": 334.7356, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b696", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b696", + "_tpl": "5d1b376e86f774252519444e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (106) [09dfe76e-4b29-498f-a65d-5924a510bf14]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.32141, - "y": 37.1928062, - "z": 38.8917236 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6d0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6d0", - "_tpl": "5c0e533786f7747fa23f4d47", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (70) [7ef7cae2-629b-4686-be76-ba894afe9121]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.911621, + "y": 27.3988075, + "z": -143.937378 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b698", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b698", + "_tpl": "5448ff904bdc2d6f028b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (108) [6cd5ea2b-d027-422f-b8ae-ec108d09a875]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 66.66138, - "y": 37.21181, - "z": 41.40271 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6d2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6d2", - "_tpl": "62a0a043cf4a99369e2624a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (84) [c90d955a-6e6c-41cb-86ad-6b2878f7cc2e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.02161, + "y": 27.3338127, + "z": 96.8216553 + }, + "Rotation": { + "x": 0.0, + "y": 308.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b69a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b69a", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (109) [305a2b63-81d1-453b-859a-ba756350efa3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.55737, - "y": 37.22481, - "z": 41.42163 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6d4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6d4", - "_tpl": "59e361e886f774176c10a2a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (87) [4e0e1b23-46a7-4dec-86de-05daf41bef3c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.6806641, + "y": 28.2018089, + "z": -49.4453125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b69c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b69c", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (110) [df6b4fa1-2969-468f-abed-a5127a3e700f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.00134, - "y": 37.1778069, - "z": 38.4796143 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6d6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6d6", - "_tpl": "59e361e886f774176c10a2a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food (89) [8f054091-97ce-4ba6-a6ff-6c8d5beee31d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -61.3136, + "y": 28.15681, + "z": -42.0633545 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b69e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b69e", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (113) [013d85bb-4590-4263-95c2-270fc725c495]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 66.37439, - "y": 37.22881, - "z": 37.8056641 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6d8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6d8", - "_tpl": "590c661e86f7741e566b646a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_and_technikal_zone (209) [fa1ae431-85a9-4680-aa4f-4c09f9b3edf1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 63.11145, + "y": 37.2348061, + "z": -81.15161 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6a0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6a0", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (114) [e5be9136-686b-40da-8098-e2b85b6ece39]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.25842, - "y": 37.18781, - "z": 39.5167236 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6da", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6da", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_simple (1) [eb72265f-a486-4851-81a5-8e53ef451fe5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -126.413574, + "y": 27.9688072, + "z": -81.5593262 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6a2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6a2", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (115) [8769d6d3-75d3-483f-951f-6672d3642ba4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.48645, - "y": 37.22881, - "z": 37.8056641 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6dc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6dc", - "_tpl": "5af0548586f7743a532b7e99", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_simple (2) [305f2778-2d48-479d-ab60-85ff6913c978]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -126.573608, + "y": 28.39381, + "z": -82.34631 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6a4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6a4", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (116) [df3dc5b2-1427-45c7-99cc-9931801f0bee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.32141, - "y": 37.1928062, - "z": 38.4626465 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6de", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6de", - "_tpl": "637b620db7afa97bfc3d7009", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_simple [7565c375-cc9d-41f7-8483-eeb9baad4aef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -90.86755, + "y": 27.55981, + "z": -70.99927 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6a6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6a6", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (117) [6cca0ddf-92b1-4e17-b8a1-b8a03713c1ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.35034, - "y": 37.1948128, - "z": 39.4326172 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6e0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6e0", - "_tpl": "6389c6c7dbfd5e4b95197e68", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_simple [97fb7ab7-d6bc-46cb-b2a4-737a1b577536]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.821655, + "y": 27.9688072, + "z": -79.92139 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6a8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6a8", + "_tpl": "5448ff904bdc2d6f028b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (19) [38f54c35-a4fd-4dc6-b348-c582003aab81]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 7.46643066, - "y": 28.5768089, - "z": -68.81128 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6e2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6e2", - "_tpl": "590c661e86f7741e566b646a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_simple [f7e65b9c-4253-49a2-a955-f89290501871]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -115.159546, + "y": 28.01781, + "z": -18.4903564 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6aa", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6aa", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (2) [5644ce0d-909f-42d8-8a71-4edda0d14e76]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -207.7586, - "y": 22.5168114, - "z": -357.921326 - }, - "Rotation": { - "x": 0.0, - "y": 85.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6e4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6e4", - "_tpl": "5755356824597772cb798962", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_tushenka [87b83932-85e7-4d20-8f98-6e080f97dec8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -165.254578, + "y": 27.8898125, + "z": -133.8623 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6ac", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6ac", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (22) [39de1fc4-def9-485c-a8b8-6f2661a37b7c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 19.0804443, - "y": 27.8028069, - "z": -69.3883057 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6e6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6e6", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_zone (186) [f3a7c70f-8429-40b7-986d-798d45480735]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.4613037, + "y": 37.8158073, + "z": -34.98816 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6ae", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6ae", + "_tpl": "57513f07245977207e26a311", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (26) [9996fbc5-452b-45ec-bcd2-3a517eab2f58]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 12.8433838, - "y": 28.2328072, - "z": -76.5032959 - }, - "Rotation": { - "x": 0.0, - "y": 41.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6e8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6e8", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_zone (189) [534fe3d0-930e-4781-99d7-6be6d5786ef3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.97046, + "y": 37.1268044, + "z": -34.746582 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6b0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6b0", + "_tpl": "575146b724597720a27126d5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (3) [70db7919-916c-4e59-be42-94b20d20c804]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -227.743591, - "y": 22.0848122, - "z": -311.713318 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6ea", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6ea", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_zone (193) [b88c4704-03fd-45f8-bb01-49b3afa95076]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 71.99927, + "y": 37.6068077, + "z": -32.973877 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6b2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6b2", + "_tpl": "57513f07245977207e26a311", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (31) [e9d30f7b-e01f-49a9-8e55-ee0ee3bb25d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.47338867, - "y": 27.7308083, - "z": -76.72937 - }, - "Rotation": { - "x": 0.0, - "y": 242.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6ec", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6ec", - "_tpl": "66507eabf5ddb0818b085b68", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_zone (195) [47e9b1e9-d4c4-4c9e-9b53-4bb93e8abfdd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 66.82886, + "y": 37.6068077, + "z": -39.0976563 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6b4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6b4", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (34) [705a03c9-1f77-4654-b98d-847ab929586d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 5.592407, - "y": 28.2158089, - "z": -82.74133 - }, - "Rotation": { - "x": 0.0, - "y": 242.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6ee", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6ee", - "_tpl": "590c661e86f7741e566b646a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_fuel (74) [ece86e34-8662-4216-a543-6cbb7d365bdf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.16101, + "y": 28.4430046, + "z": -124.665039 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6b6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6b6", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (37) [d7d4c4cb-ff0c-4f33-8e7c-0921b446ca5d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -49.0905762, - "y": 28.2048073, - "z": -52.10327 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6f0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6f0", - "_tpl": "60098af40accd37ef2175f27", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_housestuff (13) [5a633342-dcfa-469a-8f7e-daab0b9adf65]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 12.4073486, + "y": 28.17381, + "z": 35.14868 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6b8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6b8", + "_tpl": "59e35abd86f7741778269d82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (40) [01c5e880-9734-4bb4-977f-f082cc03bbdb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 18.9013672, - "y": 27.8868065, - "z": -102.0293 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6f2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6f2", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_housestuff (21) [798d051b-fec8-4664-b795-3aaa440e0906]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 87.951416, + "y": 28.1398125, + "z": 120.738647 + }, + "Rotation": { + "x": 0.0, + "y": 296.999939, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6ba", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6ba", + "_tpl": "5e2af02c86f7746d420957d4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (43) [feab3605-ec5b-4524-9663-d1954b2598de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 12.9094238, - "y": 28.161808, - "z": -106.91333 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6f4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6f4", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_housestuff (23) [73116048-dea4-493f-b375-1ecf424890cf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 85.37634, + "y": 28.1658134, + "z": 150.3097 + }, + "Rotation": { + "x": 0.0, + "y": 142.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6bc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6bc", + "_tpl": "59e3556c86f7741776641ac2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (44) [8178c491-be93-4e11-927d-cb2bbc36d53c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 14.2663574, - "y": 28.1668129, - "z": -111.215332 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6f6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6f6", - "_tpl": "590c695186f7741e566b64a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_housestuff (26) [657b8ffa-7207-4338-8d21-be818aa3dc95]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 79.0144043, + "y": 28.1278114, + "z": 156.310669 + }, + "Rotation": { + "x": 0.0, + "y": 164.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6be", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6be", + "_tpl": "5e2af00086f7746d3f3c33f7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (46) [c3a29fc8-f0e8-4966-a4c8-d53b73e6841b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -48.9125977, - "y": 28.17281, - "z": -58.61328 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6f8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6f8", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_housestuff (6) [2266fdb4-9500-449d-87e8-bcf72f6e00c5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 22.286377, + "y": 28.3138084, + "z": -242.098389 + }, + "Rotation": { + "x": 0.0, + "y": 291.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6c0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6c0", + "_tpl": "590a391c86f774385a33c404", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (50) [f38cdc1c-2439-42e3-9330-53d6f05359f9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 17.2519531, - "y": 28.22881, - "z": -105.163574 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6fa", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6fa", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_jever (2) [edd4104d-1378-4cbf-9aff-dea623de440c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -46.8896332, + "y": 21.5808067, + "z": 44.2536469 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6c2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6c2", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (52) [96f09897-28ea-4315-8d1d-ba7fe54f18d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.3553467, - "y": 28.1188087, - "z": -138.726318 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6fc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6fc", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_jeverly (3) [9d8c0ecd-25c4-47cc-9708-c27f1184fc6d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -37.2536621, + "y": 27.4138069, + "z": -11.6013184 + }, + "Rotation": { + "x": 0.0, + "y": 326.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6c4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6c4", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (55) [8bac698e-b920-4c05-ace5-9873994e0c15]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -163.572632, - "y": 28.1078072, - "z": -53.2072754 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b6fe", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b6fe", - "_tpl": "590c678286f77426c9660122", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_jeverly (7) [ba0852b1-7b52-4014-87c1-cc496d46bbac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 25.5604248, + "y": 28.33881, + "z": -62.4713135 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6c6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6c6", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (56) [5170afb9-ca8c-4a9e-907d-1154295e6669]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 45.9154053, - "y": 21.5128136, - "z": -113.137329 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b700", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b700", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_jeverly (9) [e8a4841f-36f8-49ee-a745-0dfcb2b3c022]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.6153564, + "y": 28.22881, + "z": -14.2683105 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6c8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6c8", + "_tpl": "5d235a5986f77443f6329bc6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (61) [765a3cc9-32e1-47a8-834e-6d40b777e97e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 63.23535, - "y": 27.54781, - "z": 62.28064 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b702", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b702", - "_tpl": "5b4335ba86f7744d2837a264", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_jeverly [1750e356-1c19-4f68-aad3-f139d1cf5fd8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -49.0375977, + "y": 22.1348076, + "z": 45.008667 + }, + "Rotation": { + "x": 0.0, + "y": 301.681183, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6ca", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6ca", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (65) [04b96cfd-0523-48da-888a-f40d4f851e4a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.9643555, - "y": 37.30881, - "z": 44.91272 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b704", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b704", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (100) [15569c8f-d2be-49cc-be69-6decba868af0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.6374512, + "y": 27.6368065, + "z": -75.05029 + }, + "Rotation": { + "x": 0.0, + "y": 242.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6cc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6cc", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (68) [1ee8435d-c2b5-43d1-94ce-4c1b285be389]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.72534, - "y": 38.10581, - "z": 42.0067139 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b706", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b706", - "_tpl": "5751a25924597722c463c472", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (102) [ed87b1f0-8cb5-4596-946e-e65de70316b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.333374, + "y": 37.6908073, + "z": 39.64673 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6ce", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6ce", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (7) [afe3429c-c7ac-4b33-b4ca-423197caaeff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 279.1454, - "y": 21.6748085, - "z": 164.713623 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b708", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b708", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (106) [09dfe76e-4b29-498f-a65d-5924a510bf14]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.32141, + "y": 37.1928062, + "z": 38.8917236 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6d0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6d0", + "_tpl": "5c0e533786f7747fa23f4d47", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (70) [5bc4783e-9c42-4bc2-8fbe-76a65fc5df29]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.05444, - "y": 37.58981, - "z": 39.60669 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b70a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b70a", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (108) [6cd5ea2b-d027-422f-b8ae-ec108d09a875]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 66.66138, + "y": 37.21181, + "z": 41.40271 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6d2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6d2", + "_tpl": "62a0a043cf4a99369e2624a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (75) [87e6ece0-0432-4af5-acec-270db4b775b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 65.37134, - "y": 37.65881, - "z": 37.8457031 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b70c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b70c", - "_tpl": "6389c6c7dbfd5e4b95197e68", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (109) [305a2b63-81d1-453b-859a-ba756350efa3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.55737, + "y": 37.22481, + "z": 41.42163 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6d4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6d4", + "_tpl": "59e361e886f774176c10a2a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (77) [dde8cd58-ee40-40b2-927c-e918d76e03a9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.35034, - "y": 37.1948128, - "z": 39.8817139 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b70e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b70e", - "_tpl": "62a0a043cf4a99369e2624a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (110) [df6b4fa1-2969-468f-abed-a5127a3e700f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.00134, + "y": 37.1778069, + "z": 38.4796143 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6d6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6d6", + "_tpl": "59e361e886f774176c10a2a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (79) [ab58ef0e-2bba-48e7-baf1-6b181bcc9504]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.13135, - "y": 37.7188072, - "z": 41.4437256 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b710", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b710", - "_tpl": "59e3606886f77417674759a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (113) [013d85bb-4590-4263-95c2-270fc725c495]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 66.37439, + "y": 37.22881, + "z": 37.8056641 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6d8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6d8", + "_tpl": "590c661e86f7741e566b646a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (85) [aa0b86f7-a23b-4d7d-9418-24a280b12398]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 59.12744, - "y": 37.5828133, - "z": -130.777344 - }, - "Rotation": { - "x": 0.0, - "y": 51.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b712", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b712", - "_tpl": "5755356824597772cb798962", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (114) [e5be9136-686b-40da-8098-e2b85b6ece39]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.25842, + "y": 37.18781, + "z": 39.5167236 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6da", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6da", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (93) [1aed8e26-b0bd-4a2a-8b2b-a2a4cf485db6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 57.1053467, - "y": 37.68581, - "z": -146.057373 - }, - "Rotation": { - "x": 0.0, - "y": 51.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b714", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b714", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (115) [8769d6d3-75d3-483f-951f-6672d3642ba4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.48645, + "y": 37.22881, + "z": 37.8056641 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6dc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6dc", + "_tpl": "5af0548586f7743a532b7e99", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med [62044a10-b3cc-4b5f-95e7-58b2535600f3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 63.293335, - "y": 22.0228081, - "z": -257.723328 - }, - "Rotation": { - "x": 0.0, - "y": 342.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b716", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b716", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (116) [df3dc5b2-1427-45c7-99cc-9931801f0bee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.32141, + "y": 37.1928062, + "z": 38.4626465 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6de", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6de", + "_tpl": "637b620db7afa97bfc3d7009", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med [82a514c2-9bab-4ea5-942c-97f0d626f8aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 59.73535, - "y": 22.5818062, - "z": -258.043335 - }, - "Rotation": { - "x": 0.0, - "y": 265.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b718", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b718", - "_tpl": "5751a25924597722c463c472", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (117) [6cca0ddf-92b1-4e17-b8a1-b8a03713c1ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.35034, + "y": 37.1948128, + "z": 39.4326172 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6e0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6e0", + "_tpl": "6389c6c7dbfd5e4b95197e68", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med [a2843a33-af52-444d-8ca1-85828e4d6816]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.7763672, - "y": 22.6278114, - "z": -253.018311 - }, - "Rotation": { - "x": 0.0, - "y": 32.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b71a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b71a", - "_tpl": "6389c6c7dbfd5e4b95197e68", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (19) [38f54c35-a4fd-4dc6-b348-c582003aab81]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 7.46643066, + "y": 28.5768089, + "z": -68.81128 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6e2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6e2", + "_tpl": "590c661e86f7741e566b646a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med [e345428e-3fd6-4943-a891-9d6b393e1d72]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 60.5964355, - "y": 22.6098137, - "z": -259.809326 - }, - "Rotation": { - "x": 0.0, - "y": 213.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b71c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b71c", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (2) [5644ce0d-909f-42d8-8a71-4edda0d14e76]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -207.7586, + "y": 22.5168114, + "z": -357.921326 + }, + "Rotation": { + "x": 0.0, + "y": 85.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6e4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6e4", + "_tpl": "5755356824597772cb798962", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med_morph [3d111f24-2c5d-4484-b431-3ea20997aa72]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 5.772339, - "y": 28.12981, - "z": -105.368286 - }, - "Rotation": { - "x": 0.0, - "y": 270.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b71e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b71e", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (22) [39de1fc4-def9-485c-a8b8-6f2661a37b7c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 19.0804443, + "y": 27.8028069, + "z": -69.3883057 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6e6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6e6", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med_rare (1) [a9d20d0c-54d4-4b75-8c3c-c349091e8053]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 158.868408, - "y": 22.5498085, - "z": -60.5693359 - }, - "Rotation": { - "x": 0.0, - "y": 259.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b720", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b720", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (26) [9996fbc5-452b-45ec-bcd2-3a517eab2f58]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 12.8433838, + "y": 28.2328072, + "z": -76.5032959 + }, + "Rotation": { + "x": 0.0, + "y": 41.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6e8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6e8", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (1) [81998244-2495-4e76-aa31-9d9441b83a52]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 1.22839355, - "y": 22.7208061, - "z": 260.305664 - }, - "Rotation": { - "x": 0.0, - "y": 349.999969, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b723", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b723", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (3) [70db7919-916c-4e59-be42-94b20d20c804]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -227.743591, + "y": 22.0848122, + "z": -311.713318 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6ea", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6ea", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med (31) [e9d30f7b-e01f-49a9-8e55-ee0ee3bb25d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.47338867, + "y": 27.7308083, + "z": -76.72937 + }, + "Rotation": { + "x": 0.0, + "y": 242.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b724", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbb4da1ae71bfb1007b723", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6ec", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6ec", + "_tpl": "66507eabf5ddb0818b085b68", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (100) [a84cab53-127f-4e45-8076-2d9653e7a79f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -105.054565, - "y": 28.7798119, - "z": -211.045288 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b727", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b727", - "_tpl": "573726d824597765d96be361", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (34) [705a03c9-1f77-4654-b98d-847ab929586d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 5.592407, + "y": 28.2158089, + "z": -82.74133 + }, + "Rotation": { + "x": 0.0, + "y": 242.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6ee", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6ee", + "_tpl": "590c661e86f7741e566b646a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med (37) [d7d4c4cb-ff0c-4f33-8e7c-0921b446ca5d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -49.0905762, + "y": 28.2048073, + "z": -52.10327 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b728", - "_tpl": "57371f2b24597761224311f1", - "parentId": "66cbb4da1ae71bfb1007b727", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6f0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6f0", + "_tpl": "60098af40accd37ef2175f27", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (101) [9e452fab-0c58-4d38-aa0b-9cb974b36a62]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -95.3706055, - "y": 28.47681, - "z": -224.512329 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b72b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b72b", - "_tpl": "657023e7c5d7d4cb4d078552", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (40) [01c5e880-9734-4bb4-977f-f082cc03bbdb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 18.9013672, + "y": 27.8868065, + "z": -102.0293 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b72c", - "_tpl": "62330c18744e5e31df12f516", - "parentId": "66cbb4da1ae71bfb1007b72b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6f2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6f2", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (105) [c5a297e4-438a-448c-88c0-8e59bdfd47f9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -118.867554, - "y": 22.5378075, - "z": -239.100342 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b72f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b72f", - "_tpl": "657025bbcfc010a0f5006a35", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (43) [feab3605-ec5b-4524-9663-d1954b2598de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 12.9094238, + "y": 28.161808, + "z": -106.91333 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b730", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbb4da1ae71bfb1007b72f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6f4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6f4", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (106) [265558c7-e494-4fe0-9c36-9e6e7633d39b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -106.043579, - "y": 21.8848076, - "z": -223.85437 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b732", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b732", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (11)(Clone) [e3a44400-a3f8-44b5-a8db-ec2fbdf375d1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 271.514038, - "y": 22.65081, - "z": -383.450775 - }, - "Rotation": { - "x": -1.35091323e-5, - "y": 103.724976, - "z": -3.932586e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b734", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b734", - "_tpl": "65815f0e647e3d7246384e14", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (11)(Clone) [e99f34c8-a51f-42d8-b1c1-cddde3f4bfe0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 108.7915, - "y": 22.616806, - "z": 159.019424 - }, - "Rotation": { - "x": -3.889373e-5, - "y": 242.00412, - "z": -8.11432255e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b736", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b736", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (44) [8178c491-be93-4e11-927d-cb2bbc36d53c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 14.2663574, + "y": 28.1668129, + "z": -111.215332 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6f6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6f6", + "_tpl": "590c695186f7741e566b64a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (110) [8baea67c-7a8a-48cf-960d-7b9d17837466]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -63.17566, - "y": 22.3748131, - "z": -303.441345 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b739", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b739", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (46) [c3a29fc8-f0e8-4966-a4c8-d53b73e6841b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -48.9125977, + "y": 28.17281, + "z": -58.61328 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b73a", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbb4da1ae71bfb1007b739", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6f8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6f8", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (116) [e99616c4-1610-46b8-a9d1-d5a1863cbe47]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 84.17139, - "y": 22.1048088, - "z": -166.042358 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b73c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b73c", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (50) [f38cdc1c-2439-42e3-9330-53d6f05359f9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 17.2519531, + "y": 28.22881, + "z": -105.163574 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6fa", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6fa", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (117) [5b3adf56-2869-4a07-af96-bc8afecd9371]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 83.78735, - "y": 22.1188087, - "z": -166.7373 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b73f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b73f", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (52) [96f09897-28ea-4315-8d1d-ba7fe54f18d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.3553467, + "y": 28.1188087, + "z": -138.726318 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b740", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbb4da1ae71bfb1007b73f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6fc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6fc", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (118) [ef8d942c-9090-443d-9256-97813e0b1c27]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 80.01538, - "y": 22.9528084, - "z": -165.34729 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b742", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b742", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (12)(Clone) [2630c8eb-37b9-4775-acbf-ca87c89bb2a2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 204.938354, - "y": 22.6068077, - "z": 127.368713 - }, - "Rotation": { - "x": -6.00943054e-7, - "y": 248.0, - "z": 1.65433266e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b746", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b746", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (55) [8bac698e-b920-4c05-ace5-9873994e0c15]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -163.572632, + "y": 28.1078072, + "z": -53.2072754 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b747", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb4da1ae71bfb1007b746", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b6fe", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b6fe", + "_tpl": "590c678286f77426c9660122", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med (56) [5170afb9-ca8c-4a9e-907d-1154295e6669]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 45.9154053, + "y": 21.5128136, + "z": -113.137329 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b748", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb4da1ae71bfb1007b746", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (12)(Clone) [37d0e4f0-6c84-40d1-827f-c9aad2157466]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 106.789246, - "y": 22.6068077, - "z": -209.161575 - }, - "Rotation": { - "x": 7.013957e-5, - "y": 39.3683739, - "z": 7.76839152e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b74a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b74a", - "_tpl": "57513f07245977207e26a311", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (12)(Clone) [6fcb85da-d68b-4c48-b0fb-0d267ecb530b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 159.777618, - "y": 22.6068077, - "z": 181.61319 - }, - "Rotation": { - "x": 6.416523e-5, - "y": 343.509644, - "z": 8.559796e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b74c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b74c", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b700", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b700", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (120) [45b6736f-cf99-4b77-a062-d932e5fee316]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 84.00842, - "y": 22.78181, - "z": -192.294312 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b74f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b74f", - "_tpl": "6489879db5a2df1c815a04ef", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (61) [765a3cc9-32e1-47a8-834e-6d40b777e97e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 63.23535, + "y": 27.54781, + "z": 62.28064 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b750", - "_tpl": "5efb0cabfb3e451d70735af5", - "parentId": "66cbb4da1ae71bfb1007b74f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b702", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b702", + "_tpl": "5b4335ba86f7744d2837a264", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (121) [22d0a55b-6b14-4677-8638-507e2128deb0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 79.41235, - "y": 22.4038124, - "z": -195.170288 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b753", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b753", - "_tpl": "657023decfc010a0f50069ec", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (65) [04b96cfd-0523-48da-888a-f40d4f851e4a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.9643555, + "y": 37.30881, + "z": 44.91272 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b754", - "_tpl": "62330b3ed4dc74626d570b95", - "parentId": "66cbb4da1ae71bfb1007b753", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b704", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b704", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (124) [9ddba87c-882b-42bc-91ad-34e34d4b48ef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.341614, - "y": 22.225811, - "z": 191.2627 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b756", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b756", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (68) [1ee8435d-c2b5-43d1-94ce-4c1b285be389]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.72534, + "y": 38.10581, + "z": 42.0067139 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b706", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b706", + "_tpl": "5751a25924597722c463c472", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (128) [9e62c7d9-e9a2-4d42-bc6e-2e149835c5c7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 43.28235, - "y": 22.5268135, - "z": -276.860352 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b759", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b759", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (7) [afe3429c-c7ac-4b33-b4ca-423197caaeff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 279.1454, + "y": 21.6748085, + "z": 164.713623 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b75a", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbb4da1ae71bfb1007b759", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b708", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b708", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (129) [5adb5101-43b9-4d40-9db2-6f586d3a6a91]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 43.6634521, - "y": 22.2108116, - "z": -282.167358 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b75c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b75c", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (13)(Clone) [735d39fc-21b8-4d4b-a750-d4360ee376e7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 162.235153, - "y": 22.5378132, - "z": 178.615326 - }, - "Rotation": { - "x": -9.515061e-5, - "y": 137.509644, - "z": -4.682377e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b75f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b75f", - "_tpl": "57372f5c24597769917c0131", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (70) [5bc4783e-9c42-4bc2-8fbe-76a65fc5df29]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.05444, + "y": 37.58981, + "z": 39.60669 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b760", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbb4da1ae71bfb1007b75f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (13)(Clone) [80f298ca-f275-4216-936b-4feb7e8f0680]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -13.7483559, - "y": 22.57081, - "z": -329.506439 - }, - "Rotation": { - "x": -4.00693752e-5, - "y": 111.151817, - "z": -2.22207473e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b764", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b764", - "_tpl": "6570249f1419851aef03e709", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b70a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b70a", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med (75) [87e6ece0-0432-4af5-acec-270db4b775b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 65.37134, + "y": 37.65881, + "z": 37.8457031 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b765", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbb4da1ae71bfb1007b764", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b70c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b70c", + "_tpl": "6389c6c7dbfd5e4b95197e68", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med (77) [dde8cd58-ee40-40b2-927c-e918d76e03a9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.35034, + "y": 37.1948128, + "z": 39.8817139 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b766", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbb4da1ae71bfb1007b764", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (13)(Clone) [9371fb81-5972-4ad2-aff5-1cdba8291859]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 105.687309, - "y": 22.5378132, - "z": -212.878067 - }, - "Rotation": { - "x": -9.882483e-5, - "y": 193.368378, - "z": -3.69403e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b768", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b768", - "_tpl": "57347d5f245977448b40fa81", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (13)(Clone) [f0134c86-5238-4a31-94e9-eef718f91192]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 277.356934, - "y": 22.57181, - "z": -380.4284 - }, - "Rotation": { - "x": -4.140772e-5, - "y": 61.72497, - "z": -2.47452026e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b76c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b76c", - "_tpl": "6570246fcfc010a0f5006a01", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b70e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b70e", + "_tpl": "62a0a043cf4a99369e2624a5", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med (79) [ab58ef0e-2bba-48e7-baf1-6b181bcc9504]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.13135, + "y": 37.7188072, + "z": 41.4437256 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b76d", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "66cbb4da1ae71bfb1007b76c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b710", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b710", + "_tpl": "59e3606886f77417674759a5", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med (85) [aa0b86f7-a23b-4d7d-9418-24a280b12398]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 59.12744, + "y": 37.5828133, + "z": -130.777344 + }, + "Rotation": { + "x": 0.0, + "y": 51.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b76e", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "66cbb4da1ae71bfb1007b76c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b712", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b712", + "_tpl": "5755356824597772cb798962", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (130) [a2c9bf73-ab17-4d2e-8347-8241184cb8a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.916626, - "y": 22.5688133, - "z": -302.428345 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b770", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b770", - "_tpl": "57347d5f245977448b40fa81", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (93) [1aed8e26-b0bd-4a2a-8b2b-a2a4cf485db6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 57.1053467, + "y": 37.68581, + "z": -146.057373 + }, + "Rotation": { + "x": 0.0, + "y": 51.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b714", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b714", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (134) [9186c292-db9b-432a-8af2-bc4e5e4bc42c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -56.52356, - "y": 22.0808067, - "z": -158.290283 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b772", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b772", - "_tpl": "575146b724597720a27126d5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med [62044a10-b3cc-4b5f-95e7-58b2535600f3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 63.293335, + "y": 22.0228081, + "z": -257.723328 + }, + "Rotation": { + "x": 0.0, + "y": 342.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b716", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b716", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (136) [09ac1927-0a30-4099-bb50-ebbbc7ac2981]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 23.8734131, - "y": 22.6278114, - "z": 30.3096924 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b775", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b775", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med [82a514c2-9bab-4ea5-942c-97f0d626f8aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 59.73535, + "y": 22.5818062, + "z": -258.043335 + }, + "Rotation": { + "x": 0.0, + "y": 265.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b776", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb4da1ae71bfb1007b775", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b718", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b718", + "_tpl": "5751a25924597722c463c472", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (139) [cf5253bc-9f58-4fba-b132-ff552f35eb6b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -124.742554, - "y": 21.79681, - "z": 55.3557129 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b779", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b779", - "_tpl": "657023bebfc87b3a34093207", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med [a2843a33-af52-444d-8ca1-85828e4d6816]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.7763672, + "y": 22.6278114, + "z": -253.018311 + }, + "Rotation": { + "x": 0.0, + "y": 32.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b77a", - "_tpl": "5fbe3ffdf8b6a877a729ea82", - "parentId": "66cbb4da1ae71bfb1007b779", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b71a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b71a", + "_tpl": "6389c6c7dbfd5e4b95197e68", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (14) [35d25655-839a-46c2-935b-8d123fa05af1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 112.342407, - "y": 22.5128136, - "z": 286.834717 - }, - "Rotation": { - "x": 0.0, - "y": 207.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b77d", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b77d", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med [e345428e-3fd6-4943-a891-9d6b393e1d72]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 60.5964355, + "y": 22.6098137, + "z": -259.809326 + }, + "Rotation": { + "x": 0.0, + "y": 213.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b77e", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb4da1ae71bfb1007b77d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (14)(Clone) [547fe2fc-e5e1-4c7b-b6a7-58d79169af28]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 106.631378, - "y": 22.624815, - "z": 155.051559 - }, - "Rotation": { - "x": 4.8703987e-5, - "y": 63.00413, - "z": 8.392124e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b781", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b781", - "_tpl": "657023eccfc010a0f50069ef", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b71c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b71c", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med_morph [3d111f24-2c5d-4484-b431-3ea20997aa72]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 5.772339, + "y": 28.12981, + "z": -105.368286 + }, + "Rotation": { + "x": 0.0, + "y": 270.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b782", - "_tpl": "62330c40bdd19b369e1e53d1", - "parentId": "66cbb4da1ae71bfb1007b781", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (14)(Clone) [a5b08353-fc17-4e42-ab35-64668bb99d39]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 206.695435, - "y": 22.6248131, - "z": 128.1557 - }, - "Rotation": { - "x": 5.663944e-6, - "y": 265.0, - "z": -1.7580038e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b785", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b785", - "_tpl": "65702619bfc87b3a34093259", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b71e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b71e", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med_rare (1) [a9d20d0c-54d4-4b75-8c3c-c349091e8053]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 158.868408, + "y": 22.5498085, + "z": -60.5693359 + }, + "Rotation": { + "x": 0.0, + "y": 259.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b786", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66cbb4da1ae71bfb1007b785", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (14)(Clone) [c074088e-b40a-4551-85f6-cc0dd5417af6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -319.448578, - "y": 22.6588154, - "z": 280.488281 - }, - "Rotation": { - "x": 1.88894519e-5, - "y": 179.725159, - "z": 4.4351058e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b788", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b788", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (14)(Clone) [c6642c00-37d7-47ec-b58d-83ba746f5057]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 160.392273, - "y": 22.624815, - "z": 179.788666 - }, - "Rotation": { - "x": 4.737038e-5, - "y": 0.5096516, - "z": 9.92493951e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b78b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b78b", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b720", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b720", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (1) [81998244-2495-4e76-aa31-9d9441b83a52]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 1.22839355, + "y": 22.7208061, + "z": 260.305664 + }, + "Rotation": { + "x": 0.0, + "y": 349.999969, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b78c", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbb4da1ae71bfb1007b78b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b723", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b723", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b724", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbb4da1ae71bfb1007b723", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (141) [09b8bd1c-6e59-4a2e-850c-147ecda774cf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -159.245972, - "y": 22.37981, - "z": 30.8280029 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b78f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b78f", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (100) [a84cab53-127f-4e45-8076-2d9653e7a79f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -105.054565, + "y": 28.7798119, + "z": -211.045288 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b790", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb4da1ae71bfb1007b78f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b727", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b727", + "_tpl": "573726d824597765d96be361", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b728", + "_tpl": "57371f2b24597761224311f1", + "parentId": "66cbb4da1ae71bfb1007b727", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (142) [69a82ebb-871a-4bb3-b70c-141596d034d1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -128.442627, - "y": 22.78281, - "z": 63.00769 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b792", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b792", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (101) [9e452fab-0c58-4d38-aa0b-9cb974b36a62]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -95.3706055, + "y": 28.47681, + "z": -224.512329 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b72b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b72b", + "_tpl": "657023e7c5d7d4cb4d078552", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b72c", + "_tpl": "62330c18744e5e31df12f516", + "parentId": "66cbb4da1ae71bfb1007b72b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (144) [5aff8c53-2c3c-4587-88be-6b1dda16dff0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -147.293579, - "y": 22.8208122, - "z": 131.863647 - }, - "Rotation": { - "x": 0.0, - "y": 259.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b794", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b794", - "_tpl": "60098ad7c2240c0fe85c570a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (105) [c5a297e4-438a-448c-88c0-8e59bdfd47f9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -118.867554, + "y": 22.5378075, + "z": -239.100342 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b72f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b72f", + "_tpl": "657025bbcfc010a0f5006a35", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b730", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbb4da1ae71bfb1007b72f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (146) [6f73daf9-2fc1-4bcc-becb-8579c00291f7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.018555, - "y": 22.5268135, - "z": 137.081665 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b797", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b797", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (106) [265558c7-e494-4fe0-9c36-9e6e7633d39b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -106.043579, + "y": 21.8848076, + "z": -223.85437 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b798", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbb4da1ae71bfb1007b797", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b732", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b732", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (149) [31777c85-678b-48ac-880c-b037ef0d144f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -84.42688, - "y": 22.3978081, - "z": 147.868408 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b79c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b79c", - "_tpl": "65702426cfc010a0f50069f8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (11)(Clone) [e3a44400-a3f8-44b5-a8db-ec2fbdf375d1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 271.514038, + "y": 22.65081, + "z": -383.450775 + }, + "Rotation": { + "x": -1.35091323e-5, + "y": 103.724976, + "z": -3.932586e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b734", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b734", + "_tpl": "65815f0e647e3d7246384e14", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb4da1ae71bfb1007b79d", - "_tpl": "5d6e6772a4b936088465b17c", - "parentId": "66cbb4da1ae71bfb1007b79c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + ] + }, + { + "Id": "loot_mix_food_med_ammo (11)(Clone) [e99f34c8-a51f-42d8-b1c1-cddde3f4bfe0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 108.7915, + "y": 22.616806, + "z": 159.019424 + }, + "Rotation": { + "x": -3.889373e-5, + "y": 242.00412, + "z": -8.11432255e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b736", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b736", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (110) [8baea67c-7a8a-48cf-960d-7b9d17837466]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -63.17566, + "y": 22.3748131, + "z": -303.441345 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b79e", - "_tpl": "5d6e6772a4b936088465b17c", - "parentId": "66cbb4da1ae71bfb1007b79c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b739", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b739", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b73a", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbb4da1ae71bfb1007b739", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (150) [60d9f0d5-1783-400a-9e62-f47bad3fcbf5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -60.03662, - "y": 22.78381, - "z": 138.954712 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7a1", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7a1", - "_tpl": "657024d2bfc87b3a34093235", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (116) [e99616c4-1610-46b8-a9d1-d5a1863cbe47]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 84.17139, + "y": 22.1048088, + "z": -166.042358 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7a2", - "_tpl": "5ba26844d4351e00334c9475", - "parentId": "66cbb4da1ae71bfb1007b7a1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b73c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b73c", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (151) [730edb66-5727-4878-9c1e-5ab05eae99c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -92.4126, - "y": 22.4458122, - "z": 94.29663 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7a5", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7a5", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (117) [5b3adf56-2869-4a07-af96-bc8afecd9371]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 83.78735, + "y": 22.1188087, + "z": -166.7373 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7a6", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbb4da1ae71bfb1007b7a5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b73f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b73f", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b740", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbb4da1ae71bfb1007b73f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (152) [fa95083a-521d-4d0f-a0b1-332b590c5e40]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 22.260376, - "y": 22.763813, - "z": -165.149292 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7a8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7a8", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (118) [ef8d942c-9090-443d-9256-97813e0b1c27]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 80.01538, + "y": 22.9528084, + "z": -165.34729 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b742", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b742", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (154) [2a05c70e-48e4-48c7-b508-d3d16b8ed777]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 24.1263428, - "y": 22.89481, - "z": -181.204346 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7ab", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7ab", - "_tpl": "657023eccfc010a0f50069ef", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (12)(Clone) [2630c8eb-37b9-4775-acbf-ca87c89bb2a2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 204.938354, + "y": 22.6068077, + "z": 127.368713 + }, + "Rotation": { + "x": -6.00943054e-7, + "y": 248.0, + "z": 1.65433266e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b746", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b746", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b747", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb4da1ae71bfb1007b746", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b748", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb4da1ae71bfb1007b746", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - }, - { - "_id": "66cbb4da1ae71bfb1007b7ac", - "_tpl": "62330c40bdd19b369e1e53d1", - "parentId": "66cbb4da1ae71bfb1007b7ab", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + ] + }, + { + "Id": "loot_mix_food_med_ammo (12)(Clone) [37d0e4f0-6c84-40d1-827f-c9aad2157466]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 106.789246, + "y": 22.6068077, + "z": -209.161575 + }, + "Rotation": { + "x": 7.013957e-5, + "y": 39.3683739, + "z": 7.76839152e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b74a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b74a", + "_tpl": "57513f07245977207e26a311", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (158) [ce6a9900-5ee8-4765-bc10-9c8a53254302]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -157.272583, - "y": 27.8878136, - "z": 90.0957 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7af", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7af", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (12)(Clone) [6fcb85da-d68b-4c48-b0fb-0d267ecb530b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 159.777618, + "y": 22.6068077, + "z": 181.61319 + }, + "Rotation": { + "x": 6.416523e-5, + "y": 343.509644, + "z": 8.559796e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b74c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b74c", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (120) [45b6736f-cf99-4b77-a062-d932e5fee316]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 84.00842, + "y": 22.78181, + "z": -192.294312 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7b0", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbb4da1ae71bfb1007b7af", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b74f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b74f", + "_tpl": "6489879db5a2df1c815a04ef", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b750", + "_tpl": "5efb0cabfb3e451d70735af5", + "parentId": "66cbb4da1ae71bfb1007b74f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (160) [a80d90a8-c020-4fa9-ab36-7dedab33cef0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -140.236572, - "y": 27.43481, - "z": 63.133667 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7b2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7b2", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (121) [22d0a55b-6b14-4677-8638-507e2128deb0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 79.41235, + "y": 22.4038124, + "z": -195.170288 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b753", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b753", + "_tpl": "657023decfc010a0f50069ec", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b754", + "_tpl": "62330b3ed4dc74626d570b95", + "parentId": "66cbb4da1ae71bfb1007b753", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (161) [f14d89df-5388-4734-b922-f67b4bd00ee0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -141.62262, - "y": 27.43481, - "z": 64.70361 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7b4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7b4", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (124) [9ddba87c-882b-42bc-91ad-34e34d4b48ef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.341614, + "y": 22.225811, + "z": 191.2627 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b756", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b756", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (162) [e3e2c3bb-6e76-4e73-b264-c0373d7cadbb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -138.088623, - "y": 27.43481, - "z": 63.1546631 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7b7", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7b7", - "_tpl": "657024b31419851aef03e70f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (128) [9e62c7d9-e9a2-4d42-bc6e-2e149835c5c7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 43.28235, + "y": 22.5268135, + "z": -276.860352 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7b8", - "_tpl": "5f647f31b6238e5dd066e196", - "parentId": "66cbb4da1ae71bfb1007b7b7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b759", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b759", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b75a", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbb4da1ae71bfb1007b759", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (163) [9e1c47f1-ed31-42fa-9910-ea969e9910b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -153.229614, - "y": 28.9888115, - "z": -37.97937 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7bb", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7bb", - "_tpl": "64acea09c4eda9354b0226ad", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (129) [5adb5101-43b9-4d40-9db2-6f586d3a6a91]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 43.6634521, + "y": 22.2108116, + "z": -282.167358 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7bc", - "_tpl": "59e4cf5286f7741778269d8a", - "parentId": "66cbb4da1ae71bfb1007b7bb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b75c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b75c", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (164) [0ec51eb4-45e0-4da9-9b04-9ed0f87f7bd2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -191.195618, - "y": 27.638813, - "z": -62.5302734 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7bf", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7bf", - "_tpl": "65702420bfc87b3a34093219", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (13)(Clone) [735d39fc-21b8-4d4b-a750-d4360ee376e7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 162.235153, + "y": 22.5378132, + "z": 178.615326 + }, + "Rotation": { + "x": -9.515061e-5, + "y": 137.509644, + "z": -4.682377e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b75f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b75f", + "_tpl": "57372f5c24597769917c0131", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b760", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbb4da1ae71bfb1007b75f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - }, - { - "_id": "66cbb4da1ae71bfb1007b7c0", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66cbb4da1ae71bfb1007b7bf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + ] + }, + { + "Id": "loot_mix_food_med_ammo (13)(Clone) [80f298ca-f275-4216-936b-4feb7e8f0680]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -13.7483559, + "y": 22.57081, + "z": -329.506439 + }, + "Rotation": { + "x": -4.00693752e-5, + "y": 111.151817, + "z": -2.22207473e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b764", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b764", + "_tpl": "6570249f1419851aef03e709", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b765", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbb4da1ae71bfb1007b764", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b766", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbb4da1ae71bfb1007b764", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (165) [a717875b-9b12-47f8-99db-9b601bdb1c09]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -177.5686, - "y": 29.1088066, - "z": -84.91235 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7c2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7c2", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (13)(Clone) [9371fb81-5972-4ad2-aff5-1cdba8291859]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 105.687309, + "y": 22.5378132, + "z": -212.878067 + }, + "Rotation": { + "x": -9.882483e-5, + "y": 193.368378, + "z": -3.69403e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b768", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b768", + "_tpl": "57347d5f245977448b40fa81", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (169) [1acb7f29-2c7c-4729-a52d-29a3467ea634]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -138.528564, - "y": 28.11481, - "z": -139.54834 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7c5", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7c5", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (13)(Clone) [f0134c86-5238-4a31-94e9-eef718f91192]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 277.356934, + "y": 22.57181, + "z": -380.4284 + }, + "Rotation": { + "x": -4.140772e-5, + "y": 61.72497, + "z": -2.47452026e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b76c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b76c", + "_tpl": "6570246fcfc010a0f5006a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b76d", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "66cbb4da1ae71bfb1007b76c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b76e", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "66cbb4da1ae71bfb1007b76c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (130) [a2c9bf73-ab17-4d2e-8347-8241184cb8a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.916626, + "y": 22.5688133, + "z": -302.428345 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7c6", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbb4da1ae71bfb1007b7c5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b770", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b770", + "_tpl": "57347d5f245977448b40fa81", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (172) [ca2a3a20-5792-42bd-8036-53ae4ba7cfef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -191.531616, - "y": 28.4738121, - "z": -84.03027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7ca", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7ca", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (134) [9186c292-db9b-432a-8af2-bc4e5e4bc42c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -56.52356, + "y": 22.0808067, + "z": -158.290283 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7cb", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb4da1ae71bfb1007b7ca", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b772", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b772", + "_tpl": "575146b724597720a27126d5", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (136) [09ac1927-0a30-4099-bb50-ebbbc7ac2981]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 23.8734131, + "y": 22.6278114, + "z": 30.3096924 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7cc", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb4da1ae71bfb1007b7ca", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b775", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b775", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b776", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb4da1ae71bfb1007b775", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (173) [e03e9875-8150-488b-b41a-79bd70cf0faa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -192.017578, - "y": 28.350811, - "z": -98.82532 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7cf", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7cf", - "_tpl": "657023eccfc010a0f50069ef", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (139) [cf5253bc-9f58-4fba-b132-ff552f35eb6b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -124.742554, + "y": 21.79681, + "z": 55.3557129 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7d0", - "_tpl": "62330c40bdd19b369e1e53d1", - "parentId": "66cbb4da1ae71bfb1007b7cf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b779", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b779", + "_tpl": "657023bebfc87b3a34093207", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b77a", + "_tpl": "5fbe3ffdf8b6a877a729ea82", + "parentId": "66cbb4da1ae71bfb1007b779", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (176) [4130a4c6-10dc-4a4c-b402-05fda67f444f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.198608, - "y": 28.725811, - "z": 53.18567 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7d2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7d2", - "_tpl": "5755356824597772cb798962", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (14) [35d25655-839a-46c2-935b-8d123fa05af1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 112.342407, + "y": 22.5128136, + "z": 286.834717 + }, + "Rotation": { + "x": 0.0, + "y": 207.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b77d", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b77d", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b77e", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb4da1ae71bfb1007b77d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (178) [9a407070-8513-486f-bc57-b56f33ae8d7e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 17.4073486, - "y": 28.0088081, - "z": 47.5976563 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7d5", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7d5", - "_tpl": "657025161419851aef03e718", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (14)(Clone) [547fe2fc-e5e1-4c7b-b6a7-58d79169af28]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 106.631378, + "y": 22.624815, + "z": 155.051559 + }, + "Rotation": { + "x": 4.8703987e-5, + "y": 63.00413, + "z": 8.392124e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b781", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b781", + "_tpl": "657023eccfc010a0f50069ef", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b782", + "_tpl": "62330c40bdd19b369e1e53d1", + "parentId": "66cbb4da1ae71bfb1007b781", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - }, - { - "_id": "66cbb4da1ae71bfb1007b7d6", - "_tpl": "5cc80f53e4a949000e1ea4f8", - "parentId": "66cbb4da1ae71bfb1007b7d5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + ] + }, + { + "Id": "loot_mix_food_med_ammo (14)(Clone) [a5b08353-fc17-4e42-ab35-64668bb99d39]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 206.695435, + "y": 22.6248131, + "z": 128.1557 + }, + "Rotation": { + "x": 5.663944e-6, + "y": 265.0, + "z": -1.7580038e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b785", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b785", + "_tpl": "65702619bfc87b3a34093259", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b786", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66cbb4da1ae71bfb1007b785", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (179) [bc5cb52d-556d-4593-aa6a-8099ba4e4d8c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 17.72705, - "y": 28.510807, - "z": 66.59802 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7d8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7d8", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (14)(Clone) [c074088e-b40a-4551-85f6-cc0dd5417af6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -319.448578, + "y": 22.6588154, + "z": 280.488281 + }, + "Rotation": { + "x": 1.88894519e-5, + "y": 179.725159, + "z": 4.4351058e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b788", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b788", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (18) [b374c866-91cb-4f37-8903-010619cba35d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 173.630371, - "y": 22.1418114, - "z": -9.700317 - }, - "Rotation": { - "x": 0.0, - "y": 257.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7db", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7db", - "_tpl": "657024d8c5d7d4cb4d078567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (14)(Clone) [c6642c00-37d7-47ec-b58d-83ba746f5057]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 160.392273, + "y": 22.624815, + "z": 179.788666 + }, + "Rotation": { + "x": 4.737038e-5, + "y": 0.5096516, + "z": 9.92493951e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b78b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b78b", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b78c", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbb4da1ae71bfb1007b78b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (141) [09b8bd1c-6e59-4a2e-850c-147ecda774cf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -159.245972, + "y": 22.37981, + "z": 30.8280029 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7dc", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb4da1ae71bfb1007b7db", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b78f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b78f", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b790", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb4da1ae71bfb1007b78f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (182) [9e97e4ed-8be5-4841-bd2b-80ca26580c93]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -88.56555, - "y": 27.9478111, - "z": 89.61365 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7df", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7df", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (142) [69a82ebb-871a-4bb3-b70c-141596d034d1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -128.442627, + "y": 22.78281, + "z": 63.00769 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7e0", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb4da1ae71bfb1007b7df", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b792", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b792", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (187) [ae807fcf-f02c-4284-a5f6-7af87642529c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 77.75, - "y": 28.0938072, - "z": 105.871948 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7e3", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7e3", - "_tpl": "6570241bcfc010a0f50069f5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (144) [5aff8c53-2c3c-4587-88be-6b1dda16dff0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -147.293579, + "y": 22.8208122, + "z": 131.863647 + }, + "Rotation": { + "x": 0.0, + "y": 259.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7e4", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbb4da1ae71bfb1007b7e3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b794", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b794", + "_tpl": "60098ad7c2240c0fe85c570a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (189) [8ab416e6-e894-43a6-b758-5de059de861e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 75.2644043, - "y": 28.2668114, - "z": 36.2507324 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7e7", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7e7", - "_tpl": "657025a4bfc87b3a34093250", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (146) [6f73daf9-2fc1-4bcc-becb-8579c00291f7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.018555, + "y": 22.5268135, + "z": 137.081665 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7e8", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "66cbb4da1ae71bfb1007b7e7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b797", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b797", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b798", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbb4da1ae71bfb1007b797", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (190) [cffe1bdb-1bd3-42ae-936a-02aa6c293af3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 71.22937, - "y": 28.3168068, - "z": 26.3536377 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7ea", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7ea", - "_tpl": "590c661e86f7741e566b646a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (149) [31777c85-678b-48ac-880c-b037ef0d144f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -84.42688, + "y": 22.3978081, + "z": 147.868408 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b79c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b79c", + "_tpl": "65702426cfc010a0f50069f8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b79d", + "_tpl": "5d6e6772a4b936088465b17c", + "parentId": "66cbb4da1ae71bfb1007b79c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b79e", + "_tpl": "5d6e6772a4b936088465b17c", + "parentId": "66cbb4da1ae71bfb1007b79c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (192) [abf220e1-7607-452f-9041-632ccb51adb7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 95.5533447, - "y": 28.0088081, - "z": 18.6646729 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7ed", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7ed", - "_tpl": "6570253acfc010a0f5006a1c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (150) [60d9f0d5-1783-400a-9e62-f47bad3fcbf5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -60.03662, + "y": 22.78381, + "z": 138.954712 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7a1", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7a1", + "_tpl": "657024d2bfc87b3a34093235", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7a2", + "_tpl": "5ba26844d4351e00334c9475", + "parentId": "66cbb4da1ae71bfb1007b7a1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (151) [730edb66-5727-4878-9c1e-5ab05eae99c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -92.4126, + "y": 22.4458122, + "z": 94.29663 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7ee", - "_tpl": "573602322459776445391df1", - "parentId": "66cbb4da1ae71bfb1007b7ed", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7a5", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7a5", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7a6", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbb4da1ae71bfb1007b7a5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (198) [b8dd10a0-915c-40c3-8a28-132e6e5846af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.86145, - "y": 28.0978127, - "z": -2.85131836 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7f1", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7f1", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (152) [fa95083a-521d-4d0f-a0b1-332b590c5e40]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 22.260376, + "y": 22.763813, + "z": -165.149292 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7f2", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbb4da1ae71bfb1007b7f1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7a8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7a8", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (199) [2a5b9a76-8a4b-41c9-aff5-7c5c9de3eabb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 10.1484375, - "y": 27.687809, - "z": 0.113647461 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7f4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7f4", - "_tpl": "575146b724597720a27126d5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (154) [2a05c70e-48e4-48c7-b508-d3d16b8ed777]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 24.1263428, + "y": 22.89481, + "z": -181.204346 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7ab", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7ab", + "_tpl": "657023eccfc010a0f50069ef", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7ac", + "_tpl": "62330c40bdd19b369e1e53d1", + "parentId": "66cbb4da1ae71bfb1007b7ab", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (20) [555691f8-b595-4f0b-b35a-1dfa976fd9c5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -136.793579, - "y": 28.5668068, - "z": -71.6843262 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7f7", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7f7", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (158) [ce6a9900-5ee8-4765-bc10-9c8a53254302]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -157.272583, + "y": 27.8878136, + "z": 90.0957 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7f8", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66cbb4da1ae71bfb1007b7f7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7af", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7af", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7b0", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbb4da1ae71bfb1007b7af", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (204) [ed53bb5a-2efe-49e0-a9bb-5cfe9fd75697]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -17.2956543, - "y": 27.9658089, - "z": -93.18738 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b7fc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b7fc", - "_tpl": "657024581419851aef03e700", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (160) [a80d90a8-c020-4fa9-ab36-7dedab33cef0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -140.236572, + "y": 27.43481, + "z": 63.133667 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7fd", - "_tpl": "5d6e689ca4b9361bc8618956", - "parentId": "66cbb4da1ae71bfb1007b7fc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7b2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7b2", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (161) [f14d89df-5388-4734-b922-f67b4bd00ee0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -141.62262, + "y": 27.43481, + "z": 64.70361 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b7fe", - "_tpl": "5d6e689ca4b9361bc8618956", - "parentId": "66cbb4da1ae71bfb1007b7fc", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7b4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7b4", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (205) [ad86b917-8dc9-4b50-9a12-856ff3b7e8cf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 40.0094, - "y": 28.2878075, - "z": -120.471313 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b801", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b801", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (162) [e3e2c3bb-6e76-4e73-b264-c0373d7cadbb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -138.088623, + "y": 27.43481, + "z": 63.1546631 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b802", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbb4da1ae71bfb1007b801", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7b7", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7b7", + "_tpl": "657024b31419851aef03e70f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7b8", + "_tpl": "5f647f31b6238e5dd066e196", + "parentId": "66cbb4da1ae71bfb1007b7b7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (208) [819b1306-b142-4177-9bce-3a7a410504aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 57.48535, - "y": 27.6958122, - "z": -97.5813 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b804", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b804", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (163) [9e1c47f1-ed31-42fa-9910-ea969e9910b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -153.229614, + "y": 28.9888115, + "z": -37.97937 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7bb", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7bb", + "_tpl": "64acea09c4eda9354b0226ad", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7bc", + "_tpl": "59e4cf5286f7741778269d8a", + "parentId": "66cbb4da1ae71bfb1007b7bb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (21) [1f75c577-15d3-45a8-9366-47e9a1ccedc0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 322.466431, - "y": 19.2728081, - "z": -352.253357 - }, - "Rotation": { - "x": 0.0, - "y": 286.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b807", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b807", - "_tpl": "6570259bc5d7d4cb4d07857f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (164) [0ec51eb4-45e0-4da9-9b04-9ed0f87f7bd2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -191.195618, + "y": 27.638813, + "z": -62.5302734 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b808", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbb4da1ae71bfb1007b807", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7bf", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7bf", + "_tpl": "65702420bfc87b3a34093219", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7c0", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66cbb4da1ae71bfb1007b7bf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (213) [f00aa772-7188-462c-ab5f-2deb321f8003]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 95.66345, - "y": 37.8298073, - "z": 17.7156982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b80b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b80b", - "_tpl": "657025a4bfc87b3a34093250", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (165) [a717875b-9b12-47f8-99db-9b601bdb1c09]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -177.5686, + "y": 29.1088066, + "z": -84.91235 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b80c", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "66cbb4da1ae71bfb1007b80b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7c2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7c2", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (215) [2a1a8a29-d473-40ab-943c-c1d9772828cf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 21.76941, - "y": 37.40481, - "z": 39.475708 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b80f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b80f", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (169) [1acb7f29-2c7c-4729-a52d-29a3467ea634]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -138.528564, + "y": 28.11481, + "z": -139.54834 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b810", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbb4da1ae71bfb1007b80f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7c5", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7c5", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7c6", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbb4da1ae71bfb1007b7c5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (218) [ae6b4d60-1096-4550-bf18-6a886cb04ec6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.4053955, - "y": 37.10381, - "z": -17.1953125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b812", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b812", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (172) [ca2a3a20-5792-42bd-8036-53ae4ba7cfef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -191.531616, + "y": 28.4738121, + "z": -84.03027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7ca", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7ca", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7cb", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb4da1ae71bfb1007b7ca", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7cc", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb4da1ae71bfb1007b7ca", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (219) [c2579d82-a2b4-409c-a3d6-914ac9dd002f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.1594238, - "y": 37.25381, - "z": -18.8193359 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b815", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b815", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (173) [e03e9875-8150-488b-b41a-79bd70cf0faa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -192.017578, + "y": 28.350811, + "z": -98.82532 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b816", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbb4da1ae71bfb1007b815", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7cf", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7cf", + "_tpl": "657023eccfc010a0f50069ef", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7d0", + "_tpl": "62330c40bdd19b369e1e53d1", + "parentId": "66cbb4da1ae71bfb1007b7cf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (222) [55b60e20-9a5d-4680-8877-ecda7d05b399]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 90.6164551, - "y": 37.6768074, - "z": -26.1453857 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b818", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b818", - "_tpl": "57347da92459774491567cf5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (176) [4130a4c6-10dc-4a4c-b402-05fda67f444f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.198608, + "y": 28.725811, + "z": 53.18567 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7d2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7d2", + "_tpl": "5755356824597772cb798962", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (228) [45b79ff0-f3ae-4e5d-b3bc-80bb907cdd2b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.8844, - "y": 37.652813, - "z": -75.88635 - }, - "Rotation": { - "x": 0.0, - "y": 11.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b81a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b81a", - "_tpl": "5755356824597772cb798962", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (178) [9a407070-8513-486f-bc57-b56f33ae8d7e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 17.4073486, + "y": 28.0088081, + "z": 47.5976563 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7d5", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7d5", + "_tpl": "657025161419851aef03e718", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7d6", + "_tpl": "5cc80f53e4a949000e1ea4f8", + "parentId": "66cbb4da1ae71bfb1007b7d5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (229) [2433e064-cd19-4c40-b84e-fff51fd03b2c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.4383545, - "y": 37.61781, - "z": -69.66736 - }, - "Rotation": { - "x": 0.0, - "y": 11.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b81d", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b81d", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (179) [bc5cb52d-556d-4593-aa6a-8099ba4e4d8c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 17.72705, + "y": 28.510807, + "z": 66.59802 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b81e", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbb4da1ae71bfb1007b81d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7d8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7d8", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (23) [630e529f-0363-4346-bf64-0d1f1def56a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.789429, - "y": 22.0978127, - "z": -303.277344 - }, - "Rotation": { - "x": 0.0, - "y": 48.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b821", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b821", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (18) [b374c866-91cb-4f37-8903-010619cba35d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 173.630371, + "y": 22.1418114, + "z": -9.700317 + }, + "Rotation": { + "x": 0.0, + "y": 257.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b822", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb4da1ae71bfb1007b821", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7db", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7db", + "_tpl": "657024d8c5d7d4cb4d078567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7dc", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb4da1ae71bfb1007b7db", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (231) [d986a2eb-52b4-48d4-9674-72746eeba906]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -135.882568, - "y": 27.9108086, - "z": -32.14038 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b825", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b825", - "_tpl": "657023bebfc87b3a34093207", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (182) [9e97e4ed-8be5-4841-bd2b-80ca26580c93]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -88.56555, + "y": 27.9478111, + "z": 89.61365 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b826", - "_tpl": "5fbe3ffdf8b6a877a729ea82", - "parentId": "66cbb4da1ae71bfb1007b825", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7df", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7df", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7e0", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb4da1ae71bfb1007b7df", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (232) [20174c3a-ced9-4c58-893c-7e3944d8f9c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -141.728577, - "y": 27.9288063, - "z": -36.0473633 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b829", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b829", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (187) [ae807fcf-f02c-4284-a5f6-7af87642529c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 77.75, + "y": 28.0938072, + "z": 105.871948 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b82a", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbb4da1ae71bfb1007b829", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7e3", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7e3", + "_tpl": "6570241bcfc010a0f50069f5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7e4", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbb4da1ae71bfb1007b7e3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (236) [6664db23-8e63-471d-8d7f-c425cd3aca37]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 70.67639, - "y": 27.71281, - "z": -57.46338 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b82c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b82c", - "_tpl": "65815f0e647e3d7246384e14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (189) [8ab416e6-e894-43a6-b758-5de059de861e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 75.2644043, + "y": 28.2668114, + "z": 36.2507324 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7e7", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7e7", + "_tpl": "657025a4bfc87b3a34093250", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7e8", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "66cbb4da1ae71bfb1007b7e7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (239) [18adbbfe-5823-444c-a189-f556290fcda8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 77.81641, - "y": 27.6958122, - "z": -29.7513428 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b82e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b82e", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (190) [cffe1bdb-1bd3-42ae-936a-02aa6c293af3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 71.22937, + "y": 28.3168068, + "z": 26.3536377 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7ea", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7ea", + "_tpl": "590c661e86f7741e566b646a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (240) [d8c12c78-f6b4-4256-b431-54127a965391]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 77.0244141, - "y": 27.6808128, - "z": -31.5733643 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b830", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b830", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (192) [abf220e1-7607-452f-9041-632ccb51adb7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 95.5533447, + "y": 28.0088081, + "z": 18.6646729 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7ed", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7ed", + "_tpl": "6570253acfc010a0f5006a1c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7ee", + "_tpl": "573602322459776445391df1", + "parentId": "66cbb4da1ae71bfb1007b7ed", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (246) [b926a84d-8a44-48a9-ab95-785da342beb5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 91.5043945, - "y": 28.1328087, - "z": 158.297729 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b832", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b832", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (198) [b8dd10a0-915c-40c3-8a28-132e6e5846af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.86145, + "y": 28.0978127, + "z": -2.85131836 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7f1", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7f1", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7f2", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbb4da1ae71bfb1007b7f1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (249) [e3f2f3be-385b-483e-9677-ea30b82f626e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.7594, - "y": 22.35381, - "z": -64.15332 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b835", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b835", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (199) [2a5b9a76-8a4b-41c9-aff5-7c5c9de3eabb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 10.1484375, + "y": 27.687809, + "z": 0.113647461 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b836", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbb4da1ae71bfb1007b835", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7f4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7f4", + "_tpl": "575146b724597720a27126d5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (29) [37908058-73b8-4054-8916-38d349d75b41]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.6594238, - "y": 25.53381, - "z": 89.60571 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b838", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b838", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (20) [555691f8-b595-4f0b-b35a-1dfa976fd9c5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -136.793579, + "y": 28.5668068, + "z": -71.6843262 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7f7", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7f7", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7f8", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66cbb4da1ae71bfb1007b7f7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (3) [c6bf8125-1830-4799-8edd-a53bc2474057]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 12.1854248, - "y": 22.5538063, - "z": 272.187622 - }, - "Rotation": { - "x": 0.0, - "y": 326.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b83a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b83a", - "_tpl": "60098b1705871270cd5352a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (204) [ed53bb5a-2efe-49e0-a9bb-5cfe9fd75697]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -17.2956543, + "y": 27.9658089, + "z": -93.18738 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b7fc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b7fc", + "_tpl": "657024581419851aef03e700", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7fd", + "_tpl": "5d6e689ca4b9361bc8618956", + "parentId": "66cbb4da1ae71bfb1007b7fc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b7fe", + "_tpl": "5d6e689ca4b9361bc8618956", + "parentId": "66cbb4da1ae71bfb1007b7fc", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (33) [630b2bfc-35a0-41c6-9195-bd8f79356398]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 74.0993652, - "y": 28.237812, - "z": -45.7843 - }, - "Rotation": { - "x": 0.0, - "y": 141.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b83c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b83c", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (205) [ad86b917-8dc9-4b50-9a12-856ff3b7e8cf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 40.0094, + "y": 28.2878075, + "z": -120.471313 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b801", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b801", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b802", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbb4da1ae71bfb1007b801", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (38) [389d7d03-4e27-4b96-a0f5-cd30078289ef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -93.05957, - "y": 22.85281, - "z": 284.138672 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b83f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b83f", - "_tpl": "64acea0d03378853630da53b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (208) [819b1306-b142-4177-9bce-3a7a410504aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 57.48535, + "y": 27.6958122, + "z": -97.5813 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b840", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbb4da1ae71bfb1007b83f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b804", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b804", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (45) [686a6b26-8a7a-4052-87aa-08880da2cc06]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -151.741028, - "y": 22.0818062, - "z": -351.527344 - }, - "Rotation": { - "x": 0.0, - "y": 121.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b843", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b843", - "_tpl": "657026341419851aef03e730", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (21) [1f75c577-15d3-45a8-9366-47e9a1ccedc0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 322.466431, + "y": 19.2728081, + "z": -352.253357 + }, + "Rotation": { + "x": 0.0, + "y": 286.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b844", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb4da1ae71bfb1007b843", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b807", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b807", + "_tpl": "6570259bc5d7d4cb4d07857f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b808", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbb4da1ae71bfb1007b807", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (47) [ee3fac37-1b75-499e-89fb-a1b95b974d44]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.5904541, - "y": 22.473011, - "z": -130.99231 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b847", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b847", - "_tpl": "6570241bcfc010a0f50069f5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (213) [f00aa772-7188-462c-ab5f-2deb321f8003]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 95.66345, + "y": 37.8298073, + "z": 17.7156982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b848", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbb4da1ae71bfb1007b847", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b80b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b80b", + "_tpl": "657025a4bfc87b3a34093250", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b80c", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "66cbb4da1ae71bfb1007b80b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (50) [ecfb8925-71ab-4b88-96fc-a0651f305eba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.66040039, - "y": 22.5958061, - "z": -76.8693848 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b84b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b84b", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (215) [2a1a8a29-d473-40ab-943c-c1d9772828cf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 21.76941, + "y": 37.40481, + "z": 39.475708 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b84c", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb4da1ae71bfb1007b84b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b80f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b80f", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b810", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbb4da1ae71bfb1007b80f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (51) [e861be4b-1a4b-452b-9275-4e5d09caef1f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 1.23034668, - "y": 22.2328072, - "z": -48.41333 - }, - "Rotation": { - "x": 0.0, - "y": 118.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b84f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b84f", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (218) [ae6b4d60-1096-4550-bf18-6a886cb04ec6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.4053955, + "y": 37.10381, + "z": -17.1953125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b850", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb4da1ae71bfb1007b84f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b812", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b812", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (53) [0ffc77f1-7bcd-4f9e-94e3-400e238a1d77]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.8793945, - "y": 28.152813, - "z": -41.3203125 - }, - "Rotation": { - "x": 0.0, - "y": 331.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b853", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b853", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (219) [c2579d82-a2b4-409c-a3d6-914ac9dd002f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.1594238, + "y": 37.25381, + "z": -18.8193359 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b854", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbb4da1ae71bfb1007b853", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b815", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b815", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b816", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbb4da1ae71bfb1007b815", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (54) [8eca5aca-a86d-4ca9-b7f2-0e3e9644418b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 51.168335, - "y": 28.152813, - "z": -40.96936 - }, - "Rotation": { - "x": 0.0, - "y": 331.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b857", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b857", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (222) [55b60e20-9a5d-4680-8877-ecda7d05b399]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 90.6164551, + "y": 37.6768074, + "z": -26.1453857 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b858", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb4da1ae71bfb1007b857", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b818", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b818", + "_tpl": "57347da92459774491567cf5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (57) [07285507-92c2-42e8-b84d-71460d031be2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -215.066589, - "y": 22.5088081, - "z": -378.951355 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b85a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b85a", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (228) [45b79ff0-f3ae-4e5d-b3bc-80bb907cdd2b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.8844, + "y": 37.652813, + "z": -75.88635 + }, + "Rotation": { + "x": 0.0, + "y": 11.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b81a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b81a", + "_tpl": "5755356824597772cb798962", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (6) [8efcf3a7-27bf-4f9e-9b97-619965027db4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.8044434, - "y": 22.5578117, - "z": 271.957642 - }, - "Rotation": { - "x": 0.0, - "y": 326.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b85c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b85c", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (229) [2433e064-cd19-4c40-b84e-fff51fd03b2c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.4383545, + "y": 37.61781, + "z": -69.66736 + }, + "Rotation": { + "x": 0.0, + "y": 11.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b81d", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b81d", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b81e", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbb4da1ae71bfb1007b81d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (65) [592009da-5e0e-4cd5-9d5b-d06fc159d0f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -45.621582, - "y": 22.7768135, - "z": -173.589355 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b85f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b85f", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (23) [630e529f-0363-4346-bf64-0d1f1def56a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.789429, + "y": 22.0978127, + "z": -303.277344 + }, + "Rotation": { + "x": 0.0, + "y": 48.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b860", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbb4da1ae71bfb1007b85f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b821", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b821", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b822", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb4da1ae71bfb1007b821", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (67) [084d0d95-1bf7-4ebe-958a-b9f5d81d8652]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.628418, - "y": 28.1638069, - "z": -127.451294 - }, - "Rotation": { - "x": 0.0, - "y": 327.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b863", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b863", - "_tpl": "5739d41224597779c3645501", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (231) [d986a2eb-52b4-48d4-9674-72746eeba906]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -135.882568, + "y": 27.9108086, + "z": -32.14038 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b825", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b825", + "_tpl": "657023bebfc87b3a34093207", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b826", + "_tpl": "5fbe3ffdf8b6a877a729ea82", + "parentId": "66cbb4da1ae71bfb1007b825", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (232) [20174c3a-ced9-4c58-893c-7e3944d8f9c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -141.728577, + "y": 27.9288063, + "z": -36.0473633 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b864", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb4da1ae71bfb1007b863", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b829", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b829", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b82a", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbb4da1ae71bfb1007b829", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (70) [0275c008-e1d7-41ac-b653-67c64e897694]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -54.9195557, - "y": 28.2648125, - "z": -185.162354 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b867", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b867", - "_tpl": "6489870774a806211e4fb685", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (236) [6664db23-8e63-471d-8d7f-c425cd3aca37]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 70.67639, + "y": 27.71281, + "z": -57.46338 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b868", - "_tpl": "5ba26835d4351e0035628ff5", - "parentId": "66cbb4da1ae71bfb1007b867", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b82c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b82c", + "_tpl": "65815f0e647e3d7246384e14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (74) [303e15f6-4a38-482a-939e-32fbbc97c7c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -44.29065, - "y": 27.4708061, - "z": 30.4926758 - }, - "Rotation": { - "x": 0.0, - "y": 285.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b86b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b86b", - "_tpl": "6570241bcfc010a0f50069f5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (239) [18adbbfe-5823-444c-a189-f556290fcda8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 77.81641, + "y": 27.6958122, + "z": -29.7513428 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b86c", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbb4da1ae71bfb1007b86b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b82e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b82e", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (76) [f0c3573f-44e3-4f89-9ba8-08bc561f5100]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -33.47461, - "y": 28.0098076, - "z": -10.9992676 - }, - "Rotation": { - "x": 0.0, - "y": 146.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b86f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b86f", - "_tpl": "65702536c5d7d4cb4d078570", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (240) [d8c12c78-f6b4-4256-b431-54127a965391]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 77.0244141, + "y": 27.6808128, + "z": -31.5733643 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b870", - "_tpl": "573601b42459776410737435", - "parentId": "66cbb4da1ae71bfb1007b86f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b830", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b830", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (80) [67417f06-56c6-43d5-a4e1-504fad57fe45]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -71.79761, - "y": 27.9288063, - "z": 21.8426514 - }, - "Rotation": { - "x": 0.0, - "y": 222.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b873", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b873", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (246) [b926a84d-8a44-48a9-ab95-785da342beb5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 91.5043945, + "y": 28.1328087, + "z": 158.297729 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b874", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb4da1ae71bfb1007b873", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b832", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b832", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (81) [1527177b-3c6e-48bf-b146-eb566850bc6d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.59863, - "y": 28.10281, - "z": 39.31067 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b877", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b877", - "_tpl": "65702536c5d7d4cb4d078570", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (249) [e3f2f3be-385b-483e-9677-ea30b82f626e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.7594, + "y": 22.35381, + "z": -64.15332 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b878", - "_tpl": "573601b42459776410737435", - "parentId": "66cbb4da1ae71bfb1007b877", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b835", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b835", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b836", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbb4da1ae71bfb1007b835", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (82) [eb435161-b319-4c94-861b-ef6e3c387da2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.72058, - "y": 27.96381, - "z": 46.0456543 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b87b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b87b", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (29) [37908058-73b8-4054-8916-38d349d75b41]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.6594238, + "y": 25.53381, + "z": 89.60571 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b87c", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66cbb4da1ae71bfb1007b87b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b838", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b838", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (83) [40547403-ed06-497d-a83b-ddae52d10b5a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.72058, - "y": 27.96381, - "z": 46.0456543 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b87e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b87e", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (3) [c6bf8125-1830-4799-8edd-a53bc2474057]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 12.1854248, + "y": 22.5538063, + "z": 272.187622 + }, + "Rotation": { + "x": 0.0, + "y": 326.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b83a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b83a", + "_tpl": "60098b1705871270cd5352a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (87) [be1dc908-8e18-41d5-b6fe-b04e4a62420f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.9855957, - "y": 27.7488136, - "z": 46.5036621 - }, - "Rotation": { - "x": 0.0, - "y": 344.999969, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b881", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b881", - "_tpl": "6570260c1419851aef03e727", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (33) [630b2bfc-35a0-41c6-9195-bd8f79356398]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 74.0993652, + "y": 28.237812, + "z": -45.7843 + }, + "Rotation": { + "x": 0.0, + "y": 141.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b882", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb4da1ae71bfb1007b881", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b83c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b83c", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (89) [15d8d7c5-4205-435a-b9d0-36ced64bcdbe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -72.06665, - "y": 31.7618065, - "z": 64.81262 - }, - "Rotation": { - "x": 0.0, - "y": 336.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b885", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b885", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (38) [389d7d03-4e27-4b96-a0f5-cd30078289ef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -93.05957, + "y": 22.85281, + "z": 284.138672 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b886", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbb4da1ae71bfb1007b885", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b83f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b83f", + "_tpl": "64acea0d03378853630da53b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b840", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbb4da1ae71bfb1007b83f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (9) [eee93472-d708-4713-a337-81aea6418f94]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.0294189, - "y": 22.510807, - "z": 236.310669 - }, - "Rotation": { - "x": 0.0, - "y": 152.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b889", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b889", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (45) [686a6b26-8a7a-4052-87aa-08880da2cc06]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -151.741028, + "y": 22.0818062, + "z": -351.527344 + }, + "Rotation": { + "x": 0.0, + "y": 121.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b88a", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb4da1ae71bfb1007b889", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b843", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b843", + "_tpl": "657026341419851aef03e730", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b844", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb4da1ae71bfb1007b843", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (92) [dc71d6be-1b62-4a26-b512-47ec5359533e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.50464, - "y": 27.9678078, - "z": 36.32373 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b88d", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b88d", - "_tpl": "657023f81419851aef03e6f1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (47) [ee3fac37-1b75-499e-89fb-a1b95b974d44]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.5904541, + "y": 22.473011, + "z": -130.99231 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b88e", - "_tpl": "5f0596629e22f464da6bbdd9", - "parentId": "66cbb4da1ae71bfb1007b88d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b847", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b847", + "_tpl": "6570241bcfc010a0f50069f5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b848", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbb4da1ae71bfb1007b847", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (93) [a72e7cb9-eeed-42f2-a963-22669168e899]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -60.1966553, - "y": 27.9248085, - "z": 32.90869 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b891", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b891", - "_tpl": "5739d41224597779c3645501", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (50) [ecfb8925-71ab-4b88-96fc-a0651f305eba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.66040039, + "y": 22.5958061, + "z": -76.8693848 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b892", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb4da1ae71bfb1007b891", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b84b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b84b", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b84c", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb4da1ae71bfb1007b84b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (96) [dfe8480e-8f86-46d5-9d32-46bd7bc77dd0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.364624, - "y": 28.0258064, - "z": 51.66565 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b894", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b894", - "_tpl": "57513f9324597720a7128161", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (51) [e861be4b-1a4b-452b-9275-4e5d09caef1f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 1.23034668, + "y": 22.2328072, + "z": -48.41333 + }, + "Rotation": { + "x": 0.0, + "y": 118.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b84f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b84f", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b850", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb4da1ae71bfb1007b84f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (97) [962aae8f-489e-450e-94d9-a17238558b6c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.2666, - "y": 27.9308128, - "z": 51.732666 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b897", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b897", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (53) [0ffc77f1-7bcd-4f9e-94e3-400e238a1d77]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.8793945, + "y": 28.152813, + "z": -41.3203125 + }, + "Rotation": { + "x": 0.0, + "y": 331.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b898", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbb4da1ae71bfb1007b897", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b853", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b853", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b854", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbb4da1ae71bfb1007b853", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (98) [7a017291-62b4-4237-8113-d99049287938]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.840576, - "y": 28.2928123, - "z": -228.377319 - }, - "Rotation": { - "x": 0.0, - "y": 176.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b89b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b89b", - "_tpl": "57372bd3245977670b7cd243", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (54) [8eca5aca-a86d-4ca9-b7f2-0e3e9644418b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 51.168335, + "y": 28.152813, + "z": -40.96936 + }, + "Rotation": { + "x": 0.0, + "y": 331.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b89c", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb4da1ae71bfb1007b89b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b857", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b857", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b858", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb4da1ae71bfb1007b857", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mobil (6) [7d1d2cc6-aa6f-4a17-aba3-1a6043e80342]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.16638, - "y": 37.6778069, - "z": 35.02063 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b89e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b89e", - "_tpl": "56742c324bdc2d150f8b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (57) [07285507-92c2-42e8-b84d-71460d031be2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -215.066589, + "y": 22.5088081, + "z": -378.951355 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b85a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b85a", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_sup (1) [e9eb17f2-ced6-409d-b165-542f5fd90eda]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -49.8476563, - "y": 22.2888069, - "z": 42.63965 - }, - "Rotation": { - "x": 0.0, - "y": 301.681183, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8a0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8a0", - "_tpl": "58272d7f2459774f6311ddfd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (6) [8efcf3a7-27bf-4f9e-9b97-619965027db4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.8044434, + "y": 22.5578117, + "z": 271.957642 + }, + "Rotation": { + "x": 0.0, + "y": 326.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b85c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b85c", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_sup (10) [c6e568d7-20c6-4187-a520-f150e2040149]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.985352, - "y": 25.2388115, - "z": 270.310669 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8a2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8a2", - "_tpl": "6544d4187c5457729210d277", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_mod_sup (14) [6b02fc20-4d2e-49fe-8654-68c42068184d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.909424, - "y": 25.0548134, - "z": 266.972656 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + { + "Id": "loot_mix_food_med_ammo (65) [592009da-5e0e-4cd5-9d5b-d06fc159d0f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -45.621582, + "y": 22.7768135, + "z": -173.589355 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b85f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b85f", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b860", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbb4da1ae71bfb1007b85f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8a4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8a4", - "_tpl": "58272b842459774abc128d50", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (67) [084d0d95-1bf7-4ebe-958a-b9f5d81d8652]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.628418, + "y": 28.1638069, + "z": -127.451294 + }, + "Rotation": { + "x": 0.0, + "y": 327.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b863", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b863", + "_tpl": "5739d41224597779c3645501", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b864", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb4da1ae71bfb1007b863", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mod_sup (15) [814b5c94-f690-4992-9c09-b41a0c756ae5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.812347, - "y": 25.0548134, - "z": 267.868683 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8a6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8a6", - "_tpl": "571a28e524597720b4066567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (70) [0275c008-e1d7-41ac-b653-67c64e897694]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -54.9195557, + "y": 28.2648125, + "z": -185.162354 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b867", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b867", + "_tpl": "6489870774a806211e4fb685", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b868", + "_tpl": "5ba26835d4351e0035628ff5", + "parentId": "66cbb4da1ae71bfb1007b867", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_mod_sup (16) [6a972387-52b6-4350-a79f-39be50441442]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.137436, - "y": 25.58781, - "z": 265.851685 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8a8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8a8", - "_tpl": "637f57d2f5ef8c33840d36c4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (74) [303e15f6-4a38-482a-939e-32fbbc97c7c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -44.29065, + "y": 27.4708061, + "z": 30.4926758 + }, + "Rotation": { + "x": 0.0, + "y": 285.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b86b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b86b", + "_tpl": "6570241bcfc010a0f50069f5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b86c", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbb4da1ae71bfb1007b86b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "loot_mod_sup (17) [93948299-9ddc-4933-ba8d-b4470d2cdf07]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.27063, - "y": 21.68581, - "z": -290.838318 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8aa", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8aa", - "_tpl": "5a33ca0fc4a282000d72292f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (76) [f0c3573f-44e3-4f89-9ba8-08bc561f5100]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -33.47461, + "y": 28.0098076, + "z": -10.9992676 + }, + "Rotation": { + "x": 0.0, + "y": 146.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b86f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b86f", + "_tpl": "65702536c5d7d4cb4d078570", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b870", + "_tpl": "573601b42459776410737435", + "parentId": "66cbb4da1ae71bfb1007b86f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "loot_mod_sup (18) [6e79f401-d434-42ea-9696-595523b628dd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.0955963, - "y": 22.1118126, - "z": -291.280365 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8ac", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8ac", - "_tpl": "5b7bedd75acfc43d825283f9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (80) [67417f06-56c6-43d5-a4e1-504fad57fe45]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -71.79761, + "y": 27.9288063, + "z": 21.8426514 + }, + "Rotation": { + "x": 0.0, + "y": 222.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b873", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b873", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b874", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb4da1ae71bfb1007b873", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mod_sup (20) [90ab73f4-c335-45f9-a118-ce159b68779e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.03064, - "y": 22.6068077, - "z": -290.613342 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8ae", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8ae", - "_tpl": "5dfe6104585a0c3e995c7b82", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (81) [1527177b-3c6e-48bf-b146-eb566850bc6d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.59863, + "y": 28.10281, + "z": 39.31067 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b877", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b877", + "_tpl": "65702536c5d7d4cb4d078570", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b878", + "_tpl": "573601b42459776410737435", + "parentId": "66cbb4da1ae71bfb1007b877", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "loot_mod_sup (22) [c33af917-7969-4061-aed0-33accb75bcd1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.09555, - "y": 22.0948067, - "z": -292.088318 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8b0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8b0", - "_tpl": "5d4aab30a4b9365435358c55", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (82) [eb435161-b319-4c94-861b-ef6e3c387da2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.72058, + "y": 27.96381, + "z": 46.0456543 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b87b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b87b", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b87c", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66cbb4da1ae71bfb1007b87b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mod_sup (23) [f6f2d491-aaef-46ca-9a0e-06ba27c0f07f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.1096344, - "y": 22.7028084, - "z": -291.123352 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8b2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8b2", - "_tpl": "5a33b2c9c4a282000c5a9511", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (83) [40547403-ed06-497d-a83b-ddae52d10b5a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.72058, + "y": 27.96381, + "z": 46.0456543 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b87e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b87e", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_sup (24) [c84ed6be-75b0-4f27-89e4-bb2e03ff9c7b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.06958, - "y": 23.1198082, - "z": -291.0133 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8b4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8b4", - "_tpl": "5d1c702ad7ad1a632267f429", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (87) [be1dc908-8e18-41d5-b6fe-b04e4a62420f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.9855957, + "y": 27.7488136, + "z": 46.5036621 + }, + "Rotation": { + "x": 0.0, + "y": 344.999969, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b881", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b881", + "_tpl": "6570260c1419851aef03e727", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b882", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb4da1ae71bfb1007b881", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_sup (3) [714592ef-129b-4b36-ac23-db111a0cf822]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -50.0776367, - "y": 22.2798119, - "z": 42.8786621 - }, - "Rotation": { - "x": 0.0, - "y": 301.681183, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8b6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8b6", - "_tpl": "5e569a2e56edd02abe09f280", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (89) [15d8d7c5-4205-435a-b9d0-36ced64bcdbe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -72.06665, + "y": 31.7618065, + "z": 64.81262 + }, + "Rotation": { + "x": 0.0, + "y": 336.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b885", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b885", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b886", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbb4da1ae71bfb1007b885", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mod_sup (4) [3fbc7441-7743-4a14-800b-ee036189cdca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.93541, - "y": 24.7658119, - "z": 268.140625 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8b8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8b8", - "_tpl": "5c6165902e22160010261b28", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (9) [eee93472-d708-4713-a337-81aea6418f94]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.0294189, + "y": 22.510807, + "z": 236.310669 + }, + "Rotation": { + "x": 0.0, + "y": 152.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b889", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b889", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b88a", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb4da1ae71bfb1007b889", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mod_sup (5) [7eb62a00-3a60-44c4-a5fc-46ee80eca8d8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.947388, - "y": 25.29581, - "z": 268.5266 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8ba", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8ba", - "_tpl": "619d36da53b4d42ee724fae4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (92) [dc71d6be-1b62-4a26-b512-47ec5359533e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.50464, + "y": 27.9678078, + "z": 36.32373 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b88d", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b88d", + "_tpl": "657023f81419851aef03e6f1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b88e", + "_tpl": "5f0596629e22f464da6bbdd9", + "parentId": "66cbb4da1ae71bfb1007b88d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mod_sup (6) [9d475f5f-dd54-41b0-94d9-d9c9ae8df9d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.921371, - "y": 25.2648125, - "z": 269.375732 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8bc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8bc", - "_tpl": "5a7ad1fb51dfba0013379715", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (93) [a72e7cb9-eeed-42f2-a963-22669168e899]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -60.1966553, + "y": 27.9248085, + "z": 32.90869 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b891", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b891", + "_tpl": "5739d41224597779c3645501", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b892", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb4da1ae71bfb1007b891", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mod_sup (8) [d4f28d06-eab8-45a5-a532-c55435bfd759]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.948349, - "y": 24.7888069, - "z": 269.515625 - }, - "Rotation": { - "x": 0.0, - "y": 301.681152, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8be", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8be", - "_tpl": "6165ac8c290d254f5e6b2f6c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (96) [dfe8480e-8f86-46d5-9d32-46bd7bc77dd0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.364624, + "y": 28.0258064, + "z": 51.66565 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b894", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b894", + "_tpl": "57513f9324597720a7128161", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_sup [b7bd27b1-64e5-449b-829c-c8a464cce928]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -49.82556, - "y": 22.2888069, - "z": 42.95166 - }, - "Rotation": { - "x": 0.0, - "y": 301.681183, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8c0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8c0", - "_tpl": "653ecef836fae5a82f02b869", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (97) [962aae8f-489e-450e-94d9-a17238558b6c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.2666, + "y": 27.9308128, + "z": 51.732666 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b897", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b897", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b898", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbb4da1ae71bfb1007b897", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mods (1) [102ed37d-634f-4ea5-bf4f-c10a8262a147]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.369385, - "y": 22.2918129, - "z": -67.385376 - }, - "Rotation": { - "x": 0.0, - "y": 164.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8c2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8c2", - "_tpl": "57c9a89124597704ee6faec1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (98) [7a017291-62b4-4237-8113-d99049287938]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.840576, + "y": 28.2928123, + "z": -228.377319 + }, + "Rotation": { + "x": 0.0, + "y": 176.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b89b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b89b", + "_tpl": "57372bd3245977670b7cd243", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b89c", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb4da1ae71bfb1007b89b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mods (100) [7fb72df3-6dc8-4e10-aaa1-6f5b8488664d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -24.9665527, - "y": 28.5818062, - "z": -24.9562988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8c4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8c4", - "_tpl": "63f4ba71f31d4a33b87bd046", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mobil (6) [7d1d2cc6-aa6f-4a17-aba3-1a6043e80342]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.16638, + "y": 37.6778069, + "z": 35.02063 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b89e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b89e", + "_tpl": "56742c324bdc2d150f8b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (102) [999ce868-8bae-48bf-9b3c-6e637d378ce3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -29.3355713, - "y": 28.0398064, - "z": -0.302368164 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8c6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8c6", - "_tpl": "6193d3149fb0c665d5490e32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (1) [e9eb17f2-ced6-409d-b165-542f5fd90eda]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -49.8476563, + "y": 22.2888069, + "z": 42.63965 + }, + "Rotation": { + "x": 0.0, + "y": 301.681183, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8a0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8a0", + "_tpl": "58272d7f2459774f6311ddfd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_sup (10) [c6e568d7-20c6-4187-a520-f150e2040149]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.985352, + "y": 25.2388115, + "z": 270.310669 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b8c7", - "_tpl": "5ea2a8e200685063ec28c05a", - "parentId": "66cbb4da1ae71bfb1007b8c6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8a2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8a2", + "_tpl": "6544d4187c5457729210d277", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (103) [4fa4845a-9cc3-49b5-875d-49f004fc1e77]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -25.0316162, - "y": 28.5548134, - "z": -24.175293 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8c9", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8c9", - "_tpl": "5b7be4575acfc400161d0832", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (14) [6b02fc20-4d2e-49fe-8654-68c42068184d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.909424, + "y": 25.0548134, + "z": 266.972656 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8a4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8a4", + "_tpl": "58272b842459774abc128d50", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (104) [b3e3c468-6abc-42e9-a50a-43da83c77ba4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -24.98462, - "y": 27.7658119, - "z": -4.70727539 - }, - "Rotation": { - "x": 0.0, - "y": 198.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8cb", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8cb", - "_tpl": "5ef366938cef260c0642acad", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (15) [814b5c94-f690-4992-9c09-b41a0c756ae5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.812347, + "y": 25.0548134, + "z": 267.868683 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8a6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8a6", + "_tpl": "571a28e524597720b4066567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (106) [ce7eb763-c4f3-486e-af21-bfdfdba86e8c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 60.57434, - "y": 27.78381, - "z": -1.67333984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8cd", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8cd", - "_tpl": "661e52b5b099f32c28003586", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (16) [6a972387-52b6-4350-a79f-39be50441442]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.137436, + "y": 25.58781, + "z": 265.851685 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8a8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8a8", + "_tpl": "637f57d2f5ef8c33840d36c4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (107) [8b3b112d-747a-41a4-8764-56a190261852]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.845337, - "y": 28.3208122, - "z": -1.5032959 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8cf", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8cf", - "_tpl": "5d133067d7ad1a33013f95b4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (17) [93948299-9ddc-4933-ba8d-b4470d2cdf07]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.27063, + "y": 21.68581, + "z": -290.838318 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8aa", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8aa", + "_tpl": "5a33ca0fc4a282000d72292f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (11) [b755d2ae-b273-412d-ac4b-426d2a14d176]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 135.446411, - "y": 22.8328133, - "z": 285.84668 - }, - "Rotation": { - "x": 0.0, - "y": 327.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8d1", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8d1", - "_tpl": "5c18b9192e2216398b5a8104", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (18) [6e79f401-d434-42ea-9696-595523b628dd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.0955963, + "y": 22.1118126, + "z": -291.280365 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8ac", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8ac", + "_tpl": "5b7bedd75acfc43d825283f9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (112) [745ccc8f-62a3-4655-9c72-d51a7c574b50]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -20.7186279, - "y": 28.2308083, - "z": -38.02832 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8d3", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8d3", - "_tpl": "5a966f51a2750c00156aacf6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_sup (20) [90ab73f4-c335-45f9-a118-ce159b68779e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.03064, + "y": 22.6068077, + "z": -290.613342 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b8d4", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbb4da1ae71bfb1007b8d3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8ae", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8ae", + "_tpl": "5dfe6104585a0c3e995c7b82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (113) [01f88fc1-e0cb-43c1-8a17-1f4d3e6a04a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -20.456665, - "y": 28.2348137, - "z": -37.16638 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8d6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8d6", - "_tpl": "5caf1109ae9215753c44119f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_sup (22) [c33af917-7969-4061-aed0-33accb75bcd1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.09555, + "y": 22.0948067, + "z": -292.088318 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b8d7", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbb4da1ae71bfb1007b8d6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 14 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8b0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8b0", + "_tpl": "5d4aab30a4b9365435358c55", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (114) [135383cf-b038-4df9-8dcc-a5e0f19569c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -20.6866455, - "y": 28.14581, - "z": -35.6983643 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8d9", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8d9", - "_tpl": "57ac965c24597706be5f975c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (23) [f6f2d491-aaef-46ca-9a0e-06ba27c0f07f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.1096344, + "y": 22.7028084, + "z": -291.123352 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8b2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8b2", + "_tpl": "5a33b2c9c4a282000c5a9511", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (117) [99ba6e00-58e8-40f0-bd0a-497be80a6e4e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -50.8515625, - "y": 28.4738121, - "z": -217.220337 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8db", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8db", - "_tpl": "5e569a0156edd02abe09f27d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (24) [c84ed6be-75b0-4f27-89e4-bb2e03ff9c7b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.06958, + "y": 23.1198082, + "z": -291.0133 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8b4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8b4", + "_tpl": "5d1c702ad7ad1a632267f429", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (119) [006c64f1-d050-4c3d-b8aa-3cdf5d67040c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.77234, - "y": 37.8038063, - "z": -47.40735 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8dd", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8dd", - "_tpl": "66992f4db9f31ddda10dd1c8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (3) [714592ef-129b-4b36-ac23-db111a0cf822]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -50.0776367, + "y": 22.2798119, + "z": 42.8786621 + }, + "Rotation": { + "x": 0.0, + "y": 301.681183, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8b6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8b6", + "_tpl": "5e569a2e56edd02abe09f280", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (12) [903ffcff-d0a1-4ab4-a169-df0a7f061de4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -112.195557, - "y": 22.28381, - "z": -240.438354 - }, - "Rotation": { - "x": 0.0, - "y": 118.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8df", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8df", - "_tpl": "5a34fae7c4a2826c6e06d760", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (4) [3fbc7441-7743-4a14-800b-ee036189cdca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.93541, + "y": 24.7658119, + "z": 268.140625 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8b8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8b8", + "_tpl": "5c6165902e22160010261b28", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (120) [ad6b8ae7-f762-449a-a1d6-8d552167c8db]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 49.0163574, - "y": 37.7888069, - "z": -47.5292969 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8e1", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8e1", - "_tpl": "55d35ee94bdc2d61338b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (5) [7eb62a00-3a60-44c4-a5fc-46ee80eca8d8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.947388, + "y": 25.29581, + "z": 268.5266 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8ba", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8ba", + "_tpl": "619d36da53b4d42ee724fae4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (122) [0bf7e5ff-c9ca-4e53-8aa8-a20dd0ea28f3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 90.5533447, - "y": 37.61481, - "z": 60.5026855 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8e3", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8e3", - "_tpl": "5d2c772c48f0355d95672c25", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (6) [9d475f5f-dd54-41b0-94d9-d9c9ae8df9d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.921371, + "y": 25.2648125, + "z": 269.375732 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8bc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8bc", + "_tpl": "5a7ad1fb51dfba0013379715", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (123) [b223a53c-262d-4248-9509-b003acf5bd40]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -49.3205566, - "y": 37.78281, - "z": -67.92029 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8e5", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8e5", - "_tpl": "5649a2464bdc2d91118b45a8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_sup (8) [d4f28d06-eab8-45a5-a532-c55435bfd759]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.948349, + "y": 24.7888069, + "z": 269.515625 + }, + "Rotation": { + "x": 0.0, + "y": 301.681152, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8be", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8be", + "_tpl": "6165ac8c290d254f5e6b2f6c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (125) [963cae71-52c3-48cb-908b-a8992dc05780]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -49.86255, - "y": 37.64681, - "z": -68.69739 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8e7", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8e7", - "_tpl": "66992725ae08c5c29e0c4f9a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_sup [b7bd27b1-64e5-449b-829c-c8a464cce928]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -49.82556, + "y": 22.2888069, + "z": 42.95166 + }, + "Rotation": { + "x": 0.0, + "y": 301.681183, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b8e8", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb4da1ae71bfb1007b8e7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8c0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8c0", + "_tpl": "653ecef836fae5a82f02b869", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (126) [24ab112c-fe37-4c79-8837-e5ec45137086]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.340576, - "y": 27.33881, - "z": -46.6063232 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8ea", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8ea", - "_tpl": "66015dc4aaad2f54cb04c56a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mods (1) [102ed37d-634f-4ea5-bf4f-c10a8262a147]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.369385, + "y": 22.2918129, + "z": -67.385376 + }, + "Rotation": { + "x": 0.0, + "y": 164.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b8eb", - "_tpl": "6601546f86889319850bd566", - "parentId": "66cbb4da1ae71bfb1007b8ea", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8c2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8c2", + "_tpl": "57c9a89124597704ee6faec1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (129) [3cec112f-46aa-45fe-9793-8bb038462904]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -24.8686523, - "y": 28.2798119, - "z": -124.953369 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8ed", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8ed", - "_tpl": "5f3e77b26cda304dcc634057", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (100) [7fb72df3-6dc8-4e10-aaa1-6f5b8488664d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -24.9665527, + "y": 28.5818062, + "z": -24.9562988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8c4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8c4", + "_tpl": "63f4ba71f31d4a33b87bd046", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mods (102) [999ce868-8bae-48bf-9b3c-6e637d378ce3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -29.3355713, + "y": 28.0398064, + "z": -0.302368164 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b8ee", - "_tpl": "5efb0d4f4bc50b58e81710f3", - "parentId": "66cbb4da1ae71bfb1007b8ed", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8c6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8c6", + "_tpl": "6193d3149fb0c665d5490e32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b8c7", + "_tpl": "5ea2a8e200685063ec28c05a", + "parentId": "66cbb4da1ae71bfb1007b8c6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } } - } - ] - }, - { - "Id": "loot_mods (129) [62c73315-05c3-4df3-9fac-6f7660d18ff4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -24.8686523, - "y": 28.2798119, - "z": -124.953369 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8f0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8f0", - "_tpl": "593d490386f7745ee97a1555", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (103) [4fa4845a-9cc3-49b5-875d-49f004fc1e77]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -25.0316162, + "y": 28.5548134, + "z": -24.175293 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8c9", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8c9", + "_tpl": "5b7be4575acfc400161d0832", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (130) [5d24c0f9-70d7-46af-97ef-f1b12cf65ad0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -24.6435547, - "y": 28.2798119, - "z": -124.309326 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8f2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8f2", - "_tpl": "616554fe50224f204c1da2aa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (104) [b3e3c468-6abc-42e9-a50a-43da83c77ba4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -24.98462, + "y": 27.7658119, + "z": -4.70727539 + }, + "Rotation": { + "x": 0.0, + "y": 198.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8cb", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8cb", + "_tpl": "5ef366938cef260c0642acad", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (132) [7f7e04ae-b79a-48b6-b8ee-c59b97dd7030]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -25.3586426, - "y": 28.1788063, - "z": -31.4753418 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8f4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8f4", - "_tpl": "661f8995c341ea101e0d33e8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (106) [ce7eb763-c4f3-486e-af21-bfdfdba86e8c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 60.57434, + "y": 27.78381, + "z": -1.67333984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8cd", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8cd", + "_tpl": "661e52b5b099f32c28003586", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (133) [ccdc4934-8bd2-454c-8f75-58b8bd092ee7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -28.666626, - "y": 28.5938072, - "z": -30.8823242 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8f6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8f6", - "_tpl": "587df583245977373c4f1129", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (107) [8b3b112d-747a-41a4-8764-56a190261852]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.845337, + "y": 28.3208122, + "z": -1.5032959 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8cf", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8cf", + "_tpl": "5d133067d7ad1a33013f95b4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (136) [b525ca17-9ffe-44b0-a96f-3a182fbc8211]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.9405518, - "y": 28.17181, - "z": -58.984375 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8f8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8f8", - "_tpl": "5b237e425acfc4771e1be0b6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (11) [b755d2ae-b273-412d-ac4b-426d2a14d176]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 135.446411, + "y": 22.8328133, + "z": 285.84668 + }, + "Rotation": { + "x": 0.0, + "y": 327.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8d1", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8d1", + "_tpl": "5c18b9192e2216398b5a8104", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (137) [c22d703a-3ed8-46e1-b244-3ff447f590e9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -10.0655518, - "y": 27.9688072, - "z": -238.1023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8fa", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8fa", - "_tpl": "5a800961159bd4315e3a1657", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (112) [745ccc8f-62a3-4655-9c72-d51a7c574b50]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -20.7186279, + "y": 28.2308083, + "z": -38.02832 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8d3", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8d3", + "_tpl": "5a966f51a2750c00156aacf6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b8d4", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbb4da1ae71bfb1007b8d3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (138) [393655ea-3db8-4e75-8ba8-2e2ec45a80d7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.307617, - "y": 27.9688072, - "z": -238.47937 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8fc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8fc", - "_tpl": "544a3a774bdc2d3a388b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (113) [01f88fc1-e0cb-43c1-8a17-1f4d3e6a04a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -20.456665, + "y": 28.2348137, + "z": -37.16638 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8d6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8d6", + "_tpl": "5caf1109ae9215753c44119f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b8d7", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbb4da1ae71bfb1007b8d6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 14 + } } - } - ] - }, - { - "Id": "loot_mods (14) [cb914d39-d6ba-4436-9fd1-419122433386]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -112.69165, - "y": 22.1928062, - "z": -240.3103 - }, - "Rotation": { - "x": 0.0, - "y": 118.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b8fe", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b8fe", - "_tpl": "55d48a634bdc2d8b2f8b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (114) [135383cf-b038-4df9-8dcc-a5e0f19569c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -20.6866455, + "y": 28.14581, + "z": -35.6983643 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8d9", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8d9", + "_tpl": "57ac965c24597706be5f975c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (140) [65b13744-2880-40a0-bcf8-2e8a3d3a2c94]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -13.298584, - "y": 28.0518074, - "z": -16.3093262 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b900", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b900", - "_tpl": "5d1340b3d7ad1a0b52682ed7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (117) [99ba6e00-58e8-40f0-bd0a-497be80a6e4e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -50.8515625, + "y": 28.4738121, + "z": -217.220337 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8db", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8db", + "_tpl": "5e569a0156edd02abe09f27d", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mods (119) [006c64f1-d050-4c3d-b8aa-3cdf5d67040c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.77234, + "y": 37.8038063, + "z": -47.40735 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b901", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb4da1ae71bfb1007b900", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 21 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8dd", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8dd", + "_tpl": "66992f4db9f31ddda10dd1c8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (141) [44cfde70-2059-4751-844f-3229074a733e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -11.06665, - "y": 27.9968071, - "z": -16.2873535 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b903", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b903", - "_tpl": "5c9a25172e2216000f20314e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (12) [903ffcff-d0a1-4ab4-a169-df0a7f061de4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -112.195557, + "y": 22.28381, + "z": -240.438354 + }, + "Rotation": { + "x": 0.0, + "y": 118.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8df", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8df", + "_tpl": "5a34fae7c4a2826c6e06d760", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (143) [c95258f9-20bd-47b2-a442-f936ec8a3c81]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -20.4455566, - "y": 28.21281, - "z": -30.0083 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b905", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b905", - "_tpl": "5d2c76ed48f03532f2136169", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (120) [ad6b8ae7-f762-449a-a1d6-8d552167c8db]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 49.0163574, + "y": 37.7888069, + "z": -47.5292969 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8e1", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8e1", + "_tpl": "55d35ee94bdc2d61338b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (147) [cab98862-8e38-47d1-aea0-822a79ab7279]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.10962, - "y": 28.0168114, - "z": -26.7813721 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b907", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b907", - "_tpl": "5c18b9192e2216398b5a8104", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (122) [0bf7e5ff-c9ca-4e53-8aa8-a20dd0ea28f3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 90.5533447, + "y": 37.61481, + "z": 60.5026855 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8e3", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8e3", + "_tpl": "5d2c772c48f0355d95672c25", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (148) [23d533fa-4b6d-417b-ae39-329a42b67881]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.07666, - "y": 27.99181, - "z": -37.19934 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b909", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b909", - "_tpl": "651a8bf3a8520e48047bf708", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (123) [b223a53c-262d-4248-9509-b003acf5bd40]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -49.3205566, + "y": 37.78281, + "z": -67.92029 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8e5", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8e5", + "_tpl": "5649a2464bdc2d91118b45a8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (149) [f16399bf-397e-458c-a3d3-47c3824af779]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -14.4366455, - "y": 28.027813, - "z": -16.399292 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b90b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b90b", - "_tpl": "5c18b90d2e2216152142466b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (125) [963cae71-52c3-48cb-908b-a8992dc05780]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -49.86255, + "y": 37.64681, + "z": -68.69739 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8e7", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8e7", + "_tpl": "66992725ae08c5c29e0c4f9a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b8e8", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb4da1ae71bfb1007b8e7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } } - } - ] - }, - { - "Id": "loot_mods (150) [605a8772-c886-4e04-a897-c7ffe6ac2244]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.1186523, - "y": 27.99181, - "z": -35.38733 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b90d", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b90d", - "_tpl": "5a32a064c4a28200741e22de", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (126) [24ab112c-fe37-4c79-8837-e5ec45137086]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.340576, + "y": 27.33881, + "z": -46.6063232 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8ea", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8ea", + "_tpl": "66015dc4aaad2f54cb04c56a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b8eb", + "_tpl": "6601546f86889319850bd566", + "parentId": "66cbb4da1ae71bfb1007b8ea", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "loot_mods (152) [fb5e42a6-7bd2-4630-b523-5dc15bf62b56]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.3665771, - "y": 27.99181, - "z": -34.2963867 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b90f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b90f", - "_tpl": "6415c694da439c6a97048b56", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (129) [3cec112f-46aa-45fe-9793-8bb038462904]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -24.8686523, + "y": 28.2798119, + "z": -124.953369 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8ed", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8ed", + "_tpl": "5f3e77b26cda304dcc634057", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b8ee", + "_tpl": "5efb0d4f4bc50b58e81710f3", + "parentId": "66cbb4da1ae71bfb1007b8ed", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } } - } - ] - }, - { - "Id": "loot_mods (154) [0ae9e034-f527-4561-9a3a-6118efac391a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.0755615, - "y": 27.99181, - "z": -30.8942871 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b911", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b911", - "_tpl": "653931da5db71d30ab1d6296", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (129) [62c73315-05c3-4df3-9fac-6f7660d18ff4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -24.8686523, + "y": 28.2798119, + "z": -124.953369 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8f0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8f0", + "_tpl": "593d490386f7745ee97a1555", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (157) [8cff963d-9033-4a44-a232-559f7d2ee743]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -10.51062, - "y": 27.9968071, - "z": -16.30127 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b913", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b913", - "_tpl": "5c6d710d2e22165df16b81e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (130) [5d24c0f9-70d7-46af-97ef-f1b12cf65ad0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -24.6435547, + "y": 28.2798119, + "z": -124.309326 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8f2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8f2", + "_tpl": "616554fe50224f204c1da2aa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (17) [5164efe2-df4d-4624-9e56-6e98c9c503c3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -141.509644, - "y": 22.3988075, - "z": -81.2793 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b915", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b915", - "_tpl": "5c0e2f5cd174af02a012cfc9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (132) [7f7e04ae-b79a-48b6-b8ee-c59b97dd7030]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -25.3586426, + "y": 28.1788063, + "z": -31.4753418 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8f4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8f4", + "_tpl": "661f8995c341ea101e0d33e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (18) [9250cd11-f32e-4ef3-b951-ee43622e5e17]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 38.2574463, - "y": 21.64581, - "z": 82.28064 - }, - "Rotation": { - "x": 0.0, - "y": 94.99999, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b917", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b917", - "_tpl": "59db3b0886f77429d72fb895", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (133) [ccdc4934-8bd2-454c-8f75-58b8bd092ee7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -28.666626, + "y": 28.5938072, + "z": -30.8823242 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8f6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8f6", + "_tpl": "587df583245977373c4f1129", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (20) [d0383578-f46b-43b8-81e7-9c0eeae1cc26]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.3953857, - "y": 22.286808, - "z": -127.483276 - }, - "Rotation": { - "x": 0.0, - "y": 7.999998, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b919", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b919", - "_tpl": "5a9d6d13a2750c00164f6b03", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (136) [b525ca17-9ffe-44b0-a96f-3a182fbc8211]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.9405518, + "y": 28.17181, + "z": -58.984375 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8f8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8f8", + "_tpl": "5b237e425acfc4771e1be0b6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (21) [3e22638d-57d3-40db-ab68-af8dfa79e94c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 36.24243, - "y": 22.30981, - "z": -127.272339 - }, - "Rotation": { - "x": 0.0, - "y": 327.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b91b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b91b", - "_tpl": "5d2dc3e548f035404a1a4798", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (137) [c22d703a-3ed8-46e1-b244-3ff447f590e9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -10.0655518, + "y": 27.9688072, + "z": -238.1023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8fa", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8fa", + "_tpl": "5a800961159bd4315e3a1657", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (22) [26543ef1-2419-413d-af63-675435c42595]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -158.626587, - "y": 28.4248085, - "z": 60.7357178 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b91d", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b91d", - "_tpl": "651a8bf3a8520e48047bf708", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (138) [393655ea-3db8-4e75-8ba8-2e2ec45a80d7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.307617, + "y": 27.9688072, + "z": -238.47937 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8fc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8fc", + "_tpl": "544a3a774bdc2d3a388b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (23) [8587fa41-47f9-41fb-8179-d0d63eacdec1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 2.56835938, - "y": 22.27081, - "z": -72.2432861 - }, - "Rotation": { - "x": 0.0, - "y": 85.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b91f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b91f", - "_tpl": "5fbc227aa56d053a3543f79e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (14) [cb914d39-d6ba-4436-9fd1-419122433386]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -112.69165, + "y": 22.1928062, + "z": -240.3103 + }, + "Rotation": { + "x": 0.0, + "y": 118.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b8fe", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b8fe", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (28) [02520644-72b3-4f3c-b958-f7a8f28a2b94]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -16.371582, - "y": 28.027813, - "z": -16.3133545 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b921", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b921", - "_tpl": "5947eab886f77475961d96c5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (140) [65b13744-2880-40a0-bcf8-2e8a3d3a2c94]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -13.298584, + "y": 28.0518074, + "z": -16.3093262 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b900", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b900", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b901", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb4da1ae71bfb1007b900", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 21 + } } - } - ] - }, - { - "Id": "loot_mods (3) [dd15a58d-8190-469a-9476-93f8ad7eb480]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -28.0375977, - "y": 27.61681, - "z": -123.47229 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b923", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b923", - "_tpl": "664301213dd83ddae20dda18", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (141) [44cfde70-2059-4751-844f-3229074a733e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -11.06665, + "y": 27.9968071, + "z": -16.2873535 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b903", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b903", + "_tpl": "5c9a25172e2216000f20314e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (33) [7c5cd366-a638-4ccc-a840-648661331d82]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 38.9013672, - "y": 27.32581, - "z": 78.20166 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b925", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b925", - "_tpl": "5a9d56c8a2750c0032157146", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (143) [c95258f9-20bd-47b2-a442-f936ec8a3c81]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -20.4455566, + "y": 28.21281, + "z": -30.0083 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b905", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b905", + "_tpl": "5d2c76ed48f03532f2136169", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (36) [a96191b0-e44c-4990-89c0-70c9bbbe4f16]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -11.4726563, - "y": 28.08881, - "z": -10.6223145 - }, - "Rotation": { - "x": 0.0, - "y": 99.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b927", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b927", - "_tpl": "5c6d10fa2e221600106f3f23", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (147) [cab98862-8e38-47d1-aea0-822a79ab7279]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.10962, + "y": 28.0168114, + "z": -26.7813721 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b907", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b907", + "_tpl": "5c18b9192e2216398b5a8104", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (39) [f51a7e55-6f01-4ebd-b098-4ad548d56b79]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.72363, - "y": 28.3228111, - "z": 43.3557129 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b929", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b929", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (148) [23d533fa-4b6d-417b-ae39-329a42b67881]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.07666, + "y": 27.99181, + "z": -37.19934 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b909", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b909", + "_tpl": "651a8bf3a8520e48047bf708", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (40) [b60cef99-8a68-4b3b-a5d7-71d18958104e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.68164, - "y": 28.1478081, - "z": 42.5227051 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b92b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b92b", - "_tpl": "5dfa3d45dfc58d14537c20b0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (149) [f16399bf-397e-458c-a3d3-47c3824af779]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -14.4366455, + "y": 28.027813, + "z": -16.399292 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b90b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b90b", + "_tpl": "5c18b90d2e2216152142466b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (41) [e70fa075-3ab2-4d7b-9d24-a51bb3799765]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.5185547, - "y": 28.2168083, - "z": 39.4346924 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b92d", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b92d", - "_tpl": "5fc4b97bab884124df0cd5e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (150) [605a8772-c886-4e04-a897-c7ffe6ac2244]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.1186523, + "y": 27.99181, + "z": -35.38733 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b90d", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b90d", + "_tpl": "5a32a064c4a28200741e22de", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (62) [219f9b3f-7620-419a-bc7b-ce518c9841e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -178.220581, - "y": 22.510807, - "z": -199.276367 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b92f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b92f", - "_tpl": "5cbdaf89ae9215000e5b9c94", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mods (152) [fb5e42a6-7bd2-4630-b523-5dc15bf62b56]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.3665771, + "y": 27.99181, + "z": -34.2963867 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b930", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb4da1ae71bfb1007b92f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b90f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b90f", + "_tpl": "6415c694da439c6a97048b56", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (66) [513f1e8c-8050-49c4-a41e-fea375e4d97c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -126.89563, - "y": 24.1888084, - "z": -286.7303 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b932", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b932", - "_tpl": "5bb20e0ed4351e3bac1212dc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (154) [0ae9e034-f527-4561-9a3a-6118efac391a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.0755615, + "y": 27.99181, + "z": -30.8942871 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b911", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b911", + "_tpl": "653931da5db71d30ab1d6296", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (67) [4c40bfca-bb17-489f-a785-1f206d66faad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.495605, - "y": 24.1888084, - "z": -286.218323 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b934", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b934", - "_tpl": "618ba91477b82356f91ae0e8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (157) [8cff963d-9033-4a44-a232-559f7d2ee743]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -10.51062, + "y": 27.9968071, + "z": -16.30127 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b913", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b913", + "_tpl": "5c6d710d2e22165df16b81e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (68) [a33202a8-d073-42e8-8420-bbdd2aad4110]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.972656, - "y": 24.1888084, - "z": -286.671326 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b936", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b936", - "_tpl": "6193dcd0f8ee7e52e4210a28", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (17) [5164efe2-df4d-4624-9e56-6e98c9c503c3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -141.509644, + "y": 22.3988075, + "z": -81.2793 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b915", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b915", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (72) [68842b02-3155-4a22-b838-1b8798f817e0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -158.5816, - "y": 28.4448128, - "z": 59.92273 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b938", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b938", - "_tpl": "5a16b93dfcdbcbcae6687261", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (18) [9250cd11-f32e-4ef3-b951-ee43622e5e17]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 38.2574463, + "y": 21.64581, + "z": 82.28064 + }, + "Rotation": { + "x": 0.0, + "y": 94.99999, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b917", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b917", + "_tpl": "59db3b0886f77429d72fb895", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (75) [5674d9b4-4419-4a64-89b7-1e0498a823d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 59.63745, - "y": 22.1408119, - "z": -183.577271 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b93a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b93a", - "_tpl": "5bc5a351d4351e003477a414", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (20) [d0383578-f46b-43b8-81e7-9c0eeae1cc26]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.3953857, + "y": 22.286808, + "z": -127.483276 + }, + "Rotation": { + "x": 0.0, + "y": 7.999998, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b919", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b919", + "_tpl": "5a9d6d13a2750c00164f6b03", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (79) [d7de479e-f2a7-4729-8af1-4756c96b8b33]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.52234, - "y": 22.2338066, - "z": -126.965332 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b93c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b93c", - "_tpl": "6492c8bba6e68e06fb0bae87", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (21) [3e22638d-57d3-40db-ab68-af8dfa79e94c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 36.24243, + "y": 22.30981, + "z": -127.272339 + }, + "Rotation": { + "x": 0.0, + "y": 327.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b91b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b91b", + "_tpl": "5d2dc3e548f035404a1a4798", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (8) [bda8dd63-bd92-45eb-a899-e64fab52007d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -162.5456, - "y": 22.1688118, - "z": 93.1897 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b93e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b93e", - "_tpl": "64b9e265c94d0d15c5027e35", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (22) [26543ef1-2419-413d-af63-675435c42595]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -158.626587, + "y": 28.4248085, + "z": 60.7357178 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b91d", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b91d", + "_tpl": "651a8bf3a8520e48047bf708", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mods (23) [8587fa41-47f9-41fb-8179-d0d63eacdec1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 2.56835938, + "y": 22.27081, + "z": -72.2432861 + }, + "Rotation": { + "x": 0.0, + "y": 85.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b93f", - "_tpl": "61962b617c6c7b169525f168", - "parentId": "66cbb4da1ae71bfb1007b93e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b91f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b91f", + "_tpl": "5fbc227aa56d053a3543f79e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (80) [f61bdd67-402e-497e-89fc-78ac44f3192b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.8433838, - "y": 22.2228127, - "z": -126.123291 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b941", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b941", - "_tpl": "5c6c2c9c2e2216000f2002e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (28) [02520644-72b3-4f3c-b958-f7a8f28a2b94]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -16.371582, + "y": 28.027813, + "z": -16.3133545 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b921", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b921", + "_tpl": "5947eab886f77475961d96c5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (83) [8f587bad-fe7b-48ed-9ea0-d302c6ac0e97]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -20.9736328, - "y": 22.2068062, - "z": 115.295654 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b943", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b943", - "_tpl": "61605d88ffa6e502ac5e7eeb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (3) [dd15a58d-8190-469a-9476-93f8ad7eb480]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -28.0375977, + "y": 27.61681, + "z": -123.47229 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b923", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b923", + "_tpl": "664301213dd83ddae20dda18", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (84) [eba24bbd-e946-4a62-a177-ddb4516127f0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -20.2036133, - "y": 22.2068062, - "z": 116.179688 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b945", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b945", - "_tpl": "6686717ffb75ee4a5e02eb19", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (33) [7c5cd366-a638-4ccc-a840-648661331d82]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 38.9013672, + "y": 27.32581, + "z": 78.20166 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b925", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b925", + "_tpl": "5a9d56c8a2750c0032157146", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (85) [27e6a63e-2c7b-4683-b7ac-b19ffd0c2974]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -20.8775635, - "y": 22.2068062, - "z": 118.549683 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b947", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b947", - "_tpl": "5addcce35acfc4001a5fc635", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (36) [a96191b0-e44c-4990-89c0-70c9bbbe4f16]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -11.4726563, + "y": 28.08881, + "z": -10.6223145 + }, + "Rotation": { + "x": 0.0, + "y": 99.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b927", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b927", + "_tpl": "5c6d10fa2e221600106f3f23", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mods (39) [f51a7e55-6f01-4ebd-b098-4ad548d56b79]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.72363, + "y": 28.3228111, + "z": 43.3557129 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b948", - "_tpl": "5e023e6e34d52a55c3304f71", - "parentId": "66cbb4da1ae71bfb1007b947", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 19 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b929", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b929", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (86) [35bcd691-d1de-4e45-9d31-cd0992ed509b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -142.225586, - "y": 22.3988075, - "z": -81.74927 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b94a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b94a", - "_tpl": "564ca99c4bdc2d16268b4589", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (40) [b60cef99-8a68-4b3b-a5d7-71d18958104e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.68164, + "y": 28.1478081, + "z": 42.5227051 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b92b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b92b", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mods (41) [e70fa075-3ab2-4d7b-9d24-a51bb3799765]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.5185547, + "y": 28.2168083, + "z": 39.4346924 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b94b", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb4da1ae71bfb1007b94a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b92d", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b92d", + "_tpl": "5fc4b97bab884124df0cd5e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (88) [b552def6-7246-4b51-95d5-ced395aaa432]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.864624, - "y": 22.24281, - "z": -71.99231 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b94d", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b94d", - "_tpl": "6065881d1246154cad35d637", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (62) [219f9b3f-7620-419a-bc7b-ce518c9841e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -178.220581, + "y": 22.510807, + "z": -199.276367 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b92f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b92f", + "_tpl": "5cbdaf89ae9215000e5b9c94", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b930", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb4da1ae71bfb1007b92f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (89) [412cef02-d9d5-4507-b46f-c69ed7d494d5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -160.6466, - "y": 25.661808, - "z": 149.940674 - }, - "Rotation": { - "x": 0.0, - "y": 341.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b94f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b94f", - "_tpl": "57ffa9f4245977728561e844", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (66) [513f1e8c-8050-49c4-a41e-fea375e4d97c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -126.89563, + "y": 24.1888084, + "z": -286.7303 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b932", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b932", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (90) [510157f0-c44c-467f-a213-eafe972114a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 4.210449, - "y": 24.1628075, - "z": -148.391357 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b951", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b951", - "_tpl": "61702be9faa1272e431522c3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (67) [4c40bfca-bb17-489f-a785-1f206d66faad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.495605, + "y": 24.1888084, + "z": -286.218323 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b934", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b934", + "_tpl": "618ba91477b82356f91ae0e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (94) [30ddd06d-0617-4723-b8e8-761539a9d5c8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.211609, - "y": 27.5288124, - "z": -33.9803467 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] + }, + { + "Id": "loot_mods (68) [a33202a8-d073-42e8-8420-bbdd2aad4110]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.972656, + "y": 24.1888084, + "z": -286.671326 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b936", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b936", + "_tpl": "6193dcd0f8ee7e52e4210a28", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b953", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b953", - "_tpl": "5b3a337e5acfc4704b4a19a0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (72) [68842b02-3155-4a22-b838-1b8798f817e0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -158.5816, + "y": 28.4448128, + "z": 59.92273 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b938", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b938", + "_tpl": "5a16b93dfcdbcbcae6687261", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods [7ec596b3-0344-43fc-a378-a83f20dd5998]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.30542, - "y": 22.2908134, - "z": -66.6193848 - }, - "Rotation": { - "x": 0.0, - "y": 27.0000038, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b955", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b955", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (75) [5674d9b4-4419-4a64-89b7-1e0498a823d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 59.63745, + "y": 22.1408119, + "z": -183.577271 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b93a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b93a", + "_tpl": "5bc5a351d4351e003477a414", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mods (79) [d7de479e-f2a7-4729-8af1-4756c96b8b33]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.52234, + "y": 22.2338066, + "z": -126.965332 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b956", - "_tpl": "5c0d56a986f774449d5de529", - "parentId": "66cbb4da1ae71bfb1007b955", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b93c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b93c", + "_tpl": "6492c8bba6e68e06fb0bae87", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_money (13) [eba1b150-850a-4b5f-a234-4930435eb208]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.1694336, - "y": 28.00481, - "z": -211.809326 - }, - "Rotation": { - "x": 0.0, - "y": 327.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b958", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b958", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 1095 + { + "Id": "loot_mods (8) [bda8dd63-bd92-45eb-a899-e64fab52007d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -162.5456, + "y": 22.1688118, + "z": 93.1897 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b93e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b93e", + "_tpl": "64b9e265c94d0d15c5027e35", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b93f", + "_tpl": "61962b617c6c7b169525f168", + "parentId": "66cbb4da1ae71bfb1007b93e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "loot_money (56) [de77e400-7900-485b-b003-8264173d9d33]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -71.1706543, - "y": 28.10281, - "z": 3.59570313 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b95a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b95a", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 814 + { + "Id": "loot_mods (80) [f61bdd67-402e-497e-89fc-78ac44f3192b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.8433838, + "y": 22.2228127, + "z": -126.123291 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b941", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b941", + "_tpl": "5c6c2c9c2e2216000f2002e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_money (68) [86422bf4-b857-4f07-b243-a5a010ec0868]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 15.1394043, - "y": 27.15781, - "z": 54.7496338 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b95c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b95c", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 48 + { + "Id": "loot_mods (83) [8f587bad-fe7b-48ed-9ea0-d302c6ac0e97]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -20.9736328, + "y": 22.2068062, + "z": 115.295654 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b943", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b943", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [02a84215-1a59-4a16-93c3-5ccd5dc9a38a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 57.77539, - "y": 28.85181, - "z": 119.347656 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b95e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b95e", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (84) [eba24bbd-e946-4a62-a177-ddb4516127f0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -20.2036133, + "y": 22.2068062, + "z": 116.179688 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b945", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b945", + "_tpl": "6686717ffb75ee4a5e02eb19", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [0fc96475-fb0e-45e1-b801-920542ba5be4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -40.0585938, - "y": 28.8568077, - "z": 107.843628 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b960", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b960", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (85) [27e6a63e-2c7b-4683-b7ac-b19ffd0c2974]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -20.8775635, + "y": 22.2068062, + "z": 118.549683 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b947", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b947", + "_tpl": "5addcce35acfc4001a5fc635", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b948", + "_tpl": "5e023e6e34d52a55c3304f71", + "parentId": "66cbb4da1ae71bfb1007b947", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 19 + } } - } - ] - }, - { - "Id": "loot_oli [148ba8f7-cd8b-40c3-be5e-e30bbe7bfaa5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.958374, - "y": 29.1278114, - "z": 184.228638 - }, - "Rotation": { - "x": 0.0, - "y": 261.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b962", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b962", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (86) [35bcd691-d1de-4e45-9d31-cd0992ed509b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -142.225586, + "y": 22.3988075, + "z": -81.74927 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b94a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b94a", + "_tpl": "564ca99c4bdc2d16268b4589", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b94b", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb4da1ae71bfb1007b94a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "loot_oli [17794e80-7f5b-46e8-8ba6-a87a6f0a3225]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.497559, - "y": 27.69981, - "z": 192.31665 - }, - "Rotation": { - "x": 0.0, - "y": 171.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b964", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b964", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (88) [b552def6-7246-4b51-95d5-ced395aaa432]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.864624, + "y": 22.24281, + "z": -71.99231 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b94d", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b94d", + "_tpl": "6065881d1246154cad35d637", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [186b984f-3cde-481d-ac3e-70532b9446fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.0024414, - "y": 28.2928123, - "z": 183.019653 - }, - "Rotation": { - "x": 0.0, - "y": 261.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b966", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b966", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (89) [412cef02-d9d5-4507-b46f-c69ed7d494d5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -160.6466, + "y": 25.661808, + "z": 149.940674 + }, + "Rotation": { + "x": 0.0, + "y": 341.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b94f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b94f", + "_tpl": "57ffa9f4245977728561e844", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [203e41c5-1716-4339-96c6-7b35f0c03283]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.119629, - "y": 28.8568077, - "z": 188.678711 - }, - "Rotation": { - "x": 0.0, - "y": 261.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b968", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b968", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (90) [510157f0-c44c-467f-a213-eafe972114a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 4.210449, + "y": 24.1628075, + "z": -148.391357 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b951", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b951", + "_tpl": "61702be9faa1272e431522c3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [26f7eb90-ece7-47cd-b5d4-a6ba50acf6e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -113.578613, - "y": 27.7188072, - "z": 192.3927 - }, - "Rotation": { - "x": 0.0, - "y": 88.99999, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b96a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b96a", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (94) [30ddd06d-0617-4723-b8e8-761539a9d5c8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.211609, + "y": 27.5288124, + "z": -33.9803467 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b953", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b953", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [2ac287fa-7acd-4104-89ff-14fbf910774e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.42260742, - "y": 28.6808128, - "z": 171.1217 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b96c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b96c", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods [7ec596b3-0344-43fc-a378-a83f20dd5998]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.30542, + "y": 22.2908134, + "z": -66.6193848 + }, + "Rotation": { + "x": 0.0, + "y": 27.0000038, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b955", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b955", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b956", + "_tpl": "5c0d56a986f774449d5de529", + "parentId": "66cbb4da1ae71bfb1007b955", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12 + } } - } - ] - }, - { - "Id": "loot_oli [49c5f095-1f20-4a2e-9d02-03b3170e2235]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -39.3736572, - "y": 28.8828087, - "z": 110.838623 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b96e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b96e", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_money (13) [eba1b150-850a-4b5f-a234-4930435eb208]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.1694336, + "y": 28.00481, + "z": -211.809326 + }, + "Rotation": { + "x": 0.0, + "y": 327.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b958", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b958", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 1095 + } } - } - ] - }, - { - "Id": "loot_oli [49cd39e6-7e10-46a5-b032-e51f58baea6d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -107.070557, - "y": 28.0298119, - "z": 77.14465 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b970", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b970", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_money (56) [de77e400-7900-485b-b003-8264173d9d33]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -71.1706543, + "y": 28.10281, + "z": 3.59570313 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b95a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b95a", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 814 + } } - } - ] - }, - { - "Id": "loot_oli [5528c797-2644-4369-9f04-2b99fe27221c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -46.397583, - "y": 28.42081, - "z": 108.115723 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b972", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b972", - "_tpl": "5d1b32c186f774252167a530", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_money (68) [86422bf4-b857-4f07-b243-a5a010ec0868]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 15.1394043, + "y": 27.15781, + "z": 54.7496338 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b95c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b95c", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 48 + } } - } - ] - }, - { - "Id": "loot_oli [557603a1-3466-4760-a508-613b75bde2bc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 40.3223877, - "y": 28.3468132, - "z": 130.419678 - }, - "Rotation": { - "x": 0.0, - "y": 43.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b974", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b974", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [02a84215-1a59-4a16-93c3-5ccd5dc9a38a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 57.77539, + "y": 28.85181, + "z": 119.347656 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b95e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b95e", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [73ea5197-b23c-4530-a3a8-41c9a24c5a03]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -91.08362, - "y": 27.53381, - "z": 149.649658 - }, - "Rotation": { - "x": 0.0, - "y": 79.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b976", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b976", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [0fc96475-fb0e-45e1-b801-920542ba5be4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -40.0585938, + "y": 28.8568077, + "z": 107.843628 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b960", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b960", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [7c5a8b7e-b2d2-433e-bbf3-df53f57a698a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -55.59265, - "y": 28.9868126, - "z": 172.252686 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b978", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b978", - "_tpl": "59faf98186f774067b6be103", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [148ba8f7-cd8b-40c3-be5e-e30bbe7bfaa5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.958374, + "y": 29.1278114, + "z": 184.228638 + }, + "Rotation": { + "x": 0.0, + "y": 261.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b962", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b962", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [87bc030b-389d-4c00-b538-3ce8f6cfefd1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 38.6713867, - "y": 28.3328133, - "z": 184.805664 - }, - "Rotation": { - "x": 0.0, - "y": 261.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b97a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b97a", - "_tpl": "59faf98186f774067b6be103", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [17794e80-7f5b-46e8-8ba6-a87a6f0a3225]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.497559, + "y": 27.69981, + "z": 192.31665 + }, + "Rotation": { + "x": 0.0, + "y": 171.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b964", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b964", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [9e19b4ea-ea24-4ab7-965d-57d681790b6a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -36.56555, - "y": 28.7358131, - "z": 156.786621 - }, - "Rotation": { - "x": 0.0, - "y": 266.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b97c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b97c", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [186b984f-3cde-481d-ac3e-70532b9446fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.0024414, + "y": 28.2928123, + "z": 183.019653 + }, + "Rotation": { + "x": 0.0, + "y": 261.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b966", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b966", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [a7311609-29f5-417b-94b4-9f70f4dda859]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -65.27161, - "y": 28.54781, - "z": 113.89563 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b97e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b97e", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [203e41c5-1716-4339-96c6-7b35f0c03283]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.119629, + "y": 28.8568077, + "z": 188.678711 + }, + "Rotation": { + "x": 0.0, + "y": 261.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b968", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b968", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [cd56e114-f3fc-41cb-b657-d684ca62d215]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -90.8575439, - "y": 27.5928078, - "z": 175.8407 - }, - "Rotation": { - "x": 0.0, - "y": 88.99999, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b980", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b980", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [26f7eb90-ece7-47cd-b5d4-a6ba50acf6e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -113.578613, + "y": 27.7188072, + "z": 192.3927 + }, + "Rotation": { + "x": 0.0, + "y": 88.99999, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b96a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b96a", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [da10fb70-42d1-4628-aac2-a350f7fda54c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.373413, - "y": 28.37881, - "z": 184.869629 - }, - "Rotation": { - "x": 0.0, - "y": 261.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b982", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b982", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [2ac287fa-7acd-4104-89ff-14fbf910774e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.42260742, + "y": 28.6808128, + "z": 171.1217 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b96c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b96c", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [dd6cdef9-8f32-4a70-87ea-0cb8a8a1d982]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -40.07263, - "y": 28.8838081, - "z": 113.901611 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b984", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b984", - "_tpl": "57347c5b245977448d35f6e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [49c5f095-1f20-4a2e-9d02-03b3170e2235]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -39.3736572, + "y": 28.8828087, + "z": 110.838623 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b96e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b96e", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [e5d9c6d1-cf4f-475c-a271-50cae7deec6a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -15.3226318, - "y": 28.4728127, - "z": 163.955688 - }, - "Rotation": { - "x": 0.0, - "y": 108.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b986", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b986", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [49cd39e6-7e10-46a5-b032-e51f58baea6d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -107.070557, + "y": 28.0298119, + "z": 77.14465 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b970", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b970", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [ed64fbc1-dbc8-4f57-b990-5bbc34f3cb59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.9614258, - "y": 29.00381, - "z": 113.018677 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b988", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b988", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [5528c797-2644-4369-9f04-2b99fe27221c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -46.397583, + "y": 28.42081, + "z": 108.115723 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b972", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b972", + "_tpl": "5d1b32c186f774252167a530", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [f6f5d574-7e2e-4c4c-a984-c5ddc021c5d1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -104.368652, - "y": 27.6228065, - "z": 146.6847 - }, - "Rotation": { - "x": 0.0, - "y": 79.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b98a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b98a", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [557603a1-3466-4760-a508-613b75bde2bc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 40.3223877, + "y": 28.3468132, + "z": 130.419678 + }, + "Rotation": { + "x": 0.0, + "y": 43.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b974", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b974", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_oli [f8ce6d87-c562-4fa4-baef-453864f60035]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -57.80066, - "y": 28.899807, - "z": 174.3357 - }, - "Rotation": { - "x": 0.0, - "y": 223.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b98c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b98c", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [73ea5197-b23c-4530-a3a8-41c9a24c5a03]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -91.08362, + "y": 27.53381, + "z": 149.649658 + }, + "Rotation": { + "x": 0.0, + "y": 79.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b976", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b976", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rare_mix_food_med_ammo (26) [4e02e9ee-02d3-405a-982d-c93de2261642]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 163.786377, - "y": 19.86581, - "z": -368.546326 - }, - "Rotation": { - "x": 0.0, - "y": 220.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b98f", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b98f", - "_tpl": "657025d4c5d7d4cb4d078585", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [7c5a8b7e-b2d2-433e-bbf3-df53f57a698a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -55.59265, + "y": 28.9868126, + "z": 172.252686 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b978", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b978", + "_tpl": "59faf98186f774067b6be103", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_oli [87bc030b-389d-4c00-b538-3ce8f6cfefd1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 38.6713867, + "y": 28.3328133, + "z": 184.805664 + }, + "Rotation": { + "x": 0.0, + "y": 261.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b990", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbb4da1ae71bfb1007b98f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b97a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b97a", + "_tpl": "59faf98186f774067b6be103", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rare_mix_food_med_ammo (28) [d1b2c87e-9920-4a47-b1e4-c9a879a6b390]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.934448, - "y": 22.15681, - "z": -204.510376 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b993", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b993", - "_tpl": "64aceac0c4eda9354b0226b3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [9e19b4ea-ea24-4ab7-965d-57d681790b6a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -36.56555, + "y": 28.7358131, + "z": 156.786621 + }, + "Rotation": { + "x": 0.0, + "y": 266.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b97c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b97c", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_oli [a7311609-29f5-417b-94b4-9f70f4dda859]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -65.27161, + "y": 28.54781, + "z": 113.89563 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b994", - "_tpl": "64b8f7968532cf95ee0a0dbf", - "parentId": "66cbb4da1ae71bfb1007b993", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b97e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b97e", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rare_mix_food_med_ammo (35) [9061a435-9835-429c-934d-66672b35b0da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -106.779663, - "y": 22.44981, - "z": -212.973389 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b997", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b997", - "_tpl": "657025d4c5d7d4cb4d078585", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [cd56e114-f3fc-41cb-b657-d684ca62d215]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -90.8575439, + "y": 27.5928078, + "z": 175.8407 + }, + "Rotation": { + "x": 0.0, + "y": 88.99999, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b980", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b980", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_oli [da10fb70-42d1-4628-aac2-a350f7fda54c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.373413, + "y": 28.37881, + "z": 184.869629 + }, + "Rotation": { + "x": 0.0, + "y": 261.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b998", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbb4da1ae71bfb1007b997", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b982", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b982", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rare_mix_food_med_ammo (36) [8e82dc7f-8317-4f34-b22c-fe2dd8dd0d7d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 47.3564453, - "y": 27.5148125, - "z": -25.6843262 - }, - "Rotation": { - "x": 0.0, - "y": 276.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b99b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b99b", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [dd6cdef9-8f32-4a70-87ea-0cb8a8a1d982]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -40.07263, + "y": 28.8838081, + "z": 113.901611 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b984", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b984", + "_tpl": "57347c5b245977448d35f6e1", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_oli [e5d9c6d1-cf4f-475c-a271-50cae7deec6a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -15.3226318, + "y": 28.4728127, + "z": 163.955688 + }, + "Rotation": { + "x": 0.0, + "y": 108.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007b99c", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb4da1ae71bfb1007b99b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b986", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b986", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (11) [65b248b2-5acc-4e50-a9e5-624a44352d7b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -73.4602356, - "y": 29.0036755, - "z": 165.667984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b99e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b99e", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [ed64fbc1-dbc8-4f57-b990-5bbc34f3cb59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.9614258, + "y": 29.00381, + "z": 113.018677 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b988", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b988", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (12) [23cf0ef0-4c81-4354-8694-18c8b600b54e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.20824, - "y": 28.7036743, - "z": 169.165985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9a0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9a0", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [f6f5d574-7e2e-4c4c-a984-c5ddc021c5d1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -104.368652, + "y": 27.6228065, + "z": 146.6847 + }, + "Rotation": { + "x": 0.0, + "y": 79.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b98a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b98a", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (14) [6c9a46c5-73fd-4173-a126-03b6495f5f27]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.21724, - "y": 27.4886742, - "z": 174.219 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9a2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9a2", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_oli [f8ce6d87-c562-4fa4-baef-453864f60035]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -57.80066, + "y": 28.899807, + "z": 174.3357 + }, + "Rotation": { + "x": 0.0, + "y": 223.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b98c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b98c", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (15) [ca79b30a-154b-42d4-b7b6-bd1a0dee7a7c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.24624, - "y": 27.4886742, - "z": 180.33699 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9a4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9a4", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_rare_mix_food_med_ammo (26) [4e02e9ee-02d3-405a-982d-c93de2261642]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 163.786377, + "y": 19.86581, + "z": -368.546326 + }, + "Rotation": { + "x": 0.0, + "y": 220.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b98f", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b98f", + "_tpl": "657025d4c5d7d4cb4d078585", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b990", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbb4da1ae71bfb1007b98f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (19) [a373cd0f-a732-474e-8ceb-dadb49305b4b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -66.80024, - "y": 28.9826756, - "z": 191.00798 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9a6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9a6", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_rare_mix_food_med_ammo (28) [d1b2c87e-9920-4a47-b1e4-c9a879a6b390]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.934448, + "y": 22.15681, + "z": -204.510376 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b993", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b993", + "_tpl": "64aceac0c4eda9354b0226b3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b994", + "_tpl": "64b8f7968532cf95ee0a0dbf", + "parentId": "66cbb4da1ae71bfb1007b993", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (23) [95230fa0-4dee-40d5-938d-e917fdd706d1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.66377, - "y": 27.5036755, - "z": 177.441986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9a8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9a8", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_rare_mix_food_med_ammo (35) [9061a435-9835-429c-934d-66672b35b0da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -106.779663, + "y": 22.44981, + "z": -212.973389 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b997", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b997", + "_tpl": "657025d4c5d7d4cb4d078585", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b998", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbb4da1ae71bfb1007b997", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (25) [f577e0d1-8168-4ec0-8e73-8d0a682e0e35]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 51.3327675, - "y": 27.6726742, - "z": 172.444992 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9aa", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9aa", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_rare_mix_food_med_ammo (36) [8e82dc7f-8317-4f34-b22c-fe2dd8dd0d7d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 47.3564453, + "y": 27.5148125, + "z": -25.6843262 + }, + "Rotation": { + "x": 0.0, + "y": 276.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b99b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b99b", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007b99c", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb4da1ae71bfb1007b99b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (28) [6a1c1592-1ad1-4b33-aa29-b72e4a310cd4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 62.03977, - "y": 27.490675, - "z": 163.637 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9ac", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9ac", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (11) [65b248b2-5acc-4e50-a9e5-624a44352d7b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -73.4602356, + "y": 29.0036755, + "z": 165.667984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b99e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b99e", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (29) [6a34e893-fcfe-44af-8ae5-ba56b76f9673]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.69277, - "y": 27.490675, - "z": 164.512 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9ae", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9ae", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (12) [23cf0ef0-4c81-4354-8694-18c8b600b54e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.20824, + "y": 28.7036743, + "z": 169.165985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9a0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9a0", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (31) [cd628980-2097-48a8-8f06-99a453679263]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.3287659, - "y": 27.8406754, - "z": 166.021988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9b0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9b0", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (14) [6c9a46c5-73fd-4173-a126-03b6495f5f27]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.21724, + "y": 27.4886742, + "z": 174.219 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9a2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9a2", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (32) [8932cb5a-e280-4e8f-93c6-94532e5ab2ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.2237663, - "y": 27.5606747, - "z": 161.187988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9b2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9b2", - "_tpl": "5d1b392c86f77425243e98fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (15) [ca79b30a-154b-42d4-b7b6-bd1a0dee7a7c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.24624, + "y": 27.4886742, + "z": 180.33699 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9a4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9a4", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (34) [e282f3b9-4c5d-4255-b462-767dc7c3dded]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 57.9027672, - "y": 27.7396755, - "z": 160.515991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9b4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9b4", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (19) [a373cd0f-a732-474e-8ceb-dadb49305b4b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -66.80024, + "y": 28.9826756, + "z": 191.00798 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9a6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9a6", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (34) [e7e49dff-66ef-4a2b-998b-c74c4189c628]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 45.95215, - "y": -11.1845779, - "z": -102.835693 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9b6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9b6", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (23) [95230fa0-4dee-40d5-938d-e917fdd706d1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.66377, + "y": 27.5036755, + "z": 177.441986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9a8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9a8", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (40) [f7f919ed-5b22-48ad-b0f0-7029298b87a9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 53.93277, - "y": 37.1006737, - "z": 8.017993 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9b8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9b8", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (25) [f577e0d1-8168-4ec0-8e73-8d0a682e0e35]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 51.3327675, + "y": 27.6726742, + "z": 172.444992 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9aa", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9aa", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (44) [3efefdfd-1aae-4518-b295-4bf45710e483]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -70.00523, - "y": 27.7366753, - "z": 190.727982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9ba", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9ba", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (28) [6a1c1592-1ad1-4b33-aa29-b72e4a310cd4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 62.03977, + "y": 27.490675, + "z": 163.637 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9ac", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9ac", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (49) [ef57552d-e406-4911-9db5-6310cc3db0d3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -36.53123, - "y": 28.5906754, - "z": 162.296982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9bc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9bc", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (29) [6a34e893-fcfe-44af-8ae5-ba56b76f9673]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.69277, + "y": 27.490675, + "z": 164.512 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9ae", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9ae", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (5) [d2c9ae08-5995-449c-a5a8-ee14a2645d2d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 444.889771, - "y": -13.0323238, - "z": 63.16899 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9be", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9be", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (31) [cd628980-2097-48a8-8f06-99a453679263]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.3287659, + "y": 27.8406754, + "z": 166.021988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9b0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9b0", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (52) [42f3c9cd-b2b5-42c7-87dd-cd7d110c1fae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -36.3732338, - "y": 28.5476742, - "z": 158.19899 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9c0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9c0", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (32) [8932cb5a-e280-4e8f-93c6-94532e5ab2ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.2237663, + "y": 27.5606747, + "z": 161.187988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9b2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9b2", + "_tpl": "5d1b392c86f77425243e98fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (55) [69786bff-5048-40ab-acb3-410bd5c120d0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -56.0802345, - "y": 27.7426758, - "z": 141.525 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9c2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9c2", - "_tpl": "5d1b371186f774253763a656", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (34) [e282f3b9-4c5d-4255-b462-767dc7c3dded]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 57.9027672, + "y": 27.7396755, + "z": 160.515991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9b4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9b4", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (62) [a8a95f4e-17c7-42e7-98e6-00eda061a595]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.0539551, - "y": 27.4910011, - "z": -120.149048 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9c4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9c4", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (34) [e7e49dff-66ef-4a2b-998b-c74c4189c628]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 45.95215, + "y": -11.1845779, + "z": -102.835693 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9b6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9b6", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (63) [33fc3e90-118a-440d-a67a-4290a8076bdd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -49.548233, - "y": 28.4416752, - "z": 118.620995 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9c6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9c6", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (40) [f7f919ed-5b22-48ad-b0f0-7029298b87a9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 53.93277, + "y": 37.1006737, + "z": 8.017993 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9b8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9b8", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (65) [46f2a1c7-5a79-4569-82cd-a3bfcf25e19c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -45.9712334, - "y": 27.4366741, - "z": 120.924995 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9c8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9c8", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (44) [3efefdfd-1aae-4518-b295-4bf45710e483]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -70.00523, + "y": 27.7366753, + "z": 190.727982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9ba", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9ba", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (70) [ea2ff50a-40cb-4046-a025-7555009e7138]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -30.7432327, - "y": 27.615675, - "z": 119.34 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9ca", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9ca", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (49) [ef57552d-e406-4911-9db5-6310cc3db0d3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -36.53123, + "y": 28.5906754, + "z": 162.296982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9bc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9bc", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (1) [18ac39d9-0137-4d96-86ef-1c0bb4cb68f1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.77197, - "y": 27.7540016, - "z": -120.85498 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9cc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9cc", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (5) [d2c9ae08-5995-449c-a5a8-ee14a2645d2d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 444.889771, + "y": -13.0323238, + "z": 63.16899 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9be", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9be", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (20) [90dc61a9-294f-4b6c-b754-e8910af35a87]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -212.528229, - "y": 22.2636757, - "z": -351.666 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9ce", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9ce", - "_tpl": "5d1b304286f774253763a528", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (52) [42f3c9cd-b2b5-42c7-87dd-cd7d110c1fae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -36.3732338, + "y": 28.5476742, + "z": 158.19899 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9c0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9c0", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shop_goshan_vedodmost [88a5211a-7a44-4a0e-ab95-528eab4fbd55]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -76.48059, - "y": 27.9598122, - "z": -157.719238 - }, - "Rotation": { - "x": 271.278259, - "y": 80.544136, - "z": 136.505157 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9d0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9d0", - "_tpl": "5ae9a0dd86f7742e5f454a05", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_shelter_building_items (55) [69786bff-5048-40ab-acb3-410bd5c120d0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -56.0802345, + "y": 27.7426758, + "z": 141.525 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9c2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9c2", + "_tpl": "5d1b371186f774253763a656", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shop_idea_vedodmost [a1d79fd1-3250-4a52-bd61-167211057b31]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -1.99902344, - "y": 27.9606133, - "z": -292.8999 - }, - "Rotation": { - "x": 271.545837, - "y": 318.40686, - "z": 122.00322 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9d2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9d2", - "_tpl": "5ae9a1b886f77404c8537c62", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_shelter_building_items (62) [a8a95f4e-17c7-42e7-98e6-00eda061a595]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.0539551, + "y": 27.4910011, + "z": -120.149048 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9c4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9c4", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shop_oli_vedodmost [32f2ae26-2b72-48d9-9e88-78fec69ad370]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 38.0084229, - "y": 27.9528084, - "z": 147.143677 - }, - "Rotation": { - "x": 271.558075, - "y": 265.531158, - "z": 51.3442726 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9d4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9d4", - "_tpl": "5ae9a18586f7746e381e16a3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_shelter_building_items (63) [33fc3e90-118a-440d-a67a-4290a8076bdd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -49.548233, + "y": 28.4416752, + "z": 118.620995 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9c6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9c6", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shop_oli_vedodmost_part2 [3fde5abd-2027-4c06-b2df-6d0ebaba630f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 86.60339, - "y": 28.06081, - "z": 120.860718 - }, - "Rotation": { - "x": 276.974365, - "y": 252.1377, - "z": 315.13678 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9d6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9d6", - "_tpl": "5ae9a25386f7746dd946e6d9", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_shelter_building_items (65) [46f2a1c7-5a79-4569-82cd-a3bfcf25e19c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -45.9712334, + "y": 27.4366741, + "z": 120.924995 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9c8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9c8", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_small_jeverly_money (13) [6c7ef2a0-23ea-4b24-b577-959ae9fca74c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.1895752, - "y": 27.888813, - "z": -0.139282227 - }, - "Rotation": { - "x": 0.0, - "y": 85.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9d8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9d8", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (70) [ea2ff50a-40cb-4046-a025-7555009e7138]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -30.7432327, + "y": 27.615675, + "z": 119.34 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9ca", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9ca", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_small_jeverly_money (25) [5d6630e9-ce13-4050-aed7-454ff9468cb0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -1.77355957, - "y": 28.1138115, - "z": 35.2467041 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9da", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9da", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (1) [18ac39d9-0137-4d96-86ef-1c0bb4cb68f1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.77197, + "y": 27.7540016, + "z": -120.85498 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9cc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9cc", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_small_jeverly_money (52) [a7401c25-bc48-41a4-b758-fdc28ec00fda]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.26965, - "y": 27.8188133, - "z": 3.66564941 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9dc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9dc", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (20) [90dc61a9-294f-4b6c-b754-e8910af35a87]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -212.528229, + "y": 22.2636757, + "z": -351.666 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9ce", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9ce", + "_tpl": "5d1b304286f774253763a528", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_technikal_staff (608) [433ffd6b-9690-487d-acab-a87a95aa8e5c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 22.8117676, - "y": 37.20281, - "z": -21.8937988 - }, - "Rotation": { - "x": 0.0, - "y": 94.6804047, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9de", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9de", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shop_goshan_vedodmost [88a5211a-7a44-4a0e-ab95-528eab4fbd55]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -76.48059, + "y": 27.9598122, + "z": -157.719238 + }, + "Rotation": { + "x": 271.278259, + "y": 80.544136, + "z": 136.505157 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9d0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9d0", + "_tpl": "5ae9a0dd86f7742e5f454a05", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_technikal_zone (218) [fc1426b5-9820-4535-8ace-7dfa7c505962]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.34558, - "y": 37.04781, - "z": -84.85889 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9e0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9e0", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shop_idea_vedodmost [a1d79fd1-3250-4a52-bd61-167211057b31]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -1.99902344, + "y": 27.9606133, + "z": -292.8999 + }, + "Rotation": { + "x": 271.545837, + "y": 318.40686, + "z": 122.00322 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9d2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9d2", + "_tpl": "5ae9a1b886f77404c8537c62", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_technikal_zone (219) [58dd98c7-5a22-4798-904e-008940f97767]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 62.17395, - "y": 37.04781, - "z": -89.296875 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9e2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9e2", - "_tpl": "5d1b392c86f77425243e98fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shop_oli_vedodmost [32f2ae26-2b72-48d9-9e88-78fec69ad370]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 38.0084229, + "y": 27.9528084, + "z": 147.143677 + }, + "Rotation": { + "x": 271.558075, + "y": 265.531158, + "z": 51.3442726 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9d4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9d4", + "_tpl": "5ae9a18586f7746e381e16a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_technikal_zone (221) [71f19eca-8021-4cf1-a260-3a34158e73a4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 62.12793, - "y": 37.04781, - "z": -98.57825 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9e4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9e4", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shop_oli_vedodmost_part2 [3fde5abd-2027-4c06-b2df-6d0ebaba630f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 86.60339, + "y": 28.06081, + "z": 120.860718 + }, + "Rotation": { + "x": 276.974365, + "y": 252.1377, + "z": 315.13678 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9d6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9d6", + "_tpl": "5ae9a25386f7746dd946e6d9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_technikal_zone (222) [943cab18-cd51-429f-92bb-d4ecf01ada07]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.5344238, - "y": 37.04781, - "z": -96.4077148 - }, - "Rotation": { - "x": 0.0, - "y": 213.43, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9e6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9e6", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_small_jeverly_money (13) [6c7ef2a0-23ea-4b24-b577-959ae9fca74c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.1895752, + "y": 27.888813, + "z": -0.139282227 + }, + "Rotation": { + "x": 0.0, + "y": 85.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9d8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9d8", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (10) [960b71b8-3deb-4e63-9b2c-425ce5dd05c1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 8.348389, - "y": 29.18581, - "z": -256.819336 - }, - "Rotation": { - "x": 0.0, - "y": 99.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9e8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9e8", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_small_jeverly_money (25) [5d6630e9-ce13-4050-aed7-454ff9468cb0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -1.77355957, + "y": 28.1138115, + "z": 35.2467041 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9da", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9da", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (101) [1521bdd3-394a-4aa8-aee4-a34dacd1ec26]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 19.7143555, - "y": 28.8728065, - "z": -25.8322754 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9ea", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9ea", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_small_jeverly_money (52) [a7401c25-bc48-41a4-b758-fdc28ec00fda]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.26965, + "y": 27.8188133, + "z": 3.66564941 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9dc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9dc", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (103) [bb46423a-210b-4abc-aa30-8e494e05e09c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.52966, - "y": 27.7118111, - "z": -253.4143 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9ec", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9ec", - "_tpl": "66b37f114410565a8f6789e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_technikal_staff (608) [433ffd6b-9690-487d-acab-a87a95aa8e5c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 22.8117676, + "y": 37.20281, + "z": -21.8937988 + }, + "Rotation": { + "x": 0.0, + "y": 94.6804047, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9de", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9de", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (108) [e3fcf22b-3ca8-4aa9-ba62-e4756d6c618b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -20.3565674, - "y": 37.40681, - "z": -72.50635 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9ee", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9ee", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_technikal_zone (218) [fc1426b5-9820-4535-8ace-7dfa7c505962]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.34558, + "y": 37.04781, + "z": -84.85889 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9e0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9e0", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (11) [fa446d10-43ed-4ee1-8960-49cada171af1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 451.93335, - "y": 18.6208076, - "z": -368.0813 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9f0", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9f0", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_technikal_zone (219) [58dd98c7-5a22-4798-904e-008940f97767]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 62.17395, + "y": 37.04781, + "z": -89.296875 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9e2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9e2", + "_tpl": "5d1b392c86f77425243e98fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (111) [3d4d4b49-8d32-4227-96cf-df9188c45a6f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -44.6566162, - "y": 37.75581, - "z": -167.766357 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9f2", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9f2", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_technikal_zone (221) [71f19eca-8021-4cf1-a260-3a34158e73a4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 62.12793, + "y": 37.04781, + "z": -98.57825 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9e4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9e4", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (115) [b12994a5-935e-4dea-a544-069fa49153dc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -53.7556152, - "y": 28.8838081, - "z": -196.821289 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9f4", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9f4", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_technikal_zone (222) [943cab18-cd51-429f-92bb-d4ecf01ada07]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.5344238, + "y": 37.04781, + "z": -96.4077148 + }, + "Rotation": { + "x": 0.0, + "y": 213.43, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9e6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9e6", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (117) [8b00c9b8-3abe-4c0b-b1cb-ef1f2cd69374]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.583374, - "y": 27.9998131, - "z": -32.6483154 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9f6", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9f6", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (10) [960b71b8-3deb-4e63-9b2c-425ce5dd05c1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 8.348389, + "y": 29.18581, + "z": -256.819336 + }, + "Rotation": { + "x": 0.0, + "y": 99.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9e8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9e8", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (118) [1b33ad7f-4f5f-4efb-861c-aa43b096ee78]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 59.60034, - "y": 28.04581, - "z": -26.4453125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9f8", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9f8", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (101) [1521bdd3-394a-4aa8-aee4-a34dacd1ec26]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 19.7143555, + "y": 28.8728065, + "z": -25.8322754 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9ea", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9ea", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (12) [1d66b936-ff8d-48e8-883f-abb35b32551b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 451.881348, - "y": 18.1698112, - "z": -371.411316 - }, - "Rotation": { - "x": 0.0, - "y": 209.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9fa", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9fa", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (103) [bb46423a-210b-4abc-aa30-8e494e05e09c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.52966, + "y": 27.7118111, + "z": -253.4143 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9ec", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9ec", + "_tpl": "66b37f114410565a8f6789e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (122) [cfb1c8d4-4085-4d02-a9a5-f8f0b93eba33]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 63.9194336, - "y": 28.4158134, - "z": -26.3133545 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9fc", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9fc", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (108) [e3fcf22b-3ca8-4aa9-ba62-e4756d6c618b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -20.3565674, + "y": 37.40681, + "z": -72.50635 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9ee", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9ee", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (123) [b0c9c640-a393-4e25-9407-4b520900e087]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -0.5695801, - "y": 28.0288124, - "z": -212.609375 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007b9fe", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007b9fe", - "_tpl": "590c2b4386f77425357b6123", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (11) [fa446d10-43ed-4ee1-8960-49cada171af1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 451.93335, + "y": 18.6208076, + "z": -368.0813 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9f0", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9f0", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (125) [2fb6140a-c581-4395-b0e0-16d3b8c5446a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 10.4053955, - "y": 27.4538078, - "z": -224.48938 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba00", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba00", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (111) [3d4d4b49-8d32-4227-96cf-df9188c45a6f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -44.6566162, + "y": 37.75581, + "z": -167.766357 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9f2", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9f2", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (126) [8d17bf07-d122-43ca-9f42-e2fb69dc9212]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 10.4543457, - "y": 27.425808, - "z": -257.4453 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba02", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba02", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (115) [b12994a5-935e-4dea-a544-069fa49153dc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -53.7556152, + "y": 28.8838081, + "z": -196.821289 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9f4", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9f4", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (13) [4f0b33b2-aa83-4298-b402-82cea0445725]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 486.76, - "y": 21.15981, - "z": -339.858337 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba04", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba04", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (117) [8b00c9b8-3abe-4c0b-b1cb-ef1f2cd69374]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.583374, + "y": 27.9998131, + "z": -32.6483154 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9f6", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9f6", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (130) [7c77b298-245b-42bf-8e7a-d2f031289757]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.03345, - "y": 27.7318077, - "z": 191.84668 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba06", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba06", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (118) [1b33ad7f-4f5f-4efb-861c-aa43b096ee78]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 59.60034, + "y": 28.04581, + "z": -26.4453125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9f8", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9f8", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (14) [5613b605-7eb1-4c9b-8719-37ec9655d01f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -198.402588, - "y": 22.4738121, - "z": -356.1173 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba08", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba08", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (12) [1d66b936-ff8d-48e8-883f-abb35b32551b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 451.881348, + "y": 18.1698112, + "z": -371.411316 + }, + "Rotation": { + "x": 0.0, + "y": 209.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9fa", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9fa", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (15) [3335d42e-b032-4f01-b155-c13e80f99aa4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -231.5296, - "y": 22.61781, - "z": -385.918335 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba0a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba0a", - "_tpl": "5d63d33b86f7746ea9275524", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (122) [cfb1c8d4-4085-4d02-a9a5-f8f0b93eba33]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 63.9194336, + "y": 28.4158134, + "z": -26.3133545 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9fc", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9fc", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (16) [6d798b70-c3f6-441e-93da-4b53db8ed315]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -242.601624, - "y": 22.55981, - "z": -261.187317 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba0c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba0c", - "_tpl": "60391afc25aff57af81f7085", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (123) [b0c9c640-a393-4e25-9407-4b520900e087]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -0.5695801, + "y": 28.0288124, + "z": -212.609375 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007b9fe", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007b9fe", + "_tpl": "590c2b4386f77425357b6123", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (18) [1db779b3-aa4d-41ee-9b3b-0ee2b3924bb3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -214.1726, - "y": 22.7738075, - "z": -11.7873535 - }, - "Rotation": { - "x": 0.0, - "y": 7.999998, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba0e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba0e", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (125) [2fb6140a-c581-4395-b0e0-16d3b8c5446a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 10.4053955, + "y": 27.4538078, + "z": -224.48938 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba00", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba00", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (2) [b1d83c3e-802a-4514-b831-79d636a2832b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -8.410645, - "y": 27.9798088, - "z": -279.842346 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba10", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba10", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (126) [8d17bf07-d122-43ca-9f42-e2fb69dc9212]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 10.4543457, + "y": 27.425808, + "z": -257.4453 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba02", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba02", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (20) [10c67c7e-f0ce-4b89-9503-251b4dce0b97]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 100.272339, - "y": 22.53281, - "z": 253.790649 - }, - "Rotation": { - "x": 0.0, - "y": 272.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba12", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba12", - "_tpl": "5d63d33b86f7746ea9275524", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (13) [4f0b33b2-aa83-4298-b402-82cea0445725]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 486.76, + "y": 21.15981, + "z": -339.858337 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba04", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba04", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (21) [5dc7eedb-385c-42f4-8274-8a698866f8e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 105.869385, - "y": 22.5688133, - "z": 250.483643 - }, - "Rotation": { - "x": 0.0, - "y": 266.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba14", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba14", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (130) [7c77b298-245b-42bf-8e7a-d2f031289757]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.03345, + "y": 27.7318077, + "z": 191.84668 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba06", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba06", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (23) [04b3fb29-6ed3-4b69-bb11-fad71aa7f5ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 104.245361, - "y": 22.64281, - "z": 287.029663 - }, - "Rotation": { - "x": 0.0, - "y": 112.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba16", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba16", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (14) [5613b605-7eb1-4c9b-8719-37ec9655d01f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -198.402588, + "y": 22.4738121, + "z": -356.1173 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba08", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba08", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (26) [88cd5093-928a-4c97-9636-320cd85811f7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 122.797363, - "y": 22.0528069, - "z": 289.884644 - }, - "Rotation": { - "x": 0.0, - "y": 75.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba18", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba18", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (15) [3335d42e-b032-4f01-b155-c13e80f99aa4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -231.5296, + "y": 22.61781, + "z": -385.918335 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba0a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba0a", + "_tpl": "5d63d33b86f7746ea9275524", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (28) [da9a437a-e094-4095-8cd3-fb6bf4fa83e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 162.8534, - "y": 22.5968132, - "z": 284.091675 - }, - "Rotation": { - "x": 0.0, - "y": 211.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba1a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba1a", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (16) [6d798b70-c3f6-441e-93da-4b53db8ed315]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -242.601624, + "y": 22.55981, + "z": -261.187317 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba0c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba0c", + "_tpl": "60391afc25aff57af81f7085", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (29) [4ef720ac-76dd-41fc-9b86-b7cb984f2cfe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 162.787354, - "y": 22.5968132, - "z": 283.446655 - }, - "Rotation": { - "x": 0.0, - "y": 238.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba1c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba1c", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (18) [1db779b3-aa4d-41ee-9b3b-0ee2b3924bb3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -214.1726, + "y": 22.7738075, + "z": -11.7873535 + }, + "Rotation": { + "x": 0.0, + "y": 7.999998, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba0e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba0e", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (31) [d65c1617-6801-4ea9-9c9d-170ccab8eaaf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.809937, - "y": 22.4038124, - "z": -220.572021 - }, - "Rotation": { - "x": 0.0, - "y": 264.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba1e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba1e", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (2) [b1d83c3e-802a-4514-b831-79d636a2832b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -8.410645, + "y": 27.9798088, + "z": -279.842346 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba10", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba10", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (32) [3a134ed3-c471-4d55-b3ca-42e488fe4852]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.010376, - "y": 22.61781, - "z": -220.460327 - }, - "Rotation": { - "x": 0.0, - "y": 46.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba20", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba20", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (20) [10c67c7e-f0ce-4b89-9503-251b4dce0b97]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 100.272339, + "y": 22.53281, + "z": 253.790649 + }, + "Rotation": { + "x": 0.0, + "y": 272.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba12", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba12", + "_tpl": "5d63d33b86f7746ea9275524", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (34) [7b73f9a7-27cf-4ec9-a589-1d0175b150c8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 247.381348, - "y": 22.7768135, - "z": -330.280334 - }, - "Rotation": { - "x": 0.0, - "y": 99.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba22", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba22", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (21) [5dc7eedb-385c-42f4-8274-8a698866f8e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 105.869385, + "y": 22.5688133, + "z": 250.483643 + }, + "Rotation": { + "x": 0.0, + "y": 266.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba14", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba14", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (35) [0a364d46-9edf-4728-aed4-a3b61465c91f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 337.4204, - "y": 18.7088127, - "z": -338.827332 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba24", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba24", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (23) [04b3fb29-6ed3-4b69-bb11-fad71aa7f5ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 104.245361, + "y": 22.64281, + "z": 287.029663 + }, + "Rotation": { + "x": 0.0, + "y": 112.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba16", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba16", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (36) [3e27a0ad-dfd7-4f1a-8c29-0d9646d87b38]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 307.468384, - "y": 18.777813, - "z": -371.5393 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba26", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba26", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (26) [88cd5093-928a-4c97-9636-320cd85811f7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 122.797363, + "y": 22.0528069, + "z": 289.884644 + }, + "Rotation": { + "x": 0.0, + "y": 75.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba18", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba18", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (4) [fe6839d5-4cba-446c-96a3-34136175d454]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.393555, - "y": 28.0918083, - "z": -288.8073 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba28", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba28", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (28) [da9a437a-e094-4095-8cd3-fb6bf4fa83e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 162.8534, + "y": 22.5968132, + "z": 284.091675 + }, + "Rotation": { + "x": 0.0, + "y": 211.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba1a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba1a", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (41) [81aed6a1-4a4f-4c0f-ba10-a8185494b431]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -117.890625, - "y": 27.751812, - "z": -244.209351 - }, - "Rotation": { - "x": 0.0, - "y": 269.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba2a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba2a", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (29) [4ef720ac-76dd-41fc-9b86-b7cb984f2cfe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 162.787354, + "y": 22.5968132, + "z": 283.446655 + }, + "Rotation": { + "x": 0.0, + "y": 238.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba1c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba1c", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (44) [a4cf99e3-777b-41aa-bf17-36ff5950df41]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -110.928589, - "y": 28.3078117, - "z": -222.533325 - }, - "Rotation": { - "x": 0.0, - "y": 208.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba2c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba2c", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (31) [d65c1617-6801-4ea9-9c9d-170ccab8eaaf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.809937, + "y": 22.4038124, + "z": -220.572021 + }, + "Rotation": { + "x": 0.0, + "y": 264.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba1e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba1e", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (48) [e475562b-1b8a-492d-98d9-03b33b7530da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.368652, - "y": 27.5558128, - "z": -201.5553 - }, - "Rotation": { - "x": 0.0, - "y": 313.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba2e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba2e", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (32) [3a134ed3-c471-4d55-b3ca-42e488fe4852]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.010376, + "y": 22.61781, + "z": -220.460327 + }, + "Rotation": { + "x": 0.0, + "y": 46.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba20", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba20", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (49) [f16bac4e-0446-44a5-aaf6-ed4048ea65b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -121.373657, - "y": 28.4058113, - "z": -182.8053 - }, - "Rotation": { - "x": 0.0, - "y": 177.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba30", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba30", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (34) [7b73f9a7-27cf-4ec9-a589-1d0175b150c8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 247.381348, + "y": 22.7768135, + "z": -330.280334 + }, + "Rotation": { + "x": 0.0, + "y": 99.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba22", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba22", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (5) [40aa2e3f-16b5-42b9-860e-295d99ee1713]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -27.8205566, - "y": 29.61481, - "z": -267.452332 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba32", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba32", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (35) [0a364d46-9edf-4728-aed4-a3b61465c91f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 337.4204, + "y": 18.7088127, + "z": -338.827332 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba24", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba24", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (50) [227c712a-94b2-4c7e-818f-ce7e496dd90d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -123.107544, - "y": 28.72681, - "z": -182.748291 - }, - "Rotation": { - "x": 0.0, - "y": 24.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba34", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba34", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (36) [3e27a0ad-dfd7-4f1a-8c29-0d9646d87b38]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 307.468384, + "y": 18.777813, + "z": -371.5393 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba26", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba26", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (57) [eb1c415a-3346-4348-b5d7-d1c1f9d0356d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.793579, - "y": 27.96281, - "z": 14.4886475 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba36", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba36", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (4) [fe6839d5-4cba-446c-96a3-34136175d454]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.393555, + "y": 28.0918083, + "z": -288.8073 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba28", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba28", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (65) [4674e21c-08bf-4506-aca1-c85252eacfb7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.5326, - "y": 28.0398064, - "z": -12.9672852 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba38", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba38", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (41) [81aed6a1-4a4f-4c0f-ba10-a8185494b431]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -117.890625, + "y": 27.751812, + "z": -244.209351 + }, + "Rotation": { + "x": 0.0, + "y": 269.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba2a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba2a", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (67) [b41cb800-87da-42f6-90a9-65b9d72f29fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.8396, - "y": 27.2648125, - "z": -23.6303711 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba3a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba3a", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (44) [a4cf99e3-777b-41aa-bf17-36ff5950df41]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -110.928589, + "y": 28.3078117, + "z": -222.533325 + }, + "Rotation": { + "x": 0.0, + "y": 208.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba2c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba2c", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (71) [ea0a085a-00c5-4da3-88b1-9fdbcc9c5392]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -196.155579, - "y": 27.7578087, - "z": -32.2963867 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba3c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba3c", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (48) [e475562b-1b8a-492d-98d9-03b33b7530da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.368652, + "y": 27.5558128, + "z": -201.5553 + }, + "Rotation": { + "x": 0.0, + "y": 313.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba2e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba2e", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (72) [08165bb3-560c-48e1-b770-46c1f79a226b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -167.086609, - "y": 27.763813, - "z": -105.734375 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba3e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba3e", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (49) [f16bac4e-0446-44a5-aaf6-ed4048ea65b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -121.373657, + "y": 28.4058113, + "z": -182.8053 + }, + "Rotation": { + "x": 0.0, + "y": 177.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba30", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba30", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (76) [7beffb4c-3c84-43f7-b7f1-a2f4a9d5a495]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -181.2406, - "y": 28.4008064, - "z": -133.911377 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba40", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba40", - "_tpl": "590c311186f77424d1667482", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (5) [40aa2e3f-16b5-42b9-860e-295d99ee1713]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -27.8205566, + "y": 29.61481, + "z": -267.452332 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba32", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba32", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (77) [2307b5c2-9a4f-4e55-b806-e9b95e2a609e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -181.211609, - "y": 27.7068062, - "z": -133.46228 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba42", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba42", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (50) [227c712a-94b2-4c7e-818f-ce7e496dd90d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -123.107544, + "y": 28.72681, + "z": -182.748291 + }, + "Rotation": { + "x": 0.0, + "y": 24.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba34", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba34", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (79) [8bb5c224-4e16-4ea7-939f-a653b98349a7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -180.572632, - "y": 28.0918083, - "z": -142.223389 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba44", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba44", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (57) [eb1c415a-3346-4348-b5d7-d1c1f9d0356d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.793579, + "y": 27.96281, + "z": 14.4886475 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba36", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba36", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (80) [258f6c2b-3096-4d3e-9b84-20842dc48fb3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -180.6806, - "y": 28.0558128, - "z": -148.21936 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba46", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba46", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (65) [4674e21c-08bf-4506-aca1-c85252eacfb7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.5326, + "y": 28.0398064, + "z": -12.9672852 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba38", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba38", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (85) [2c576d05-aa95-4dda-81f5-b66082e5917c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -180.70459, - "y": 27.3578072, - "z": -177.246338 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba48", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba48", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (67) [b41cb800-87da-42f6-90a9-65b9d72f29fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.8396, + "y": 27.2648125, + "z": -23.6303711 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba3a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba3a", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (88) [02918df1-c0cf-48d3-8848-60c9ac70649e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -152.3996, - "y": 27.675808, - "z": -150.934326 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba4a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba4a", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (71) [ea0a085a-00c5-4da3-88b1-9fdbcc9c5392]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -196.155579, + "y": 27.7578087, + "z": -32.2963867 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba3c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba3c", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (89) [56297356-ff74-4e1b-9b71-6fd96fd4c55e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -143.587585, - "y": 28.0378075, - "z": -150.922363 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba4c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba4c", - "_tpl": "5bc9b355d4351e6d1509862a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (72) [08165bb3-560c-48e1-b770-46c1f79a226b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -167.086609, + "y": 27.763813, + "z": -105.734375 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba3e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba3e", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (92) [40840f70-64b0-4745-a594-41bb9f80e1da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -137.57666, - "y": 27.3308067, - "z": -150.9353 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba4e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba4e", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (76) [7beffb4c-3c84-43f7-b7f1-a2f4a9d5a495]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -181.2406, + "y": 28.4008064, + "z": -133.911377 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba40", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba40", + "_tpl": "590c311186f77424d1667482", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (94) [0e1979a4-7b2f-45e0-aeed-92edd834c041]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -134.380615, - "y": 28.3708076, - "z": -150.985352 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba50", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba50", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (77) [2307b5c2-9a4f-4e55-b806-e9b95e2a609e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -181.211609, + "y": 27.7068062, + "z": -133.46228 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba42", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba42", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (97) [a43b04ac-fa52-42e6-ae65-bede71063e46]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -105.474609, - "y": 28.31081, - "z": 77.41162 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba52", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba52", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (79) [8bb5c224-4e16-4ea7-939f-a653b98349a7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -180.572632, + "y": 28.0918083, + "z": -142.223389 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba44", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba44", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (98) [a7591c15-bc1f-48a6-b301-3d3a23c1a5fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 31.5124512, - "y": 27.7338066, - "z": -31.5662842 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba54", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba54", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (80) [258f6c2b-3096-4d3e-9b84-20842dc48fb3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -180.6806, + "y": 28.0558128, + "z": -148.21936 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba46", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba46", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tushenka (9) [64e8e038-7a30-45ab-8571-4be0bd19a7f1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -95.46863, - "y": 28.2918129, - "z": 11.4447021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba56", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba56", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (85) [2c576d05-aa95-4dda-81f5-b66082e5917c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -180.70459, + "y": 27.3578072, + "z": -177.246338 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba48", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba48", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (35)(Clone) [106f1a13-8fed-4cff-8e95-2f99e2fc9e5e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -74.8924561, - "y": 21.8679962, - "z": -158.1488 - }, - "Rotation": { - "x": 3.58329385e-6, - "y": 184.589828, - "z": -4.12869258e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba58", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba58", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_tool (88) [02918df1-c0cf-48d3-8848-60c9ac70649e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -152.3996, + "y": 27.675808, + "z": -150.934326 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba4a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba4a", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (35)(Clone) [2b18de56-0062-4c1e-ad5b-2897de758635]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 30.2166576, - "y": 21.894001, - "z": -280.878723 - }, - "Rotation": { - "x": 7.370183e-6, - "y": 130.797943, - "z": 7.893611e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba5b", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba5b", - "_tpl": "5739d41224597779c3645501", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_tool (89) [56297356-ff74-4e1b-9b71-6fd96fd4c55e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -143.587585, + "y": 28.0378075, + "z": -150.922363 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba4c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba4c", + "_tpl": "5bc9b355d4351e6d1509862a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_tool (92) [40840f70-64b0-4745-a594-41bb9f80e1da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -137.57666, + "y": 27.3308067, + "z": -150.9353 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007ba5c", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb4da1ae71bfb1007ba5b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba4e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba4e", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (35)(Clone) [fee70bf7-d250-4ae1-b8ed-8b737f7fa131]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 131.977463, - "y": 21.8894386, - "z": 207.5752 - }, - "Rotation": { - "x": -3.72873751e-6, - "y": 164.530853, - "z": -2.078401e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba5e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba5e", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_tool (94) [0e1979a4-7b2f-45e0-aeed-92edd834c041]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -134.380615, + "y": 28.3708076, + "z": -150.985352 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba50", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba50", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (37)(Clone) [184b2a38-44c5-4f55-8471-0f97f4098df8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 132.757309, - "y": 22.00144, - "z": 207.677917 - }, - "Rotation": { - "x": -7.27728366e-6, - "y": 130.979691, - "z": 5.030194e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba60", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba60", - "_tpl": "57616a9e2459773c7a400234", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_tool (97) [a43b04ac-fa52-42e6-ae65-bede71063e46]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -105.474609, + "y": 28.31081, + "z": 77.41162 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba52", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba52", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_tool (98) [a7591c15-bc1f-48a6-b301-3d3a23c1a5fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 31.5124512, + "y": 27.7338066, + "z": -31.5662842 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb4da1ae71bfb1007ba61", - "_tpl": "5c0d591486f7744c505b416f", - "parentId": "66cbb4da1ae71bfb1007ba60", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba54", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba54", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (37)(Clone) [d719db49-b6cd-45c2-a8d6-48f5922e1573]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 164.590973, - "y": 21.976, - "z": 89.3847961 - }, - "Rotation": { - "x": -1.54855013e-6, - "y": 330.2697, - "z": 7.47772128e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba63", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba63", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_tushenka (9) [64e8e038-7a30-45ab-8571-4be0bd19a7f1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -95.46863, + "y": 28.2918129, + "z": 11.4447021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba56", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba56", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (38)(Clone) [8c9506a7-5e54-47f1-85b6-8fdedeae1f66]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -311.12912, - "y": 22.203, - "z": -372.058563 - }, - "Rotation": { - "x": -4.29274769e-6, - "y": 144.5473, - "z": -2.213153e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba65", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba65", - "_tpl": "57616a9e2459773c7a400234", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootGarbage (35)(Clone) [106f1a13-8fed-4cff-8e95-2f99e2fc9e5e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -74.8924561, + "y": 21.8679962, + "z": -158.1488 + }, + "Rotation": { + "x": 3.58329385e-6, + "y": 184.589828, + "z": -4.12869258e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba58", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba58", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb4da1ae71bfb1007ba66", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "66cbb4da1ae71bfb1007ba65", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2 + ] + }, + { + "Id": "LootGarbage (35)(Clone) [2b18de56-0062-4c1e-ad5b-2897de758635]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 30.2166576, + "y": 21.894001, + "z": -280.878723 + }, + "Rotation": { + "x": 7.370183e-6, + "y": 130.797943, + "z": 7.893611e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba5b", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba5b", + "_tpl": "5739d41224597779c3645501", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007ba5c", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb4da1ae71bfb1007ba5b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "LootGarbage (39)(Clone) [5f4388ca-2947-4822-9095-43b8373b499a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -311.03186, - "y": 22.216, - "z": -371.771332 - }, - "Rotation": { - "x": 1.08178028e-5, - "y": 51.5305672, - "z": 9.013542e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba68", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba68", - "_tpl": "5448ff904bdc2d6f028b456e", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootGarbage (35)(Clone) [fee70bf7-d250-4ae1-b8ed-8b737f7fa131]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 131.977463, + "y": 21.8894386, + "z": 207.5752 + }, + "Rotation": { + "x": -3.72873751e-6, + "y": 164.530853, + "z": -2.078401e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba5e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba5e", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Pick_11 [36cf90f7-1b3d-4207-8ad0-406fa78981f7]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -20.04118, - "y": 27.284, - "z": -21.751545 - }, - "Rotation": { - "x": 349.0679, - "y": 94.65765, - "z": -5.21732227e-6 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 138.242691, - "y": 24.4003, - "z": 272.118927 + ] + }, + { + "Id": "LootGarbage (37)(Clone) [184b2a38-44c5-4f55-8471-0f97f4098df8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 132.757309, + "y": 22.00144, + "z": 207.677917 + }, + "Rotation": { + "x": -7.27728366e-6, + "y": 130.979691, + "z": 5.030194e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba60", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba60", + "_tpl": "57616a9e2459773c7a400234", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 353.866119, - "y": 0.05666037, - "z": -0.00102696335 + { + "_id": "66cbb4da1ae71bfb1007ba61", + "_tpl": "5c0d591486f7744c505b416f", + "parentId": "66cbb4da1ae71bfb1007ba60", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4 + } } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -20.04118, - "y": 27.284, - "z": -21.751545 - }, - "Rotation": { - "x": 349.0679, - "y": 94.65765, - "z": -5.21732227e-6 + ] + }, + { + "Id": "LootGarbage (37)(Clone) [d719db49-b6cd-45c2-a8d6-48f5922e1573]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 164.590973, + "y": 21.976, + "z": 89.3847961 + }, + "Rotation": { + "x": -1.54855013e-6, + "y": 330.2697, + "z": 7.47772128e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba63", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba63", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -46.2196426, - "y": 21.9334, - "z": 45.4747353 - }, - "Rotation": { - "x": 345.953735, - "y": 91.09343, - "z": 0.833289266 + ] + }, + { + "Id": "LootGarbage (38)(Clone) [8c9506a7-5e54-47f1-85b6-8fdedeae1f66]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -311.12912, + "y": 22.203, + "z": -372.058563 + }, + "Rotation": { + "x": -4.29274769e-6, + "y": 144.5473, + "z": -2.213153e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba65", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba65", + "_tpl": "57616a9e2459773c7a400234", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb4da1ae71bfb1007ba66", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "66cbb4da1ae71bfb1007ba65", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba6a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba6a", - "_tpl": "64e74a5ac2b4f829615ec336", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootGarbage (39)(Clone) [5f4388ca-2947-4822-9095-43b8373b499a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -311.03186, + "y": 22.216, + "z": -371.771332 + }, + "Rotation": { + "x": 1.08178028e-5, + "y": 51.5305672, + "z": 9.013542e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba68", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba68", + "_tpl": "5448ff904bdc2d6f028b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "plate (10) [3129d3b8-6dcb-4b65-b1df-00758f595cbc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -22.5015869, - "y": 29.53381, - "z": -17.6583252 - }, - "Rotation": { - "x": 89.5666, - "y": 213.637573, - "z": 303.639343 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba6c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba6c", - "_tpl": "656fafe3498d1b7e3e071da4", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Pick_11 [36cf90f7-1b3d-4207-8ad0-406fa78981f7]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -20.04118, + "y": 27.284, + "z": -21.751545 + }, + "Rotation": { + "x": 349.0679, + "y": 94.65765, + "z": -5.21732227e-6 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 138.242691, + "y": 24.4003, + "z": 272.118927 + }, + "Rotation": { + "x": 353.866119, + "y": 0.05666037, + "z": -0.00102696335 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -20.04118, + "y": 27.284, + "z": -21.751545 + }, + "Rotation": { + "x": 349.0679, + "y": 94.65765, + "z": -5.21732227e-6 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -46.2196426, + "y": 21.9334, + "z": 45.4747353 + }, + "Rotation": { + "x": 345.953735, + "y": 91.09343, + "z": 0.833289266 + } } - } - ] - }, - { - "Id": "plate (11) [9d11cb5f-d55e-44e3-a0e4-51dfc711e917]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -22.5015869, - "y": 29.5168114, - "z": -17.2382813 - }, - "Rotation": { - "x": 89.5666, - "y": 213.637573, - "z": 303.639343 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba6e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba6e", - "_tpl": "656fa61e94b480b8a500c0e8", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba6a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba6a", + "_tpl": "64e74a5ac2b4f829615ec336", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "plate (12) [4f7665d0-9987-4280-a92f-89f41cbed5c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -22.213623, - "y": 29.4848137, - "z": -16.91333 - }, - "Rotation": { - "x": 89.5666, - "y": 213.637573, - "z": 303.639343 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba70", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba70", - "_tpl": "655746010177119f4a097ff7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "plate (10) [3129d3b8-6dcb-4b65-b1df-00758f595cbc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -22.5015869, + "y": 29.53381, + "z": -17.6583252 + }, + "Rotation": { + "x": 89.5666, + "y": 213.637573, + "z": 303.639343 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba6c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba6c", + "_tpl": "656fafe3498d1b7e3e071da4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "plate (2) [da80a497-b8a2-4656-8625-24424e84fdac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -14.9295654, - "y": 28.10181, - "z": -31.6853027 - }, - "Rotation": { - "x": 89.5666, - "y": 213.637573, - "z": 303.639343 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba72", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba72", - "_tpl": "656fa61e94b480b8a500c0e8", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "plate (11) [9d11cb5f-d55e-44e3-a0e4-51dfc711e917]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -22.5015869, + "y": 29.5168114, + "z": -17.2382813 + }, + "Rotation": { + "x": 89.5666, + "y": 213.637573, + "z": 303.639343 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba6e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba6e", + "_tpl": "656fa61e94b480b8a500c0e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "plate (6) [547578d3-b003-4e05-8c61-aebfeb7931a7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -15.43457, - "y": 28.0228081, - "z": -34.9063721 - }, - "Rotation": { - "x": 89.5666, - "y": 213.637573, - "z": 303.639343 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba74", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba74", - "_tpl": "654a4dea7c17dec2f50cc86a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "plate (12) [4f7665d0-9987-4280-a92f-89f41cbed5c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -22.213623, + "y": 29.4848137, + "z": -16.91333 + }, + "Rotation": { + "x": 89.5666, + "y": 213.637573, + "z": 303.639343 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba70", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba70", + "_tpl": "655746010177119f4a097ff7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_chemcontainer3 [afec54b4-2c8d-425c-be37-564a5751648f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 19.3435, - "y": 28.1595, - "z": -106.6355 - }, - "Rotation": { - "x": 32.18115, - "y": 268.8935, - "z": 0.2388705 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba76", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba76", - "_tpl": "5b4c81a086f77417d26be63f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "plate (2) [da80a497-b8a2-4656-8625-24424e84fdac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -14.9295654, + "y": 28.10181, + "z": -31.6853027 + }, + "Rotation": { + "x": 89.5666, + "y": 213.637573, + "z": 303.639343 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba72", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba72", + "_tpl": "656fa61e94b480b8a500c0e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_chemcontainer5 [836e1bad-2e11-4a89-9329-d8f2fa89175c]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 23.5142841, - "y": 28.033, - "z": -80.812 - }, - "Rotation": { - "x": 327.7293, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba78", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba78", - "_tpl": "5b4c81bd86f77418a75ae159", - "upd": { - "StackObjectsCount": 1 + { + "Id": "plate (6) [547578d3-b003-4e05-8c61-aebfeb7931a7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -15.43457, + "y": 28.0228081, + "z": -34.9063721 + }, + "Rotation": { + "x": 89.5666, + "y": 213.637573, + "z": 303.639343 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba74", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba74", + "_tpl": "654a4dea7c17dec2f50cc86a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_gamemagazine [21fec570-b2d1-42af-b7bc-6ba6f214f40d]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 26.1644287, - "y": 37.216, - "z": 0.664672852 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 19.5175114, - "y": 36.5814857, - "z": -12.5758066 - }, - "Rotation": { - "x": 0.898481965, - "y": 180.34053, - "z": 0.0409060568 + { + "Id": "quest_chemcontainer3 [afec54b4-2c8d-425c-be37-564a5751648f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 19.3435, + "y": 28.1595, + "z": -106.6355 + }, + "Rotation": { + "x": 32.18115, + "y": 268.8935, + "z": 0.2388705 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba76", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba76", + "_tpl": "5b4c81a086f77417d26be63f", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "quest_chemcontainer5 [836e1bad-2e11-4a89-9329-d8f2fa89175c]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 23.5142841, + "y": 28.033, + "z": -80.812 + }, + "Rotation": { + "x": 327.7293, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 18.86084, - "y": 37.444, - "z": -5.540009 - }, - "Rotation": { - "x": 1.93962991, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba78", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba78", + "_tpl": "5b4c81bd86f77418a75ae159", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "quest_gamemagazine [21fec570-b2d1-42af-b7bc-6ba6f214f40d]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 26.1644287, + "y": 37.216, + "z": 0.664672852 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 18.42624, - "y": 36.605, - "z": -3.71900845 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 19.5175114, + "y": 36.5814857, + "z": -12.5758066 + }, + "Rotation": { + "x": 0.898481965, + "y": 180.34053, + "z": 0.0409060568 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 14.6282606, - "y": 38.453, - "z": -4.792009 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 18.86084, + "y": 37.444, + "z": -5.540009 + }, + "Rotation": { + "x": 1.93962991, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 14.3219213, - "y": 37.783, - "z": -2.45800877 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 18.42624, + "y": 36.605, + "z": -3.71900845 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": 26.1644287, - "y": 37.216, - "z": 0.664672852 + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 14.6282606, + "y": 38.453, + "z": -4.792009 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[6]", - "Weight": 1, - "Position": { - "x": 8.725121, - "y": 37.335, - "z": -18.5230083 + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 14.3219213, + "y": 37.783, + "z": -2.45800877 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[7]", - "Weight": 1, - "Position": { - "x": 16.2879868, - "y": 36.9381981, - "z": -12.5386162 + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": 26.1644287, + "y": 37.216, + "z": 0.664672852 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[6]", + "Weight": 1, + "Position": { + "x": 8.725121, + "y": 37.335, + "z": -18.5230083 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[7]", + "Weight": 1, + "Position": { + "x": 16.2879868, + "y": 36.9381981, + "z": -12.5386162 + }, + "Rotation": { + "x": 62.31595, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 62.31595, - "y": 0, - "z": 0 + { + "Name": "groupPoint[8]", + "Weight": 1, + "Position": { + "x": 30.47102, + "y": 37.457, + "z": -19.5008545 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } } + ], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba7a", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba7a", + "_tpl": "667a8ef464eea5fdef0db135", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "technikal(small) (216) [418cc2e1-ecf5-4d00-a693-9f47946da86c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 60.8121338, + "y": 37.22981, + "z": -25.3840332 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 }, - { - "Name": "groupPoint[8]", - "Weight": 1, - "Position": { - "x": 30.47102, - "y": 37.457, - "z": -19.5008545 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba7c", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba7c", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba7a", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba7a", - "_tpl": "667a8ef464eea5fdef0db135", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "technikal(small) (217) [0f5e595b-8ccc-43d1-b104-f661b51ea4fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.4865723, + "y": 37.76981, + "z": -23.5046387 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba7e", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba7e", + "_tpl": "59e358a886f7741776641ac3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "technikal(small) (216) [418cc2e1-ecf5-4d00-a693-9f47946da86c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 60.8121338, - "y": 37.22981, - "z": -25.3840332 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba7c", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba7c", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "technikal(small) (218) [37d4d213-42f0-4cb8-bfff-5f9be3583c22]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.23242, + "y": 36.9338036, + "z": -18.8894043 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba80", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba80", + "_tpl": "5d40425986f7743185265461", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "technikal(small) (217) [0f5e595b-8ccc-43d1-b104-f661b51ea4fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.4865723, - "y": 37.76981, - "z": -23.5046387 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba7e", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba7e", - "_tpl": "59e358a886f7741776641ac3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "technikal(small) (219) [12344fc1-738d-432b-b85b-eeb309af4939]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.5839844, + "y": 36.9338036, + "z": -17.1469727 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba82", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba82", + "_tpl": "5d1b392c86f77425243e98fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "technikal(small) (218) [37d4d213-42f0-4cb8-bfff-5f9be3583c22]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.23242, - "y": 36.9338036, - "z": -18.8894043 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba80", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba80", - "_tpl": "5d40425986f7743185265461", - "upd": { - "StackObjectsCount": 1 + { + "Id": "technikal_staff (256) [f241cf1d-1fe5-4e55-88ce-47d2498c785e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -16.2749023, + "y": 37.2368126, + "z": -101.6698 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba84", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba84", + "_tpl": "5e2af02c86f7746d420957d4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "technikal(small) (219) [12344fc1-738d-432b-b85b-eeb309af4939]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.5839844, - "y": 36.9338036, - "z": -17.1469727 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba82", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba82", - "_tpl": "5d1b392c86f77425243e98fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "technikal_staff (262) [c817bf70-30e4-49cc-b101-bf484fda5343]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -16.3286133, + "y": 37.2328148, + "z": -94.94043 + }, + "Rotation": { + "x": 0.0, + "y": 275.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb4da1ae71bfb1007ba86", + "Items": [ + { + "_id": "66cbb4da1ae71bfb1007ba86", + "_tpl": "5d1b392c86f77425243e98fe", + "upd": { + "StackObjectsCount": 1 + } } + ] + } + ], + "Banners": [ + { + "id": "5464e0404bdc2d2a708b4567", + "pic": { + "path": "CONTENT\/banners\/banner_usec.jpg", + "rcid": "" } - ] - }, - { - "Id": "technikal_staff (256) [f241cf1d-1fe5-4e55-88ce-47d2498c785e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -16.2749023, - "y": 37.2368126, - "z": -101.6698 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba84", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba84", - "_tpl": "5e2af02c86f7746d420957d4", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "5c1b857086f77465f465faa4", + "pic": { + "path": "CONTENT\/banners\/banner_scavraider.jpg", + "rcid": "" } - ] - }, - { - "Id": "technikal_staff (262) [c817bf70-30e4-49cc-b101-bf484fda5343]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -16.3286133, - "y": 37.2328148, - "z": -94.94043 - }, - "Rotation": { - "x": 0.0, - "y": 275.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb4da1ae71bfb1007ba86", - "Items": [ - { - "_id": "66cbb4da1ae71bfb1007ba86", - "_tpl": "5d1b392c86f77425243e98fe", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "64c0acf85174e095610734a0", + "pic": { + "path": "CONTENT\/banners\/banner_sherpa.jpg", + "rcid": "" } - ] - } - ], - "Banners": [ - { - "id": "5464e0404bdc2d2a708b4567", - "pic": { - "path": "CONTENT\/banners\/banner_usec.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT\/banners\/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0acf85174e095610734a0", - "pic": { - "path": "CONTENT\/banners\/banner_sherpa.jpg", - "rcid": "" } - } - ] + ] + } } } \ No newline at end of file diff --git a/Fuyu.Platform.Server/embedded/database/locations/lighthouse.json b/Fuyu.Platform.Server/embedded/database/locations/lighthouse.json index 00e6399c..ae544d56 100644 --- a/Fuyu.Platform.Server/embedded/database/locations/lighthouse.json +++ b/Fuyu.Platform.Server/embedded/database/locations/lighthouse.json @@ -1,68182 +1,68185 @@ { - "serverId": "PVE_OFFLINE_659885_26_08_2024_02_29_51", - "serverSettings": { - "TraderServerSettings": { - "TraderServices": { - "ExUsecLoyalty": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ExUsecLoyalty", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966ff54c3ef01b6f3ffad8" + "err": 0, + "data": { + "serverId": "PVE_OFFLINE_659885_26_08_2024_02_29_51", + "serverSettings": { + "TraderServerSettings": { + "TraderServices": { + "ExUsecLoyalty": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ExUsecLoyalty", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966ff54c3ef01b6f3ffad8" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.09 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.09 + }, + "ServiceItemCost": { + "569668774bdc2da2298b4568": { + "Count": 2500 + }, + "61bf7c024770ee6f9c6b8b53": { + "Count": 2 } - } - }, - "ServiceItemCost": { - "569668774bdc2da2298b4568": { - "Count": 2500 }, - "61bf7c024770ee6f9c6b8b53": { - "Count": 2 - } - }, - "UniqueItems": [] - }, - "ZryachiyAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ZryachiyAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "6396701b9113f06a7c3b2379" + "UniqueItems": [] + }, + "ZryachiyAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ZryachiyAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "6396701b9113f06a7c3b2379" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.18 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.18 + }, + "ServiceItemCost": { + "62a0a16d0b9d3c46de5b6e97": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 2000 } - } - }, - "ServiceItemCost": { - "62a0a16d0b9d3c46de5b6e97": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 2000 - } - }, - "UniqueItems": [] - }, - "CultistsAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "CultistsAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966fccac6f8f3c677b9d89" + "UniqueItems": [] + }, + "CultistsAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "CultistsAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966fccac6f8f3c677b9d89" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.03 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.03 + }, + "ServiceItemCost": { + "5c12613b86f7743bbe2c3f76": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 1000 } - } - }, - "ServiceItemCost": { - "5c12613b86f7743bbe2c3f76": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 1000 - } - }, - "UniqueItems": [ - "64d0b40fbe2eed70e254e2d4" - ] - }, - "PlayerTaxi": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "PlayerTaxi", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrBotCover": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrBotCover", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "TransitItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "TransitItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + "UniqueItems": [ + "64d0b40fbe2eed70e254e2d4" + ] + }, + "PlayerTaxi": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "PlayerTaxi", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrBotCover": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrBotCover", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "TransitItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "TransitItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + } } - } - }, - "BTRServerSettings": { - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.77, - "BodySwingIntensity": 0.506, - "ServerMapBTRSettings": { - "Develop": { - "MapID": "develop", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "TarkovStreets": { - "MapID": "TarkovStreets", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "Woods": { - "MapID": "Woods", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 180.0, - "y": 360.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 + "BTRServerSettings": { + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.77, + "BodySwingIntensity": 0.506, + "ServerMapBTRSettings": { + "Develop": { + "MapID": "develop", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "TarkovStreets": { + "MapID": "TarkovStreets", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "Woods": { + "MapID": "Woods", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 180.0, + "y": 360.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + } } } - } - }, - "profile": { - "insuredItems": [] - }, - "locationLoot": { - "Enabled": true, - "EnableCoop": true, - "ForceOnlineRaidInPVE": false, - "Locked": false, - "Insurance": true, - "SafeLocation": false, - "Name": "Lighthouse", - "Description": "The lighthouse at Cape Dalniy used to be an important strategic point of the city. At the outbreak of the conflict, USEC used it as a landing zone, thus attracting the attention of BEAR troops that aimed to reduce the hostile PMC presence to zero. ", - "Scene": { - "path": "maps\/lighthouse_preset.bundle", - "rcid": "lighthouse.scenespreset.asset" - }, - "Area": 0.0, - "RequiredPlayerLevelMin": 0, - "RequiredPlayerLevelMax": 100, - "PmcMaxPlayersInGroup": 5, - "ScavMaxPlayersInGroup": 4, - "MinPlayers": 10, - "MaxPlayers": 12, - "MaxCoopGroup": 12, - "exit_count": 1, - "exit_access_time": 45, - "exit_time": 2, - "Preview": { - "path": "", - "rcid": "" - }, - "IconX": 120, - "IconY": 450, - "filter_ex": [], - "waves": [ - { - "number": 1, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "Zone_Village", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 1, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "Zone_DestroyedHouse", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 2, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 1, - "SpawnPoints": "Zone_SniperPeak", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "marksman", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 3, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "Zone_Containers", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 4, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "Zone_Rocks", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 5, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "Zone_Chalet", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 6, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "Zone_Bridge", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 7, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "Zone_OldHouse", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 8, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "Zone_LongRoad", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 9, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "Zone_DestroyedHouse", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 10, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "Zone_Village", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 11, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "Zone_Containers", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - }, - { - "number": 12, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "Zone_OldHouse", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "SpawnMode": [ - "pve" - ] - } - ], - "limits": [], - "AveragePlayTime": 30, - "AveragePlayerLevel": 35, - "EscapeTimeLimit": 40, - "EscapeTimeLimitPVE": 40, - "EscapeTimeLimitCoop": 30, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 30, - "MaxDistToFreePoint": 200, - "MinDistToFreePoint": 70, - "MaxBotPerZone": 8, - "OpenZones": "Zone_Containers,Zone_Rocks,Zone_Chalet,Zone_Village,Zone_Bridge,Zone_OldHouse,Zone_LongRoad,Zone_DestroyedHouse,Zone_SniperPeak,Zone_Island", - "OcculsionCullingEnabled": false, - "GlobalLootChanceModifier": 0.12, - "GlobalLootChanceModifierPvE": 0.26, - "OldSpawn": true, - "OfflineOldSpawn": true, - "NewSpawn": true, - "OfflineNewSpawn": true, - "BotMax": 29, - "BotMaxPvE": 29, - "BotStart": 20, - "BotStartPlayer": 0, - "BotStop": 1900, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 260, - "BotSpawnTimeOnMax": 320, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOffMax": 30, - "BotMaxPlayer": 0, - "BotEasy": 10, - "BotNormal": 50, - "BotHard": 40, - "BotImpossible": 0, - "BotAssault": 100, - "BotMarksman": 0, - "DisabledScavExits": "", - "MinPlayerLvlAccessKeys": 0, - "AccessKeys": [], - "UnixDateTime": 1634148599, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "sav_summon_seconds": 60, - "matching_min_seconds": 60, - "GenerateLocalLootCache": true, - "PlayersRequestCount": -1, - "NonWaveGroupScenario": { - "MinToBeGroup": 2, - "MaxToBeGroup": 3, - "Chance": 50.0, - "Enabled": true }, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 15, - "GlobalContainerChanceModifier": 1.0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 0.6, - "Scattering": 0.6, - "GainSight": 1.3, - "MarksmanAccuratyCoef": 1.0, - "VisibleDistance": 1.3, - "DistToPersueAxemanCoef": 0.7, - "DistToSleep": 350.0, - "DistToActivate": 330.0, - "KhorovodChance": 0, - "MinExfiltrationTime": 1200.0, - "MaxExfiltrationTime": 1800.0, - "DistToActivatePvE": 330.0, - "DistToSleepPvE": 350.0, - "AdditionalHostilitySettings": [ - { - "BotRole": "pmcBEAR", - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 90 - }, - { - "BotRole": "pmcUSEC", - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 75 - } - ] + "profile": { + "insuredItems": [] }, - "exits": [ - { - "Name": "EXFIL_Train", - "EntryPoints": "Tunnel,North", - "Chance": 100.0, - "MinTime": 1300, - "MaxTime": 1420, - "PlayersCount": 0, - "ExfiltrationTime": 5.0, - "PassageRequirement": "Train", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "0", - "RequirementTip": "TIP IS HARDCODED", - "Count": 300, - "EventAvailable": false, - "MinTimePVE": 1300, - "MaxTimePVE": 1420, - "ChancePVE": 100.0, - "CountPVE": 300, - "ExfiltrationTimePVE": 5.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Alpinist_light", - "EntryPoints": "Tunnel,North", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "Reference", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "Alpinist", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "tunnel_shared", - "EntryPoints": "Tunnel,North", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "ScavCooperation", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "EXFIL_Cooperate", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Nothern_Checkpoint", - "EntryPoints": "Tunnel", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Coastal_South_Road", - "EntryPoints": "Tunnel,North", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Shorl_free", - "EntryPoints": "Tunnel,North", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": " V-Ex_light", - "EntryPoints": "Tunnel,North", - "Chance": 50.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 60.0, - "PassageRequirement": "TransferItem", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "5449016a4bdc2d6f028b456f", - "RequirementTip": "EXFIL_Item", - "Count": 5000, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 50.0, - "CountPVE": 5000, - "ExfiltrationTimePVE": 60.0, - "PlayersCountPVE": 0 - } - ], - "DisabledForScav": false, - "SpawnPointParams": [ - { - "Id": "000b6c76-206e-4c26-932b-bda107773b32", - "Position": { - "x": -38.27002, - "y": 5.640217, - "z": -299.52 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "BotZoneName": "Zone_Bridge", - "CorePointId": 4 - }, - { - "Id": "0156db2d-5136-4bff-a562-9fb4fb952999", - "Position": { - "x": -131.030029, - "y": 10.5248337, - "z": -807.85 - }, - "Rotation": 71.051445, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "Zone_Containers", - "CorePointId": 11 - }, - { - "Id": "02d3353c-9df3-4ac1-8140-f0d700a95de3", - "Position": { - "x": -130.450012, - "y": 11.2891312, - "z": -205.959991 - }, - "Rotation": 244.211288, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + "locationLoot": { + "Enabled": true, + "EnableCoop": true, + "ForceOnlineRaidInPVE": false, + "Locked": false, + "Insurance": true, + "SafeLocation": false, + "Name": "Lighthouse", + "Description": "The lighthouse at Cape Dalniy used to be an important strategic point of the city. At the outbreak of the conflict, USEC used it as a landing zone, thus attracting the attention of BEAR troops that aimed to reduce the hostile PMC presence to zero. ", + "Scene": { + "path": "maps\/lighthouse_preset.bundle", + "rcid": "lighthouse.scenespreset.asset" + }, + "Area": 0.0, + "RequiredPlayerLevelMin": 0, + "RequiredPlayerLevelMax": 100, + "PmcMaxPlayersInGroup": 5, + "ScavMaxPlayersInGroup": 4, + "MinPlayers": 10, + "MaxPlayers": 12, + "MaxCoopGroup": 12, + "exit_count": 1, + "exit_access_time": 45, + "exit_time": 2, + "Preview": { + "path": "", + "rcid": "" + }, + "IconX": 120, + "IconY": 450, + "filter_ex": [], + "waves": [ + { + "number": 1, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "Zone_Village", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "035e94f9-c4b3-4e8a-a1a9-7e1b06b2fb75", - "Position": { - "x": 113.112579, - "y": 4.99489975, - "z": 104.740662 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 1, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "Zone_DestroyedHouse", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "06b05fe3-3a1e-4634-9157-52e02edfb3cc", - "Position": { - "x": -94.92001, - "y": 4.93265152, - "z": -750.14 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "number": 2, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 1, + "SpawnPoints": "Zone_SniperPeak", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "marksman", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "Zone_TreatmentContainers", - "CorePointId": 15 - }, - { - "Id": "071f0fa9-b3dc-44c2-b0ec-1ce2b3c354af", - "Position": { - "x": -152.920013, - "y": 37.55528, - "z": 138.09 - }, - "Rotation": 128.073547, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "number": 3, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "Zone_Containers", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "089bb581-e642-43e5-88e9-22ca3accd2ee", - "Position": { - "x": -197.74, - "y": 5.882332, - "z": -261.949982 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "number": 4, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "Zone_Rocks", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "0a105306-31c1-4408-b1df-86dd3890693c", - "Position": { - "x": -199.700012, - "y": 4.910652, - "z": -665.11 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "number": 5, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "Zone_Chalet", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "Zone_TreatmentRocks", - "CorePointId": 13 - }, - { - "Id": "0c2117e8-6737-4400-9b2f-9215654d779a", - "Position": { - "x": -128.16, - "y": 39.89565, - "z": 95.26999 - }, - "Rotation": 23.3241863, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "number": 6, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "Zone_Bridge", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "0c4dfb6a-2745-4c43-b3da-3a049334b318", - "Position": { - "x": -59.11502, - "y": 5.86565, - "z": -290.691 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "number": 7, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "Zone_OldHouse", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "Zone_Bridge", - "CorePointId": 4 - }, - { - "Id": "10b98bcc-fa01-4045-9de1-31a89b9d2c24", - "Position": { - "x": 26.39, - "y": 6.01, - "z": -81.62 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 8, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "Zone_LongRoad", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", - "Position": { - "x": -7.76003075, - "y": 10.89, - "z": -802.78 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "number": 9, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "Zone_DestroyedHouse", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "11ce34bc-53bb-4a1b-83d5-140043008d80", - "Position": { - "x": 31.67, - "y": 6.66, - "z": -82.54 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 10, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "Zone_Village", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "124b1a0f-28da-4de3-b2f6-bfd60da6e44a", - "Position": { - "x": 22.8, - "y": 6.01, - "z": -78.84 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 11, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "Zone_Containers", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "189bf4a7-9b7c-4038-b6c8-6f319a0e124f", - "Position": { - "x": 371.841, - "y": 15.1656494, - "z": 571.147 - }, - "Rotation": 115.016975, - "Sides": [ - "Savage" - ], - "Categories": [ - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + { + "number": 12, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "Zone_OldHouse", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "SpawnMode": [ + "pve" + ] + } + ], + "limits": [], + "AveragePlayTime": 30, + "AveragePlayerLevel": 35, + "EscapeTimeLimit": 40, + "EscapeTimeLimitPVE": 40, + "EscapeTimeLimitCoop": 30, + "Rules": "Normal", + "IsSecret": false, + "doors": [], + "tmp_location_field_remove_me": 0, + "MinDistToExitPoint": 30, + "MaxDistToFreePoint": 200, + "MinDistToFreePoint": 70, + "MaxBotPerZone": 8, + "OpenZones": "Zone_Containers,Zone_Rocks,Zone_Chalet,Zone_Village,Zone_Bridge,Zone_OldHouse,Zone_LongRoad,Zone_DestroyedHouse,Zone_SniperPeak,Zone_Island", + "OcculsionCullingEnabled": false, + "GlobalLootChanceModifier": 0.12, + "GlobalLootChanceModifierPvE": 0.26, + "OldSpawn": true, + "OfflineOldSpawn": true, + "NewSpawn": true, + "OfflineNewSpawn": true, + "BotMax": 29, + "BotMaxPvE": 29, + "BotStart": 20, + "BotStartPlayer": 0, + "BotStop": 1900, + "BotMaxTimePlayer": 0, + "BotSpawnTimeOnMin": 260, + "BotSpawnTimeOnMax": 320, + "BotSpawnTimeOffMin": 20, + "BotSpawnTimeOffMax": 30, + "BotMaxPlayer": 0, + "BotEasy": 10, + "BotNormal": 50, + "BotHard": 40, + "BotImpossible": 0, + "BotAssault": 100, + "BotMarksman": 0, + "DisabledScavExits": "", + "MinPlayerLvlAccessKeys": 0, + "AccessKeys": [], + "UnixDateTime": 1634148599, + "users_gather_seconds": 0, + "users_spawn_seconds_n": 120, + "users_spawn_seconds_n2": 200, + "users_summon_seconds": 0, + "sav_summon_seconds": 60, + "matching_min_seconds": 60, + "GenerateLocalLootCache": true, + "PlayersRequestCount": -1, + "NonWaveGroupScenario": { + "MinToBeGroup": 2, + "MaxToBeGroup": 3, + "Chance": 50.0, + "Enabled": true + }, + "BotSpawnCountStep": 3, + "BotSpawnPeriodCheck": 15, + "GlobalContainerChanceModifier": 1.0, + "MinMaxBots": [], + "BotLocationModifier": { + "AccuracySpeed": 0.6, + "Scattering": 0.6, + "GainSight": 1.3, + "MarksmanAccuratyCoef": 1.0, + "VisibleDistance": 1.3, + "DistToPersueAxemanCoef": 0.7, + "DistToSleep": 350.0, + "DistToActivate": 330.0, + "KhorovodChance": 0, + "MinExfiltrationTime": 1200.0, + "MaxExfiltrationTime": 1800.0, + "DistToActivatePvE": 330.0, + "DistToSleepPvE": 350.0, + "AdditionalHostilitySettings": [ + { + "BotRole": "pmcBEAR", + "AlwaysEnemies": [ + "pmcBot", + "exUsec", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar", + "bossKnight" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcUSEC" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 75, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 90 + }, + { + "BotRole": "pmcUSEC", + "AlwaysEnemies": [ + "pmcBot", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcBEAR" + }, + { + "EnemyChance": 15, + "Role": "exUsec" + }, + { + "EnemyChance": 15, + "Role": "bossKnight" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 90, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 75 } - }, - "BotZoneName": "Zone_Island", - "CorePointId": 18 + ] }, - { - "Id": "1a79e2ec-b166-437d-a2e2-0d175a882f0d", - "Position": { - "x": 105.9234, - "y": 0.8048973, - "z": 427.2954 - }, - "Rotation": 260.715424, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + "exits": [ + { + "Name": "EXFIL_Train", + "EntryPoints": "Tunnel,North", + "Chance": 100.0, + "MinTime": 1300, + "MaxTime": 1420, + "PlayersCount": 0, + "ExfiltrationTime": 5.0, + "PassageRequirement": "Train", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "0", + "RequirementTip": "TIP IS HARDCODED", + "Count": 300, + "EventAvailable": false, + "MinTimePVE": 1300, + "MaxTimePVE": 1420, + "ChancePVE": 100.0, + "CountPVE": 300, + "ExfiltrationTimePVE": 5.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", - "Position": { - "x": -7.620077, - "y": 10.89, - "z": -804.54 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Name": "Alpinist_light", + "EntryPoints": "Tunnel,North", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "Reference", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "Alpinist", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", - "Position": { - "x": 6.73, - "y": 6.16, - "z": -18.99 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Name": "tunnel_shared", + "EntryPoints": "Tunnel,North", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "ScavCooperation", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "EXFIL_Cooperate", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1cd9b175-2223-449f-a63b-064a5a860057", - "Position": { - "x": 29.3799744, - "y": 14.0556488, - "z": -621.069946 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Name": "Nothern_Checkpoint", + "EntryPoints": "Tunnel", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "Zone_RoofBeach", - "CorePointId": 8 - }, - { - "Id": "1d327156-2c17-446f-9f62-8400f1178247", - "Position": { - "x": -106.490021, - "y": 4.94265, - "z": -754.910034 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Name": "Coastal_South_Road", + "EntryPoints": "Tunnel,North", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "Zone_TreatmentContainers", - "CorePointId": 15 - }, - { - "Id": "1f0216f7-aec5-4c69-b217-ecb42c32e1a1", - "Position": { - "x": -444.616425, - "y": 28.8648987, - "z": -372.493347 - }, - "Rotation": 294.262756, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Name": "Shorl_free", + "EntryPoints": "Tunnel,North", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "21990f73-d577-4f31-a2e7-7a6b905011e2", - "Position": { - "x": 54.1099854, - "y": 4.95064926, - "z": -606.329956 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Name": " V-Ex_light", + "EntryPoints": "Tunnel,North", + "Chance": 50.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 60.0, + "PassageRequirement": "TransferItem", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "5449016a4bdc2d6f028b456f", + "RequirementTip": "EXFIL_Item", + "Count": 5000, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 50.0, + "CountPVE": 5000, + "ExfiltrationTimePVE": 60.0, + "PlayersCountPVE": 0 + } + ], + "DisabledForScav": false, + "SpawnPointParams": [ + { + "Id": "000b6c76-206e-4c26-932b-bda107773b32", + "Position": { + "x": -38.27002, + "y": 5.640217, + "z": -299.52 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Bridge", + "CorePointId": 4 }, - "BotZoneName": "Zone_TreatmentBeach", - "CorePointId": 1 - }, - { - "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", - "Position": { - "x": -13.07, - "y": 10.89, - "z": -801.9 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "0156db2d-5136-4bff-a562-9fb4fb952999", + "Position": { + "x": -131.030029, + "y": 10.5248337, + "z": -807.85 + }, + "Rotation": 71.051445, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "Zone_Containers", + "CorePointId": 11 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "23c3b739-987a-42d4-a639-0a55f93bd563", - "Position": { - "x": 57.3399963, - "y": 12.8756523, - "z": 193.669983 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "02d3353c-9df3-4ac1-8140-f0d700a95de3", + "Position": { + "x": -130.450012, + "y": 11.2891312, + "z": -205.959991 + }, + "Rotation": 244.211288, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 19 - }, - { - "Id": "263cbb1f-5046-49be-8845-652a12561acd", - "Position": { - "x": 44.8999939, - "y": 2.95565033, - "z": -211.6 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "035e94f9-c4b3-4e8a-a1a9-7e1b06b2fb75", + "Position": { + "x": 113.112579, + "y": 4.99489975, + "z": 104.740662 + }, + "Rotation": 293.2345, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 4 - }, - { - "Id": "267ea0a0-c531-4d2a-8861-5db864fe8aff", - "Position": { - "x": -134.9774, - "y": 6.02489853, - "z": 482.1007 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "06b05fe3-3a1e-4634-9157-52e02edfb3cc", + "Position": { + "x": -94.92001, + "y": 4.93265152, + "z": -750.14 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentContainers", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "27643426-5933-4ba9-a5dd-04b40c8e33e2", - "Position": { - "x": -59.7774048, - "y": 5.990898, - "z": 332.250732 - }, - "Rotation": 119.557549, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "071f0fa9-b3dc-44c2-b0ec-1ce2b3c354af", + "Position": { + "x": -152.920013, + "y": 37.55528, + "z": 138.09 + }, + "Rotation": 128.073547, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "27e85a39-0768-4a6f-9d46-c7ec39a5cba1", - "Position": { - "x": 332.006958, - "y": 2.03665161, - "z": 518.079 - }, - "Rotation": 190.619385, - "Sides": [ - "Savage" - ], - "Categories": [ - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "089bb581-e642-43e5-88e9-22ca3accd2ee", + "Position": { + "x": -197.74, + "y": 5.882332, + "z": -261.949982 + }, + "Rotation": 348.435364, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "BotZoneName": "Zone_Island", - "CorePointId": 18 - }, - { - "Id": "283916a7-9bed-4e06-91a5-0490819397a9", - "Position": { - "x": -221.127411, - "y": 13.2248974, - "z": -186.749329 - }, - "Rotation": 281.698669, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "0a105306-31c1-4408-b1df-86dd3890693c", + "Position": { + "x": -199.700012, + "y": 4.910652, + "z": -665.11 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_TreatmentRocks", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2854bc78-ceaa-401f-bf71-e41de72e0052", - "Position": { - "x": -60.9864044, - "y": 5.990898, - "z": 328.409668 - }, - "Rotation": 119.557549, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "0c2117e8-6737-4400-9b2f-9215654d779a", + "Position": { + "x": -128.16, + "y": 39.89565, + "z": 95.26999 + }, + "Rotation": 23.3241863, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "286920a4-6f50-4335-a9a2-e9dae4ffc337", - "Position": { - "x": 30.5999756, - "y": 4.90765, - "z": -631.13 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "0c4dfb6a-2745-4c43-b3da-3a049334b318", + "Position": { + "x": -59.11502, + "y": 5.86565, + "z": -290.691 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Bridge", + "CorePointId": 4 }, - "BotZoneName": "Zone_TreatmentBeach", - "CorePointId": 1 - }, - { - "Id": "291165b2-16c2-4c7a-8baf-1a7e9f6f83bb", - "Position": { - "x": 15.2599792, - "y": 4.728651, - "z": -447.690033 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "10b98bcc-fa01-4045-9de1-31a89b9d2c24", + "Position": { + "x": 26.39, + "y": 6.01, + "z": -81.62 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Blockpost", - "CorePointId": 14 - }, - { - "Id": "2a961493-b814-4e69-be25-f9fe23837fe5", - "Position": { - "x": -120.820007, - "y": 11.11565, - "z": -228.91 - }, - "Rotation": 244.211288, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", + "Position": { + "x": -7.76003075, + "y": 10.89, + "z": -802.78 + }, + "Rotation": 358.2052, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "2b5868a8-5bbd-47c9-9409-7235d46ad58a", - "Position": { - "x": -102.210022, - "y": 10.6186514, - "z": -844.2999 - }, - "Rotation": 4.104724, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "11ce34bc-53bb-4a1b-83d5-140043008d80", + "Position": { + "x": 31.67, + "y": 6.66, + "z": -82.54 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Containers", - "CorePointId": 1 - }, - { - "Id": "2d1563cd-b15e-4ee0-a528-e1822285b0c5", - "Position": { - "x": 39.1399841, - "y": 11.02565, - "z": -11.1400146 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "124b1a0f-28da-4de3-b2f6-bfd60da6e44a", + "Position": { + "x": 22.8, + "y": 6.01, + "z": -78.84 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 6 - }, - { - "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", - "Position": { - "x": 6.91000462, - "y": 6.16, - "z": -24.889986 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "189bf4a7-9b7c-4038-b6c8-6f319a0e124f", + "Position": { + "x": 371.841, + "y": 15.1656494, + "z": 571.147 + }, + "Rotation": 115.016975, + "Sides": [ + "Savage" + ], + "Categories": [ + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "Zone_Island", + "CorePointId": 18 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2ea50142-be25-479c-9a0c-b5b959114c16", - "Position": { - "x": -178.26001, - "y": 12.25, - "z": -193.290009 - }, - "Rotation": 194.970718, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "1a79e2ec-b166-437d-a2e2-0d175a882f0d", + "Position": { + "x": 105.9234, + "y": 0.8048973, + "z": 427.2954 + }, + "Rotation": 260.715424, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "2ef81c28-b7d9-4333-ad88-4187bf83be56", - "Position": { - "x": 37.48999, - "y": 4.94265, - "z": -641.36 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", + "Position": { + "x": -7.620077, + "y": 10.89, + "z": -804.54 + }, + "Rotation": 358.2052, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_TreatmentBeach", - "CorePointId": 1 - }, - { - "Id": "2fdbfe41-bd5c-446b-80a8-8681f926ab94", - "Position": { - "x": 25.36, - "y": 6.01, - "z": -87.93 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", + "Position": { + "x": 6.73, + "y": 6.16, + "z": -18.99 + }, + "Rotation": 179.094986, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2ff52f01-f8ad-42c2-977b-e3b136c80057", - "Position": { - "x": -8.480011, - "y": 0.763252258, - "z": 81.53 - }, - "Rotation": 113.936485, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "1cd9b175-2223-449f-a63b-064a5a860057", + "Position": { + "x": 29.3799744, + "y": 14.0556488, + "z": -621.069946 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_RoofBeach", + "CorePointId": 8 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 6 - }, - { - "Id": "3028626c-6718-4f74-b43b-60cfe2081f41", - "Position": { - "x": -135.877411, - "y": 6.02489853, - "z": 483.9607 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "1d327156-2c17-446f-9f62-8400f1178247", + "Position": { + "x": -106.490021, + "y": 4.94265, + "z": -754.910034 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentContainers", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3134f27a-31ed-41ee-866d-0f1e35f0ff7d", - "Position": { - "x": 46.75, - "y": 7.32564926, - "z": 324.84 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "1f0216f7-aec5-4c69-b217-ecb42c32e1a1", + "Position": { + "x": -444.616425, + "y": 28.8648987, + "z": -372.493347 + }, + "Rotation": 294.262756, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 21 - }, - { - "Id": "31bb4ef3-4336-4360-a43a-1195365c1faf", - "Position": { - "x": 111.742584, - "y": 0.3838997, - "z": -161.499329 - }, - "Rotation": 212.519348, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "21990f73-d577-4f31-a2e7-7a6b905011e2", + "Position": { + "x": 54.1099854, + "y": 4.95064926, + "z": -606.329956 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentBeach", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "342a7c9a-3034-4c0d-9520-035ecfafccb8", - "Position": { - "x": -221.157425, - "y": 13.2248974, - "z": -183.899353 - }, - "Rotation": 328.91275, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", + "Position": { + "x": -13.07, + "y": 10.89, + "z": -801.9 + }, + "Rotation": 358.2052, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "349103c5-bba4-4d48-97d4-ae8d5de12a24", - "Position": { - "x": -15.1174011, - "y": 1.05489731, - "z": -137.2793 - }, - "Rotation": 165.596863, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "23c3b739-987a-42d4-a639-0a55f93bd563", + "Position": { + "x": 57.3399963, + "y": 12.8756523, + "z": 193.669983 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 19 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "36f8e82f-3b95-4386-ace5-53d1b32d9beb", - "Position": { - "x": -122.320007, - "y": 6.45565033, - "z": -270.449982 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "263cbb1f-5046-49be-8845-652a12561acd", + "Position": { + "x": 44.8999939, + "y": 2.95565033, + "z": -211.6 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 4 }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "374e67dc-29cb-4968-93ab-ce1a45843e4b", - "Position": { - "x": 12.5099792, - "y": 6.105652, - "z": -238.940033 - }, - "Rotation": 297.348724, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "267ea0a0-c531-4d2a-8861-5db864fe8aff", + "Position": { + "x": -134.9774, + "y": 6.02489853, + "z": 482.1007 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Bridge", - "CorePointId": 4 - }, - { - "Id": "37f1ab84-276c-494f-9b03-690b75720f7f", - "Position": { - "x": -108.170013, - "y": 6.57564926, - "z": -271.120026 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "27643426-5933-4ba9-a5dd-04b40c8e33e2", + "Position": { + "x": -59.7774048, + "y": 5.990898, + "z": 332.250732 + }, + "Rotation": 119.557549, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Village", - "CorePointId": 4 - }, - { - "Id": "38532084-60d9-4b4e-8e0a-bde16882f98b", - "Position": { - "x": -133.150024, - "y": 11.353878, - "z": -203.670013 - }, - "Rotation": 244.211288, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "27e85a39-0768-4a6f-9d46-c7ec39a5cba1", + "Position": { + "x": 332.006958, + "y": 2.03665161, + "z": 518.079 + }, + "Rotation": 190.619385, + "Sides": [ + "Savage" + ], + "Categories": [ + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "Zone_Island", + "CorePointId": 18 }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "38c4ebc9-fbe8-4e71-bc7b-1f234b942387", - "Position": { - "x": -113.915009, - "y": 36.7456474, - "z": 102.474991 - }, - "Rotation": 275.2177, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "283916a7-9bed-4e06-91a5-0490819397a9", + "Position": { + "x": -221.127411, + "y": 13.2248974, + "z": -186.749329 + }, + "Rotation": 281.698669, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "3a76b2a9-1dbb-4f5f-87e3-277d1980bcb8", - "Position": { - "x": 103.953522, - "y": 0.480896, - "z": 426.513062 - }, - "Rotation": 260.715424, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "2854bc78-ceaa-401f-bf71-e41de72e0052", + "Position": { + "x": -60.9864044, + "y": 5.990898, + "z": 328.409668 + }, + "Rotation": 119.557549, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3d8b0ddc-b842-4f3d-8524-bb3a99fc8b7e", - "Position": { - "x": 75.3526, - "y": 8.804897, - "z": 226.640686 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "286920a4-6f50-4335-a9a2-e9dae4ffc337", + "Position": { + "x": 30.5999756, + "y": 4.90765, + "z": -631.13 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_TreatmentBeach", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "41310551-d363-4643-9bad-390a5ccb3562", - "Position": { - "x": -299.567017, - "y": 0.110027313, - "z": -323.816 - }, - "Rotation": 85.4818039, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "291165b2-16c2-4c7a-8baf-1a7e9f6f83bb", + "Position": { + "x": 15.2599792, + "y": 4.728651, + "z": -447.690033 + }, + "Rotation": 26.8442173, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "Zone_Blockpost", + "CorePointId": 14 }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "41cf4fd7-e698-4aed-8966-180df81dbb59", - "Position": { - "x": 30.5599976, - "y": 13.95565, - "z": -591.73 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "2a961493-b814-4e69-be25-f9fe23837fe5", + "Position": { + "x": -120.820007, + "y": 11.11565, + "z": -228.91 + }, + "Rotation": 244.211288, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "BotZoneName": "Zone_RoofBeach", - "CorePointId": 8 - }, - { - "Id": "435828ad-da49-4163-b005-169181c66e4f", - "Position": { - "x": 29.8399963, - "y": 13.95565, - "z": -623.39 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "2b5868a8-5bbd-47c9-9409-7235d46ad58a", + "Position": { + "x": -102.210022, + "y": 10.6186514, + "z": -844.2999 + }, + "Rotation": 4.104724, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "Zone_Containers", + "CorePointId": 1 }, - "BotZoneName": "Zone_RoofBeach", - "CorePointId": 8 - }, - { - "Id": "44370e95-5bec-4943-8de1-e53beaa8e758", - "Position": { - "x": 28.3, - "y": 6.01, - "z": -68.41 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "2d1563cd-b15e-4ee0-a528-e1822285b0c5", + "Position": { + "x": 39.1399841, + "y": 11.02565, + "z": -11.1400146 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4485b593-d7db-4329-82e2-655af293dc13", - "Position": { - "x": -172.51001, - "y": 5.02565, - "z": -655.47 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", + "Position": { + "x": 6.91000462, + "y": 6.16, + "z": -24.889986 + }, + "Rotation": 179.094986, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_TreatmentRocks", - "CorePointId": 13 - }, - { - "Id": "44d7c65a-e893-4cd0-8e3c-724211b28c31", - "Position": { - "x": -12.6200256, - "y": 2.82564926, - "z": 108.479996 - }, - "Rotation": 113.936485, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "2ea50142-be25-479c-9a0c-b5b959114c16", + "Position": { + "x": -178.26001, + "y": 12.25, + "z": -193.290009 + }, + "Rotation": 194.970718, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 6 - }, - { - "Id": "460b507b-ed63-4a4a-8502-eecd321a1d3d", - "Position": { - "x": -140.080017, - "y": 10.5248337, - "z": -870.77 - }, - "Rotation": 53.9718971, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "2ef81c28-b7d9-4333-ad88-4187bf83be56", + "Position": { + "x": 37.48999, + "y": 4.94265, + "z": -641.36 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_TreatmentBeach", + "CorePointId": 1 }, - "BotZoneName": "Zone_Containers", - "CorePointId": 11 - }, - { - "Id": "46749164-2db8-4711-83e7-ff8d85b5b03e", - "Position": { - "x": -444.4114, - "y": 28.9749, - "z": -374.474365 - }, - "Rotation": 294.262756, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "2fdbfe41-bd5c-446b-80a8-8681f926ab94", + "Position": { + "x": 25.36, + "y": 6.01, + "z": -87.93 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "46be8874-7a0e-431e-934d-918e75423c94", - "Position": { - "x": -124.001007, - "y": 11.7786522, - "z": -218.06 - }, - "Rotation": 149.101685, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "2ff52f01-f8ad-42c2-977b-e3b136c80057", + "Position": { + "x": -8.480011, + "y": 0.763252258, + "z": 81.53 + }, + "Rotation": 113.936485, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 6 }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "46d9652b-5416-42be-bd85-92a6064a3444", - "Position": { - "x": -168.237411, - "y": 30.4148979, - "z": -65.0293 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "3028626c-6718-4f74-b43b-60cfe2081f41", + "Position": { + "x": -135.877411, + "y": 6.02489853, + "z": 483.9607 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "49cf148a-3f73-449a-89bb-8920f59a9000", - "Position": { - "x": 102.215881, - "y": 0.3598938, - "z": 425.473877 - }, - "Rotation": 260.715424, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "3134f27a-31ed-41ee-866d-0f1e35f0ff7d", + "Position": { + "x": 46.75, + "y": 7.32564926, + "z": 324.84 + }, + "Rotation": 116.208389, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 21 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4c2205a2-be1a-4abd-addf-7ea9c77a0c0a", - "Position": { - "x": -139.07, - "y": 10.5248337, - "z": -856.98 - }, - "Rotation": 53.9718971, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "31bb4ef3-4336-4360-a43a-1195365c1faf", + "Position": { + "x": 111.742584, + "y": 0.3838997, + "z": -161.499329 + }, + "Rotation": 212.519348, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Containers", - "CorePointId": 11 - }, - { - "Id": "4dca4f98-d5b5-4f2f-9976-4e19f4b3479b", - "Position": { - "x": 22.44, - "y": 6.01, - "z": -75.53 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "342a7c9a-3034-4c0d-9520-035ecfafccb8", + "Position": { + "x": -221.157425, + "y": 13.2248974, + "z": -183.899353 + }, + "Rotation": 328.91275, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4e876370-2396-4517-81c1-c535811d18e0", - "Position": { - "x": 6.819993, - "y": 6.16, - "z": -20.65999 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "349103c5-bba4-4d48-97d4-ae8d5de12a24", + "Position": { + "x": -15.1174011, + "y": 1.05489731, + "z": -137.2793 + }, + "Rotation": 165.596863, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4f8bd9ad-447d-4da5-b2d5-fda9cc05d026", - "Position": { - "x": -180.49, - "y": 5.02565, - "z": -633.040039 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "36f8e82f-3b95-4386-ace5-53d1b32d9beb", + "Position": { + "x": -122.320007, + "y": 6.45565033, + "z": -270.449982 + }, + "Rotation": 348.435364, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "BotZoneName": "Zone_TreatmentRocks", - "CorePointId": 12 - }, - { - "Id": "502bb829-ab80-4051-9218-fcac2bc4e08d", - "Position": { - "x": -385.1474, - "y": 24.9248981, - "z": -509.9793 - }, - "Rotation": 141.822754, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "374e67dc-29cb-4968-93ab-ce1a45843e4b", + "Position": { + "x": 12.5099792, + "y": 6.105652, + "z": -238.940033 + }, + "Rotation": 297.348724, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Bridge", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "51349452-d639-43bc-9eef-b9bb80bd6af1", - "Position": { - "x": 68.32999, - "y": 5.76124954, - "z": 373.38 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "37f1ab84-276c-494f-9b03-690b75720f7f", + "Position": { + "x": -108.170013, + "y": 6.57564926, + "z": -271.120026 + }, + "Rotation": 348.435364, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 4 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 21 - }, - { - "Id": "5140a6ba-a2cf-466e-b7fb-0c122647eab4", - "Position": { - "x": -301.271, - "y": 0.09542465, - "z": -319.793976 - }, - "Rotation": 85.4818039, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "38532084-60d9-4b4e-8e0a-bde16882f98b", + "Position": { + "x": -133.150024, + "y": 11.353878, + "z": -203.670013 + }, + "Rotation": 244.211288, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "52521b3f-59a4-4323-8063-e42e116f7554", - "Position": { - "x": 76.9725952, - "y": 9.154898, - "z": 219.860657 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "38c4ebc9-fbe8-4e71-bc7b-1f234b942387", + "Position": { + "x": -113.915009, + "y": 36.7456474, + "z": 102.474991 + }, + "Rotation": 275.2177, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "52d32a54-836d-4b78-b2d7-6ec797c3bde8", - "Position": { - "x": 26.67, - "y": 6.01, - "z": -78.49 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "3a76b2a9-1dbb-4f5f-87e3-277d1980bcb8", + "Position": { + "x": 103.953522, + "y": 0.480896, + "z": 426.513062 + }, + "Rotation": 260.715424, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "57217803-b7b9-4cc7-83d2-bfe316750c2e", - "Position": { - "x": 40.6599731, - "y": 9.495651, - "z": 14.6900024 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "3d8b0ddc-b842-4f3d-8524-bb3a99fc8b7e", + "Position": { + "x": 75.3526, + "y": 8.804897, + "z": 226.640686 + }, + "Rotation": 293.2345, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 6 - }, - { - "Id": "58a77a58-141b-4239-87dc-c11016aae8c2", - "Position": { - "x": 9.919983, - "y": 6.11565, - "z": -243.28 - }, - "Rotation": 297.348724, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "41310551-d363-4643-9bad-390a5ccb3562", + "Position": { + "x": -299.567017, + "y": 0.110027313, + "z": -323.816 + }, + "Rotation": 85.4818039, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 5 }, - "BotZoneName": "Zone_Bridge", - "CorePointId": 4 - }, - { - "Id": "59a8c279-8c5d-4af2-86aa-98755cbc109c", - "Position": { - "x": -442.8274, - "y": 28.7448978, - "z": -375.699341 - }, - "Rotation": 294.262756, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "41cf4fd7-e698-4aed-8966-180df81dbb59", + "Position": { + "x": 30.5599976, + "y": 13.95565, + "z": -591.73 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_RoofBeach", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5c1c074b-9696-435a-81ad-e924202b98f2", - "Position": { - "x": -130.090027, - "y": 7.734501, - "z": -747.189941 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "435828ad-da49-4163-b005-169181c66e4f", + "Position": { + "x": 29.8399963, + "y": 13.95565, + "z": -623.39 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_RoofBeach", + "CorePointId": 8 }, - "BotZoneName": "Zone_TreatmentContainers", - "CorePointId": 11 - }, - { - "Id": "5c38a67f-0095-42d3-9ba6-d5726f071972", - "Position": { - "x": -101.01001, - "y": 0.0156517029, - "z": -537.61 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "44370e95-5bec-4943-8de1-e53beaa8e758", + "Position": { + "x": 28.3, + "y": 6.01, + "z": -68.41 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Hellicopter", - "CorePointId": 9 - }, - { - "Id": "5c814f61-bbe3-48ab-8063-b2a70eb3542c", - "Position": { - "x": 25.0499878, - "y": 6.88413239, - "z": 374.950348 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "4485b593-d7db-4329-82e2-655af293dc13", + "Position": { + "x": -172.51001, + "y": 5.02565, + "z": -655.47 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_TreatmentRocks", + "CorePointId": 13 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 20 - }, - { - "Id": "5e2936bd-1966-4e6a-b731-bce646ca2136", - "Position": { - "x": -198.790009, - "y": 5.189949, - "z": -697.670044 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "44d7c65a-e893-4cd0-8e3c-724211b28c31", + "Position": { + "x": -12.6200256, + "y": 2.82564926, + "z": 108.479996 + }, + "Rotation": 113.936485, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 6 }, - "BotZoneName": "Zone_TreatmentRocks", - "CorePointId": 13 - }, - { - "Id": "5ebc7b0c-ffa1-47a6-bf9a-23ce4dae6fcc", - "Position": { - "x": -26.1110229, - "y": 3.299652, - "z": -213.541016 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "460b507b-ed63-4a4a-8502-eecd321a1d3d", + "Position": { + "x": -140.080017, + "y": 10.5248337, + "z": -870.77 + }, + "Rotation": 53.9718971, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "Zone_Containers", + "CorePointId": 11 }, - "BotZoneName": "Zone_Village", - "CorePointId": 4 - }, - { - "Id": "61840dd5-4d19-4f8c-b386-feed2db3efce", - "Position": { - "x": -100.570007, - "y": 10.6186514, - "z": -844.319946 - }, - "Rotation": 4.104724, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "46749164-2db8-4711-83e7-ff8d85b5b03e", + "Position": { + "x": -444.4114, + "y": 28.9749, + "z": -374.474365 + }, + "Rotation": 294.262756, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Containers", - "CorePointId": 1 - }, - { - "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", - "Position": { - "x": -7.6000576, - "y": 10.72, - "z": -800.92 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "46be8874-7a0e-431e-934d-918e75423c94", + "Position": { + "x": -124.001007, + "y": 11.7786522, + "z": -218.06 + }, + "Rotation": 149.101685, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "61f9d52f-5ccb-48a7-a4a1-a852b049f7b8", - "Position": { - "x": -169.927414, - "y": 30.3048973, - "z": -65.95935 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "46d9652b-5416-42be-bd85-92a6064a3444", + "Position": { + "x": -168.237411, + "y": 30.4148979, + "z": -65.0293 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "64322540-a704-4d6c-9ba5-1d4ded2bf28a", - "Position": { - "x": 329.55, - "y": 1.75564957, - "z": 505.63 - }, - "Rotation": 115.016975, - "Sides": [ - "Savage" - ], - "Categories": [ - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "49cf148a-3f73-449a-89bb-8920f59a9000", + "Position": { + "x": 102.215881, + "y": 0.3598938, + "z": 425.473877 + }, + "Rotation": 260.715424, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Island", - "CorePointId": 18 - }, - { - "Id": "64fa43f4-e2e8-4f16-9251-2bf3094d337d", - "Position": { - "x": -137.6374, - "y": 6.02489853, - "z": 480.8806 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "4c2205a2-be1a-4abd-addf-7ea9c77a0c0a", + "Position": { + "x": -139.07, + "y": 10.5248337, + "z": -856.98 + }, + "Rotation": 53.9718971, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "Zone_Containers", + "CorePointId": 11 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "65ca29cd-d60a-458b-b588-6e898b8c060d", - "Position": { - "x": -61.99241, - "y": 5.990898, - "z": 325.273682 - }, - "Rotation": 119.557549, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "4dca4f98-d5b5-4f2f-9976-4e19f4b3479b", + "Position": { + "x": 22.44, + "y": 6.01, + "z": -75.53 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6643cdd3-37af-45fb-93f4-2c2f9b2ec580", - "Position": { - "x": -66.66, - "y": 4.92964935, - "z": -753.74 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "4e876370-2396-4517-81c1-c535811d18e0", + "Position": { + "x": 6.819993, + "y": 6.16, + "z": -20.65999 + }, + "Rotation": 179.094986, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_TreatmentContainers", - "CorePointId": 15 - }, - { - "Id": "6646be81-5f8c-4c2d-bb8f-cb148c0c6fae", - "Position": { - "x": 23.11, - "y": 6.01, - "z": -86.49 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "4f8bd9ad-447d-4da5-b2d5-fda9cc05d026", + "Position": { + "x": -180.49, + "y": 5.02565, + "z": -633.040039 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentRocks", + "CorePointId": 12 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "66d74b51-9203-42e6-bef5-9e452ba871dc", - "Position": { - "x": 35.19998, - "y": 7.20565033, - "z": 95.5 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "502bb829-ab80-4051-9218-fcac2bc4e08d", + "Position": { + "x": -385.1474, + "y": 24.9248981, + "z": -509.9793 + }, + "Rotation": 141.822754, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 6 - }, - { - "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", - "Position": { - "x": -5.76, - "y": 10.89, - "z": -801.87 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "51349452-d639-43bc-9eef-b9bb80bd6af1", + "Position": { + "x": 68.32999, + "y": 5.76124954, + "z": 373.38 + }, + "Rotation": 116.208389, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 21 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "68091dec-b042-4e80-9caf-b6a9e8a43877", - "Position": { - "x": -11.9374084, - "y": 0.644897461, - "z": -126.729309 - }, - "Rotation": 134.737534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "5140a6ba-a2cf-466e-b7fb-0c122647eab4", + "Position": { + "x": -301.271, + "y": 0.09542465, + "z": -319.793976 + }, + "Rotation": 85.4818039, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "68e599f9-806f-4082-ba71-574de6dd8f2c", - "Position": { - "x": -168.8574, - "y": 30.4148979, - "z": -67.9093 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "52521b3f-59a4-4323-8063-e42e116f7554", + "Position": { + "x": 76.9725952, + "y": 9.154898, + "z": 219.860657 + }, + "Rotation": 293.2345, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "69893240-0388-42f5-b313-231a2915c47b", - "Position": { - "x": 111.742584, - "y": 4.99489975, - "z": 103.180664 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "52d32a54-836d-4b78-b2d7-6ec797c3bde8", + "Position": { + "x": 26.67, + "y": 6.01, + "z": -78.49 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6b305477-7b1e-4ca1-9139-a4e3848e003c", - "Position": { - "x": -93.54001, - "y": 17.63565, - "z": -13.2000122 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } + { + "Id": "57217803-b7b9-4cc7-83d2-bfe316750c2e", + "Position": { + "x": 40.6599731, + "y": 9.495651, + "z": 14.6900024 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 6 }, - "BotZoneName": "Zone_Chalet", - "CorePointId": 26 - }, - { - "Id": "6b7c5283-2d13-46c8-ac57-73f99472cb39", - "Position": { - "x": -321.75, - "y": 1.06699753, - "z": -331.889984 - }, - "Rotation": 60.8000031, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "58a77a58-141b-4239-87dc-c11016aae8c2", + "Position": { + "x": 9.919983, + "y": 6.11565, + "z": -243.28 + }, + "Rotation": 297.348724, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Bridge", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", - "Position": { - "x": -1.5, - "y": 10.6, - "z": -801.74 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "59a8c279-8c5d-4af2-86aa-98755cbc109c", + "Position": { + "x": -442.8274, + "y": 28.7448978, + "z": -375.699341 + }, + "Rotation": 294.262756, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "71331f39-d65f-4b08-924e-366209cb46b6", - "Position": { - "x": -83.70001, - "y": -0.106666565, - "z": -541.36 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "5c1c074b-9696-435a-81ad-e924202b98f2", + "Position": { + "x": -130.090027, + "y": 7.734501, + "z": -747.189941 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentContainers", + "CorePointId": 11 }, - "BotZoneName": "Zone_Hellicopter", - "CorePointId": 9 - }, - { - "Id": "715dfa23-e817-41fd-805c-6b77c3b7dde4", - "Position": { - "x": 116.612579, - "y": 0.3838997, - "z": -163.829346 - }, - "Rotation": 274.115753, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "5c38a67f-0095-42d3-9ba6-d5726f071972", + "Position": { + "x": -101.01001, + "y": 0.0156517029, + "z": -537.61 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Hellicopter", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7214a6f6-1ad5-4a25-98d4-5fc92559d599", - "Position": { - "x": 25.42, - "y": 6.01, - "z": -89.94 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "5c814f61-bbe3-48ab-8063-b2a70eb3542c", + "Position": { + "x": 25.0499878, + "y": 6.88413239, + "z": 374.950348 + }, + "Rotation": 116.208389, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 20 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "723e2598-d770-4243-9d68-4b932a9f91de", - "Position": { - "x": -144.540009, - "y": 37.33565, - "z": 149.299988 - }, - "Rotation": 128.073547, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "5e2936bd-1966-4e6a-b731-bce646ca2136", + "Position": { + "x": -198.790009, + "y": 5.189949, + "z": -697.670044 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentRocks", + "CorePointId": 13 }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "73df6563-200e-4701-9753-91e438cfc1cc", - "Position": { - "x": 113.832581, - "y": 4.99489975, - "z": 101.8407 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "5ebc7b0c-ffa1-47a6-bf9a-23ce4dae6fcc", + "Position": { + "x": -26.1110229, + "y": 3.299652, + "z": -213.541016 + }, + "Rotation": 348.435364, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "74bed501-a620-4f27-bac1-b7e3a556dc22", - "Position": { - "x": 86.00998, - "y": 0.5456505, - "z": 363.7 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "61840dd5-4d19-4f8c-b386-feed2db3efce", + "Position": { + "x": -100.570007, + "y": 10.6186514, + "z": -844.319946 + }, + "Rotation": 4.104724, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "Zone_Containers", + "CorePointId": 1 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 21 - }, - { - "Id": "74d88c3b-3b82-4949-9ab1-98c30141e588", - "Position": { - "x": 47.00998, - "y": 7.28757858, - "z": 328.47 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", + "Position": { + "x": -7.6000576, + "y": 10.72, + "z": -800.92 + }, + "Rotation": 358.2052, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 20 - }, - { - "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", - "Position": { - "x": 7.01300144, - "y": 6.3, - "z": -26.49399 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "61f9d52f-5ccb-48a7-a4a1-a852b049f7b8", + "Position": { + "x": -169.927414, + "y": 30.3048973, + "z": -65.95935 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "75955117-2bf2-4677-90d3-ebb4535ef1b4", - "Position": { - "x": -105.090027, - "y": 33.39565, - "z": 89.31 - }, - "Rotation": 275.2177, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "64322540-a704-4d6c-9ba5-1d4ded2bf28a", + "Position": { + "x": 329.55, + "y": 1.75564957, + "z": 505.63 + }, + "Rotation": 115.016975, + "Sides": [ + "Savage" + ], + "Categories": [ + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "Zone_Island", + "CorePointId": 18 }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "76d4a9a5-bcda-46af-b16c-e87fb867492b", - "Position": { - "x": 53.5499878, - "y": 11.145649, - "z": 47.9299927 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "64fa43f4-e2e8-4f16-9251-2bf3094d337d", + "Position": { + "x": -137.6374, + "y": 6.02489853, + "z": 480.8806 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 6 - }, - { - "Id": "7b8a26cc-a83c-4b3f-b5f7-5637c19289bf", - "Position": { - "x": 104.329529, - "y": 0.504894257, - "z": 424.062744 - }, - "Rotation": 260.715424, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "65ca29cd-d60a-458b-b588-6e898b8c060d", + "Position": { + "x": -61.99241, + "y": 5.990898, + "z": 325.273682 + }, + "Rotation": 119.557549, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7bd68d2b-39aa-4eef-a98a-5394fc63eed7", - "Position": { - "x": 31.44, - "y": 6.66, - "z": -91.27 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "6643cdd3-37af-45fb-93f4-2c2f9b2ec580", + "Position": { + "x": -66.66, + "y": 4.92964935, + "z": -753.74 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentContainers", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7c56a74c-5e05-4bbc-84eb-b45ca808c190", - "Position": { - "x": 74.7225952, - "y": 8.974897, - "z": 233.730652 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "6646be81-5f8c-4c2d-bb8f-cb148c0c6fae", + "Position": { + "x": 23.11, + "y": 6.01, + "z": -86.49 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7cc47cc4-c9b3-4f8a-a5fd-9be54d43f752", - "Position": { - "x": -124.53, - "y": 18.21967, - "z": -135.450012 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "66d74b51-9203-42e6-bef5-9e452ba871dc", + "Position": { + "x": 35.19998, + "y": 7.20565033, + "z": 95.5 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 6 }, - "BotZoneName": "Zone_Chalet", - "CorePointId": 7 - }, - { - "Id": "800af768-9fbd-407a-9544-f76e13b5a523", - "Position": { - "x": -51.1490173, - "y": 10.70362, - "z": -794.814941 - }, - "Rotation": 129.653656, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 160 - } + { + "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", + "Position": { + "x": -5.76, + "y": 10.89, + "z": -801.87 + }, + "Rotation": 358.2052, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Containers", - "CorePointId": 24 - }, - { - "Id": "801ec76b-b32d-4f56-a5ec-d93ede49fb8f", - "Position": { - "x": -159.287415, - "y": 30.3648987, - "z": 260.930664 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "68091dec-b042-4e80-9caf-b6a9e8a43877", + "Position": { + "x": -11.9374084, + "y": 0.644897461, + "z": -126.729309 + }, + "Rotation": 134.737534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "81bd9e3f-0ff6-49af-8769-00cb781786c5", - "Position": { - "x": -109.380005, - "y": 17.66565, - "z": -24.2799988 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } + { + "Id": "68e599f9-806f-4082-ba71-574de6dd8f2c", + "Position": { + "x": -168.8574, + "y": 30.4148979, + "z": -67.9093 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Chalet", - "CorePointId": 7 - }, - { - "Id": "84047c7f-e461-460e-8378-6f85a74b835f", - "Position": { - "x": 356.39, - "y": 15.51865, - "z": 553.695 - }, - "Rotation": 158.316177, - "Sides": [ - "Savage" - ], - "Categories": [ - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "69893240-0388-42f5-b313-231a2915c47b", + "Position": { + "x": 111.742584, + "y": 4.99489975, + "z": 103.180664 + }, + "Rotation": 293.2345, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Island", - "CorePointId": 18 - }, - { - "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", - "Position": { - "x": 6.85998631, - "y": 6.16, - "z": -23.4999866 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "6b305477-7b1e-4ca1-9139-a4e3848e003c", + "Position": { + "x": -93.54001, + "y": 17.63565, + "z": -13.2000122 + }, + "Rotation": 208.517929, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 + } + }, + "BotZoneName": "Zone_Chalet", + "CorePointId": 26 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "84c2f0bb-5869-4e84-bbaa-5fdd23a4bae2", - "Position": { - "x": -222.5874, - "y": 13.5648975, - "z": -193.249329 - }, - "Rotation": 198.027451, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "6b7c5283-2d13-46c8-ac57-73f99472cb39", + "Position": { + "x": -321.75, + "y": 1.06699753, + "z": -331.889984 + }, + "Rotation": 60.8000031, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "85902d64-8404-48ba-84d9-1292b3c79e13", - "Position": { - "x": 77.002594, - "y": 9.054897, - "z": 224.620667 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", + "Position": { + "x": -1.5, + "y": 10.6, + "z": -801.74 + }, + "Rotation": 358.2052, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8690a712-9114-40d8-8ca2-56a69ea90bfe", - "Position": { - "x": 115.9126, - "y": 4.464897, - "z": 103.9707 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "71331f39-d65f-4b08-924e-366209cb46b6", + "Position": { + "x": -83.70001, + "y": -0.106666565, + "z": -541.36 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "Zone_Hellicopter", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8799bb42-bc67-4556-94fb-c5a401efb5b3", - "Position": { - "x": 22.83, - "y": 6.01, - "z": -84.79 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "715dfa23-e817-41fd-805c-6b77c3b7dde4", + "Position": { + "x": 116.612579, + "y": 0.3838997, + "z": -163.829346 + }, + "Rotation": 274.115753, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8a5e9fbb-8014-4711-abc2-bc9010c30721", - "Position": { - "x": 49.4099731, - "y": 1.63565063, - "z": -147.12 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "7214a6f6-1ad5-4a25-98d4-5fc92559d599", + "Position": { + "x": 25.42, + "y": 6.01, + "z": -89.94 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 4 - }, - { - "Id": "8b8f52d5-820c-4c25-aec0-94671c8c7b55", - "Position": { - "x": -145.71, - "y": 37.33565, - "z": 144.76 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "723e2598-d770-4243-9d68-4b932a9f91de", + "Position": { + "x": -144.540009, + "y": 37.33565, + "z": 149.299988 + }, + "Rotation": 128.073547, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "8c8942d2-33d7-4926-b61e-b844b10fb18b", - "Position": { - "x": 54.1099854, - "y": 11.9674034, - "z": 197.849991 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "73df6563-200e-4701-9753-91e438cfc1cc", + "Position": { + "x": 113.832581, + "y": 4.99489975, + "z": 101.8407 + }, + "Rotation": 293.2345, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 19 - }, - { - "Id": "8fae9265-05f2-4210-bdcb-11834b1424a7", - "Position": { - "x": 38.4199829, - "y": 9.165649, - "z": 1.27999878 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "74bed501-a620-4f27-bac1-b7e3a556dc22", + "Position": { + "x": 86.00998, + "y": 0.5456505, + "z": 363.7 + }, + "Rotation": 116.208389, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 21 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 6 - }, - { - "Id": "90610890-d33d-4fd7-9dc4-7f2d8d6bf7ff", - "Position": { - "x": -14.8574066, - "y": 0.374897, - "z": -134.839355 - }, - "Rotation": 153.723572, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "74d88c3b-3b82-4949-9ab1-98c30141e588", + "Position": { + "x": 47.00998, + "y": 7.28757858, + "z": 328.47 + }, + "Rotation": 116.208389, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 20 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "909fdb57-c4d6-4740-8907-d8ee324ab9bc", - "Position": { - "x": 31.8799744, - "y": 10.768651, - "z": -827.27 - }, - "Rotation": 279.3638, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", + "Position": { + "x": 7.01300144, + "y": 6.3, + "z": -26.49399 + }, + "Rotation": 179.094986, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Containers", - "CorePointId": 1 - }, - { - "Id": "91f49ddc-7c01-4569-9b51-6d7ac019120b", - "Position": { - "x": -90.26001, - "y": 1.71564865, - "z": -577.11 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "75955117-2bf2-4677-90d3-ebb4535ef1b4", + "Position": { + "x": -105.090027, + "y": 33.39565, + "z": 89.31 + }, + "Rotation": 275.2177, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 }, - "BotZoneName": "Zone_Hellicopter", - "CorePointId": 9 - }, - { - "Id": "92c20fd6-5480-4298-a104-dbb7b09f0e6b", - "Position": { - "x": -84.91, - "y": 16.95565, - "z": 20.1499939 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "76d4a9a5-bcda-46af-b16c-e87fb867492b", + "Position": { + "x": 53.5499878, + "y": 11.145649, + "z": 47.9299927 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 6 }, - "BotZoneName": "Zone_Chalet", - "CorePointId": 25 - }, - { - "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", - "Position": { - "x": 6.92999363, - "y": 6.16, - "z": -22.1199818 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "7b8a26cc-a83c-4b3f-b5f7-5637c19289bf", + "Position": { + "x": 104.329529, + "y": 0.504894257, + "z": 424.062744 + }, + "Rotation": 260.715424, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "934c3322-9145-4406-a23f-c2e90b99b969", - "Position": { - "x": -12.26741, - "y": 0.9448967, - "z": -133.069336 - }, - "Rotation": 151.1096, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "7bd68d2b-39aa-4eef-a98a-5394fc63eed7", + "Position": { + "x": 31.44, + "y": 6.66, + "z": -91.27 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", - "Position": { - "x": -3.76, - "y": 10.920001, - "z": -802.2 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "7c56a74c-5e05-4bbc-84eb-b45ca808c190", + "Position": { + "x": 74.7225952, + "y": 8.974897, + "z": 233.730652 + }, + "Rotation": 293.2345, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "976a4d47-bbed-4966-855b-5433c8407921", - "Position": { - "x": 6.5, - "y": 3.62565231, - "z": -311.800018 - }, - "Rotation": 297.348724, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "7cc47cc4-c9b3-4f8a-a5fd-9be54d43f752", + "Position": { + "x": -124.53, + "y": 18.21967, + "z": -135.450012 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "Zone_Chalet", + "CorePointId": 7 }, - "BotZoneName": "Zone_Bridge", - "CorePointId": 4 - }, - { - "Id": "977b34cf-397f-4ec9-a2b0-f7bbf67284ed", - "Position": { - "x": 23.66, - "y": 6.01, - "z": -68.1 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "800af768-9fbd-407a-9544-f76e13b5a523", + "Position": { + "x": -51.1490173, + "y": 10.70362, + "z": -794.814941 + }, + "Rotation": 129.653656, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 160 + } + }, + "BotZoneName": "Zone_Containers", + "CorePointId": 24 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "980d7e02-2692-4fb9-83c9-a43f61bc04cc", - "Position": { - "x": 114.390594, - "y": 0.3838997, - "z": -166.727356 - }, - "Rotation": 212.519348, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "801ec76b-b32d-4f56-a5ec-d93ede49fb8f", + "Position": { + "x": -159.287415, + "y": 30.3648987, + "z": 260.930664 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "987bfe64-ef9b-4fa7-80a2-5f5045d7d178", - "Position": { - "x": -135.7774, - "y": 6.02489853, - "z": 480.5807 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "81bd9e3f-0ff6-49af-8769-00cb781786c5", + "Position": { + "x": -109.380005, + "y": 17.66565, + "z": -24.2799988 + }, + "Rotation": 208.517929, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 + } + }, + "BotZoneName": "Zone_Chalet", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "98c771f5-a2ab-4979-a514-654576598195", - "Position": { - "x": -113.200012, - "y": 30.6256828, - "z": 153.7 - }, - "Rotation": 195.903351, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "84047c7f-e461-460e-8378-6f85a74b835f", + "Position": { + "x": 356.39, + "y": 15.51865, + "z": 553.695 + }, + "Rotation": 158.316177, + "Sides": [ + "Savage" + ], + "Categories": [ + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "Zone_Island", + "CorePointId": 18 }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 22 - }, - { - "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", - "Position": { - "x": -7.51003075, - "y": 10.72, - "z": -799.37 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", + "Position": { + "x": 6.85998631, + "y": 6.16, + "z": -23.4999866 + }, + "Rotation": 179.094986, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9aae4ab4-74ff-4384-b691-03b1ed0b5fb7", - "Position": { - "x": -128.51001, - "y": 20.06565, - "z": -106.149994 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } + { + "Id": "84c2f0bb-5869-4e84-bbaa-5fdd23a4bae2", + "Position": { + "x": -222.5874, + "y": 13.5648975, + "z": -193.249329 + }, + "Rotation": 198.027451, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Chalet", - "CorePointId": 7 - }, - { - "Id": "9ab140af-b8b3-4656-b7cf-b9bcd6393779", - "Position": { - "x": -149.85, - "y": 11.95565, - "z": -200.76001 - }, - "Rotation": 244.211288, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "85902d64-8404-48ba-84d9-1292b3c79e13", + "Position": { + "x": 77.002594, + "y": 9.054897, + "z": 224.620667 + }, + "Rotation": 293.2345, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "9bc9c196-b64b-465b-ae16-c91ebd5080ef", - "Position": { - "x": 31.8899841, - "y": 4.798651, - "z": -451.1 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "8690a712-9114-40d8-8ca2-56a69ea90bfe", + "Position": { + "x": 115.9126, + "y": 4.464897, + "z": 103.9707 + }, + "Rotation": 293.2345, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Blockpost", - "CorePointId": 14 - }, - { - "Id": "9c96af9c-f0bc-46a9-b62b-ee6b96b5fafd", - "Position": { - "x": 115.702606, - "y": 0.3838997, - "z": -160.319336 - }, - "Rotation": 312.183167, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "8799bb42-bc67-4556-94fb-c5a401efb5b3", + "Position": { + "x": 22.83, + "y": 6.01, + "z": -84.79 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9e2387b3-10fa-4e10-b192-f2bce8fd0358", - "Position": { - "x": -386.5914, - "y": 23.7648983, - "z": -511.923279 - }, - "Rotation": 141.822754, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "8a5e9fbb-8014-4711-abc2-bc9010c30721", + "Position": { + "x": 49.4099731, + "y": 1.63565063, + "z": -147.12 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9e807cd8-a412-40d0-b62e-8df7c31b91ae", - "Position": { - "x": -386.7574, - "y": 23.5148983, - "z": -515.9593 - }, - "Rotation": 141.822754, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "8b8f52d5-820c-4c25-aec0-94671c8c7b55", + "Position": { + "x": -145.71, + "y": 37.33565, + "z": 144.76 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9eedd190-88a3-42f2-84ae-9483691d9986", - "Position": { - "x": 365.69, - "y": 15.5336494, - "z": 545.678 - }, - "Rotation": 19.1368885, - "Sides": [ - "Savage" - ], - "Categories": [ - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8c8942d2-33d7-4926-b61e-b844b10fb18b", + "Position": { + "x": 54.1099854, + "y": 11.9674034, + "z": 197.849991 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 19 }, - "BotZoneName": "Zone_Island", - "CorePointId": 18 - }, - { - "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", - "Position": { - "x": -10.31, - "y": 10.63, - "z": -802.38 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "8fae9265-05f2-4210-bdcb-11834b1424a7", + "Position": { + "x": 38.4199829, + "y": 9.165649, + "z": 1.27999878 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a02f1065-8639-4738-afa0-9a031c18912f", - "Position": { - "x": 26.84, - "y": 6.01, - "z": -71.94 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "90610890-d33d-4fd7-9dc4-7f2d8d6bf7ff", + "Position": { + "x": -14.8574066, + "y": 0.374897, + "z": -134.839355 + }, + "Rotation": 153.723572, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a068f918-1c5f-4311-b088-2c294f1bdaa1", - "Position": { - "x": -130.75, - "y": 4.945652, - "z": -738.22 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "909fdb57-c4d6-4740-8907-d8ee324ab9bc", + "Position": { + "x": 31.8799744, + "y": 10.768651, + "z": -827.27 + }, + "Rotation": 279.3638, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "Zone_Containers", + "CorePointId": 1 }, - "BotZoneName": "Zone_Hellicopter", - "CorePointId": 11 - }, - { - "Id": "a119da51-2ddf-4ec1-a6a1-1aa701b619ec", - "Position": { - "x": -441.8674, - "y": 28.6048985, - "z": -372.989319 - }, - "Rotation": 294.262756, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "91f49ddc-7c01-4569-9b51-6d7ac019120b", + "Position": { + "x": -90.26001, + "y": 1.71564865, + "z": -577.11 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Hellicopter", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a22f75f6-0e9a-4e19-be56-a9099861c045", - "Position": { - "x": -71.78, - "y": 39.2056541, - "z": 451.11 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 2000.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "92c20fd6-5480-4298-a104-dbb7b09f0e6b", + "Position": { + "x": -84.91, + "y": 16.95565, + "z": 20.1499939 + }, + "Rotation": 208.517929, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "Zone_Chalet", + "CorePointId": 25 }, - "BotZoneName": "Zone_SniperPeak", - "CorePointId": 17 - }, - { - "Id": "a250b7d8-8b4e-4658-8a6c-103081685256", - "Position": { - "x": -161.500015, - "y": 9.84565, - "z": -261.699982 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", + "Position": { + "x": 6.92999363, + "y": 6.16, + "z": -22.1199818 + }, + "Rotation": 179.094986, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "a374b3f8-f839-41a9-a28d-c1222ce4f890", - "Position": { - "x": -220.127411, - "y": 13.1848965, - "z": -188.419312 - }, - "Rotation": 198.027451, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "934c3322-9145-4406-a23f-c2e90b99b969", + "Position": { + "x": -12.26741, + "y": 0.9448967, + "z": -133.069336 + }, + "Rotation": 151.1096, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a552c808-942d-4db8-b09b-abfdd3ef45fe", - "Position": { - "x": -81.0, - "y": 16.4738655, - "z": 19.2799988 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } + { + "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", + "Position": { + "x": -3.76, + "y": 10.920001, + "z": -802.2 + }, + "Rotation": 358.2052, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Chalet", - "CorePointId": 26 - }, - { - "Id": "a59edfb4-1545-4908-9391-42ed1653821a", - "Position": { - "x": -124.830017, - "y": 14.0356522, - "z": -738.319946 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "976a4d47-bbed-4966-855b-5433c8407921", + "Position": { + "x": 6.5, + "y": 3.62565231, + "z": -311.800018 + }, + "Rotation": 297.348724, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Bridge", + "CorePointId": 4 }, - "BotZoneName": "Zone_RoofContainers", - "CorePointId": 11 - }, - { - "Id": "a69d60a1-8252-4404-9e58-87b1dfbcd2ac", - "Position": { - "x": 41.1099854, - "y": 7.55524445, - "z": 345.21 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "977b34cf-397f-4ec9-a2b0-f7bbf67284ed", + "Position": { + "x": 23.66, + "y": 6.01, + "z": -68.1 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 20 - }, - { - "Id": "a91f971b-d962-4be7-83eb-a4319e0fa8ad", - "Position": { - "x": 48.19998, - "y": 1.645649, - "z": -116.300018 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "980d7e02-2692-4fb9-83c9-a43f61bc04cc", + "Position": { + "x": 114.390594, + "y": 0.3838997, + "z": -166.727356 + }, + "Rotation": 212.519348, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 6 - }, - { - "Id": "a9f32457-a94d-4547-ba4f-8d94ddfe604b", - "Position": { - "x": -161.4974, - "y": 31.2748985, - "z": 257.310669 - }, - "Rotation": 89.10666, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "987bfe64-ef9b-4fa7-80a2-5f5045d7d178", + "Position": { + "x": -135.7774, + "y": 6.02489853, + "z": 480.5807 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ab68fd30-5aa4-4091-9987-a3772136bc00", - "Position": { - "x": 29.4199829, - "y": 4.57564926, - "z": 133.43 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "98c771f5-a2ab-4979-a514-654576598195", + "Position": { + "x": -113.200012, + "y": 30.6256828, + "z": 153.7 + }, + "Rotation": 195.903351, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "Zone_Rocks", + "CorePointId": 22 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 19 - }, - { - "Id": "ae732602-eb95-47bd-b13a-af481f28e570", - "Position": { - "x": 106.705719, - "y": 0.730896, - "z": 424.522827 - }, - "Rotation": 260.715424, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", + "Position": { + "x": -7.51003075, + "y": 10.72, + "z": -799.37 + }, + "Rotation": 358.2052, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b077ec12-e061-4971-a60f-986d5ed226fe", - "Position": { - "x": -49.6600037, - "y": 5.86565, - "z": -290.65 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "9aae4ab4-74ff-4384-b691-03b1ed0b5fb7", + "Position": { + "x": -128.51001, + "y": 20.06565, + "z": -106.149994 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 + } + }, + "BotZoneName": "Zone_Chalet", + "CorePointId": 7 }, - "BotZoneName": "Zone_Bridge", - "CorePointId": 4 - }, - { - "Id": "b10fefc8-e1a2-478a-b2ca-04ac0d0f7cac", - "Position": { - "x": 392.156, - "y": 15.2086487, - "z": 567.006 - }, - "Rotation": 115.016975, - "Sides": [ - "Savage" - ], - "Categories": [ - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9ab140af-b8b3-4656-b7cf-b9bcd6393779", + "Position": { + "x": -149.85, + "y": 11.95565, + "z": -200.76001 + }, + "Rotation": 244.211288, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "BotZoneName": "Zone_Island", - "CorePointId": 18 - }, - { - "Id": "b193ef40-123d-48c6-a1ad-f1fb09a20ef5", - "Position": { - "x": -321.065338, - "y": 1.67699814, - "z": -334.890045 - }, - "Rotation": 52.1100044, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "9bc9c196-b64b-465b-ae16-c91ebd5080ef", + "Position": { + "x": 31.8899841, + "y": 4.798651, + "z": -451.1 + }, + "Rotation": 26.8442173, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Blockpost", + "CorePointId": 14 }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "b24f0b0e-ac91-40fa-bb25-d33ff5e4bb57", - "Position": { - "x": -10.3174133, - "y": 1.8348999, - "z": -130.169312 - }, - "Rotation": 135.900757, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "9c96af9c-f0bc-46a9-b62b-ee6b96b5fafd", + "Position": { + "x": 115.702606, + "y": 0.3838997, + "z": -160.319336 + }, + "Rotation": 312.183167, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b2970193-779c-4598-a2d2-0a474afec06c", - "Position": { - "x": 23.0, - "y": 6.01, - "z": -88.71 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "9e2387b3-10fa-4e10-b192-f2bce8fd0358", + "Position": { + "x": -386.5914, + "y": 23.7648983, + "z": -511.923279 + }, + "Rotation": 141.822754, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b712c860-4678-45b7-a39c-ad16f1e73c4d", - "Position": { - "x": -87.52002, - "y": 6.034649, - "z": -269.98 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "9e807cd8-a412-40d0-b62e-8df7c31b91ae", + "Position": { + "x": -386.7574, + "y": 23.5148983, + "z": -515.9593 + }, + "Rotation": 141.822754, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Village", - "CorePointId": 4 - }, - { - "Id": "b7a7460a-c8b6-472d-bf3b-d4a41d1f5387", - "Position": { - "x": -246.780029, - "y": 1.246952, - "z": -381.949982 - }, - "Rotation": 4.91000032, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "9eedd190-88a3-42f2-84ae-9483691d9986", + "Position": { + "x": 365.69, + "y": 15.5336494, + "z": 545.678 + }, + "Rotation": 19.1368885, + "Sides": [ + "Savage" + ], + "Categories": [ + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "Zone_Island", + "CorePointId": 18 }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "b7bea9fa-5af8-47e2-b3d1-d2be915cbf31", - "Position": { - "x": -443.404419, - "y": 28.4408989, - "z": -371.109375 - }, - "Rotation": 294.262756, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", + "Position": { + "x": -10.31, + "y": 10.63, + "z": -802.38 + }, + "Rotation": 358.2052, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ba0ad9af-e742-4380-aa57-5000f75b44e5", - "Position": { - "x": -128.050018, - "y": 39.9256477, - "z": 74.29999 - }, - "Rotation": 23.3241863, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "a02f1065-8639-4738-afa0-9a031c18912f", + "Position": { + "x": 26.84, + "y": 6.01, + "z": -71.94 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "bc7d2613-a056-4d4c-8e43-b703b211d3d3", - "Position": { - "x": -84.46002, - "y": 5.86565, - "z": -271.620026 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "a068f918-1c5f-4311-b088-2c294f1bdaa1", + "Position": { + "x": -130.75, + "y": 4.945652, + "z": -738.22 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "Zone_Hellicopter", + "CorePointId": 11 }, - "BotZoneName": "Zone_Village", - "CorePointId": 4 - }, - { - "Id": "be8fb70e-ab66-40ef-a82e-2a49c2d9ed43", - "Position": { - "x": -62.53, - "y": 3.95565033, - "z": -586.410034 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "a119da51-2ddf-4ec1-a6a1-1aa701b619ec", + "Position": { + "x": -441.8674, + "y": 28.6048985, + "z": -372.989319 + }, + "Rotation": 294.262756, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Hellicopter", - "CorePointId": 9 - }, - { - "Id": "bf33b549-99fd-4974-956a-0be2cc5174e0", - "Position": { - "x": -382.737427, - "y": 24.7548981, - "z": -512.699341 - }, - "Rotation": 141.822754, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a22f75f6-0e9a-4e19-be56-a9099861c045", + "Position": { + "x": -71.78, + "y": 39.2056541, + "z": 451.11 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 2000.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_SniperPeak", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bf975195-82da-46b7-9f69-9257a3f2dce0", - "Position": { - "x": -190.35, - "y": 13.9855, - "z": -660.22 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "a250b7d8-8b4e-4658-8a6c-103081685256", + "Position": { + "x": -161.500015, + "y": 9.84565, + "z": -261.699982 + }, + "Rotation": 348.435364, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "BotZoneName": "Zone_RoofRocks", - "CorePointId": 13 - }, - { - "Id": "c05428b6-9ec3-4890-8c36-d62810187ca7", - "Position": { - "x": 111.659973, - "y": 5.02565, - "z": -671.98 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "a374b3f8-f839-41a9-a28d-c1222ce4f890", + "Position": { + "x": -220.127411, + "y": 13.1848965, + "z": -188.419312 + }, + "Rotation": 198.027451, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_TreatmentBeach", - "CorePointId": 1 - }, - { - "Id": "c0c2f790-c283-4e6a-aecb-c6e5f06aa9e5", - "Position": { - "x": 54.22998, - "y": 11.75729, - "z": 200.579987 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "a552c808-942d-4db8-b09b-abfdd3ef45fe", + "Position": { + "x": -81.0, + "y": 16.4738655, + "z": 19.2799988 + }, + "Rotation": 208.517929, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 + } + }, + "BotZoneName": "Zone_Chalet", + "CorePointId": 26 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 19 - }, - { - "Id": "c23035da-dbd1-4bde-b90f-9b809215ee57", - "Position": { - "x": 26.432, - "y": 6.01, - "z": -74.981 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a59edfb4-1545-4908-9391-42ed1653821a", + "Position": { + "x": -124.830017, + "y": 14.0356522, + "z": -738.319946 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_RoofContainers", + "CorePointId": 11 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c269b7f5-17fa-4c7e-b5a6-bbacb5ce0003", - "Position": { - "x": -123.577026, - "y": 18.21967, - "z": -132.695 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "a69d60a1-8252-4404-9e58-87b1dfbcd2ac", + "Position": { + "x": 41.1099854, + "y": 7.55524445, + "z": 345.21 + }, + "Rotation": 116.208389, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 20 }, - "BotZoneName": "Zone_Chalet", - "CorePointId": 7 - }, - { - "Id": "c3bcd168-85f1-48c8-a46c-58727bfeb632", - "Position": { - "x": 12.9400024, - "y": 4.798651, - "z": -447.53 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "a91f971b-d962-4be7-83eb-a4319e0fa8ad", + "Position": { + "x": 48.19998, + "y": 1.645649, + "z": -116.300018 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 6 }, - "BotZoneName": "Zone_Blockpost", - "CorePointId": 14 - }, - { - "Id": "c4219a3c-1490-4883-9977-51ca0cb89280", - "Position": { - "x": -69.18002, - "y": 26.78165, - "z": 112.903 - }, - "Rotation": 195.903351, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "a9f32457-a94d-4547-ba4f-8d94ddfe604b", + "Position": { + "x": -161.4974, + "y": 31.2748985, + "z": 257.310669 + }, + "Rotation": 89.10666, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "c4a79941-9132-4067-9678-b5bbe1104713", - "Position": { - "x": -185.700012, - "y": 13.9855, - "z": -693.6416 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 240 - } + { + "Id": "ab68fd30-5aa4-4091-9987-a3772136bc00", + "Position": { + "x": 29.4199829, + "y": 4.57564926, + "z": 133.43 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_LongRoad", + "CorePointId": 19 }, - "BotZoneName": "Zone_RoofRocks", - "CorePointId": 13 - }, - { - "Id": "c751b04f-87ed-4cda-81db-7d66787c94be", - "Position": { - "x": -384.5074, - "y": 24.2249, - "z": -513.6393 - }, - "Rotation": 141.822754, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "ae732602-eb95-47bd-b13a-af481f28e570", + "Position": { + "x": 106.705719, + "y": 0.730896, + "z": 424.522827 + }, + "Rotation": 260.715424, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c820f8ff-0b02-4078-a5ea-27604950b4f8", - "Position": { - "x": -109.02002, - "y": 4.92964935, - "z": -729.52 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "b077ec12-e061-4971-a60f-986d5ed226fe", + "Position": { + "x": -49.6600037, + "y": 5.86565, + "z": -290.65 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Bridge", + "CorePointId": 4 }, - "BotZoneName": "Zone_TreatmentContainers", - "CorePointId": 15 - }, - { - "Id": "c9298667-ff36-4aa5-b33e-26256e5ff71d", - "Position": { - "x": -137.627411, - "y": 6.02489853, - "z": 482.910645 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b10fefc8-e1a2-478a-b2ca-04ac0d0f7cac", + "Position": { + "x": 392.156, + "y": 15.2086487, + "z": 567.006 + }, + "Rotation": 115.016975, + "Sides": [ + "Savage" + ], + "Categories": [ + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "Zone_Island", + "CorePointId": 18 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cb454f82-501c-4633-a1ab-2ae86c2559d8", - "Position": { - "x": -217.447433, - "y": 12.584898, - "z": -181.449341 - }, - "Rotation": 4.4928484, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b193ef40-123d-48c6-a1ad-f1fb09a20ef5", + "Position": { + "x": -321.065338, + "y": 1.67699814, + "z": -334.890045 + }, + "Rotation": 52.1100044, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cbee66a4-e0f0-476c-9a44-c042ab290cd5", - "Position": { - "x": -237.310013, - "y": 14.7656517, - "z": -170.290009 - }, - "Rotation": 194.970718, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "b24f0b0e-ac91-40fa-bb25-d33ff5e4bb57", + "Position": { + "x": -10.3174133, + "y": 1.8348999, + "z": -130.169312 + }, + "Rotation": 135.900757, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", - "Position": { - "x": 8.798004, - "y": 6.16, - "z": -25.9239826 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "b2970193-779c-4598-a2d2-0a474afec06c", + "Position": { + "x": 23.0, + "y": 6.01, + "z": -88.71 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ce07d1ba-6bc7-4f65-898c-e2309ec3bbf9", - "Position": { - "x": -117.630005, - "y": 37.0256538, - "z": 113.7 - }, - "Rotation": 275.2177, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "b712c860-4678-45b7-a39c-ad16f1e73c4d", + "Position": { + "x": -87.52002, + "y": 6.034649, + "z": -269.98 + }, + "Rotation": 348.435364, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 4 }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", - "Position": { - "x": 8.569992, - "y": 6.16, - "z": -20.7299824 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "b7a7460a-c8b6-472d-bf3b-d4a41d1f5387", + "Position": { + "x": -246.780029, + "y": 1.246952, + "z": -381.949982 + }, + "Rotation": 4.91000032, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ced7d497-d16a-41d4-8caf-7c515c28ccdb", - "Position": { - "x": -63.247406, - "y": 6.00789642, - "z": 327.3567 - }, - "Rotation": 119.557549, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b7bea9fa-5af8-47e2-b3d1-d2be915cbf31", + "Position": { + "x": -443.404419, + "y": 28.4408989, + "z": -371.109375 + }, + "Rotation": 294.262756, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d0b5c25c-7439-45b9-a830-21a194831752", - "Position": { - "x": -8.040009, - "y": 7.268448, - "z": -452.21 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ], - "Categories": [ - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "ba0ad9af-e742-4380-aa57-5000f75b44e5", + "Position": { + "x": -128.050018, + "y": 39.9256477, + "z": 74.29999 + }, + "Rotation": 23.3241863, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 }, - "BotZoneName": "Zone_Blockpost", - "CorePointId": 14 - }, - { - "Id": "d12dfa52-8fa4-4e79-9d84-1edbc2b5edfb", - "Position": { - "x": 66.3899841, - "y": 6.049885, - "z": 374.950348 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "bc7d2613-a056-4d4c-8e43-b703b211d3d3", + "Position": { + "x": -84.46002, + "y": 5.86565, + "z": -271.620026 + }, + "Rotation": 348.435364, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 4 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 21 - }, - { - "Id": "d26c7492-92de-4513-907a-baeb78f34630", - "Position": { - "x": -199.430008, - "y": 4.92964935, - "z": -680.459961 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "be8fb70e-ab66-40ef-a82e-2a49c2d9ed43", + "Position": { + "x": -62.53, + "y": 3.95565033, + "z": -586.410034 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Hellicopter", + "CorePointId": 9 }, - "BotZoneName": "Zone_TreatmentRocks", - "CorePointId": 13 - }, - { - "Id": "d3097675-4b9b-43d2-a6c7-0dfe4cac7df6", - "Position": { - "x": 105.329987, - "y": 7.43565, - "z": -529.73 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "bf33b549-99fd-4974-956a-0be2cc5174e0", + "Position": { + "x": -382.737427, + "y": 24.7548981, + "z": -512.699341 + }, + "Rotation": 141.822754, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_TreatmentBeach", - "CorePointId": 10 - }, - { - "Id": "d3f61184-0493-4e68-a33f-0035672f24c3", - "Position": { - "x": 113.09259, - "y": 5.1749, - "z": 106.870667 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "bf975195-82da-46b7-9f69-9257a3f2dce0", + "Position": { + "x": -190.35, + "y": 13.9855, + "z": -660.22 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "Zone_RoofRocks", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d547f03e-36ca-4e98-a441-91ab2e6c7499", - "Position": { - "x": -116.140015, - "y": 17.79565, - "z": -32.0899963 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } + { + "Id": "c05428b6-9ec3-4890-8c36-d62810187ca7", + "Position": { + "x": 111.659973, + "y": 5.02565, + "z": -671.98 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentBeach", + "CorePointId": 1 }, - "BotZoneName": "Zone_Chalet", - "CorePointId": 7 - }, - { - "Id": "d600851d-0b6a-4aff-855c-1e077c49a5ee", - "Position": { - "x": -16.74002, - "y": 10.5248337, - "z": -782.680054 - }, - "Rotation": 129.653656, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 200 - } + { + "Id": "c0c2f790-c283-4e6a-aecb-c6e5f06aa9e5", + "Position": { + "x": 54.22998, + "y": 11.75729, + "z": 200.579987 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 19 }, - "BotZoneName": "Zone_Containers", - "CorePointId": 24 - }, - { - "Id": "d6ce18d5-98f4-43ae-920c-bd7fbc504f9c", - "Position": { - "x": 55.44998, - "y": 4.94265, - "z": -633.199951 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "c23035da-dbd1-4bde-b90f-9b809215ee57", + "Position": { + "x": 26.432, + "y": 6.01, + "z": -74.981 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_TreatmentBeach", - "CorePointId": 1 - }, - { - "Id": "d72a6e26-6f13-4e56-b902-a50465fd844b", - "Position": { - "x": 31.7, - "y": 6.66, - "z": -86.84 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c269b7f5-17fa-4c7e-b5a6-bbacb5ce0003", + "Position": { + "x": -123.577026, + "y": 18.21967, + "z": -132.695 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "Zone_Chalet", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d994edf1-9146-4863-a39d-d223a1ecf5ea", - "Position": { - "x": -167.4974, - "y": 30.4148979, - "z": -66.609314 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c3bcd168-85f1-48c8-a46c-58727bfeb632", + "Position": { + "x": 12.9400024, + "y": 4.798651, + "z": -447.53 + }, + "Rotation": 26.8442173, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "Zone_Blockpost", + "CorePointId": 14 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "da2f58e2-3e97-4830-aa08-2d1902c88943", - "Position": { - "x": 22.83, - "y": 6.01, - "z": -71.62 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c4219a3c-1490-4883-9977-51ca0cb89280", + "Position": { + "x": -69.18002, + "y": 26.78165, + "z": 112.903 + }, + "Rotation": 195.903351, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "da8bcf91-a3cd-49f2-bddf-d70ae9ccee96", - "Position": { - "x": 34.48, - "y": 5.59, - "z": -87.37 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c4a79941-9132-4067-9678-b5bbe1104713", + "Position": { + "x": -185.700012, + "y": 13.9855, + "z": -693.6416 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 240 + } + }, + "BotZoneName": "Zone_RoofRocks", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "db8d86bc-0016-4535-88a6-e5c201961dc5", - "Position": { - "x": -248.670044, - "y": 0.7086563, - "z": -379.630035 - }, - "Rotation": 13.6, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "c751b04f-87ed-4cda-81db-7d66787c94be", + "Position": { + "x": -384.5074, + "y": 24.2249, + "z": -513.6393 + }, + "Rotation": 141.822754, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "dba7bf78-421b-4e32-bad4-1716e5550472", - "Position": { - "x": -127.975006, - "y": 39.88065, - "z": 87.26099 - }, - "Rotation": 23.3241863, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "c820f8ff-0b02-4078-a5ea-27604950b4f8", + "Position": { + "x": -109.02002, + "y": 4.92964935, + "z": -729.52 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_TreatmentContainers", + "CorePointId": 15 }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "dbea7bef-9e12-46f7-bbdf-62a80851cc14", - "Position": { - "x": -322.080017, - "y": 1.177166, - "z": -329.620026 - }, - "Rotation": 52.1100044, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "c9298667-ff36-4aa5-b33e-26256e5ff71d", + "Position": { + "x": -137.627411, + "y": 6.02489853, + "z": 482.910645 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "dd9aa54a-5841-43af-af9c-e2fd2c7bbf0a", - "Position": { - "x": -249.0, - "y": 0.8441658, - "z": -382.21 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "cb454f82-501c-4633-a1ab-2ae86c2559d8", + "Position": { + "x": -217.447433, + "y": 12.584898, + "z": -181.449341 + }, + "Rotation": 4.4928484, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "de169321-3165-4434-84b4-c6d39a069191", - "Position": { - "x": 51.8299866, - "y": 5.187237, - "z": -589.9 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "cbee66a4-e0f0-476c-9a44-c042ab290cd5", + "Position": { + "x": -237.310013, + "y": 14.7656517, + "z": -170.290009 + }, + "Rotation": 194.970718, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "BotZoneName": "Zone_TreatmentBeach", - "CorePointId": 10 - }, - { - "Id": "df949703-1471-4367-a395-3afa78fcf886", - "Position": { - "x": 6.52999973, - "y": 6.16, - "z": -17.28998 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", + "Position": { + "x": 8.798004, + "y": 6.16, + "z": -25.9239826 + }, + "Rotation": 179.094986, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dffa485d-70ef-4bdb-869b-c42d27ec8987", - "Position": { - "x": -58.01001, - "y": 39.5256538, - "z": 459.39 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 2000.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "ce07d1ba-6bc7-4f65-898c-e2309ec3bbf9", + "Position": { + "x": -117.630005, + "y": 37.0256538, + "z": 113.7 + }, + "Rotation": 275.2177, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 }, - "BotZoneName": "Zone_SniperPeak", - "CorePointId": 17 - }, - { - "Id": "e1228f5b-be4c-4859-882e-8ead2fd3987a", - "Position": { - "x": -150.487411, - "y": 29.9358978, - "z": 262.8806 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", + "Position": { + "x": 8.569992, + "y": 6.16, + "z": -20.7299824 + }, + "Rotation": 179.094986, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e18c5b63-5aa7-419b-9f2d-340fe7546097", - "Position": { - "x": -3.55001831, - "y": 12.0293722, - "z": -870.1699 - }, - "Rotation": 4.104724, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } + { + "Id": "ced7d497-d16a-41d4-8caf-7c515c28ccdb", + "Position": { + "x": -63.247406, + "y": 6.00789642, + "z": 327.3567 + }, + "Rotation": 119.557549, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_Containers", - "CorePointId": 1 - }, - { - "Id": "e23d24cf-1b50-4ddb-b622-7d4aa930ab7d", - "Position": { - "x": -181.590012, - "y": 14.0029526, - "z": -659.829956 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "d0b5c25c-7439-45b9-a830-21a194831752", + "Position": { + "x": -8.040009, + "y": 7.268448, + "z": -452.21 + }, + "Rotation": 26.8442173, + "Sides": [ + "Savage" + ], + "Categories": [ + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "Zone_Blockpost", + "CorePointId": 14 }, - "BotZoneName": "Zone_RoofRocks", - "CorePointId": 13 - }, - { - "Id": "e2889fae-f2fb-44ce-a6df-be10d4908137", - "Position": { - "x": -180.530014, - "y": 5.02565, - "z": -647.310059 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "d12dfa52-8fa4-4e79-9d84-1edbc2b5edfb", + "Position": { + "x": 66.3899841, + "y": 6.049885, + "z": 374.950348 + }, + "Rotation": 116.208389, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 21 }, - "BotZoneName": "Zone_TreatmentRocks", - "CorePointId": 12 - }, - { - "Id": "e3309a9d-1562-4836-9705-61f6df7daf2b", - "Position": { - "x": -213.080017, - "y": 12.7456512, - "z": -187.81 - }, - "Rotation": 177.55925, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "d26c7492-92de-4513-907a-baeb78f34630", + "Position": { + "x": -199.430008, + "y": 4.92964935, + "z": -680.459961 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentRocks", + "CorePointId": 13 }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", - "Position": { - "x": -5.28, - "y": 10.71, - "z": -804.34 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } + { + "Id": "d3097675-4b9b-43d2-a6c7-0dfe4cac7df6", + "Position": { + "x": 105.329987, + "y": 7.43565, + "z": -529.73 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentBeach", + "CorePointId": 10 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e8aad4bd-3990-45f0-9106-197afd5251a0", - "Position": { - "x": -162.8074, - "y": 31.3148975, - "z": 254.180664 - }, - "Rotation": 104.295624, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "d3f61184-0493-4e68-a33f-0035672f24c3", + "Position": { + "x": 113.09259, + "y": 5.1749, + "z": 106.870667 + }, + "Rotation": 293.2345, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e9af3bc9-ebf6-4252-8551-ec64bd75c390", - "Position": { - "x": -84.34003, - "y": -0.104351044, - "z": -565.560059 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "d547f03e-36ca-4e98-a441-91ab2e6c7499", + "Position": { + "x": -116.140015, + "y": 17.79565, + "z": -32.0899963 + }, + "Rotation": 208.517929, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 + } + }, + "BotZoneName": "Zone_Chalet", + "CorePointId": 7 }, - "BotZoneName": "Zone_Hellicopter", - "CorePointId": 9 - }, - { - "Id": "ea3ee12f-63bf-40b0-86b2-d73e575e6b38", - "Position": { - "x": 22.91, - "y": 6.01, - "z": -81.8 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "d600851d-0b6a-4aff-855c-1e077c49a5ee", + "Position": { + "x": -16.74002, + "y": 10.5248337, + "z": -782.680054 + }, + "Rotation": 129.653656, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 200 + } + }, + "BotZoneName": "Zone_Containers", + "CorePointId": 24 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ec0f240b-d414-4041-b28c-6dd72f3a8c13", - "Position": { - "x": -222.950012, - "y": 12.668705, - "z": -186.459991 - }, - "Rotation": 194.970718, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "d6ce18d5-98f4-43ae-920c-bd7fbc504f9c", + "Position": { + "x": 55.44998, + "y": 4.94265, + "z": -633.199951 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "Zone_TreatmentBeach", + "CorePointId": 1 }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "ed90c8a5-b740-4aa2-868a-f91e710d4e17", - "Position": { - "x": -171.187408, - "y": 30.3048973, - "z": -66.78931 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "d72a6e26-6f13-4e56-b902-a50465fd844b", + "Position": { + "x": 31.7, + "y": 6.66, + "z": -86.84 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ee12a020-cec0-496b-8755-42ddaf928be0", - "Position": { - "x": 40.03, - "y": 9.52565, - "z": 71.81999 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "d994edf1-9146-4863-a39d-d223a1ecf5ea", + "Position": { + "x": -167.4974, + "y": 30.4148979, + "z": -66.609314 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 6 - }, - { - "Id": "ee4478fd-aa92-42b2-aa63-0bcd41d3215b", - "Position": { - "x": 31.75998, - "y": 7.055649, - "z": 371.66 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "da2f58e2-3e97-4830-aa08-2d1902c88943", + "Position": { + "x": 22.83, + "y": 6.01, + "z": -71.62 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "Zone_DestroyedHouse", - "CorePointId": 20 - }, - { - "Id": "ef14df08-71d8-48c8-a8e5-db0c3af8f0ab", - "Position": { - "x": -56.8900146, - "y": 1.88565063, - "z": -586.440063 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "BotZoneName": "Zone_Hellicopter", - "CorePointId": 9 - }, - { - "Id": "ef216442-d3df-4ccf-b797-94a695827a57", - "Position": { - "x": -5.5, - "y": 1.90975571, - "z": 37.3999939 - }, - "Rotation": 113.936485, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 6 - }, - { - "Id": "ef79c37b-639e-498c-a2d2-b20036748f2f", - "Position": { - "x": -202.62001, - "y": 12.3556519, - "z": -194.37 - }, - "Rotation": 194.970718, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", - "Position": { - "x": 8.755005, - "y": 6.16, - "z": -23.86899 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f06fb745-0fbb-4ed6-bc3f-0fb36d5e87b2", - "Position": { - "x": 35.9400024, - "y": 12.0053339, - "z": -833.12 - }, - "Rotation": 4.104724, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "Zone_Containers", - "CorePointId": 1 - }, - { - "Id": "f0e2fe27-9ac5-4127-9a4e-30bf7eddac5c", - "Position": { - "x": -246.109985, - "y": 1.216999, - "z": -379.630035 - }, - "Rotation": 4.91000032, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "", - "CorePointId": 5 - }, - { - "Id": "f0f76982-288f-4cfa-8c5a-397f7b9422b7", - "Position": { - "x": -66.2750244, - "y": 14.0756493, - "z": -734.574 - }, - "Rotation": 34.3430061, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "BotZoneName": "Zone_RoofContainers", - "CorePointId": 15 - }, - { - "Id": "f143f0ca-33af-4541-aa88-1e4d18059ec4", - "Position": { - "x": -1.39001465, - "y": 1.78865123, - "z": -470.79 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 240 - } - }, - "BotZoneName": "Zone_Blockpost", - "CorePointId": 14 - }, - { - "Id": "f2b31e14-8d7f-4348-8464-5ab9fe7f462e", - "Position": { - "x": -13.3700256, - "y": 4.528651, - "z": -449.639984 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "BotZoneName": "Zone_Blockpost", - "CorePointId": 14 - }, - { - "Id": "f519a18e-0583-4d8d-b5c6-de9d75699312", - "Position": { - "x": -62.47941, - "y": 5.990898, - "z": 330.1067 - }, - "Rotation": 119.557549, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f69e3535-6c4d-4607-85e5-7eb5cfa0a111", - "Position": { - "x": -73.20001, - "y": 11.4756508, - "z": 4.47998047 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "BotZoneName": "Zone_Chalet", - "CorePointId": 26 - }, - { - "Id": "f6cebfe5-4844-49c7-b424-187b4403bf88", - "Position": { - "x": -62.0599976, - "y": 19.86565, - "z": -134.26001 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "BotZoneName": "Zone_Chalet", - "CorePointId": 7 - }, - { - "Id": "f7bd8ddc-c49f-44d0-8309-75961279d395", - "Position": { - "x": 76.0825958, - "y": 8.794899, - "z": 228.730652 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f7d2e2e2-6525-4061-be4f-adae897b8a1a", - "Position": { - "x": -164.797409, - "y": 30.834898, - "z": 260.620728 - }, - "Rotation": 108.442146, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f8a1c7aa-a550-479b-8e81-cf1e7af59445", - "Position": { - "x": -185.040009, - "y": 5.405651, - "z": -261.759979 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "BotZoneName": "Zone_Village", - "CorePointId": 3 - }, - { - "Id": "f8e5ea44-10d0-4a32-be65-2cfc6ea50953", - "Position": { - "x": 116.310608, - "y": 0.3838997, - "z": -167.806335 - }, - "Rotation": 182.088867, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Tunnel", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f96f3b5d-2aae-4238-adac-0af4d71b97fa", - "Position": { - "x": 25.7, - "y": 6.01, - "z": -84.33 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fa7869a2-8896-4414-ba7d-60a7c95bd1a8", - "Position": { - "x": 25.67, - "y": 6.01, - "z": -85.89 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "North", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fd71e948-35d6-49c1-b647-5248d6234bb1", - "Position": { - "x": 47.5999756, - "y": 0.4856491, - "z": -173.4 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "BotZoneName": "Zone_LongRoad", - "CorePointId": 4 - }, - { - "Id": "fe428f41-73e2-468f-8cb8-ac6c27050690", - "Position": { - "x": -148.040009, - "y": 39.9856529, - "z": 94.89 - }, - "Rotation": 23.3241863, - "Sides": [ - "Savage" - ], - "Categories": [ - "Player", - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "BotZoneName": "Zone_Rocks", - "CorePointId": 2 - }, - { - "Id": "ff80b050-df12-4859-9f5f-37ba90a68599", - "Position": { - "x": -186.51001, - "y": 14.0341454, - "z": -643.839966 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 3600.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 240 - } - }, - "BotZoneName": "Zone_RoofRocks", - "CorePointId": 12 - } - ], - "maxItemCountInLocation": [], - "BossLocationSpawn": [ - { - "BossName": "bossZryachiy", - "BossChance": 100.0, - "BossZone": "Zone_Island", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "followerZryachiy", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "bossPartisan", - "BossChance": 10.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0", - "Time": -1.0, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": true, - "DependKarmaPVE": false - }, - { - "BossName": "bossKnight", - "BossChance": 25.0, - "BossZone": "Zone_TreatmentContainers,Zone_Chalet", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": [ - { - "BossEscortType": "followerBigPipe", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "1" - }, - { - "BossEscortType": "followerBirdEye", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "1" + { + "Id": "da8bcf91-a3cd-49f2-bddf-d70ae9ccee96", + "Position": { + "x": 34.48, + "y": 5.59, + "z": -87.37 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } }, - { - "BossEscortType": "followerGluharScout", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "0" - } - ], - "RandomTimeSpawn": true, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "exUsec", - "BossChance": 80.0, - "BossZone": "Zone_Blockpost", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "1", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "exUsec", - "BossChance": 80.0, - "BossZone": "Zone_RoofContainers", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "1,2", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "exUsec", - "BossChance": 50.0, - "BossZone": "Zone_TreatmentRocks", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "1,1,2", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "exUsec", - "BossChance": 50.0, - "BossZone": "Zone_TreatmentBeach", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "1,1,2", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "exUsec", - "BossChance": 0.0, - "BossZone": "Zone_Island", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "exUsec", - "BossChance": 80.0, - "BossZone": "Zone_RoofRocks", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "exUsec", - "BossChance": 80.0, - "BossZone": "Zone_RoofBeach", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "1", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "exUsec", - "BossChance": 20.0, - "BossZone": "Zone_Hellicopter", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "1,2", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,2,2,2,1,1,1,1,1", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "Delay": 0.0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - } - ], - "AirdropParameters": [ - { - "PlaneAirdropStartMin": 300, - "PlaneAirdropStartMax": 900, - "PlaneAirdropEnd": 1500, - "PlaneAirdropChance": 0.2, - "PlaneAirdropMax": 1, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropCooldownMax": 800, - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "UnsuccessfulTryPenalty": 600 - } - ], - "MatchMakerMinPlayersByWaitTime": [ - { - "time": 60, - "minPlayers": 7 - }, - { - "time": 120, - "minPlayers": 6 - }, - { - "time": 180, - "minPlayers": 5 - }, - { - "time": 240, - "minPlayers": 4 - }, - { - "time": 300, - "minPlayers": 3 - }, - { - "time": 360, - "minPlayers": 2 - }, - { - "time": 420, - "minPlayers": 1 - } - ], - "transits": [ - { - "id": 21, - "active": true, - "name": "LIG_TRANSIT_21", - "location": "Shoreline", - "description": "LIG_TRANSIT_21_DESC", - "activateAfterSec": 420, - "target": "5704e554d2720bac5b8b456e", - "time": 30, - "conditions": "LIG_TRANSIT_21_COND" - }, - { - "id": 22, - "active": false, - "name": "LIG_TRANSIT_22", - "location": "RezervBase", - "description": "LIG_TRANSIT_22_DESC", - "activateAfterSec": 420, - "target": "5704e5fad2720bc05b8b4567", - "time": 30, - "conditions": "LIG_TRANSIT_22_COND" - }, - { - "id": 23, - "active": false, - "name": "LIG_TRANSIT_23", - "location": "Woods", - "description": "LIG_TRANSIT_23_DESC", - "activateAfterSec": 420, - "target": "5704e3c2d2720bac5b8b4567", - "time": 30, - "conditions": "LIG_TRANSIT_23_COND" - } - ], - "Id": "Lighthouse", - "_Id": "5704e4dad2720bb55b8b4567", - "Loot": [ - { - "Id": "container_Lighthouse_DesignStuff_00053", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021125", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021125", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "db8d86bc-0016-4535-88a6-e5c201961dc5", + "Position": { + "x": -248.670044, + "y": 0.7086563, + "z": -379.630035 + }, + "Rotation": 13.6, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbbe6ed31d686b24021127", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66cbbe6ed31d686b24021125", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00323", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 5 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021129", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021129", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "dba7bf78-421b-4e32-bad4-1716e5550472", + "Position": { + "x": -127.975006, + "y": 39.88065, + "z": 87.26099 + }, + "Rotation": 23.3241863, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 } }, - { - "_id": "66cbbe6ed31d686b2402112b", - "_tpl": "5649d9a14bdc2d79388b4580", - "parentId": "66cbbe6ed31d686b24021129", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 + }, + { + "Id": "dbea7bef-9e12-46f7-bbdf-62a80851cc14", + "Position": { + "x": -322.080017, + "y": 1.177166, + "z": -329.620026 + }, + "Rotation": 52.1100044, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbbe6ed31d686b2402112d", - "_tpl": "6699271b9950f5f4cd060299", - "parentId": "66cbbe6ed31d686b24021129", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 5 + }, + { + "Id": "dd9aa54a-5841-43af-af9c-e2fd2c7bbf0a", + "Position": { + "x": -249.0, + "y": 0.8441658, + "z": -382.21 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbbe6ed31d686b2402112f", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66cbbe6ed31d686b24021129", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00141", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 5 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021131", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021131", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "de169321-3165-4434-84b4-c6d39a069191", + "Position": { + "x": 51.8299866, + "y": 5.187237, + "z": -589.9 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbbe6ed31d686b24021133", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbbe6ed31d686b24021131", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00140", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "Zone_TreatmentBeach", + "CorePointId": 10 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021135", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021135", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "df949703-1471-4367-a395-3afa78fcf886", + "Position": { + "x": 6.52999973, + "y": 6.16, + "z": -17.28998 + }, + "Rotation": 179.094986, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 } }, - { - "_id": "66cbbe6ed31d686b24021137", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbbe6ed31d686b24021135", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00139", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021139", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021139", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "dffa485d-70ef-4bdb-869b-c42d27ec8987", + "Position": { + "x": -58.01001, + "y": 39.5256538, + "z": 459.39 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 2000.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbbe6ed31d686b2402113b", - "_tpl": "5c12620d86f7743f8b198b72", - "parentId": "66cbbe6ed31d686b24021139", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00138", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "Zone_SniperPeak", + "CorePointId": 17 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402113d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402113d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e1228f5b-be4c-4859-882e-8ead2fd3987a", + "Position": { + "x": -150.487411, + "y": 29.9358978, + "z": 262.8806 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbbe6ed31d686b2402113f", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbbe6ed31d686b2402113d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00220", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021141", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021141", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e18c5b63-5aa7-419b-9f2d-340fe7546097", + "Position": { + "x": -3.55001831, + "y": 12.0293722, + "z": -870.1699 + }, + "Rotation": 4.104724, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 150 } }, - { - "_id": "66cbbe6ed31d686b24021143", - "_tpl": "5aa2ba46e5b5b000137b758d", - "parentId": "66cbbe6ed31d686b24021141", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00026", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "Zone_Containers", + "CorePointId": 1 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021145", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021145", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e23d24cf-1b50-4ddb-b622-7d4aa930ab7d", + "Position": { + "x": -181.590012, + "y": 14.0029526, + "z": -659.829956 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00025", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "Zone_RoofRocks", + "CorePointId": 13 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021147", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021147", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e2889fae-f2fb-44ce-a6df-be10d4908137", + "Position": { + "x": -180.530014, + "y": 5.02565, + "z": -647.310059 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "Zone_TreatmentRocks", + "CorePointId": 12 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021149", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021149", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e3309a9d-1562-4836-9705-61f6df7daf2b", + "Position": { + "x": -213.080017, + "y": 12.7456512, + "z": -187.81 + }, + "Rotation": 177.55925, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbbe6ed31d686b2402114b", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbbe6ed31d686b24021149", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "Zone_Village", + "CorePointId": 3 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402114d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402114d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", + "Position": { + "x": -5.28, + "y": 10.71, + "z": -804.34 + }, + "Rotation": 358.2052, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 } }, - { - "_id": "66cbbe6ed31d686b2402114f", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b2402114d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00501", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021151", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021151", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e8aad4bd-3990-45f0-9106-197afd5251a0", + "Position": { + "x": -162.8074, + "y": 31.3148975, + "z": 254.180664 + }, + "Rotation": 104.295624, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbbe6ed31d686b24021153", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbbe6ed31d686b24021151", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e9af3bc9-ebf6-4252-8551-ec64bd75c390", + "Position": { + "x": -84.34003, + "y": -0.104351044, + "z": -565.560059 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbbe6ed31d686b24021155", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbbe6ed31d686b24021151", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00184", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "Zone_Hellicopter", + "CorePointId": 9 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021157", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021157", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ea3ee12f-63bf-40b0-86b2-d73e575e6b38", + "Position": { + "x": 22.91, + "y": 6.01, + "z": -81.8 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbbe6ed31d686b24021159", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbbe6ed31d686b24021157", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00342", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402115b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402115b", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ec0f240b-d414-4041-b28c-6dd72f3a8c13", + "Position": { + "x": -222.950012, + "y": 12.668705, + "z": -186.459991 + }, + "Rotation": 194.970718, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbbe6ed31d686b2402115d", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b2402115b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "Zone_Village", + "CorePointId": 3 + }, + { + "Id": "ed90c8a5-b740-4aa2-868a-f91e710d4e17", + "Position": { + "x": -171.187408, + "y": 30.3048973, + "z": -66.78931 + }, + "Rotation": 148.08, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbbe6ed31d686b2402115f", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbbe6ed31d686b2402115b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ee12a020-cec0-496b-8755-42ddaf928be0", + "Position": { + "x": 40.03, + "y": 9.52565, + "z": 71.81999 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 } }, - { - "_id": "66cbbe6ed31d686b24021161", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbbe6ed31d686b2402115b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00498", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "Zone_LongRoad", + "CorePointId": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021163", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021163", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ee4478fd-aa92-42b2-aa63-0bcd41d3215b", + "Position": { + "x": 31.75998, + "y": 7.055649, + "z": 371.66 + }, + "Rotation": 116.208389, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 } }, - { - "_id": "66cbbe6ed31d686b24021164", - "_tpl": "5ac66d725acfc43b321d4b60", - "parentId": "66cbbe6ed31d686b24021163", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "BotZoneName": "Zone_DestroyedHouse", + "CorePointId": 20 + }, + { + "Id": "ef14df08-71d8-48c8-a8e5-db0c3af8f0ab", + "Position": { + "x": -56.8900146, + "y": 1.88565063, + "z": -586.440063 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbbe6ed31d686b24021165", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbbe6ed31d686b24021164", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbbe6ed31d686b24021166", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbbe6ed31d686b24021165", - "slotId": "mod_handguard" - }, - { - "_id": "66cbbe6ed31d686b24021167", - "_tpl": "5ac72e895acfc43b321d4bd5", - "parentId": "66cbbe6ed31d686b24021164", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbbe6ed31d686b24021168", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbbe6ed31d686b24021164", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b24021169", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbbe6ed31d686b24021164", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b2402116a", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbbe6ed31d686b24021164", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b2402116b", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbbe6ed31d686b24021164", - "slotId": "mod_stock" - }, - { - "_id": "66cbbe6ed31d686b2402116c", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66cbbe6ed31d686b24021164", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b2402116d", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbbe6ed31d686b2402116c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00280", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "Zone_Hellicopter", + "CorePointId": 9 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402116f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402116f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ef216442-d3df-4ccf-b797-94a695827a57", + "Position": { + "x": -5.5, + "y": 1.90975571, + "z": 37.3999939 + }, + "Rotation": 113.936485, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 } }, - { - "_id": "66cbbe6ed31d686b24021171", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbbe6ed31d686b2402116f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00113", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "Zone_LongRoad", + "CorePointId": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021173", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021173", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ef79c37b-639e-498c-a2d2-b20036748f2f", + "Position": { + "x": -202.62001, + "y": 12.3556519, + "z": -194.37 + }, + "Rotation": 194.970718, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbbe6ed31d686b24021175", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbbe6ed31d686b24021173", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "Zone_Village", + "CorePointId": 3 + }, + { + "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", + "Position": { + "x": 8.755005, + "y": 6.16, + "z": -23.86899 + }, + "Rotation": 179.094986, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 77 } }, - { - "_id": "66cbbe6ed31d686b24021177", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbbe6ed31d686b24021173", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f06fb745-0fbb-4ed6-bc3f-0fb36d5e87b2", + "Position": { + "x": 35.9400024, + "y": 12.0053339, + "z": -833.12 + }, + "Rotation": 4.104724, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbbe6ed31d686b24021179", - "_tpl": "5d1b371186f774253763a656", - "parentId": "66cbbe6ed31d686b24021173", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "Zone_Containers", + "CorePointId": 1 + }, + { + "Id": "f0e2fe27-9ac5-4127-9a4e-30bf7eddac5c", + "Position": { + "x": -246.109985, + "y": 1.216999, + "z": -379.630035 + }, + "Rotation": 4.91000032, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbbe6ed31d686b2402117b", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b24021173", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 5 + }, + { + "Id": "f0f76982-288f-4cfa-8c5a-397f7b9422b7", + "Position": { + "x": -66.2750244, + "y": 14.0756493, + "z": -734.574 + }, + "Rotation": 34.3430061, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbbe6ed31d686b2402117d", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbbe6ed31d686b24021173", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00317", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "Zone_RoofContainers", + "CorePointId": 15 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402117f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402117f", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f143f0ca-33af-4541-aa88-1e4d18059ec4", + "Position": { + "x": -1.39001465, + "y": 1.78865123, + "z": -470.79 + }, + "Rotation": 26.8442173, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 240 } }, - { - "_id": "66cbbe6ed31d686b24021180", - "_tpl": "5aa7d03ae5b5b00016327db5", - "parentId": "66cbbe6ed31d686b2402117f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "BotZoneName": "Zone_Blockpost", + "CorePointId": 14 + }, + { + "Id": "f2b31e14-8d7f-4348-8464-5ab9fe7f462e", + "Position": { + "x": -13.3700256, + "y": 4.528651, + "z": -449.639984 + }, + "Rotation": 26.8442173, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 } }, - { - "_id": "66cbbe6ed31d686b24021181", - "_tpl": "654a90aff4f81a421b0a7c86", - "parentId": "66cbbe6ed31d686b24021180", - "slotId": "helmet_top" - }, - { - "_id": "66cbbe6ed31d686b24021182", - "_tpl": "654a91068e1ce698150fd1e2", - "parentId": "66cbbe6ed31d686b24021180", - "slotId": "helmet_back" - }, - { - "_id": "66cbbe6ed31d686b24021183", - "_tpl": "654a9189bcc67a392b056c79", - "parentId": "66cbbe6ed31d686b24021180", - "slotId": "helmet_ears" - }, - { - "_id": "66cbbe6ed31d686b24021185", - "_tpl": "5a27b6bec4a282000e496f78", - "parentId": "66cbbe6ed31d686b2402117f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "Zone_Blockpost", + "CorePointId": 14 + }, + { + "Id": "f519a18e-0583-4d8d-b5c6-de9d75699312", + "Position": { + "x": -62.47941, + "y": 5.990898, + "z": 330.1067 + }, + "Rotation": 119.557549, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbbe6ed31d686b24021187", - "_tpl": "5b363dea5acfc4771e1c5e7e", - "parentId": "66cbbe6ed31d686b2402117f", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f69e3535-6c4d-4607-85e5-7eb5cfa0a111", + "Position": { + "x": -73.20001, + "y": 11.4756508, + "z": 4.47998047 + }, + "Rotation": 208.517929, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 } }, - { - "_id": "66cbbe6ed31d686b24021189", - "_tpl": "5c05293e0db83400232fff80", - "parentId": "66cbbe6ed31d686b2402117f", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "Zone_Chalet", + "CorePointId": 26 + }, + { + "Id": "f6cebfe5-4844-49c7-b424-187b4403bf88", + "Position": { + "x": -62.0599976, + "y": 19.86565, + "z": -134.26001 + }, + "Rotation": 81.6740341, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 } }, - { - "_id": "66cbbe6ed31d686b2402118b", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "66cbbe6ed31d686b2402117f", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "Zone_Chalet", + "CorePointId": 7 + }, + { + "Id": "f7bd8ddc-c49f-44d0-8309-75961279d395", + "Position": { + "x": 76.0825958, + "y": 8.794899, + "z": 228.730652 + }, + "Rotation": 293.2345, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbbe6ed31d686b2402118d", - "_tpl": "57da93632459771cb65bf83f", - "parentId": "66cbbe6ed31d686b2402117f", - "slotId": "main", - "location": { - "x": 4, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00415", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402118f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402118f", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f7d2e2e2-6525-4061-be4f-adae897b8a1a", + "Position": { + "x": -164.797409, + "y": 30.834898, + "z": 260.620728 + }, + "Rotation": 108.442146, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbbe6ed31d686b24021191", - "_tpl": "6389c6c7dbfd5e4b95197e68", - "parentId": "66cbbe6ed31d686b2402118f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f8a1c7aa-a550-479b-8e81-cf1e7af59445", + "Position": { + "x": -185.040009, + "y": 5.405651, + "z": -261.759979 + }, + "Rotation": 348.435364, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbbe6ed31d686b24021193", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbbe6ed31d686b2402118f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "Zone_Village", + "CorePointId": 3 + }, + { + "Id": "f8e5ea44-10d0-4a32-be65-2cfc6ea50953", + "Position": { + "x": 116.310608, + "y": 0.3838997, + "z": -167.806335 + }, + "Rotation": 182.088867, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Tunnel", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbbe6ed31d686b24021195", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbbe6ed31d686b2402118f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00513", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021197", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021197", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f96f3b5d-2aae-4238-adac-0af4d71b97fa", + "Position": { + "x": 25.7, + "y": 6.01, + "z": -84.33 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbbe6ed31d686b24021199", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbbe6ed31d686b24021197", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00358", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402119b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402119b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fa7869a2-8896-4414-ba7d-60a7c95bd1a8", + "Position": { + "x": 25.67, + "y": 6.01, + "z": -85.89 + }, + "Rotation": 266.5001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "North", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbbe6ed31d686b2402119d", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66cbbe6ed31d686b2402119b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "fd71e948-35d6-49c1-b647-5248d6234bb1", + "Position": { + "x": 47.5999756, + "y": 0.4856491, + "z": -173.4 + }, + "Rotation": 256.630219, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 } }, - { - "_id": "66cbbe6ed31d686b2402119f", - "_tpl": "5bd0716d86f774171822ef4b", - "parentId": "66cbbe6ed31d686b2402119b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00436", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "Zone_LongRoad", + "CorePointId": 4 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240211a1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211a1", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fe428f41-73e2-468f-8cb8-ac6c27050690", + "Position": { + "x": -148.040009, + "y": 39.9856529, + "z": 94.89 + }, + "Rotation": 23.3241863, + "Sides": [ + "Savage" + ], + "Categories": [ + "Player", + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 } }, - { - "_id": "66cbbe6ed31d686b240211a3", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbbe6ed31d686b240211a1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "Zone_Rocks", + "CorePointId": 2 + }, + { + "Id": "ff80b050-df12-4859-9f5f-37ba90a68599", + "Position": { + "x": -186.51001, + "y": 14.0341454, + "z": -643.839966 + }, + "Rotation": 256.404022, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 3600.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 240 } }, - { - "_id": "66cbbe6ed31d686b240211a5", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbbe6ed31d686b240211a1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "BotZoneName": "Zone_RoofRocks", + "CorePointId": 12 + } + ], + "maxItemCountInLocation": [], + "BossLocationSpawn": [ + { + "BossName": "bossZryachiy", + "BossChance": 100.0, + "BossZone": "Zone_Island", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "followerZryachiy", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false + }, + { + "BossName": "bossPartisan", + "BossChance": 10.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0", + "Time": -1.0, + "TriggerId": "PARTISAN_TRIGGER", + "TriggerName": "botEvent", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": true, + "DependKarmaPVE": false + }, + { + "BossName": "bossKnight", + "BossChance": 25.0, + "BossZone": "Zone_TreatmentContainers,Zone_Chalet", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": [ + { + "BossEscortType": "followerBigPipe", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "1" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211a7", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbbe6ed31d686b240211a1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "BossEscortType": "followerBirdEye", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "1" + }, + { + "BossEscortType": "followerGluharScout", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "0" } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00030", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ], + "RandomTimeSpawn": true, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "exUsec", + "BossChance": 80.0, + "BossZone": "Zone_Blockpost", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "1", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240211a9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211a9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211ab", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbbe6ed31d686b240211a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00029", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "exUsec", + "BossChance": 80.0, + "BossZone": "Zone_RoofContainers", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "1,2", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "exUsec", + "BossChance": 50.0, + "BossZone": "Zone_TreatmentRocks", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "1,1,2", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240211ad", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211ad", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211af", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbbe6ed31d686b240211ad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "exUsec", + "BossChance": 50.0, + "BossZone": "Zone_TreatmentBeach", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "1,1,2", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "exUsec", + "BossChance": 0.0, + "BossZone": "Zone_Island", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240211b1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211b1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "exUsec", + "BossChance": 80.0, + "BossZone": "Zone_RoofRocks", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "exUsec", + "BossChance": 80.0, + "BossZone": "Zone_RoofBeach", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "1", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240211b3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211b3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211b5", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbbe6ed31d686b240211b3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00448", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "exUsec", + "BossChance": 20.0, + "BossZone": "Zone_Hellicopter", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "1,2", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240211b7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211b7", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211b9", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbbe6ed31d686b240211b7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00353", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,2,2,2,1,1,1,1,1", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240211bb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211bb", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211bd", - "_tpl": "5c7e5f112e221600106f4ede", - "parentId": "66cbbe6ed31d686b240211bb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00420", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240211bf", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211bf", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211c1", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b240211bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211c3", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b240211bf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00502", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "Delay": 0.0, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false + } + ], + "AirdropParameters": [ + { + "PlaneAirdropStartMin": 300, + "PlaneAirdropStartMax": 900, + "PlaneAirdropEnd": 1500, + "PlaneAirdropChance": 0.2, + "PlaneAirdropMax": 1, + "PlaneAirdropCooldownMin": 700, + "PlaneAirdropCooldownMax": 800, + "AirdropPointDeactivateDistance": 50, + "MinPlayersCountToSpawnAirdrop": 6, + "UnsuccessfulTryPenalty": 600 + } + ], + "MatchMakerMinPlayersByWaitTime": [ + { + "time": 60, + "minPlayers": 7 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 120, + "minPlayers": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240211c5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211c5", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211c7", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbbe6ed31d686b240211c5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00304", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 180, + "minPlayers": 5 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 240, + "minPlayers": 4 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240211c9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211c9", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211cb", - "_tpl": "603619720ca681766b6a0fc4", - "parentId": "66cbbe6ed31d686b240211c9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211cd", - "_tpl": "5ab8f85d86f7745cd93a1cf5", - "parentId": "66cbbe6ed31d686b240211c9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00313", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 300, + "minPlayers": 3 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 360, + "minPlayers": 2 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240211cf", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211cf", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "time": 420, + "minPlayers": 1 + } + ], + "transits": [ + { + "id": 21, + "active": true, + "name": "LIG_TRANSIT_21", + "location": "Shoreline", + "description": "LIG_TRANSIT_21_DESC", + "activateAfterSec": 420, + "target": "5704e554d2720bac5b8b456e", + "time": 30, + "conditions": "LIG_TRANSIT_21_COND" + }, + { + "id": 22, + "active": false, + "name": "LIG_TRANSIT_22", + "location": "RezervBase", + "description": "LIG_TRANSIT_22_DESC", + "activateAfterSec": 420, + "target": "5704e5fad2720bc05b8b4567", + "time": 30, + "conditions": "LIG_TRANSIT_22_COND" + }, + { + "id": 23, + "active": false, + "name": "LIG_TRANSIT_23", + "location": "Woods", + "description": "LIG_TRANSIT_23_DESC", + "activateAfterSec": 420, + "target": "5704e3c2d2720bac5b8b4567", + "time": 30, + "conditions": "LIG_TRANSIT_23_COND" + } + ], + "Id": "Lighthouse", + "_Id": "5704e4dad2720bb55b8b4567", + "Loot": [ + { + "Id": "container_Lighthouse_DesignStuff_00053", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211d1", - "_tpl": "5b222d335acfc4771e1be099", - "parentId": "66cbbe6ed31d686b240211cf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211d3", - "_tpl": "5c3df7d588a4501f290594e5", - "parentId": "66cbbe6ed31d686b240211cf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021125", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021125", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 15 + { + "_id": "66cbbe6ed31d686b24021127", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66cbbe6ed31d686b24021125", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00323", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211d5", - "_tpl": "5cc9c20cd7f00c001336c65d", - "parentId": "66cbbe6ed31d686b240211cf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211d7", - "_tpl": "647dba3142c479dde701b654", - "parentId": "66cbbe6ed31d686b240211cf", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021129", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021129", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211d9", - "_tpl": "65169d5b30425317755f8e25", - "parentId": "66cbbe6ed31d686b240211cf", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240211db", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211db", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211dc", - "_tpl": "66015072e9f84d5680039678", - "parentId": "66cbbe6ed31d686b240211db", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402112b", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "66cbbe6ed31d686b24021129", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402112d", + "_tpl": "6699271b9950f5f4cd060299", + "parentId": "66cbbe6ed31d686b24021129", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbbe6ed31d686b2402112f", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66cbbe6ed31d686b24021129", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00141", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211dd", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "66cbbe6ed31d686b240211dc", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b240211de", - "_tpl": "6601546f86889319850bd566", - "parentId": "66cbbe6ed31d686b240211dd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211e0", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66cbbe6ed31d686b240211db", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021131", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021131", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021133", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbbe6ed31d686b24021131", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00140", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211e2", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "66cbbe6ed31d686b240211db", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211e4", - "_tpl": "5fd4c60f875c30179f5d04c2", - "parentId": "66cbbe6ed31d686b240211db", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021135", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021135", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021137", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbbe6ed31d686b24021135", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00139", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211e6", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbbe6ed31d686b240211db", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211e8", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbbe6ed31d686b240211db", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021139", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021139", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402113b", + "_tpl": "5c12620d86f7743f8b198b72", + "parentId": "66cbbe6ed31d686b24021139", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00221", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240211ea", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211ea", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211eb", - "_tpl": "5ab8e4ed86f7742d8e50c7fa", - "parentId": "66cbbe6ed31d686b240211ea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbbe6ed31d686b240211ec", - "_tpl": "657044e971369562b300ce9b", - "parentId": "66cbbe6ed31d686b240211eb", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbbe6ed31d686b240211ed", - "_tpl": "657045741bd9beedc40b7299", - "parentId": "66cbbe6ed31d686b240211eb", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbbe6ed31d686b240211ee", - "_tpl": "657045b97e80617cee095bda", - "parentId": "66cbbe6ed31d686b240211eb", - "slotId": "Soft_armor_left" + { + "Id": "container_Lighthouse_DesignStuff_00138", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211ef", - "_tpl": "6570460471369562b300ce9f", - "parentId": "66cbbe6ed31d686b240211eb", - "slotId": "soft_armor_right" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211f1", - "_tpl": "5c78f26f2e221601da3581d1", - "parentId": "66cbbe6ed31d686b240211ea", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402113d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402113d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240211f3", - "_tpl": "5a5f1ce64f39f90b401987bc", - "parentId": "66cbbe6ed31d686b240211ea", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402113f", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbbe6ed31d686b2402113d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00453", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240211f5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240211f5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00220", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211f7", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbbe6ed31d686b240211f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211f8", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66cbbe6ed31d686b240211f5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021141", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021141", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021143", + "_tpl": "5aa2ba46e5b5b000137b758d", + "parentId": "66cbbe6ed31d686b24021141", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00026", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211f9", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66cbbe6ed31d686b240211f8", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b240211fa", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66cbbe6ed31d686b240211f8", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b240211fb", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66cbbe6ed31d686b240211f8", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b240211fc", - "_tpl": "5736026a245977644601dc61", - "parentId": "66cbbe6ed31d686b240211fb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240211fe", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbbe6ed31d686b240211f5", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021145", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021145", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00214", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021200", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021200", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00025", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021202", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbbe6ed31d686b24021200", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00414", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021204", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021204", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021206", - "_tpl": "573718ba2459775a75491131", - "parentId": "66cbbe6ed31d686b24021204", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 27 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021147", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021147", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00042", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021208", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021208", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402120a", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66cbbe6ed31d686b24021208", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402120c", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbbe6ed31d686b24021208", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021149", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021149", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402114b", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbbe6ed31d686b24021149", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402120e", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbbe6ed31d686b24021208", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021210", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbbe6ed31d686b24021208", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402114d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402114d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402114f", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b2402114d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00501", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021212", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbbe6ed31d686b24021208", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021214", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbbe6ed31d686b24021208", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021151", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021151", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021216", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbbe6ed31d686b24021208", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021153", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbbe6ed31d686b24021151", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021155", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbbe6ed31d686b24021151", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00364", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021218", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021218", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00184", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402121a", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbbe6ed31d686b24021218", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402121c", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbbe6ed31d686b24021218", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021157", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021157", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402121e", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbbe6ed31d686b24021218", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021159", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbbe6ed31d686b24021157", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00432", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021220", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021220", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00342", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021222", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbbe6ed31d686b24021220", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021224", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbbe6ed31d686b24021220", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00153", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021226", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021226", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402115b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402115b", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402115d", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b2402115b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402115f", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbbe6ed31d686b2402115b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021161", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbbe6ed31d686b2402115b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00152", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021228", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021228", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00498", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402122a", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbbe6ed31d686b24021228", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00460", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402122c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402122c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402122e", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbbe6ed31d686b2402122c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021163", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021163", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021164", + "_tpl": "5ac66d725acfc43b321d4b60", + "parentId": "66cbbe6ed31d686b24021163", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b24021165", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbbe6ed31d686b24021164", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbbe6ed31d686b24021166", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbbe6ed31d686b24021165", + "slotId": "mod_handguard" + }, + { + "_id": "66cbbe6ed31d686b24021167", + "_tpl": "5ac72e895acfc43b321d4bd5", + "parentId": "66cbbe6ed31d686b24021164", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbbe6ed31d686b24021168", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbbe6ed31d686b24021164", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b24021169", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbbe6ed31d686b24021164", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b2402116a", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbbe6ed31d686b24021164", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b2402116b", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbbe6ed31d686b24021164", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b2402116c", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66cbbe6ed31d686b24021164", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b2402116d", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbbe6ed31d686b2402116c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021230", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021230", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00280", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021232", - "_tpl": "59e3647686f774176a362507", - "parentId": "66cbbe6ed31d686b24021230", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021234", - "_tpl": "5d1b39a386f774252339976f", - "parentId": "66cbbe6ed31d686b24021230", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402116f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402116f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021171", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbbe6ed31d686b2402116f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00113", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021236", - "_tpl": "5c6161fb2e221600113fbde5", - "parentId": "66cbbe6ed31d686b24021230", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021238", - "_tpl": "66a0d1e0ed648d72fe064d06", - "parentId": "66cbbe6ed31d686b24021230", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 17 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021173", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021173", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021175", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbbe6ed31d686b24021173", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021177", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbbe6ed31d686b24021173", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021179", + "_tpl": "5d1b371186f774253763a656", + "parentId": "66cbbe6ed31d686b24021173", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402117b", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b24021173", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402117d", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbbe6ed31d686b24021173", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00181", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402123a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402123a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00317", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402123c", - "_tpl": "5fd8d28367cb5e077335170f", - "parentId": "66cbbe6ed31d686b2402123a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00250", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402123e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402123e", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021241", - "_tpl": "6570259bc5d7d4cb4d07857f", - "parentId": "66cbbe6ed31d686b2402123e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402117f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402117f", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021180", + "_tpl": "5aa7d03ae5b5b00016327db5", + "parentId": "66cbbe6ed31d686b2402117f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b24021181", + "_tpl": "654a90aff4f81a421b0a7c86", + "parentId": "66cbbe6ed31d686b24021180", + "slotId": "helmet_top" + }, + { + "_id": "66cbbe6ed31d686b24021182", + "_tpl": "654a91068e1ce698150fd1e2", + "parentId": "66cbbe6ed31d686b24021180", + "slotId": "helmet_back" + }, + { + "_id": "66cbbe6ed31d686b24021183", + "_tpl": "654a9189bcc67a392b056c79", + "parentId": "66cbbe6ed31d686b24021180", + "slotId": "helmet_ears" + }, + { + "_id": "66cbbe6ed31d686b24021185", + "_tpl": "5a27b6bec4a282000e496f78", + "parentId": "66cbbe6ed31d686b2402117f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021187", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "parentId": "66cbbe6ed31d686b2402117f", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021189", + "_tpl": "5c05293e0db83400232fff80", + "parentId": "66cbbe6ed31d686b2402117f", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402118b", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "66cbbe6ed31d686b2402117f", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402118d", + "_tpl": "57da93632459771cb65bf83f", + "parentId": "66cbbe6ed31d686b2402117f", + "slotId": "main", + "location": { + "x": 4, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00415", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021242", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbbe6ed31d686b24021241", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021245", - "_tpl": "5739d41224597779c3645501", - "parentId": "66cbbe6ed31d686b2402123e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402118f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402118f", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021191", + "_tpl": "6389c6c7dbfd5e4b95197e68", + "parentId": "66cbbe6ed31d686b2402118f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021193", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbbe6ed31d686b2402118f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021195", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbbe6ed31d686b2402118f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00513", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021246", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbbe6ed31d686b24021245", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021248", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66cbbe6ed31d686b2402123e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 48 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021197", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021197", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021199", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbbe6ed31d686b24021197", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00247", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402124a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402124a", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00358", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402124d", - "_tpl": "65702640cfc010a0f5006a4d", - "parentId": "66cbbe6ed31d686b2402124a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402119b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402119b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402119d", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66cbbe6ed31d686b2402119b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402119f", + "_tpl": "5bd0716d86f774171822ef4b", + "parentId": "66cbbe6ed31d686b2402119b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00436", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402124e", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbbe6ed31d686b2402124d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021250", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbbe6ed31d686b2402124a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240211a1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211a1", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 4 - } - }, - { - "_id": "66cbbe6ed31d686b24021252", - "_tpl": "5a6086ea4f39f99cd479502f", - "parentId": "66cbbe6ed31d686b2402124a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 10 + { + "_id": "66cbbe6ed31d686b240211a3", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbbe6ed31d686b240211a1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211a5", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbbe6ed31d686b240211a1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211a7", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbbe6ed31d686b240211a1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00204", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021254", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021254", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00030", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021256", - "_tpl": "59db3a1d86f77429e05b4e92", - "parentId": "66cbbe6ed31d686b24021254", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021258", - "_tpl": "5c6beec32e221601da3578f2", - "parentId": "66cbbe6ed31d686b24021254", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240211a9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211a9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240211ab", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbbe6ed31d686b240211a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00029", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402125a", - "_tpl": "5ea034f65aad6446a939737e", - "parentId": "66cbbe6ed31d686b24021254", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240211ad", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211ad", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240211af", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbbe6ed31d686b240211ad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402125c", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbbe6ed31d686b24021254", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240211b1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211b1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00410", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402125e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402125e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021260", - "_tpl": "5e2aee0a86f774755a234b62", - "parentId": "66cbbe6ed31d686b2402125e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021262", - "_tpl": "619cbf476b8a1b37a54eebf8", - "parentId": "66cbbe6ed31d686b2402125e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240211b3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211b3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021264", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbbe6ed31d686b2402125e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240211b5", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbbe6ed31d686b240211b3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00264", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021266", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021266", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00448", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021268", - "_tpl": "5d1b317c86f7742523398392", - "parentId": "66cbbe6ed31d686b24021266", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402126a", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbbe6ed31d686b24021266", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240211b7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211b7", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402126c", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbbe6ed31d686b24021266", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240211b9", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbbe6ed31d686b240211b7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00340", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402126e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402126e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00353", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021270", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbbe6ed31d686b2402126e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021272", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66cbbe6ed31d686b2402126e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240211bb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211bb", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211bd", + "_tpl": "5c7e5f112e221600106f4ede", + "parentId": "66cbbe6ed31d686b240211bb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00137", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021274", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021274", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00420", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021276", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbbe6ed31d686b24021274", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00136", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021278", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021278", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00135", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402127a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402127a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402127c", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbbe6ed31d686b2402127a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240211bf", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211bf", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211c1", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b240211bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211c3", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b240211bf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00134", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402127e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402127e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00502", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021280", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbbe6ed31d686b2402127e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00337", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021282", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021282", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021284", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbbe6ed31d686b24021282", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240211c5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211c5", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211c7", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbbe6ed31d686b240211c5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00228", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021286", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021286", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00304", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021288", - "_tpl": "5d1c819a86f774771b0acd6c", - "parentId": "66cbbe6ed31d686b24021286", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00366", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402128a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402128a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402128c", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbbe6ed31d686b2402128a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240211c9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211c9", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402128e", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbbe6ed31d686b2402128a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240211cb", + "_tpl": "603619720ca681766b6a0fc4", + "parentId": "66cbbe6ed31d686b240211c9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021290", - "_tpl": "60098ad7c2240c0fe85c570a", - "parentId": "66cbbe6ed31d686b2402128a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240211cd", + "_tpl": "5ab8f85d86f7745cd93a1cf5", + "parentId": "66cbbe6ed31d686b240211c9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00271", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021292", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021292", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00313", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021294", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbbe6ed31d686b24021292", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021296", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbbe6ed31d686b24021292", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240211cf", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211cf", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021298", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbbe6ed31d686b24021292", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00485", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402129a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402129a", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402129c", - "_tpl": "62178be9d0050232da3485d9", - "parentId": "66cbbe6ed31d686b2402129a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240211d1", + "_tpl": "5b222d335acfc4771e1be099", + "parentId": "66cbbe6ed31d686b240211cf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402129e", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66cbbe6ed31d686b2402129a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240211d3", + "_tpl": "5c3df7d588a4501f290594e5", + "parentId": "66cbbe6ed31d686b240211cf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 15 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212a0", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "66cbbe6ed31d686b2402129a", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00519", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240212a2", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212a2", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212a3", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66cbbe6ed31d686b240212a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240211d5", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "66cbbe6ed31d686b240211cf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211d7", + "_tpl": "647dba3142c479dde701b654", + "parentId": "66cbbe6ed31d686b240211cf", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbbe6ed31d686b240211d9", + "_tpl": "65169d5b30425317755f8e25", + "parentId": "66cbbe6ed31d686b240211cf", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "Lootable_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212a4", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66cbbe6ed31d686b240212a3", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b240212a8", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbbe6ed31d686b240212a4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 - } - }, - { - "_id": "66cbbe6ed31d686b240212a5", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66cbbe6ed31d686b240212a3", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b240212a6", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66cbbe6ed31d686b240212a5", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b240212a7", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66cbbe6ed31d686b240212a3", - "slotId": "mod_pistolgrip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212aa", - "_tpl": "5ab8f39486f7745cd93a1cca", - "parentId": "66cbbe6ed31d686b240212a2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240211db", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211db", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212ac", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66cbbe6ed31d686b240212a2", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00413", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240212ae", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212ae", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212b0", - "_tpl": "5f0c892565703e5c461894e9", - "parentId": "66cbbe6ed31d686b240212ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240211dc", + "_tpl": "66015072e9f84d5680039678", + "parentId": "66cbbe6ed31d686b240211db", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212b2", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66cbbe6ed31d686b240212ae", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00275", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240212b4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212b4", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212b6", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b240212b4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240211dd", + "_tpl": "66015dc4aaad2f54cb04c56a", + "parentId": "66cbbe6ed31d686b240211dc", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212b8", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbbe6ed31d686b240212b4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00133", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240212ba", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212ba", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212bc", - "_tpl": "5a0dc95c86f77452440fc675", - "parentId": "66cbbe6ed31d686b240212ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00132", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240212be", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212be", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240211de", + "_tpl": "6601546f86889319850bd566", + "parentId": "66cbbe6ed31d686b240211dd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 + } + }, + { + "_id": "66cbbe6ed31d686b240211e0", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66cbbe6ed31d686b240211db", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211e2", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "66cbbe6ed31d686b240211db", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211e4", + "_tpl": "5fd4c60f875c30179f5d04c2", + "parentId": "66cbbe6ed31d686b240211db", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211e6", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbbe6ed31d686b240211db", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211e8", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbbe6ed31d686b240211db", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00131", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240212c0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212c0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00221", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212c2", - "_tpl": "5a13ef0686f7746e5a411744", - "parentId": "66cbbe6ed31d686b240212c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00130", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240212c4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212c4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00456", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240212c6", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212c6", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212c8", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbbe6ed31d686b240212c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240211ea", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211ea", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212ca", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbbe6ed31d686b240212c6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240211eb", + "_tpl": "5ab8e4ed86f7742d8e50c7fa", + "parentId": "66cbbe6ed31d686b240211ea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212cc", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b240212c6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240211ec", + "_tpl": "657044e971369562b300ce9b", + "parentId": "66cbbe6ed31d686b240211eb", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbbe6ed31d686b240211ed", + "_tpl": "657045741bd9beedc40b7299", + "parentId": "66cbbe6ed31d686b240211eb", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbbe6ed31d686b240211ee", + "_tpl": "657045b97e80617cee095bda", + "parentId": "66cbbe6ed31d686b240211eb", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbbe6ed31d686b240211ef", + "_tpl": "6570460471369562b300ce9f", + "parentId": "66cbbe6ed31d686b240211eb", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbbe6ed31d686b240211f1", + "_tpl": "5c78f26f2e221601da3581d1", + "parentId": "66cbbe6ed31d686b240211ea", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240211f3", + "_tpl": "5a5f1ce64f39f90b401987bc", + "parentId": "66cbbe6ed31d686b240211ea", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00229", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240212ce", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212ce", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00453", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212d0", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "66cbbe6ed31d686b240212ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00357", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240212d2", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212d2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212d4", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b240212d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240211f5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240211f5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212d6", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbbe6ed31d686b240212d2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240211f7", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbbe6ed31d686b240211f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212d8", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbbe6ed31d686b240212d2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240212da", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212da", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212dc", - "_tpl": "5c7fc87d2e221644f31c0298", - "parentId": "66cbbe6ed31d686b240212da", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240211f8", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66cbbe6ed31d686b240211f5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212dd", - "_tpl": "5fb64bc92b1b027b1f50bcf2", - "parentId": "66cbbe6ed31d686b240212da", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240211f9", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66cbbe6ed31d686b240211f8", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b240211fa", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66cbbe6ed31d686b240211f8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b240211fb", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66cbbe6ed31d686b240211f8", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b240211fc", + "_tpl": "5736026a245977644601dc61", + "parentId": "66cbbe6ed31d686b240211fb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } }, - "upd": { - "Foldable": { - "Folded": false + { + "_id": "66cbbe6ed31d686b240211fe", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbbe6ed31d686b240211f5", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00214", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212de", - "_tpl": "5fb651b52b1b027b1f50bcff", - "parentId": "66cbbe6ed31d686b240212dd", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212e7", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbbe6ed31d686b240212de", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021200", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021200", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021202", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbbe6ed31d686b24021200", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00414", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212df", - "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "66cbbe6ed31d686b240212dd", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbbe6ed31d686b240212e0", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "66cbbe6ed31d686b240212dd", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b240212e1", - "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "66cbbe6ed31d686b240212dd", - "slotId": "mod_stock" - }, - { - "_id": "66cbbe6ed31d686b240212e2", - "_tpl": "5fb65363d1409e5ca04b54f5", - "parentId": "66cbbe6ed31d686b240212dd", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b240212e3", - "_tpl": "5fb6548dd1409e5ca04b54f9", - "parentId": "66cbbe6ed31d686b240212e2", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbbe6ed31d686b240212e4", - "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "66cbbe6ed31d686b240212dd", - "slotId": "mod_mount" - }, - { - "_id": "66cbbe6ed31d686b240212e5", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "66cbbe6ed31d686b240212dd", - "slotId": "mod_mount_001" - }, - { - "_id": "66cbbe6ed31d686b240212e6", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "66cbbe6ed31d686b240212dd", - "slotId": "mod_mount_002" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212e9", - "_tpl": "5bffe7c50db834001d23ece1", - "parentId": "66cbbe6ed31d686b240212da", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021204", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021204", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021206", + "_tpl": "573718ba2459775a75491131", + "parentId": "66cbbe6ed31d686b24021204", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 27 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00042", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212eb", - "_tpl": "5cadd954ae921500103bb3c2", - "parentId": "66cbbe6ed31d686b240212da", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212ed", - "_tpl": "544a37c44bdc2d25388b4567", - "parentId": "66cbbe6ed31d686b240212da", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021208", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021208", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212ef", - "_tpl": "5b46238386f7741a693bcf9c", - "parentId": "66cbbe6ed31d686b240212da", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402120a", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66cbbe6ed31d686b24021208", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402120c", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbbe6ed31d686b24021208", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402120e", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbbe6ed31d686b24021208", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021210", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbbe6ed31d686b24021208", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021212", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbbe6ed31d686b24021208", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021214", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbbe6ed31d686b24021208", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021216", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbbe6ed31d686b24021208", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240212f1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212f1", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00364", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212f3", - "_tpl": "5649af884bdc2d1b2b8b4589", - "parentId": "66cbbe6ed31d686b240212f1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212f5", - "_tpl": "57c55efc2459772d2c6271e7", - "parentId": "66cbbe6ed31d686b240212f1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021218", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021218", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212f7", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66cbbe6ed31d686b240212f1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402121a", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbbe6ed31d686b24021218", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240212f9", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "66cbbe6ed31d686b240212f1", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402121c", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbbe6ed31d686b24021218", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402121e", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbbe6ed31d686b24021218", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00432", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212fb", - "_tpl": "5ef366938cef260c0642acad", - "parentId": "66cbbe6ed31d686b240212f1", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021220", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021220", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021222", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbbe6ed31d686b24021220", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021224", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbbe6ed31d686b24021220", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00153", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240212fd", - "_tpl": "5aa2b89be5b5b0001569311f", - "parentId": "66cbbe6ed31d686b240212f1", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021226", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021226", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00512", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240212ff", - "Items": [ - { - "_id": "66cbbe6ed31d686b240212ff", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00152", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021301", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbbe6ed31d686b240212ff", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021303", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbbe6ed31d686b240212ff", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021228", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021228", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021305", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbbe6ed31d686b240212ff", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402122a", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbbe6ed31d686b24021228", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00188", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021307", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021307", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00460", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021309", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbbe6ed31d686b24021307", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402130b", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b24021307", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402122c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402122c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402122e", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbbe6ed31d686b2402122c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00500", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402130d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402130d", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402130f", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbbe6ed31d686b2402130d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021311", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbbe6ed31d686b2402130d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021230", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021230", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021313", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b2402130d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00112", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021315", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021315", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00111", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021317", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021317", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021232", + "_tpl": "59e3647686f774176a362507", + "parentId": "66cbbe6ed31d686b24021230", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021234", + "_tpl": "5d1b39a386f774252339976f", + "parentId": "66cbbe6ed31d686b24021230", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021236", + "_tpl": "5c6161fb2e221600113fbde5", + "parentId": "66cbbe6ed31d686b24021230", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021238", + "_tpl": "66a0d1e0ed648d72fe064d06", + "parentId": "66cbbe6ed31d686b24021230", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 17 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021319", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021319", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00181", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402131b", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbbe6ed31d686b24021319", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00109", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402131d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402131d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00190", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402131f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402131f", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021321", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbbe6ed31d686b2402131f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402123a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402123a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021323", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b2402131f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402123c", + "_tpl": "5fd8d28367cb5e077335170f", + "parentId": "66cbbe6ed31d686b2402123a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00198", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021325", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021325", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00250", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021327", - "_tpl": "6621455e3aceea9e2b0b01e7", - "parentId": "66cbbe6ed31d686b24021325", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021329", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbbe6ed31d686b24021325", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402123e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402123e", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402132b", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66cbbe6ed31d686b24021325", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 16 + { + "_id": "66cbbe6ed31d686b24021241", + "_tpl": "6570259bc5d7d4cb4d07857f", + "parentId": "66cbbe6ed31d686b2402123e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021242", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbbe6ed31d686b24021241", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbbe6ed31d686b24021245", + "_tpl": "5739d41224597779c3645501", + "parentId": "66cbbe6ed31d686b2402123e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021246", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbbe6ed31d686b24021245", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbbe6ed31d686b24021248", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66cbbe6ed31d686b2402123e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 48 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00093", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402132d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402132d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00247", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402132f", - "_tpl": "5d1c819a86f774771b0acd6c", - "parentId": "66cbbe6ed31d686b2402132d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00369", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021331", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021331", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021333", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66cbbe6ed31d686b24021331", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402124a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402124a", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021335", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbbe6ed31d686b24021331", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402124d", + "_tpl": "65702640cfc010a0f5006a4d", + "parentId": "66cbbe6ed31d686b2402124a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021337", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbbe6ed31d686b24021331", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402124e", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbbe6ed31d686b2402124d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbbe6ed31d686b24021250", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbbe6ed31d686b2402124a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 4 + } + }, + { + "_id": "66cbbe6ed31d686b24021252", + "_tpl": "5a6086ea4f39f99cd479502f", + "parentId": "66cbbe6ed31d686b2402124a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00062", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021339", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021339", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00204", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402133b", - "_tpl": "57347baf24597738002c6178", - "parentId": "66cbbe6ed31d686b24021339", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00518", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402133d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402133d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402133f", - "_tpl": "5d4042a986f7743185265463", - "parentId": "66cbbe6ed31d686b2402133d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021254", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021254", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021341", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbbe6ed31d686b2402133d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021256", + "_tpl": "59db3a1d86f77429e05b4e92", + "parentId": "66cbbe6ed31d686b24021254", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021258", + "_tpl": "5c6beec32e221601da3578f2", + "parentId": "66cbbe6ed31d686b24021254", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402125a", + "_tpl": "5ea034f65aad6446a939737e", + "parentId": "66cbbe6ed31d686b24021254", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402125c", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbbe6ed31d686b24021254", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00254", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021343", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021343", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00410", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021345", - "_tpl": "62a09dd4621468534a797ac7", - "parentId": "66cbbe6ed31d686b24021343", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402125e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402125e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021260", + "_tpl": "5e2aee0a86f774755a234b62", + "parentId": "66cbbe6ed31d686b2402125e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021262", + "_tpl": "619cbf476b8a1b37a54eebf8", + "parentId": "66cbbe6ed31d686b2402125e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021264", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbbe6ed31d686b2402125e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00264", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021347", - "_tpl": "5bc9c377d4351e3bac12251b", - "parentId": "66cbbe6ed31d686b24021343", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021266", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021266", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021268", + "_tpl": "5d1b317c86f7742523398392", + "parentId": "66cbbe6ed31d686b24021266", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402126a", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbbe6ed31d686b24021266", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402126c", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbbe6ed31d686b24021266", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00340", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021348", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66cbbe6ed31d686b24021343", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402126e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402126e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021270", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbbe6ed31d686b2402126e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbbe6ed31d686b24021272", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66cbbe6ed31d686b2402126e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00137", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021349", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66cbbe6ed31d686b24021348", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402134d", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbbe6ed31d686b24021349", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021274", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021274", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021276", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbbe6ed31d686b24021274", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00136", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402134a", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66cbbe6ed31d686b24021348", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b2402134b", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66cbbe6ed31d686b2402134a", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402134c", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66cbbe6ed31d686b24021348", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00067", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402134f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402134f", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021278", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021278", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00135", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021351", - "_tpl": "5d0a3a58d7ad1a669c15ca14", - "parentId": "66cbbe6ed31d686b2402134f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021353", - "_tpl": "661e52b5b099f32c28003586", - "parentId": "66cbbe6ed31d686b2402134f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402127a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402127a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402127c", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbbe6ed31d686b2402127a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00134", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021355", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbbe6ed31d686b2402134f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402127e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402127e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 50 + { + "_id": "66cbbe6ed31d686b24021280", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbbe6ed31d686b2402127e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00337", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021357", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbbe6ed31d686b2402134f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021282", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021282", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021284", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbbe6ed31d686b24021282", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00228", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021358", - "_tpl": "5e81c3cbac2bb513793cdc75", - "parentId": "66cbbe6ed31d686b2402134f", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021286", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021286", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbbe6ed31d686b24021288", + "_tpl": "5d1c819a86f774771b0acd6c", + "parentId": "66cbbe6ed31d686b24021286", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00366", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021359", - "_tpl": "5e81c519cb2b95385c177551", - "parentId": "66cbbe6ed31d686b24021358", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402135a", - "_tpl": "5e81c6bf763d9f754677beff", - "parentId": "66cbbe6ed31d686b24021358", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b2402135b", - "_tpl": "5e81edc13397a21db957f6a1", - "parentId": "66cbbe6ed31d686b24021358", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b2402135c", - "_tpl": "5e81ee4dcb2b95385c177582", - "parentId": "66cbbe6ed31d686b2402135b", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b2402135d", - "_tpl": "5e81ee213397a21db957f6a6", - "parentId": "66cbbe6ed31d686b2402135b", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbbe6ed31d686b2402135e", - "_tpl": "5e81c4ca763d9f754677befa", - "parentId": "66cbbe6ed31d686b24021358", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021362", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbbe6ed31d686b2402135e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402128a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402128a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402128c", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbbe6ed31d686b2402128a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402128e", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbbe6ed31d686b2402128a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021290", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "66cbbe6ed31d686b2402128a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00271", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402135f", - "_tpl": "5e81c6a2ac2bb513793cdc7f", - "parentId": "66cbbe6ed31d686b24021358", - "slotId": "mod_trigger" - }, - { - "_id": "66cbbe6ed31d686b24021360", - "_tpl": "5e81c550763d9f754677befd", - "parentId": "66cbbe6ed31d686b24021358", - "slotId": "mod_hammer" - }, - { - "_id": "66cbbe6ed31d686b24021361", - "_tpl": "5e81c539cb2b95385c177553", - "parentId": "66cbbe6ed31d686b24021358", - "slotId": "mod_catch" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021364", - "_tpl": "634f06262e5def262d0b30ca", - "parentId": "66cbbe6ed31d686b2402134f", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021292", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021292", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021366", - "_tpl": "609269c3b0e443224b421cc1", - "parentId": "66cbbe6ed31d686b2402134f", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021294", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbbe6ed31d686b24021292", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021368", - "_tpl": "5bae13ded4351e44f824bf38", - "parentId": "66cbbe6ed31d686b2402134f", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021296", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbbe6ed31d686b24021292", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021298", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbbe6ed31d686b24021292", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00349", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402136a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402136a", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00485", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402136c", - "_tpl": "5bfd36290db834001966869a", - "parentId": "66cbbe6ed31d686b2402136a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402136e", - "_tpl": "5d1f819086f7744b355c219b", - "parentId": "66cbbe6ed31d686b2402136a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402129a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402129a", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021370", - "_tpl": "57fd23e32459772d0805bcf1", - "parentId": "66cbbe6ed31d686b2402136a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402129c", + "_tpl": "62178be9d0050232da3485d9", + "parentId": "66cbbe6ed31d686b2402129a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402129e", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66cbbe6ed31d686b2402129a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212a0", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "66cbbe6ed31d686b2402129a", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00510", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021372", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021372", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00519", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021374", - "_tpl": "59e366c186f7741778269d85", - "parentId": "66cbbe6ed31d686b24021372", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021376", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbbe6ed31d686b24021372", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240212a2", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212a2", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021378", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b24021372", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240212a3", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66cbbe6ed31d686b240212a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbbe6ed31d686b240212a4", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66cbbe6ed31d686b240212a3", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b240212a8", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbbe6ed31d686b240212a4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbbe6ed31d686b240212a5", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66cbbe6ed31d686b240212a3", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b240212a6", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66cbbe6ed31d686b240212a5", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b240212a7", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66cbbe6ed31d686b240212a3", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbbe6ed31d686b240212aa", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "66cbbe6ed31d686b240212a2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212ac", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66cbbe6ed31d686b240212a2", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402137a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402137a", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00413", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402137c", - "_tpl": "5ef366938cef260c0642acad", - "parentId": "66cbbe6ed31d686b2402137a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402137e", - "_tpl": "668032ba74b8f2050c0b917d", - "parentId": "66cbbe6ed31d686b2402137a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240212ae", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212ae", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021380", - "_tpl": "5aaf8a0be5b5b00015693243", - "parentId": "66cbbe6ed31d686b2402137a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240212b0", + "_tpl": "5f0c892565703e5c461894e9", + "parentId": "66cbbe6ed31d686b240212ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212b2", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66cbbe6ed31d686b240212ae", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00320", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021382", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021382", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00275", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021384", - "_tpl": "5d6d2ef3a4b93618084f58bd", - "parentId": "66cbbe6ed31d686b24021382", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021386", - "_tpl": "5f6340d3ca442212f4047eb2", - "parentId": "66cbbe6ed31d686b24021382", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240212b4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212b4", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212b6", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b240212b4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212b8", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbbe6ed31d686b240212b4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00192", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021388", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021388", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00133", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402138a", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbbe6ed31d686b24021388", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00197", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402138c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402138c", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402138e", - "_tpl": "64b8f7b5389d7ffd620ccba2", - "parentId": "66cbbe6ed31d686b2402138c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240212ba", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212ba", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 18 + { + "_id": "66cbbe6ed31d686b240212bc", + "_tpl": "5a0dc95c86f77452440fc675", + "parentId": "66cbbe6ed31d686b240212ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00132", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021390", - "_tpl": "55d48a634bdc2d8b2f8b456a", - "parentId": "66cbbe6ed31d686b2402138c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021392", - "_tpl": "572b7d8524597762b472f9d1", - "parentId": "66cbbe6ed31d686b2402138c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240212be", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212be", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00131", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021394", - "_tpl": "5c17664f2e2216398b5a7e3c", - "parentId": "66cbbe6ed31d686b2402138c", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021396", - "_tpl": "5d123102d7ad1a004e475fe5", - "parentId": "66cbbe6ed31d686b2402138c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240212c0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212c0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240212c2", + "_tpl": "5a13ef0686f7746e5a411744", + "parentId": "66cbbe6ed31d686b240212c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00130", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021398", - "_tpl": "5f3e7801153b8571434a924c", - "parentId": "66cbbe6ed31d686b2402138c", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021399", - "_tpl": "66b5f661af44ca0014063c05", - "parentId": "66cbbe6ed31d686b2402138c", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240212c4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212c4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00456", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402139a", - "_tpl": "66b61cfae98be930d701c029", - "parentId": "66cbbe6ed31d686b24021399", - "slotId": "Helmet_top" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402139b", - "_tpl": "66b61ce0c5d72b027748867e", - "parentId": "66cbbe6ed31d686b24021399", - "slotId": "Helmet_back" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00288", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402139d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402139d", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402139f", - "_tpl": "57347baf24597738002c6178", - "parentId": "66cbbe6ed31d686b2402139d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240212c6", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212c6", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212c8", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbbe6ed31d686b240212c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212ca", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbbe6ed31d686b240212c6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240212cc", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b240212c6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00229", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213a1", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbbe6ed31d686b2402139d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240212ce", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212ce", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212d0", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "66cbbe6ed31d686b240212ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00125", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213a3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213a3", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00357", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213a5", - "_tpl": "6571bde39837cc51b800c212", - "parentId": "66cbbe6ed31d686b240213a3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240212d2", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212d2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212d4", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b240212d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212d6", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbbe6ed31d686b240212d2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212d8", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbbe6ed31d686b240212d2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00425", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213a7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213a7", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213a9", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbbe6ed31d686b240213a7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240212da", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212da", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212dc", + "_tpl": "5c7fc87d2e221644f31c0298", + "parentId": "66cbbe6ed31d686b240212da", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212dd", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "parentId": "66cbbe6ed31d686b240212da", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbbe6ed31d686b240212de", + "_tpl": "5fb651b52b1b027b1f50bcff", + "parentId": "66cbbe6ed31d686b240212dd", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b240212e7", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbbe6ed31d686b240212de", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } + }, + { + "_id": "66cbbe6ed31d686b240212df", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "66cbbe6ed31d686b240212dd", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbbe6ed31d686b240212e0", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "66cbbe6ed31d686b240212dd", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b240212e1", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "66cbbe6ed31d686b240212dd", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b240212e2", + "_tpl": "5fb65363d1409e5ca04b54f5", + "parentId": "66cbbe6ed31d686b240212dd", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b240212e3", + "_tpl": "5fb6548dd1409e5ca04b54f9", + "parentId": "66cbbe6ed31d686b240212e2", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbbe6ed31d686b240212e4", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "66cbbe6ed31d686b240212dd", + "slotId": "mod_mount" + }, + { + "_id": "66cbbe6ed31d686b240212e5", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "66cbbe6ed31d686b240212dd", + "slotId": "mod_mount_001" + }, + { + "_id": "66cbbe6ed31d686b240212e6", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "66cbbe6ed31d686b240212dd", + "slotId": "mod_mount_002" + }, + { + "_id": "66cbbe6ed31d686b240212e9", + "_tpl": "5bffe7c50db834001d23ece1", + "parentId": "66cbbe6ed31d686b240212da", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212eb", + "_tpl": "5cadd954ae921500103bb3c2", + "parentId": "66cbbe6ed31d686b240212da", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212ed", + "_tpl": "544a37c44bdc2d25388b4567", + "parentId": "66cbbe6ed31d686b240212da", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212ef", + "_tpl": "5b46238386f7741a693bcf9c", + "parentId": "66cbbe6ed31d686b240212da", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00326", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213ab", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213ab", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213ad", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbbe6ed31d686b240213ab", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240212f1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212f1", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212f3", + "_tpl": "5649af884bdc2d1b2b8b4589", + "parentId": "66cbbe6ed31d686b240212f1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212f5", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "66cbbe6ed31d686b240212f1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212f7", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66cbbe6ed31d686b240212f1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212f9", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "66cbbe6ed31d686b240212f1", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240212fb", + "_tpl": "5ef366938cef260c0642acad", + "parentId": "66cbbe6ed31d686b240212f1", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240212fd", + "_tpl": "5aa2b89be5b5b0001569311f", + "parentId": "66cbbe6ed31d686b240212f1", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00512", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213af", - "_tpl": "5751435d24597720a27126d1", - "parentId": "66cbbe6ed31d686b240213ab", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240212ff", + "Items": [ + { + "_id": "66cbbe6ed31d686b240212ff", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021301", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbbe6ed31d686b240212ff", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021303", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbbe6ed31d686b240212ff", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021305", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbbe6ed31d686b240212ff", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00188", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213b1", - "_tpl": "62a091170b9d3c46de5b6cf2", - "parentId": "66cbbe6ed31d686b240213ab", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021307", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021307", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021309", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbbe6ed31d686b24021307", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402130b", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b24021307", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00368", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213b3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213b3", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00500", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213b5", - "_tpl": "59e358a886f7741776641ac3", - "parentId": "66cbbe6ed31d686b240213b3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402130d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402130d", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402130f", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbbe6ed31d686b2402130d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021311", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbbe6ed31d686b2402130d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021313", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b2402130d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00112", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213b7", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbbe6ed31d686b240213b3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021315", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021315", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00343", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213b9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213b9", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00111", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213bb", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbbe6ed31d686b240213b9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 17 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021317", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021317", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213bd", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213bd", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213bf", - "_tpl": "5c4eec9b2e2216398b5aaba2", - "parentId": "66cbbe6ed31d686b240213bd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213c1", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbbe6ed31d686b240213bd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021319", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021319", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240213c3", - "_tpl": "56ea8222d2720b69698b4567", - "parentId": "66cbbe6ed31d686b240213bd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213c5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213c5", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240213c7", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbbe6ed31d686b240213c5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402131b", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbbe6ed31d686b24021319", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00330", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213c9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213c9", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00109", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213cb", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbbe6ed31d686b240213c9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213cd", - "_tpl": "60098b1705871270cd5352a1", - "parentId": "66cbbe6ed31d686b240213c9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402131d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402131d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00276", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213cf", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213cf", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00190", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213d1", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbbe6ed31d686b240213cf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213d3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213d3", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213d5", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbbe6ed31d686b240213d3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402131f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402131f", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240213d7", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbbe6ed31d686b240213d3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021321", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbbe6ed31d686b2402131f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240213d9", - "_tpl": "62a0a043cf4a99369e2624a5", - "parentId": "66cbbe6ed31d686b240213d3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021323", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b2402131f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00395", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213db", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213db", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00198", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213dd", - "_tpl": "5b432c305acfc40019478128", - "parentId": "66cbbe6ed31d686b240213db", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213df", - "_tpl": "5e8f3423fd7471236e6e3b64", - "parentId": "66cbbe6ed31d686b240213db", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021325", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021325", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240213e1", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbbe6ed31d686b240213db", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021327", + "_tpl": "6621455e3aceea9e2b0b01e7", + "parentId": "66cbbe6ed31d686b24021325", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240213e3", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbbe6ed31d686b240213db", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021329", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbbe6ed31d686b24021325", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402132b", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66cbbe6ed31d686b24021325", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00226", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213e5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213e5", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00093", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213e7", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbbe6ed31d686b240213e5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00397", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213e9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213e9", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213eb", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66cbbe6ed31d686b240213e9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402132d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402132d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402132f", + "_tpl": "5d1c819a86f774771b0acd6c", + "parentId": "66cbbe6ed31d686b2402132d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00269", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213ed", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213ed", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00369", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213ef", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbbe6ed31d686b240213ed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213f1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213f1", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213f3", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbbe6ed31d686b240213f1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021331", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021331", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021333", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66cbbe6ed31d686b24021331", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021335", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbbe6ed31d686b24021331", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021337", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbbe6ed31d686b24021331", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00396", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213f5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213f5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00062", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213f7", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbbe6ed31d686b240213f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00232", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240213f9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240213f9", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213fb", - "_tpl": "59d625f086f774661516605d", - "parentId": "66cbbe6ed31d686b240213f9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021339", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021339", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402133b", + "_tpl": "57347baf24597738002c6178", + "parentId": "66cbbe6ed31d686b24021339", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00518", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213fd", - "_tpl": "5c7951452e221644f31bfd5c", - "parentId": "66cbbe6ed31d686b240213f9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240213ff", - "_tpl": "5b7be46e5acfc400170e2dcf", - "parentId": "66cbbe6ed31d686b240213f9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402133d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402133d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402133f", + "_tpl": "5d4042a986f7743185265463", + "parentId": "66cbbe6ed31d686b2402133d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021341", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbbe6ed31d686b2402133d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00191", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021401", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021401", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00254", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021403", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbbe6ed31d686b24021401", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00222", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021405", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021405", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021407", - "_tpl": "5ede4739e0350d05467f73e8", - "parentId": "66cbbe6ed31d686b24021405", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021343", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021343", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021345", + "_tpl": "62a09dd4621468534a797ac7", + "parentId": "66cbbe6ed31d686b24021343", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021347", + "_tpl": "5bc9c377d4351e3bac12251b", + "parentId": "66cbbe6ed31d686b24021343", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021348", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66cbbe6ed31d686b24021343", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbbe6ed31d686b24021349", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66cbbe6ed31d686b24021348", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b2402134d", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbbe6ed31d686b24021349", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } + }, + { + "_id": "66cbbe6ed31d686b2402134a", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66cbbe6ed31d686b24021348", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b2402134b", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66cbbe6ed31d686b2402134a", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b2402134c", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66cbbe6ed31d686b24021348", + "slotId": "mod_pistolgrip" } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00238", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021409", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021409", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402140a", - "_tpl": "5ac4cd105acfc40016339859", - "parentId": "66cbbe6ed31d686b24021409", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbbe6ed31d686b2402140b", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbbe6ed31d686b2402140a", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbbe6ed31d686b2402140c", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbbe6ed31d686b2402140b", - "slotId": "mod_handguard" - }, - { - "_id": "66cbbe6ed31d686b2402140d", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "66cbbe6ed31d686b2402140a", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbbe6ed31d686b2402140e", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbbe6ed31d686b2402140a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b2402140f", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbbe6ed31d686b2402140a", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b24021410", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "66cbbe6ed31d686b2402140a", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b24021411", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbbe6ed31d686b2402140a", - "slotId": "mod_stock" + { + "Id": "container_Lighthouse_DesignStuff_00067", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021412", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbbe6ed31d686b2402140a", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021413", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbbe6ed31d686b24021412", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 22.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402134f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402134f", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021351", + "_tpl": "5d0a3a58d7ad1a669c15ca14", + "parentId": "66cbbe6ed31d686b2402134f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021353", + "_tpl": "661e52b5b099f32c28003586", + "parentId": "66cbbe6ed31d686b2402134f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021355", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbbe6ed31d686b2402134f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbbe6ed31d686b24021357", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbbe6ed31d686b2402134f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021358", + "_tpl": "5e81c3cbac2bb513793cdc75", + "parentId": "66cbbe6ed31d686b2402134f", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbbe6ed31d686b24021359", + "_tpl": "5e81c519cb2b95385c177551", + "parentId": "66cbbe6ed31d686b24021358", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b2402135a", + "_tpl": "5e81c6bf763d9f754677beff", + "parentId": "66cbbe6ed31d686b24021358", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b2402135b", + "_tpl": "5e81edc13397a21db957f6a1", + "parentId": "66cbbe6ed31d686b24021358", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b2402135c", + "_tpl": "5e81ee4dcb2b95385c177582", + "parentId": "66cbbe6ed31d686b2402135b", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b2402135d", + "_tpl": "5e81ee213397a21db957f6a6", + "parentId": "66cbbe6ed31d686b2402135b", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbbe6ed31d686b2402135e", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "66cbbe6ed31d686b24021358", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021362", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbbe6ed31d686b2402135e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } + }, + { + "_id": "66cbbe6ed31d686b2402135f", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "parentId": "66cbbe6ed31d686b24021358", + "slotId": "mod_trigger" + }, + { + "_id": "66cbbe6ed31d686b24021360", + "_tpl": "5e81c550763d9f754677befd", + "parentId": "66cbbe6ed31d686b24021358", + "slotId": "mod_hammer" + }, + { + "_id": "66cbbe6ed31d686b24021361", + "_tpl": "5e81c539cb2b95385c177553", + "parentId": "66cbbe6ed31d686b24021358", + "slotId": "mod_catch" + }, + { + "_id": "66cbbe6ed31d686b24021364", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "66cbbe6ed31d686b2402134f", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021366", + "_tpl": "609269c3b0e443224b421cc1", + "parentId": "66cbbe6ed31d686b2402134f", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021368", + "_tpl": "5bae13ded4351e44f824bf38", + "parentId": "66cbbe6ed31d686b2402134f", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00095", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021415", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021415", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00349", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021417", - "_tpl": "66b37eb4acff495a29492407", - "parentId": "66cbbe6ed31d686b24021415", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00350", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021419", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021419", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402141b", - "_tpl": "609b9e31506cf869cf3eaf41", - "parentId": "66cbbe6ed31d686b24021419", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402136a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402136a", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402136c", + "_tpl": "5bfd36290db834001966869a", + "parentId": "66cbbe6ed31d686b2402136a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402136e", + "_tpl": "5d1f819086f7744b355c219b", + "parentId": "66cbbe6ed31d686b2402136a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021370", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "66cbbe6ed31d686b2402136a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00496", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402141d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402141d", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00510", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402141f", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbbe6ed31d686b2402141d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021421", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbbe6ed31d686b2402141d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021372", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021372", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021423", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66cbbe6ed31d686b2402141d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021374", + "_tpl": "59e366c186f7741778269d85", + "parentId": "66cbbe6ed31d686b24021372", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021425", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbbe6ed31d686b2402141d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021376", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbbe6ed31d686b24021372", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021378", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b24021372", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021427", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbbe6ed31d686b2402141d", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021429", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbbe6ed31d686b2402141d", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402137a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402137a", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402142b", - "_tpl": "5448fee04bdc2dbc018b4567", - "parentId": "66cbbe6ed31d686b2402141d", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402137c", + "_tpl": "5ef366938cef260c0642acad", + "parentId": "66cbbe6ed31d686b2402137a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402137e", + "_tpl": "668032ba74b8f2050c0b917d", + "parentId": "66cbbe6ed31d686b2402137a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021380", + "_tpl": "5aaf8a0be5b5b00015693243", + "parentId": "66cbbe6ed31d686b2402137a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00320", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402142d", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66cbbe6ed31d686b2402141d", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021382", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021382", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021384", + "_tpl": "5d6d2ef3a4b93618084f58bd", + "parentId": "66cbbe6ed31d686b24021382", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021386", + "_tpl": "5f6340d3ca442212f4047eb2", + "parentId": "66cbbe6ed31d686b24021382", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00483", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402142f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402142f", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00192", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021431", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbbe6ed31d686b2402142f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021388", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021388", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402138a", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbbe6ed31d686b24021388", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00419", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021433", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021433", - "_tpl": "61aa1e9a32a4743c3453d2cf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00197", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021435", - "_tpl": "5b4326435acfc433000ed01d", - "parentId": "66cbbe6ed31d686b24021433", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00499", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021437", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021437", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021439", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b24021437", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402138c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402138c", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402143b", - "_tpl": "619cbfccbedcde2f5b3f7bdd", - "parentId": "66cbbe6ed31d686b24021437", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402138e", + "_tpl": "64b8f7b5389d7ffd620ccba2", + "parentId": "66cbbe6ed31d686b2402138c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 18 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402143d", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbbe6ed31d686b24021437", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021390", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "parentId": "66cbbe6ed31d686b2402138c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021392", + "_tpl": "572b7d8524597762b472f9d1", + "parentId": "66cbbe6ed31d686b2402138c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021394", + "_tpl": "5c17664f2e2216398b5a7e3c", + "parentId": "66cbbe6ed31d686b2402138c", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021396", + "_tpl": "5d123102d7ad1a004e475fe5", + "parentId": "66cbbe6ed31d686b2402138c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021398", + "_tpl": "5f3e7801153b8571434a924c", + "parentId": "66cbbe6ed31d686b2402138c", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021399", + "_tpl": "66b5f661af44ca0014063c05", + "parentId": "66cbbe6ed31d686b2402138c", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b2402139a", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "66cbbe6ed31d686b24021399", + "slotId": "Helmet_top" + }, + { + "_id": "66cbbe6ed31d686b2402139b", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "66cbbe6ed31d686b24021399", + "slotId": "Helmet_back" } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00391", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402143f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402143f", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00288", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021441", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbbe6ed31d686b2402143f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00377", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021443", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021443", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021445", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbbe6ed31d686b24021443", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402139d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402139d", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021447", - "_tpl": "5ede475b549eed7c6d5c18fb", - "parentId": "66cbbe6ed31d686b24021443", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402139f", + "_tpl": "57347baf24597738002c6178", + "parentId": "66cbbe6ed31d686b2402139d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213a1", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbbe6ed31d686b2402139d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00178", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021449", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021449", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00125", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402144b", - "_tpl": "5e2af37686f774755a234b65", - "parentId": "66cbbe6ed31d686b24021449", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Test_for_export_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402144d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402144d", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402144f", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbbe6ed31d686b2402144d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213a3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213a3", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021451", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbbe6ed31d686b2402144d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240213a5", + "_tpl": "6571bde39837cc51b800c212", + "parentId": "66cbbe6ed31d686b240213a3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00121", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021453", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021453", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00425", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021455", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbbe6ed31d686b24021453", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021457", - "_tpl": "66b37f114410565a8f6789e2", - "parentId": "66cbbe6ed31d686b24021453", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213a7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213a7", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213a9", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbbe6ed31d686b240213a7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00299", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021459", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021459", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402145a", - "_tpl": "59f98b4986f7746f546d2cef", - "parentId": "66cbbe6ed31d686b24021459", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbbe6ed31d686b2402145b", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "66cbbe6ed31d686b2402145a", - "slotId": "mod_magazine" + { + "Id": "container_Lighthouse_DesignStuff_00326", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402145c", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbbe6ed31d686b2402145b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402145e", - "_tpl": "623c2f652febb22c2777d8d7", - "parentId": "66cbbe6ed31d686b24021459", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213ab", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213ab", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213ad", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbbe6ed31d686b240213ab", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213af", + "_tpl": "5751435d24597720a27126d1", + "parentId": "66cbbe6ed31d686b240213ab", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213b1", + "_tpl": "62a091170b9d3c46de5b6cf2", + "parentId": "66cbbe6ed31d686b240213ab", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00168", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021460", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021460", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00368", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021462", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbbe6ed31d686b24021460", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021464", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbbe6ed31d686b24021460", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213b3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213b3", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021466", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbbe6ed31d686b24021460", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240213b5", + "_tpl": "59e358a886f7741776641ac3", + "parentId": "66cbbe6ed31d686b240213b3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021468", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b24021460", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240213b7", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbbe6ed31d686b240213b3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00277", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402146a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402146a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00343", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402146c", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbbe6ed31d686b2402146a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402146e", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b2402146a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213b9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213b9", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213bb", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbbe6ed31d686b240213b9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 17 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00297", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021470", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021470", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021471", - "_tpl": "54491c4f4bdc2db1078b4568", - "parentId": "66cbbe6ed31d686b24021470", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbbe6ed31d686b24021472", - "_tpl": "55d4491a4bdc2d882f8b456e", - "parentId": "66cbbe6ed31d686b24021471", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b24021473", - "_tpl": "55d45d3f4bdc2d972f8b456c", - "parentId": "66cbbe6ed31d686b24021471", - "slotId": "mod_handguard" - }, - { - "_id": "66cbbe6ed31d686b24021474", - "_tpl": "55d484b44bdc2d1d4e8b456d", - "parentId": "66cbbe6ed31d686b24021471", - "slotId": "mod_magazine" + { + "Id": "Lootable_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021476", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "66cbbe6ed31d686b24021474", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021475", - "_tpl": "56083cba4bdc2de22e8b456f", - "parentId": "66cbbe6ed31d686b24021471", - "slotId": "mod_stock" - }, - { - "_id": "66cbbe6ed31d686b2402147a", - "_tpl": "57372deb245977685d4159b3", - "parentId": "66cbbe6ed31d686b24021470", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213bd", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213bd", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213bf", + "_tpl": "5c4eec9b2e2216398b5aaba2", + "parentId": "66cbbe6ed31d686b240213bd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240213c1", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbbe6ed31d686b240213bd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213c3", + "_tpl": "56ea8222d2720b69698b4567", + "parentId": "66cbbe6ed31d686b240213bd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402147b", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbbe6ed31d686b2402147a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402147c", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbbe6ed31d686b2402147a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213c5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213c5", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213c7", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbbe6ed31d686b240213c5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00176", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402147e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402147e", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00330", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021480", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbbe6ed31d686b2402147e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021482", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbbe6ed31d686b2402147e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213c9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213c9", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 5 - } - }, - { - "_id": "66cbbe6ed31d686b24021484", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbbe6ed31d686b2402147e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240213cb", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbbe6ed31d686b240213c9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240213cd", + "_tpl": "60098b1705871270cd5352a1", + "parentId": "66cbbe6ed31d686b240213c9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00276", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021486", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66cbbe6ed31d686b2402147e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021488", - "_tpl": "60361b0b5a45383c122086a1", - "parentId": "66cbbe6ed31d686b2402147e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213cf", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213cf", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213d1", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbbe6ed31d686b240213cf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00445", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402148a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402148a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402148c", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbbe6ed31d686b2402148a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402148e", - "_tpl": "619cbf476b8a1b37a54eebf8", - "parentId": "66cbbe6ed31d686b2402148a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213d3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213d3", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021490", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbbe6ed31d686b2402148a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240213d5", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbbe6ed31d686b240213d3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213d7", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbbe6ed31d686b240213d3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213d9", + "_tpl": "62a0a043cf4a99369e2624a5", + "parentId": "66cbbe6ed31d686b240213d3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00360", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021492", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021492", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00395", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021494", - "_tpl": "60098ad7c2240c0fe85c570a", - "parentId": "66cbbe6ed31d686b24021492", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021496", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbbe6ed31d686b24021492", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213db", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213db", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213dd", + "_tpl": "5b432c305acfc40019478128", + "parentId": "66cbbe6ed31d686b240213db", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213df", + "_tpl": "5e8f3423fd7471236e6e3b64", + "parentId": "66cbbe6ed31d686b240213db", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213e1", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbbe6ed31d686b240213db", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213e3", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbbe6ed31d686b240213db", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00383", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021498", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021498", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00226", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402149a", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66cbbe6ed31d686b24021498", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00210", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402149c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402149c", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402149e", - "_tpl": "5aaa5e60e5b5b000140293d6", - "parentId": "66cbbe6ed31d686b2402149c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213e5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213e5", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240213e7", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbbe6ed31d686b240213e5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00397", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214a0", - "_tpl": "651bfe4d1065f87f082e7209", - "parentId": "66cbbe6ed31d686b2402149c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214a2", - "_tpl": "5cadd954ae921500103bb3c2", - "parentId": "66cbbe6ed31d686b2402149c", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213e9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213e9", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240214a4", - "_tpl": "5d0379a886f77420407aa271", - "parentId": "66cbbe6ed31d686b2402149c", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240213eb", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66cbbe6ed31d686b240213e9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00514", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214a6", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214a6", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00269", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214a8", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbbe6ed31d686b240214a6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00245", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214aa", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214aa", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214ad", - "_tpl": "5737300424597769942d5a01", - "parentId": "66cbbe6ed31d686b240214aa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213ed", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213ed", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240213ef", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbbe6ed31d686b240213ed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214ae", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbbe6ed31d686b240214ad", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214b0", - "_tpl": "5d0379a886f77420407aa271", - "parentId": "66cbbe6ed31d686b240214aa", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213f1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213f1", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213f3", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbbe6ed31d686b240213f1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00263", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214b2", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214b2", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00396", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214b4", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66cbbe6ed31d686b240214b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214b6", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbbe6ed31d686b240214b2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213f5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213f5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240214b8", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbbe6ed31d686b240214b2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240213f7", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbbe6ed31d686b240213f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00224", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214ba", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214ba", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00232", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214bc", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "66cbbe6ed31d686b240214ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00441", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214be", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214be", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214c0", - "_tpl": "5e8488fa988a8701445df1e4", - "parentId": "66cbbe6ed31d686b240214be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240213f9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240213f9", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240214c2", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbbe6ed31d686b240214be", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240213fb", + "_tpl": "59d625f086f774661516605d", + "parentId": "66cbbe6ed31d686b240213f9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213fd", + "_tpl": "5c7951452e221644f31bfd5c", + "parentId": "66cbbe6ed31d686b240213f9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240213ff", + "_tpl": "5b7be46e5acfc400170e2dcf", + "parentId": "66cbbe6ed31d686b240213f9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214c4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214c4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00191", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214c6", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b240214c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214c8", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbbe6ed31d686b240214c4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021401", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021401", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021403", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbbe6ed31d686b24021401", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00222", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214ca", - "_tpl": "5d1c819a86f774771b0acd6c", - "parentId": "66cbbe6ed31d686b240214c4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021405", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021405", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021407", + "_tpl": "5ede4739e0350d05467f73e8", + "parentId": "66cbbe6ed31d686b24021405", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00290", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214cc", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214cc", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00238", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214ce", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "66cbbe6ed31d686b240214cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021409", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021409", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402140a", + "_tpl": "5ac4cd105acfc40016339859", + "parentId": "66cbbe6ed31d686b24021409", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b2402140b", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbbe6ed31d686b2402140a", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbbe6ed31d686b2402140c", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbbe6ed31d686b2402140b", + "slotId": "mod_handguard" + }, + { + "_id": "66cbbe6ed31d686b2402140d", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "66cbbe6ed31d686b2402140a", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbbe6ed31d686b2402140e", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbbe6ed31d686b2402140a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b2402140f", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbbe6ed31d686b2402140a", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b24021410", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "66cbbe6ed31d686b2402140a", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b24021411", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbbe6ed31d686b2402140a", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b24021412", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbbe6ed31d686b2402140a", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021413", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbbe6ed31d686b24021412", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 22.0 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00423", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214d0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214d0", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00095", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214d2", - "_tpl": "57347d9c245977448b40fa85", - "parentId": "66cbbe6ed31d686b240214d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021415", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021415", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021417", + "_tpl": "66b37eb4acff495a29492407", + "parentId": "66cbbe6ed31d686b24021415", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00350", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214d4", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbbe6ed31d686b240214d0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021419", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021419", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402141b", + "_tpl": "609b9e31506cf869cf3eaf41", + "parentId": "66cbbe6ed31d686b24021419", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00242", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214d6", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214d6", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00496", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214d8", - "_tpl": "5c1bc4812e22164bef5cfde7", - "parentId": "66cbbe6ed31d686b240214d6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402141d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402141d", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402141f", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbbe6ed31d686b2402141d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021421", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbbe6ed31d686b2402141d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021423", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66cbbe6ed31d686b2402141d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021425", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbbe6ed31d686b2402141d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021427", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbbe6ed31d686b2402141d", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021429", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbbe6ed31d686b2402141d", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402142b", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "66cbbe6ed31d686b2402141d", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402142d", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66cbbe6ed31d686b2402141d", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00483", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214d9", - "_tpl": "5ac66d015acfc400180ae6e4", - "parentId": "66cbbe6ed31d686b240214d6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214da", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbbe6ed31d686b240214d9", - "slotId": "mod_gas_block" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402142f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402142f", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021431", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbbe6ed31d686b2402142f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00419", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214db", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbbe6ed31d686b240214da", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214dc", - "_tpl": "5ac72e725acfc400180ae701", - "parentId": "66cbbe6ed31d686b240214d9", - "slotId": "mod_muzzle" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021433", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021433", + "_tpl": "61aa1e9a32a4743c3453d2cf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021435", + "_tpl": "5b4326435acfc433000ed01d", + "parentId": "66cbbe6ed31d686b24021433", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00499", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214dd", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbbe6ed31d686b240214d9", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214de", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbbe6ed31d686b240214d9", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021437", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021437", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021439", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b24021437", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402143b", + "_tpl": "619cbfccbedcde2f5b3f7bdd", + "parentId": "66cbbe6ed31d686b24021437", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402143d", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbbe6ed31d686b24021437", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00391", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214df", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbbe6ed31d686b240214d9", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214e0", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbbe6ed31d686b240214d9", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402143f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402143f", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021441", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbbe6ed31d686b2402143f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00377", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214e1", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66cbbe6ed31d686b240214d9", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214e2", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbbe6ed31d686b240214e1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 28.0 - } - }, - { - "_id": "66cbbe6ed31d686b240214e4", - "_tpl": "65169d5b30425317755f8e25", - "parentId": "66cbbe6ed31d686b240214d6", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240214e6", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214e6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240214e8", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214e8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021443", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021443", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021445", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbbe6ed31d686b24021443", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021447", + "_tpl": "5ede475b549eed7c6d5c18fb", + "parentId": "66cbbe6ed31d686b24021443", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240214ea", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214ea", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00178", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214ec", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbbe6ed31d686b240214ea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240214ee", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214ee", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00216", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214f0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214f0", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214f2", - "_tpl": "5c052a900db834001a66acbd", - "parentId": "66cbbe6ed31d686b240214f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021449", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021449", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240214f4", - "_tpl": "577d128124597739d65d0e56", - "parentId": "66cbbe6ed31d686b240214f0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402144b", + "_tpl": "5e2af37686f774755a234b65", + "parentId": "66cbbe6ed31d686b24021449", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00328", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214f6", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214f6", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214f8", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbbe6ed31d686b240214f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00207", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240214fa", - "Items": [ - { - "_id": "66cbbe6ed31d686b240214fa", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240214fc", - "_tpl": "56e05b06d2720bb2668b4586", - "parentId": "66cbbe6ed31d686b240214fa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402144d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402144d", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240214fe", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbbe6ed31d686b240214fa", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402144f", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbbe6ed31d686b2402144d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021451", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbbe6ed31d686b2402144d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00121", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021500", - "_tpl": "59eb7ebe86f7740b373438ce", - "parentId": "66cbbe6ed31d686b240214fa", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021502", - "_tpl": "5b099b7d5acfc400186331e4", - "parentId": "66cbbe6ed31d686b240214fa", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021453", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021453", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021455", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbbe6ed31d686b24021453", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021457", + "_tpl": "66b37f114410565a8f6789e2", + "parentId": "66cbbe6ed31d686b24021453", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021504", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021504", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00299", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021506", - "_tpl": "55d6190f4bdc2d87028b4567", - "parentId": "66cbbe6ed31d686b24021504", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021508", - "_tpl": "5e569a0156edd02abe09f27d", - "parentId": "66cbbe6ed31d686b24021504", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021459", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021459", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402150a", - "_tpl": "661e52e29c8b4dadef008577", - "parentId": "66cbbe6ed31d686b24021504", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402145a", + "_tpl": "59f98b4986f7746f546d2cef", + "parentId": "66cbbe6ed31d686b24021459", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b2402145b", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "66cbbe6ed31d686b2402145a", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402145c", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbbe6ed31d686b2402145b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } + }, + { + "_id": "66cbbe6ed31d686b2402145e", + "_tpl": "623c2f652febb22c2777d8d7", + "parentId": "66cbbe6ed31d686b24021459", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00168", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402150c", - "_tpl": "5c6beec32e221601da3578f2", - "parentId": "66cbbe6ed31d686b24021504", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021460", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021460", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021462", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbbe6ed31d686b24021460", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021464", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbbe6ed31d686b24021460", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021466", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbbe6ed31d686b24021460", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021468", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b24021460", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00279", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402150e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402150e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00277", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021510", - "_tpl": "5e2aee0a86f774755a234b62", - "parentId": "66cbbe6ed31d686b2402150e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402146a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402146a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402146c", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbbe6ed31d686b2402146a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402146e", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b2402146a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00034", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021512", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021512", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00297", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021514", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbbe6ed31d686b24021512", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021470", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021470", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021471", + "_tpl": "54491c4f4bdc2db1078b4568", + "parentId": "66cbbe6ed31d686b24021470", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b24021472", + "_tpl": "55d4491a4bdc2d882f8b456e", + "parentId": "66cbbe6ed31d686b24021471", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b24021473", + "_tpl": "55d45d3f4bdc2d972f8b456c", + "parentId": "66cbbe6ed31d686b24021471", + "slotId": "mod_handguard" + }, + { + "_id": "66cbbe6ed31d686b24021474", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "66cbbe6ed31d686b24021471", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021476", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "66cbbe6ed31d686b24021474", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } + }, + { + "_id": "66cbbe6ed31d686b24021475", + "_tpl": "56083cba4bdc2de22e8b456f", + "parentId": "66cbbe6ed31d686b24021471", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b2402147a", + "_tpl": "57372deb245977685d4159b3", + "parentId": "66cbbe6ed31d686b24021470", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402147b", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbbe6ed31d686b2402147a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b2402147c", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbbe6ed31d686b2402147a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00033", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021516", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021516", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021518", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021518", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00031", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402151a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402151a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00327", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402151c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402151c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00176", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402151e", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbbe6ed31d686b2402151c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021520", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbbe6ed31d686b2402151c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402147e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402147e", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021480", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbbe6ed31d686b2402147e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021482", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbbe6ed31d686b2402147e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 5 + } + }, + { + "_id": "66cbbe6ed31d686b24021484", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbbe6ed31d686b2402147e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021486", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66cbbe6ed31d686b2402147e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021488", + "_tpl": "60361b0b5a45383c122086a1", + "parentId": "66cbbe6ed31d686b2402147e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00268", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021522", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021522", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00445", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021524", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbbe6ed31d686b24021522", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021526", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbbe6ed31d686b24021522", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402148a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402148a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402148c", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbbe6ed31d686b2402148a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402148e", + "_tpl": "619cbf476b8a1b37a54eebf8", + "parentId": "66cbbe6ed31d686b2402148a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021490", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbbe6ed31d686b2402148a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00439", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021528", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021528", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00360", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402152a", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbbe6ed31d686b24021528", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00165", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402152c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402152c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402152e", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbbe6ed31d686b2402152c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00164", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021530", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021530", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00163", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021532", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021532", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00162", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021534", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021534", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021492", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021492", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021494", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "66cbbe6ed31d686b24021492", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021496", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbbe6ed31d686b24021492", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00404", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021536", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021536", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00383", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021538", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbbe6ed31d686b24021536", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402153a", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b24021536", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021498", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021498", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402149a", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66cbbe6ed31d686b24021498", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00085", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402153c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402153c", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00210", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402153e", - "_tpl": "5c7951452e221644f31bfd5c", - "parentId": "66cbbe6ed31d686b2402153c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00387", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021540", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021540", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021542", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66cbbe6ed31d686b24021540", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402149c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402149c", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402149e", + "_tpl": "5aaa5e60e5b5b000140293d6", + "parentId": "66cbbe6ed31d686b2402149c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214a0", + "_tpl": "651bfe4d1065f87f082e7209", + "parentId": "66cbbe6ed31d686b2402149c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214a2", + "_tpl": "5cadd954ae921500103bb3c2", + "parentId": "66cbbe6ed31d686b2402149c", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214a4", + "_tpl": "5d0379a886f77420407aa271", + "parentId": "66cbbe6ed31d686b2402149c", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00219", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021544", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021544", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00514", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021546", - "_tpl": "5a0c59791526d8dba737bba7", - "parentId": "66cbbe6ed31d686b24021544", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214a6", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214a6", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240214a8", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbbe6ed31d686b240214a6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00245", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021547", - "_tpl": "628b5638ad252a16da6dd245", - "parentId": "66cbbe6ed31d686b24021544", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214aa", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214aa", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214ad", + "_tpl": "5737300424597769942d5a01", + "parentId": "66cbbe6ed31d686b240214aa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214ae", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbbe6ed31d686b240214ad", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbbe6ed31d686b240214b0", + "_tpl": "5d0379a886f77420407aa271", + "parentId": "66cbbe6ed31d686b240214aa", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00263", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021548", - "_tpl": "628b8d83717774443b15e248", - "parentId": "66cbbe6ed31d686b24021547", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbbe6ed31d686b24021549", - "_tpl": "628b916469015a4e1711ed8d", - "parentId": "66cbbe6ed31d686b24021548", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402154a", - "_tpl": "628b9be6cff66b70c002b14c", - "parentId": "66cbbe6ed31d686b24021549", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b2402154b", - "_tpl": "628b9471078f94059a4b9bfb", - "parentId": "66cbbe6ed31d686b2402154a", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b2402154c", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "66cbbe6ed31d686b24021547", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbbe6ed31d686b2402154d", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "66cbbe6ed31d686b24021547", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b2402154e", - "_tpl": "628b9a40717774443b15e9f2", - "parentId": "66cbbe6ed31d686b24021547", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbbe6ed31d686b2402154f", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "66cbbe6ed31d686b2402154e", - "slotId": "mod_stock" - }, - { - "_id": "66cbbe6ed31d686b24021550", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbbe6ed31d686b24021547", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021551", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbbe6ed31d686b24021550", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 28.0 - } - }, - { - "_id": "66cbbe6ed31d686b24021553", - "_tpl": "5c17804b2e2216152006c02f", - "parentId": "66cbbe6ed31d686b24021544", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214b2", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214b2", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214b4", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66cbbe6ed31d686b240214b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240214b6", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbbe6ed31d686b240214b2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214b8", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbbe6ed31d686b240214b2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00224", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021555", - "_tpl": "5cc700d4e4a949000f0f0f28", - "parentId": "66cbbe6ed31d686b24021544", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214ba", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214ba", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240214bc", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "66cbbe6ed31d686b240214ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00441", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021557", - "_tpl": "63d114019e35b334d82302f7", - "parentId": "66cbbe6ed31d686b24021544", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214be", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214be", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214c0", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "66cbbe6ed31d686b240214be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214c2", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbbe6ed31d686b240214be", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00375", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021559", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021559", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402155b", - "_tpl": "62987c658081af308d7558c6", - "parentId": "66cbbe6ed31d686b24021559", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214c4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214c4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214c6", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b240214c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214c8", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbbe6ed31d686b240214c4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214ca", + "_tpl": "5d1c819a86f774771b0acd6c", + "parentId": "66cbbe6ed31d686b240214c4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00294", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402155d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402155d", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00290", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402155e", - "_tpl": "56d59856d2720bd8418b456a", - "parentId": "66cbbe6ed31d686b2402155d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402155f", - "_tpl": "56d5a1f7d2720bb3418b456a", - "parentId": "66cbbe6ed31d686b2402155e", - "slotId": "mod_barrel" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214cc", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214cc", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214ce", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "66cbbe6ed31d686b240214cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00423", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021560", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "66cbbe6ed31d686b2402155e", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021561", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "66cbbe6ed31d686b2402155e", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214d0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214d0", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214d2", + "_tpl": "57347d9c245977448b40fa85", + "parentId": "66cbbe6ed31d686b240214d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214d4", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbbe6ed31d686b240214d0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00242", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021562", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "66cbbe6ed31d686b24021561", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021563", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "66cbbe6ed31d686b24021561", - "slotId": "mod_sight_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214d6", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214d6", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214d8", + "_tpl": "5c1bc4812e22164bef5cfde7", + "parentId": "66cbbe6ed31d686b240214d6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214d9", + "_tpl": "5ac66d015acfc400180ae6e4", + "parentId": "66cbbe6ed31d686b240214d6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b240214da", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbbe6ed31d686b240214d9", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbbe6ed31d686b240214db", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbbe6ed31d686b240214da", + "slotId": "mod_handguard" + }, + { + "_id": "66cbbe6ed31d686b240214dc", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "66cbbe6ed31d686b240214d9", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbbe6ed31d686b240214dd", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbbe6ed31d686b240214d9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b240214de", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbbe6ed31d686b240214d9", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b240214df", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbbe6ed31d686b240214d9", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b240214e0", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbbe6ed31d686b240214d9", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b240214e1", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66cbbe6ed31d686b240214d9", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b240214e2", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbbe6ed31d686b240214e1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 28.0 + } + }, + { + "_id": "66cbbe6ed31d686b240214e4", + "_tpl": "65169d5b30425317755f8e25", + "parentId": "66cbbe6ed31d686b240214d6", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021564", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "66cbbe6ed31d686b2402155e", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021565", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbbe6ed31d686b24021564", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 14.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240214e6", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214e6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021567", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66cbbe6ed31d686b2402155d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021569", - "_tpl": "5b30b0dc5acfc400153b7124", - "parentId": "66cbbe6ed31d686b2402155d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240214e8", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214e8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00266", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402156b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402156b", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402156d", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbbe6ed31d686b2402156b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402156f", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbbe6ed31d686b2402156b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240214ea", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214ea", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240214ec", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbbe6ed31d686b240214ea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021571", - "_tpl": "590c5bbd86f774785762df04", - "parentId": "66cbbe6ed31d686b2402156b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240214ee", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214ee", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00437", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021573", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021573", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00216", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021575", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66cbbe6ed31d686b24021573", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021577", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbbe6ed31d686b24021573", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214f0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214f0", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214f2", + "_tpl": "5c052a900db834001a66acbd", + "parentId": "66cbbe6ed31d686b240214f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240214f4", + "_tpl": "577d128124597739d65d0e56", + "parentId": "66cbbe6ed31d686b240214f0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00328", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021579", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66cbbe6ed31d686b24021573", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214f6", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214f6", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214f8", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbbe6ed31d686b240214f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402157b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402157b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00207", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402157d", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbbe6ed31d686b2402157b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402157f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402157f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021581", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbbe6ed31d686b2402157f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240214fa", + "Items": [ + { + "_id": "66cbbe6ed31d686b240214fa", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214fc", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "66cbbe6ed31d686b240214fa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240214fe", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbbe6ed31d686b240214fa", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021500", + "_tpl": "59eb7ebe86f7740b373438ce", + "parentId": "66cbbe6ed31d686b240214fa", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021502", + "_tpl": "5b099b7d5acfc400186331e4", + "parentId": "66cbbe6ed31d686b240214fa", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021583", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021583", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021585", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbbe6ed31d686b24021583", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021587", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021587", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021589", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbbe6ed31d686b24021587", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021504", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021504", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021506", + "_tpl": "55d6190f4bdc2d87028b4567", + "parentId": "66cbbe6ed31d686b24021504", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021508", + "_tpl": "5e569a0156edd02abe09f27d", + "parentId": "66cbbe6ed31d686b24021504", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402150a", + "_tpl": "661e52e29c8b4dadef008577", + "parentId": "66cbbe6ed31d686b24021504", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402150c", + "_tpl": "5c6beec32e221601da3578f2", + "parentId": "66cbbe6ed31d686b24021504", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00208", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402158b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402158b", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00279", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402158d", - "_tpl": "5cc9bcaed7f00c011c04e179", - "parentId": "66cbbe6ed31d686b2402158b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402158f", - "_tpl": "5d6d2ef3a4b93618084f58bd", - "parentId": "66cbbe6ed31d686b2402158b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402150e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402150e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021510", + "_tpl": "5e2aee0a86f774755a234b62", + "parentId": "66cbbe6ed31d686b2402150e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00034", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021591", - "_tpl": "66b5f693acff495a294927e3", - "parentId": "66cbbe6ed31d686b2402158b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021593", - "_tpl": "5c0102aa0db834001b734ba1", - "parentId": "66cbbe6ed31d686b2402158b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021512", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021512", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021595", - "_tpl": "5c82342f2e221644f31c060e", - "parentId": "66cbbe6ed31d686b2402158b", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021514", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbbe6ed31d686b24021512", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00367", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021597", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021597", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00033", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021599", - "_tpl": "59e366c186f7741778269d85", - "parentId": "66cbbe6ed31d686b24021597", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402159b", - "_tpl": "5b432b2f5acfc4771e1c6622", - "parentId": "66cbbe6ed31d686b24021597", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021516", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021516", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402159d", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbbe6ed31d686b24021597", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021518", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021518", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00409", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402159f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402159f", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00031", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215a1", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbbe6ed31d686b2402159f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215a3", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbbe6ed31d686b2402159f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402151a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402151a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00373", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215a5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215a5", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00327", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215a7", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66cbbe6ed31d686b240215a5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402151c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402151c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402151e", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbbe6ed31d686b2402151c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021520", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbbe6ed31d686b2402151c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00180", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215a9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215a9", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00268", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215ab", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66cbbe6ed31d686b240215a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021522", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021522", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021524", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbbe6ed31d686b24021522", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021526", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbbe6ed31d686b24021522", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00463", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215ad", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215ad", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00439", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215af", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbbe6ed31d686b240215ad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021528", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021528", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402152a", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbbe6ed31d686b24021528", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00165", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215b1", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbbe6ed31d686b240215ad", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402152c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402152c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402152e", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbbe6ed31d686b2402152c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00164", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215b3", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b240215ad", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021530", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021530", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00253", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215b5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215b5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00163", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215b7", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b240215b5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215b9", - "_tpl": "57513f9324597720a7128161", - "parentId": "66cbbe6ed31d686b240215b5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021532", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021532", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00359", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215bb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215bb", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00162", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215bd", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbbe6ed31d686b240215bb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021534", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021534", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00450", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215bf", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215bf", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00404", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215c1", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbbe6ed31d686b240215bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215c3", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbbe6ed31d686b240215bf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021536", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021536", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240215c5", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbbe6ed31d686b240215bf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021538", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbbe6ed31d686b24021536", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402153a", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b24021536", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00339", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215c7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215c7", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00085", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215c9", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbbe6ed31d686b240215c7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00157", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240215cb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215cb", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215cd", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "parentId": "66cbbe6ed31d686b240215cb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402153c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402153c", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402153e", + "_tpl": "5c7951452e221644f31bfd5c", + "parentId": "66cbbe6ed31d686b2402153c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00156", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240215cf", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215cf", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00387", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215d1", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbbe6ed31d686b240215cf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00154", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240215d3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215d3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215d5", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbbe6ed31d686b240215d3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021540", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021540", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021542", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66cbbe6ed31d686b24021540", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00108", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215d7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215d7", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00219", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215d9", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66cbbe6ed31d686b240215d7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215db", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbbe6ed31d686b240215d7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021544", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021544", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240215dd", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbbe6ed31d686b240215d7", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240215df", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215df", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240215e1", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbbe6ed31d686b240215df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021546", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "66cbbe6ed31d686b24021544", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 67 - } - }, - { - "_id": "66cbbe6ed31d686b240215e3", - "_tpl": "5f745ee30acaeb0d490d8c5b", - "parentId": "66cbbe6ed31d686b240215df", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021547", + "_tpl": "628b5638ad252a16da6dd245", + "parentId": "66cbbe6ed31d686b24021544", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240215e5", - "_tpl": "590c37d286f77443be3d7827", - "parentId": "66cbbe6ed31d686b240215df", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021548", + "_tpl": "628b8d83717774443b15e248", + "parentId": "66cbbe6ed31d686b24021547", + "slotId": "mod_gas_block" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240215e7", - "_tpl": "62a09e73af34e73a266d932a", - "parentId": "66cbbe6ed31d686b240215df", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021549", + "_tpl": "628b916469015a4e1711ed8d", + "parentId": "66cbbe6ed31d686b24021548", + "slotId": "mod_handguard" + }, + { + "_id": "66cbbe6ed31d686b2402154a", + "_tpl": "628b9be6cff66b70c002b14c", + "parentId": "66cbbe6ed31d686b24021549", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b2402154b", + "_tpl": "628b9471078f94059a4b9bfb", + "parentId": "66cbbe6ed31d686b2402154a", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b2402154c", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "66cbbe6ed31d686b24021547", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbbe6ed31d686b2402154d", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "66cbbe6ed31d686b24021547", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b2402154e", + "_tpl": "628b9a40717774443b15e9f2", + "parentId": "66cbbe6ed31d686b24021547", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbbe6ed31d686b2402154f", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "66cbbe6ed31d686b2402154e", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b24021550", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbbe6ed31d686b24021547", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021551", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbbe6ed31d686b24021550", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 28.0 + } + }, + { + "_id": "66cbbe6ed31d686b24021553", + "_tpl": "5c17804b2e2216152006c02f", + "parentId": "66cbbe6ed31d686b24021544", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021555", + "_tpl": "5cc700d4e4a949000f0f0f28", + "parentId": "66cbbe6ed31d686b24021544", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021557", + "_tpl": "63d114019e35b334d82302f7", + "parentId": "66cbbe6ed31d686b24021544", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00390", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215e9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215e9", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00375", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215eb", - "_tpl": "5a0eecf686f7740350630097", - "parentId": "66cbbe6ed31d686b240215e9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00480", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215ed", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215ed", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215ef", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66cbbe6ed31d686b240215ed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021559", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021559", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402155b", + "_tpl": "62987c658081af308d7558c6", + "parentId": "66cbbe6ed31d686b24021559", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215f1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215f1", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00294", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215f3", - "_tpl": "60391afc25aff57af81f7085", - "parentId": "66cbbe6ed31d686b240215f1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240215f5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240215f5", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215f7", - "_tpl": "615d8dbd290d254f5e6b2ed6", - "parentId": "66cbbe6ed31d686b240215f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240215f9", - "_tpl": "5bb20de5d4351e0035629e59", - "parentId": "66cbbe6ed31d686b240215f5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402155d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402155d", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240215fa", - "_tpl": "5dcbd56fdbd3d91b3e5468d5", - "parentId": "66cbbe6ed31d686b240215f5", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402155e", + "_tpl": "56d59856d2720bd8418b456a", + "parentId": "66cbbe6ed31d686b2402155d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b2402155f", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "66cbbe6ed31d686b2402155e", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b24021560", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "66cbbe6ed31d686b2402155e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b24021561", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "66cbbe6ed31d686b2402155e", + "slotId": "mod_reciever" }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbbe6ed31d686b24021562", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "66cbbe6ed31d686b24021561", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b24021563", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "66cbbe6ed31d686b24021561", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbbe6ed31d686b24021564", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "66cbbe6ed31d686b2402155e", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021565", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbbe6ed31d686b24021564", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 14.0 + } + }, + { + "_id": "66cbbe6ed31d686b24021567", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66cbbe6ed31d686b2402155d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021569", + "_tpl": "5b30b0dc5acfc400153b7124", + "parentId": "66cbbe6ed31d686b2402155d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00266", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215fb", - "_tpl": "5dcbd6dddbd3d91b3e5468de", - "parentId": "66cbbe6ed31d686b240215fa", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b240215fc", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "66cbbe6ed31d686b240215fa", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021600", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbbe6ed31d686b240215fc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402156b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402156b", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402156d", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbbe6ed31d686b2402156b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402156f", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbbe6ed31d686b2402156b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021571", + "_tpl": "590c5bbd86f774785762df04", + "parentId": "66cbbe6ed31d686b2402156b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00437", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240215fd", - "_tpl": "5dcbd6b46ec07c0c4347a564", - "parentId": "66cbbe6ed31d686b240215fa", - "slotId": "mod_handguard" - }, - { - "_id": "66cbbe6ed31d686b240215fe", - "_tpl": "5dcbe9431e1f4616d354987e", - "parentId": "66cbbe6ed31d686b240215fa", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b240215ff", - "_tpl": "5dcbe965e4ed22586443a79d", - "parentId": "66cbbe6ed31d686b240215fe", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021602", - "_tpl": "5a787ebcc5856700142fdd98", - "parentId": "66cbbe6ed31d686b240215f5", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021573", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021573", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021575", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66cbbe6ed31d686b24021573", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021577", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbbe6ed31d686b24021573", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021579", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66cbbe6ed31d686b24021573", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00129", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021604", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021604", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021606", - "_tpl": "62a09ec84f842e1bd12da3f2", - "parentId": "66cbbe6ed31d686b24021604", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00128", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021608", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021608", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402160a", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbbe6ed31d686b24021608", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402157b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402157b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402157d", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbbe6ed31d686b2402157b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00127", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402160c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402160c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402160e", - "_tpl": "5a0dc95c86f77452440fc675", - "parentId": "66cbbe6ed31d686b2402160c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00126", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021610", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021610", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021612", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbbe6ed31d686b24021610", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402157f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402157f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021581", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbbe6ed31d686b2402157f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00403", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021614", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021614", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021616", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66cbbe6ed31d686b24021614", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021618", - "_tpl": "572b7d8524597762b472f9d1", - "parentId": "66cbbe6ed31d686b24021614", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021583", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021583", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402161a", - "_tpl": "5aa2b923e5b5b000137b7589", - "parentId": "66cbbe6ed31d686b24021614", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021585", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbbe6ed31d686b24021583", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00298", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402161c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402161c", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402161e", - "_tpl": "5b40e5e25acfc4001a599bea", - "parentId": "66cbbe6ed31d686b2402161c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00474", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021620", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021620", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021622", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbbe6ed31d686b24021620", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021587", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021587", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021589", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbbe6ed31d686b24021587", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00208", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021624", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbbe6ed31d686b24021620", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021626", - "_tpl": "5d40419286f774318526545f", - "parentId": "66cbbe6ed31d686b24021620", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402158b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402158b", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021627", - "_tpl": "5e81c3cbac2bb513793cdc75", - "parentId": "66cbbe6ed31d686b24021620", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402158d", + "_tpl": "5cc9bcaed7f00c011c04e179", + "parentId": "66cbbe6ed31d686b2402158b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402158f", + "_tpl": "5d6d2ef3a4b93618084f58bd", + "parentId": "66cbbe6ed31d686b2402158b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021591", + "_tpl": "66b5f693acff495a294927e3", + "parentId": "66cbbe6ed31d686b2402158b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021593", + "_tpl": "5c0102aa0db834001b734ba1", + "parentId": "66cbbe6ed31d686b2402158b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbbe6ed31d686b24021595", + "_tpl": "5c82342f2e221644f31c060e", + "parentId": "66cbbe6ed31d686b2402158b", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00367", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021628", - "_tpl": "5e81c519cb2b95385c177551", - "parentId": "66cbbe6ed31d686b24021627", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b24021629", - "_tpl": "5e81c6bf763d9f754677beff", - "parentId": "66cbbe6ed31d686b24021627", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b2402162a", - "_tpl": "5e81edc13397a21db957f6a1", - "parentId": "66cbbe6ed31d686b24021627", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402162b", - "_tpl": "5e81ee4dcb2b95385c177582", - "parentId": "66cbbe6ed31d686b2402162a", - "slotId": "mod_sight_rear" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021597", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021597", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021599", + "_tpl": "59e366c186f7741778269d85", + "parentId": "66cbbe6ed31d686b24021597", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402159b", + "_tpl": "5b432b2f5acfc4771e1c6622", + "parentId": "66cbbe6ed31d686b24021597", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402159d", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbbe6ed31d686b24021597", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00409", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402162c", - "_tpl": "5e81ee213397a21db957f6a6", - "parentId": "66cbbe6ed31d686b2402162a", - "slotId": "mod_sight_front" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402162d", - "_tpl": "5e81c4ca763d9f754677befa", - "parentId": "66cbbe6ed31d686b24021627", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021631", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbbe6ed31d686b2402162d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402159f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402159f", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215a1", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbbe6ed31d686b2402159f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215a3", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbbe6ed31d686b2402159f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbbe6ed31d686b2402162e", - "_tpl": "5e81c6a2ac2bb513793cdc7f", - "parentId": "66cbbe6ed31d686b24021627", - "slotId": "mod_trigger" - }, - { - "_id": "66cbbe6ed31d686b2402162f", - "_tpl": "5e81c550763d9f754677befd", - "parentId": "66cbbe6ed31d686b24021627", - "slotId": "mod_hammer" - }, - { - "_id": "66cbbe6ed31d686b24021630", - "_tpl": "5e81c539cb2b95385c177553", - "parentId": "66cbbe6ed31d686b24021627", - "slotId": "mod_catch" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00392", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021633", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021633", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00373", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021635", - "_tpl": "5bd0716d86f774171822ef4b", - "parentId": "66cbbe6ed31d686b24021633", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00274", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021637", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021637", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021639", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbbe6ed31d686b24021637", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215a5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215a5", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240215a7", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66cbbe6ed31d686b240215a5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00180", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402163b", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66cbbe6ed31d686b24021637", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402163d", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbbe6ed31d686b24021637", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215a9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215a9", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215ab", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66cbbe6ed31d686b240215a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00517", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402163f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402163f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00463", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021641", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbbe6ed31d686b2402163f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021643", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66cbbe6ed31d686b2402163f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215ad", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215ad", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021645", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbbe6ed31d686b2402163f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240215af", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbbe6ed31d686b240215ad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215b1", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbbe6ed31d686b240215ad", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215b3", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b240215ad", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021647", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021647", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00253", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021649", - "_tpl": "5c7e5f112e221600106f4ede", - "parentId": "66cbbe6ed31d686b24021647", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00237", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402164b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402164b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402164d", - "_tpl": "59985a6c86f77414ec448d17", - "parentId": "66cbbe6ed31d686b2402164b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215b5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215b5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021650", - "_tpl": "573728cc24597765cc785b5d", - "parentId": "66cbbe6ed31d686b2402164b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240215b7", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b240215b5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240215b9", + "_tpl": "57513f9324597720a7128161", + "parentId": "66cbbe6ed31d686b240215b5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00359", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021651", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6ed31d686b24021650", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021652", - "_tpl": "5a38e6bac4a2826c6e06d79b", - "parentId": "66cbbe6ed31d686b2402164b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215bb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215bb", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215bd", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbbe6ed31d686b240215bb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00450", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021653", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "66cbbe6ed31d686b24021652", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021656", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66cbbe6ed31d686b24021653", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 1.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215bf", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215bf", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215c1", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbbe6ed31d686b240215bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215c3", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbbe6ed31d686b240215bf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215c5", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbbe6ed31d686b240215bf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbbe6ed31d686b24021654", - "_tpl": "5a38ef1fc4a282000b1521f6", - "parentId": "66cbbe6ed31d686b24021652", - "slotId": "mod_stock" - }, - { - "_id": "66cbbe6ed31d686b24021655", - "_tpl": "5a38eecdc4a282329a73b512", - "parentId": "66cbbe6ed31d686b24021654", - "slotId": "mod_pistol_grip" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00489", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021658", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021658", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00339", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402165a", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbbe6ed31d686b24021658", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402165c", - "_tpl": "59e366c186f7741778269d85", - "parentId": "66cbbe6ed31d686b24021658", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215c7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215c7", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402165e", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbbe6ed31d686b24021658", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240215c9", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbbe6ed31d686b240215c7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00296", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021660", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021660", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00157", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021662", - "_tpl": "5b222d335acfc4771e1be099", - "parentId": "66cbbe6ed31d686b24021660", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240215cb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215cb", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215cd", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "parentId": "66cbbe6ed31d686b240215cb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00363", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021664", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021664", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00156", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021666", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbbe6ed31d686b24021664", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240215cf", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215cf", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240215d1", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbbe6ed31d686b240215cf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00154", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021668", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b24021664", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240215d3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215d3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215d5", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbbe6ed31d686b240215d3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00305", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402166a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402166a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00108", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402166c", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66cbbe6ed31d686b2402166a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00356", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402166e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402166e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021670", - "_tpl": "5734773724597737fd047c14", - "parentId": "66cbbe6ed31d686b2402166e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215d7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215d7", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021672", - "_tpl": "57347d692459774491567cf1", - "parentId": "66cbbe6ed31d686b2402166e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00174", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021674", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021674", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240215d9", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66cbbe6ed31d686b240215d7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215db", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbbe6ed31d686b240215d7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215dd", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbbe6ed31d686b240215d7", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00427", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021676", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021676", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021678", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbbe6ed31d686b24021676", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00380", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402167a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402167a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402167c", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbbe6ed31d686b2402167a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240215df", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215df", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402167e", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbbe6ed31d686b2402167a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240215e1", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbbe6ed31d686b240215df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 67 + } + }, + { + "_id": "66cbbe6ed31d686b240215e3", + "_tpl": "5f745ee30acaeb0d490d8c5b", + "parentId": "66cbbe6ed31d686b240215df", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215e5", + "_tpl": "590c37d286f77443be3d7827", + "parentId": "66cbbe6ed31d686b240215df", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215e7", + "_tpl": "62a09e73af34e73a266d932a", + "parentId": "66cbbe6ed31d686b240215df", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00173", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021680", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021680", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00390", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021682", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b24021680", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00167", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021684", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021684", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021686", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbbe6ed31d686b24021684", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215e9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215e9", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240215eb", + "_tpl": "5a0eecf686f7740350630097", + "parentId": "66cbbe6ed31d686b240215e9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00480", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021688", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66cbbe6ed31d686b24021684", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402168a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbbe6ed31d686b24021684", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215ed", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215ed", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402168c", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbbe6ed31d686b24021684", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240215ef", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66cbbe6ed31d686b240215ed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00447", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402168e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402168e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021690", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b2402168e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021692", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbbe6ed31d686b2402168e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215f1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215f1", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021694", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66cbbe6ed31d686b2402168e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240215f3", + "_tpl": "60391afc25aff57af81f7085", + "parentId": "66cbbe6ed31d686b240215f1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00435", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021696", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021696", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021698", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b24021696", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402169a", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbbe6ed31d686b24021696", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240215f5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240215f5", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215f7", + "_tpl": "615d8dbd290d254f5e6b2ed6", + "parentId": "66cbbe6ed31d686b240215f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215f9", + "_tpl": "5bb20de5d4351e0035629e59", + "parentId": "66cbbe6ed31d686b240215f5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240215fa", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "parentId": "66cbbe6ed31d686b240215f5", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbbe6ed31d686b240215fb", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "parentId": "66cbbe6ed31d686b240215fa", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b240215fc", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "66cbbe6ed31d686b240215fa", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021600", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbbe6ed31d686b240215fc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15.0 + } + }, + { + "_id": "66cbbe6ed31d686b240215fd", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "parentId": "66cbbe6ed31d686b240215fa", + "slotId": "mod_handguard" + }, + { + "_id": "66cbbe6ed31d686b240215fe", + "_tpl": "5dcbe9431e1f4616d354987e", + "parentId": "66cbbe6ed31d686b240215fa", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b240215ff", + "_tpl": "5dcbe965e4ed22586443a79d", + "parentId": "66cbbe6ed31d686b240215fe", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbbe6ed31d686b24021602", + "_tpl": "5a787ebcc5856700142fdd98", + "parentId": "66cbbe6ed31d686b240215f5", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00461", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402169c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402169c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00129", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402169e", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b2402169c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216a0", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b2402169c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021604", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021604", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216a2", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbbe6ed31d686b2402169c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021606", + "_tpl": "62a09ec84f842e1bd12da3f2", + "parentId": "66cbbe6ed31d686b24021604", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00372", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216a4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216a4", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00128", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216a6", - "_tpl": "59e0d99486f7744a32234762", - "parentId": "66cbbe6ed31d686b240216a4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 50 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216a8", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbbe6ed31d686b240216a4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021608", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021608", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402160a", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbbe6ed31d686b24021608", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00127", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216aa", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbbe6ed31d686b240216a4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402160c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402160c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 660 + { + "_id": "66cbbe6ed31d686b2402160e", + "_tpl": "5a0dc95c86f77452440fc675", + "parentId": "66cbbe6ed31d686b2402160c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbbe6ed31d686b240216ac", - "_tpl": "59e6927d86f77411da468256", - "parentId": "66cbbe6ed31d686b240216a4", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 38 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00050", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216ae", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216ae", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00126", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216b0", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbbe6ed31d686b240216ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00493", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216b2", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216b2", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216b4", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbbe6ed31d686b240216b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021610", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021610", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021612", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbbe6ed31d686b24021610", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00205", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216b6", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216b6", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00403", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216b8", - "_tpl": "5a6f5f078dc32e00094b97dd", - "parentId": "66cbbe6ed31d686b240216b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216ba", - "_tpl": "5de8ea8ffd6b4e6e2276dc35", - "parentId": "66cbbe6ed31d686b240216b6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021614", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021614", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216bc", - "_tpl": "5c617a5f2e2216000f1e81b3", - "parentId": "66cbbe6ed31d686b240216b6", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021616", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66cbbe6ed31d686b24021614", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216be", - "_tpl": "57ade1442459771557167e15", - "parentId": "66cbbe6ed31d686b240216b6", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 + { + "_id": "66cbbe6ed31d686b24021618", + "_tpl": "572b7d8524597762b472f9d1", + "parentId": "66cbbe6ed31d686b24021614", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402161a", + "_tpl": "5aa2b923e5b5b000137b7589", + "parentId": "66cbbe6ed31d686b24021614", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00298", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216c0", - "_tpl": "603648ff5a45383c122086ac", - "parentId": "66cbbe6ed31d686b240216b6", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216c2", - "_tpl": "5cdeaca5d7f00c00b61c4b70", - "parentId": "66cbbe6ed31d686b240216b6", - "slotId": "main", - "location": { - "x": 4, - "y": 2, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402161c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402161c", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402161e", + "_tpl": "5b40e5e25acfc4001a599bea", + "parentId": "66cbbe6ed31d686b2402161c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00119", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216c4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216c4", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00474", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216c6", - "_tpl": "5cf4fb76d7f00c065703d3ac", - "parentId": "66cbbe6ed31d686b240216c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00466", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216c8", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216c8", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216ca", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbbe6ed31d686b240216c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021620", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021620", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021622", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbbe6ed31d686b24021620", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021624", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbbe6ed31d686b24021620", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021626", + "_tpl": "5d40419286f774318526545f", + "parentId": "66cbbe6ed31d686b24021620", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021627", + "_tpl": "5e81c3cbac2bb513793cdc75", + "parentId": "66cbbe6ed31d686b24021620", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbbe6ed31d686b24021628", + "_tpl": "5e81c519cb2b95385c177551", + "parentId": "66cbbe6ed31d686b24021627", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b24021629", + "_tpl": "5e81c6bf763d9f754677beff", + "parentId": "66cbbe6ed31d686b24021627", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b2402162a", + "_tpl": "5e81edc13397a21db957f6a1", + "parentId": "66cbbe6ed31d686b24021627", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b2402162b", + "_tpl": "5e81ee4dcb2b95385c177582", + "parentId": "66cbbe6ed31d686b2402162a", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b2402162c", + "_tpl": "5e81ee213397a21db957f6a6", + "parentId": "66cbbe6ed31d686b2402162a", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbbe6ed31d686b2402162d", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "66cbbe6ed31d686b24021627", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021631", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbbe6ed31d686b2402162d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } + }, + { + "_id": "66cbbe6ed31d686b2402162e", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "parentId": "66cbbe6ed31d686b24021627", + "slotId": "mod_trigger" + }, + { + "_id": "66cbbe6ed31d686b2402162f", + "_tpl": "5e81c550763d9f754677befd", + "parentId": "66cbbe6ed31d686b24021627", + "slotId": "mod_hammer" + }, + { + "_id": "66cbbe6ed31d686b24021630", + "_tpl": "5e81c539cb2b95385c177553", + "parentId": "66cbbe6ed31d686b24021627", + "slotId": "mod_catch" } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00203", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216cc", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216cc", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00392", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216ce", - "_tpl": "607ffb988900dc2d9a55b6e4", - "parentId": "66cbbe6ed31d686b240216cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216d0", - "_tpl": "570fd79bd2720bc7458b4583", - "parentId": "66cbbe6ed31d686b240216cc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021633", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021633", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216d2", - "_tpl": "602e620f9b513876d4338d9a", - "parentId": "66cbbe6ed31d686b240216cc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021635", + "_tpl": "5bd0716d86f774171822ef4b", + "parentId": "66cbbe6ed31d686b24021633", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00382", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216d4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216d4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00274", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216d6", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbbe6ed31d686b240216d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216d8", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66cbbe6ed31d686b240216d4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021637", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021637", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021639", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbbe6ed31d686b24021637", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402163b", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66cbbe6ed31d686b24021637", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402163d", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbbe6ed31d686b24021637", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00255", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216da", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216da", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00517", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216dc", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbbe6ed31d686b240216da", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00376", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216de", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216de", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216e0", - "_tpl": "6194f02d9bb3d20b0946d2f0", - "parentId": "66cbbe6ed31d686b240216de", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402163f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402163f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216e2", - "_tpl": "5d00f63bd7ad1a59283b1c1e", - "parentId": "66cbbe6ed31d686b240216de", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021641", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbbe6ed31d686b2402163f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216e4", - "_tpl": "56ea7293d2720b8d4b8b45ba", - "parentId": "66cbbe6ed31d686b240216de", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021643", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66cbbe6ed31d686b2402163f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021645", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbbe6ed31d686b2402163f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216e6", - "_tpl": "66b5f69ea7f72d197e70bcdb", - "parentId": "66cbbe6ed31d686b240216de", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021647", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021647", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021649", + "_tpl": "5c7e5f112e221600106f4ede", + "parentId": "66cbbe6ed31d686b24021647", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00237", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216e8", - "_tpl": "5a78830bc5856700137e4c90", - "parentId": "66cbbe6ed31d686b240216de", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00289", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216ea", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216ea", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240216ec", - "_tpl": "57ffaea724597779f52b3a4d", - "parentId": "66cbbe6ed31d686b240216ea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402164b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402164b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216ee", - "_tpl": "61965d9058ef8c428c287e0d", - "parentId": "66cbbe6ed31d686b240216ea", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402164d", + "_tpl": "59985a6c86f77414ec448d17", + "parentId": "66cbbe6ed31d686b2402164b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216f0", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbbe6ed31d686b240216ea", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021650", + "_tpl": "573728cc24597765cc785b5d", + "parentId": "66cbbe6ed31d686b2402164b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 52 - } - }, - { - "_id": "66cbbe6ed31d686b240216f2", - "_tpl": "5ede475b549eed7c6d5c18fb", - "parentId": "66cbbe6ed31d686b240216ea", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021651", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6ed31d686b24021650", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216f4", - "_tpl": "55d481904bdc2d8c2f8b456a", - "parentId": "66cbbe6ed31d686b240216ea", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021652", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "parentId": "66cbbe6ed31d686b2402164b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216f6", - "_tpl": "58ac1bf086f77420ed183f9f", - "parentId": "66cbbe6ed31d686b240216ea", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021653", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "66cbbe6ed31d686b24021652", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216f8", - "_tpl": "56ea7293d2720b8d4b8b45ba", - "parentId": "66cbbe6ed31d686b240216ea", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021656", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66cbbe6ed31d686b24021653", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 1.0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216fa", - "_tpl": "6194f41f9fb0c665d5490e75", - "parentId": "66cbbe6ed31d686b240216ea", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021654", + "_tpl": "5a38ef1fc4a282000b1521f6", + "parentId": "66cbbe6ed31d686b24021652", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b24021655", + "_tpl": "5a38eecdc4a282329a73b512", + "parentId": "66cbbe6ed31d686b24021654", + "slotId": "mod_pistol_grip" } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00389", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240216fc", - "Items": [ - { - "_id": "66cbbe6ed31d686b240216fc", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240216fd", - "_tpl": "639343fce101f4caa40a4ef3", - "parentId": "66cbbe6ed31d686b240216fc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbbe6ed31d686b240216fe", - "_tpl": "6573101e292ecadbfa09b389", - "parentId": "66cbbe6ed31d686b240216fd", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbbe6ed31d686b240216ff", - "_tpl": "6573102b292ecadbfa09b38d", - "parentId": "66cbbe6ed31d686b240216fd", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbbe6ed31d686b24021700", - "_tpl": "65731038292ecadbfa09b391", - "parentId": "66cbbe6ed31d686b240216fd", - "slotId": "Soft_armor_left" - }, - { - "_id": "66cbbe6ed31d686b24021701", - "_tpl": "65731045f31d5be00e08a75a", - "parentId": "66cbbe6ed31d686b240216fd", - "slotId": "soft_armor_right" - }, - { - "_id": "66cbbe6ed31d686b24021702", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "66cbbe6ed31d686b240216fd", - "slotId": "Front_plate" + { + "Id": "container_Lighthouse_DesignStuff_00489", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021703", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "66cbbe6ed31d686b240216fd", - "slotId": "Back_plate" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00244", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021705", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021705", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021707", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b24021705", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021658", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021658", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402165a", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbbe6ed31d686b24021658", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402165c", + "_tpl": "59e366c186f7741778269d85", + "parentId": "66cbbe6ed31d686b24021658", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402165e", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbbe6ed31d686b24021658", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021709", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021709", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00296", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402170b", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbbe6ed31d686b24021709", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402170d", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbbe6ed31d686b24021709", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021660", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021660", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402170f", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "66cbbe6ed31d686b24021709", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021662", + "_tpl": "5b222d335acfc4771e1be099", + "parentId": "66cbbe6ed31d686b24021660", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00402", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021711", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021711", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00363", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021714", - "_tpl": "573728cc24597765cc785b5d", - "parentId": "66cbbe6ed31d686b24021711", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021664", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021664", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021666", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbbe6ed31d686b24021664", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021668", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b24021664", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00305", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021715", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6ed31d686b24021714", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021717", - "_tpl": "5d03784a86f774203e7e0c4d", - "parentId": "66cbbe6ed31d686b24021711", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402166a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402166a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402166c", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66cbbe6ed31d686b2402166a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00401", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021719", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021719", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00356", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402171b", - "_tpl": "60a6220e953894617404b00a", - "parentId": "66cbbe6ed31d686b24021719", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402171c", - "_tpl": "56d59856d2720bd8418b456a", - "parentId": "66cbbe6ed31d686b24021719", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402166e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402166e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021670", + "_tpl": "5734773724597737fd047c14", + "parentId": "66cbbe6ed31d686b2402166e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021672", + "_tpl": "57347d692459774491567cf1", + "parentId": "66cbbe6ed31d686b2402166e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00174", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402171d", - "_tpl": "56d5a1f7d2720bb3418b456a", - "parentId": "66cbbe6ed31d686b2402171c", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b2402171e", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "66cbbe6ed31d686b2402171c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b2402171f", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "66cbbe6ed31d686b2402171c", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b24021720", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "66cbbe6ed31d686b2402171f", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b24021721", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "66cbbe6ed31d686b2402171f", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbbe6ed31d686b24021722", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "66cbbe6ed31d686b2402171c", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021723", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbbe6ed31d686b24021722", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021674", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021674", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00427", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021725", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b24021719", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021727", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbbe6ed31d686b24021719", - "slotId": "main", - "location": { - "x": 3, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021676", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021676", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021678", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbbe6ed31d686b24021676", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00491", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021729", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021729", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00380", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402172b", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbbe6ed31d686b24021729", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402172c", - "_tpl": "66015072e9f84d5680039678", - "parentId": "66cbbe6ed31d686b24021729", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402167a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402167a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402167c", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbbe6ed31d686b2402167a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbbe6ed31d686b2402167e", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbbe6ed31d686b2402167a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00173", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402172d", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "66cbbe6ed31d686b2402172c", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402172e", - "_tpl": "6601546f86889319850bd566", - "parentId": "66cbbe6ed31d686b2402172d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 19.0 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00449", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021730", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021730", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021732", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b24021730", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021734", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbbe6ed31d686b24021730", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021680", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021680", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021736", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66cbbe6ed31d686b24021730", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021682", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b24021680", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00206", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021738", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021738", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00167", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402173a", - "_tpl": "5b3a16655acfc40016387a2a", - "parentId": "66cbbe6ed31d686b24021738", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00385", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402173c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402173c", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402173e", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbbe6ed31d686b2402173c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021684", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021684", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021740", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbbe6ed31d686b2402173c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021686", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbbe6ed31d686b24021684", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021742", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbbe6ed31d686b2402173c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021688", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66cbbe6ed31d686b24021684", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402168a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbbe6ed31d686b24021684", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402168c", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbbe6ed31d686b24021684", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021744", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021744", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00447", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021746", - "_tpl": "5aa2b923e5b5b000137b7589", - "parentId": "66cbbe6ed31d686b24021744", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021748", - "_tpl": "65f05b9d39dab9e9ec049cfd", - "parentId": "66cbbe6ed31d686b24021744", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402168e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402168e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021690", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b2402168e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021692", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbbe6ed31d686b2402168e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021694", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66cbbe6ed31d686b2402168e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402174a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402174a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00435", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402174c", - "_tpl": "5a13ef0686f7746e5a411744", - "parentId": "66cbbe6ed31d686b2402174a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402174e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402174e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021750", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbbe6ed31d686b2402174e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021752", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021752", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021696", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021696", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021698", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b24021696", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402169a", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbbe6ed31d686b24021696", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00019", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021754", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021754", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00461", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021756", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbbe6ed31d686b24021754", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00209", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021758", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021758", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402175a", - "_tpl": "5b39ffbd5acfc47a8773fb06", - "parentId": "66cbbe6ed31d686b24021758", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402169c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402169c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402175c", - "_tpl": "5c87ca002e221600114cb150", - "parentId": "66cbbe6ed31d686b24021758", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402169e", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b2402169c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402175e", - "_tpl": "5a9d6d13a2750c00164f6b03", - "parentId": "66cbbe6ed31d686b24021758", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240216a0", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b2402169c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216a2", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbbe6ed31d686b2402169c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00316", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021760", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021760", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00372", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021762", - "_tpl": "5de8eaadbbaf010b10528a6d", - "parentId": "66cbbe6ed31d686b24021760", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021764", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbbe6ed31d686b24021760", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216a4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216a4", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021765", - "_tpl": "628dc750b910320f4c27a732", - "parentId": "66cbbe6ed31d686b24021760", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240216a6", + "_tpl": "59e0d99486f7744a32234762", + "parentId": "66cbbe6ed31d686b240216a4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbbe6ed31d686b240216a8", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbbe6ed31d686b240216a4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216aa", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbbe6ed31d686b240216a4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 660 + } + }, + { + "_id": "66cbbe6ed31d686b240216ac", + "_tpl": "59e6927d86f77411da468256", + "parentId": "66cbbe6ed31d686b240216a4", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 38 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00050", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021766", - "_tpl": "6572f1ca4c8d903cc60c874e", - "parentId": "66cbbe6ed31d686b24021765", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbbe6ed31d686b24021767", - "_tpl": "6572f1d60103b4a3270332db", - "parentId": "66cbbe6ed31d686b24021765", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbbe6ed31d686b24021768", - "_tpl": "6572f1e10103b4a3270332df", - "parentId": "66cbbe6ed31d686b24021765", - "slotId": "Soft_armor_left" - }, - { - "_id": "66cbbe6ed31d686b24021769", - "_tpl": "6572f1edea457732140ce875", - "parentId": "66cbbe6ed31d686b24021765", - "slotId": "soft_armor_right" - }, - { - "_id": "66cbbe6ed31d686b2402176a", - "_tpl": "6572f1f7ea457732140ce879", - "parentId": "66cbbe6ed31d686b24021765", - "slotId": "Groin" - }, - { - "_id": "66cbbe6ed31d686b2402176b", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "66cbbe6ed31d686b24021765", - "slotId": "Front_plate" - }, - { - "_id": "66cbbe6ed31d686b2402176c", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "66cbbe6ed31d686b24021765", - "slotId": "Back_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402176e", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "66cbbe6ed31d686b24021760", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216ae", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216ae", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240216b0", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbbe6ed31d686b240216ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00493", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402176f", - "_tpl": "5d3eb3b0a4b93615055e84d2", - "parentId": "66cbbe6ed31d686b24021760", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216b2", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216b2", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbbe6ed31d686b240216b4", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbbe6ed31d686b240216b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00205", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021770", - "_tpl": "5d3eb5b6a4b9361eab311902", - "parentId": "66cbbe6ed31d686b2402176f", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b24021771", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "66cbbe6ed31d686b2402176f", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b24021772", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "66cbbe6ed31d686b24021771", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b24021773", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "66cbbe6ed31d686b24021771", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbbe6ed31d686b24021774", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "66cbbe6ed31d686b2402176f", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021775", - "_tpl": "5cc80f8fe4a949033b0224a2", - "parentId": "66cbbe6ed31d686b24021774", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11.0 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00318", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021777", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021777", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021779", - "_tpl": "5eeb2ff5ea4f8b73c827350b", - "parentId": "66cbbe6ed31d686b24021777", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216b6", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216b6", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402177b", - "_tpl": "62ff9920fe938a24c90c10d2", - "parentId": "66cbbe6ed31d686b24021777", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240216b8", + "_tpl": "5a6f5f078dc32e00094b97dd", + "parentId": "66cbbe6ed31d686b240216b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402177d", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "66cbbe6ed31d686b24021777", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00322", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402177f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402177f", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021781", - "_tpl": "66992f4db9f31ddda10dd1c8", - "parentId": "66cbbe6ed31d686b2402177f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240216ba", + "_tpl": "5de8ea8ffd6b4e6e2276dc35", + "parentId": "66cbbe6ed31d686b240216b6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021783", - "_tpl": "5947e98b86f774778f1448bc", - "parentId": "66cbbe6ed31d686b2402177f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240216bc", + "_tpl": "5c617a5f2e2216000f1e81b3", + "parentId": "66cbbe6ed31d686b240216b6", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021785", - "_tpl": "5d0379a886f77420407aa271", - "parentId": "66cbbe6ed31d686b2402177f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00394", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021787", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021787", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021789", - "_tpl": "5bbdb870d4351e00367fb67d", - "parentId": "66cbbe6ed31d686b24021787", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240216be", + "_tpl": "57ade1442459771557167e15", + "parentId": "66cbbe6ed31d686b240216b6", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402178b", - "_tpl": "5aa7e3abe5b5b000171d064d", - "parentId": "66cbbe6ed31d686b24021787", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00200", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402178d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402178d", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402178f", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbbe6ed31d686b2402178d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 36 + { + "_id": "66cbbe6ed31d686b240216c0", + "_tpl": "603648ff5a45383c122086ac", + "parentId": "66cbbe6ed31d686b240216b6", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216c2", + "_tpl": "5cdeaca5d7f00c00b61c4b70", + "parentId": "66cbbe6ed31d686b240216b6", + "slotId": "main", + "location": { + "x": 4, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00045", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021791", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021791", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00119", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021793", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66cbbe6ed31d686b24021791", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00506", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021795", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021795", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021797", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbbe6ed31d686b24021795", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216c4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216c4", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216c6", + "_tpl": "5cf4fb76d7f00c065703d3ac", + "parentId": "66cbbe6ed31d686b240216c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021799", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021799", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00466", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402179b", - "_tpl": "60363c0c92ec1c31037959f5", - "parentId": "66cbbe6ed31d686b24021799", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00486", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402179d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402179d", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402179f", - "_tpl": "590de71386f774347051a052", - "parentId": "66cbbe6ed31d686b2402179d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216c8", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216c8", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240217a0", - "_tpl": "56d59856d2720bd8418b456a", - "parentId": "66cbbe6ed31d686b2402179d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbbe6ed31d686b240217a1", - "_tpl": "56d5a1f7d2720bb3418b456a", - "parentId": "66cbbe6ed31d686b240217a0", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b240217a2", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "66cbbe6ed31d686b240217a0", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b240217a3", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "66cbbe6ed31d686b240217a0", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b240217a4", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "66cbbe6ed31d686b240217a3", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b240217a5", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "66cbbe6ed31d686b240217a3", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbbe6ed31d686b240217a6", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "66cbbe6ed31d686b240217a0", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b240217a7", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbbe6ed31d686b240217a6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15.0 + { + "_id": "66cbbe6ed31d686b240216ca", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbbe6ed31d686b240216c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00378", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217a9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217a9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00203", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217ab", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbbe6ed31d686b240217a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217ad", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbbe6ed31d686b240217a9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216cc", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216cc", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216ce", + "_tpl": "607ffb988900dc2d9a55b6e4", + "parentId": "66cbbe6ed31d686b240216cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216d0", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "66cbbe6ed31d686b240216cc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216d2", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "66cbbe6ed31d686b240216cc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00090", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217af", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217af", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00382", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217b2", - "_tpl": "5737330a2459776af32363a1", - "parentId": "66cbbe6ed31d686b240217af", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216d4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216d4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216d6", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbbe6ed31d686b240216d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240216d8", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66cbbe6ed31d686b240216d4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00255", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217b3", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbbe6ed31d686b240217b2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217b6", - "_tpl": "5737250c2459776125652acc", - "parentId": "66cbbe6ed31d686b240217af", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216da", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216da", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240217b7", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b240217b6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + { + "_id": "66cbbe6ed31d686b240216dc", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbbe6ed31d686b240216da", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00455", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217b9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217b9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00376", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217bb", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbbe6ed31d686b240217b9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217bd", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbbe6ed31d686b240217b9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216de", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216de", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216e0", + "_tpl": "6194f02d9bb3d20b0946d2f0", + "parentId": "66cbbe6ed31d686b240216de", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216e2", + "_tpl": "5d00f63bd7ad1a59283b1c1e", + "parentId": "66cbbe6ed31d686b240216de", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216e4", + "_tpl": "56ea7293d2720b8d4b8b45ba", + "parentId": "66cbbe6ed31d686b240216de", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216e6", + "_tpl": "66b5f69ea7f72d197e70bcdb", + "parentId": "66cbbe6ed31d686b240216de", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216e8", + "_tpl": "5a78830bc5856700137e4c90", + "parentId": "66cbbe6ed31d686b240216de", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00424", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217bf", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217bf", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00289", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217c1", - "_tpl": "5f994730c91ed922dd355de3", - "parentId": "66cbbe6ed31d686b240217bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217c3", - "_tpl": "5d2f213448f0355009199284", - "parentId": "66cbbe6ed31d686b240217bf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216ea", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216ea", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240217c5", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbbe6ed31d686b240217bf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240216ec", + "_tpl": "57ffaea724597779f52b3a4d", + "parentId": "66cbbe6ed31d686b240216ea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240217c7", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbbe6ed31d686b240217bf", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240216ee", + "_tpl": "61965d9058ef8c428c287e0d", + "parentId": "66cbbe6ed31d686b240216ea", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216f0", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbbe6ed31d686b240216ea", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 52 + } + }, + { + "_id": "66cbbe6ed31d686b240216f2", + "_tpl": "5ede475b549eed7c6d5c18fb", + "parentId": "66cbbe6ed31d686b240216ea", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216f4", + "_tpl": "55d481904bdc2d8c2f8b456a", + "parentId": "66cbbe6ed31d686b240216ea", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216f6", + "_tpl": "58ac1bf086f77420ed183f9f", + "parentId": "66cbbe6ed31d686b240216ea", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216f8", + "_tpl": "56ea7293d2720b8d4b8b45ba", + "parentId": "66cbbe6ed31d686b240216ea", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240216fa", + "_tpl": "6194f41f9fb0c665d5490e75", + "parentId": "66cbbe6ed31d686b240216ea", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00477", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217c9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217c9", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00389", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217cb", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbbe6ed31d686b240217c9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00211", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217cd", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217cd", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217cf", - "_tpl": "5a0abb6e1526d8000a025282", - "parentId": "66cbbe6ed31d686b240217cd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240216fc", + "Items": [ + { + "_id": "66cbbe6ed31d686b240216fc", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240217d1", - "_tpl": "5d123102d7ad1a004e475fe5", - "parentId": "66cbbe6ed31d686b240217cd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240216fd", + "_tpl": "639343fce101f4caa40a4ef3", + "parentId": "66cbbe6ed31d686b240216fc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240217d3", - "_tpl": "576a63cd2459771e796e0e11", - "parentId": "66cbbe6ed31d686b240217cd", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240216fe", + "_tpl": "6573101e292ecadbfa09b389", + "parentId": "66cbbe6ed31d686b240216fd", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbbe6ed31d686b240216ff", + "_tpl": "6573102b292ecadbfa09b38d", + "parentId": "66cbbe6ed31d686b240216fd", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbbe6ed31d686b24021700", + "_tpl": "65731038292ecadbfa09b391", + "parentId": "66cbbe6ed31d686b240216fd", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbbe6ed31d686b24021701", + "_tpl": "65731045f31d5be00e08a75a", + "parentId": "66cbbe6ed31d686b240216fd", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbbe6ed31d686b24021702", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "66cbbe6ed31d686b240216fd", + "slotId": "Front_plate" + }, + { + "_id": "66cbbe6ed31d686b24021703", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "66cbbe6ed31d686b240216fd", + "slotId": "Back_plate" } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00429", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217d5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217d5", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00244", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217d7", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbbe6ed31d686b240217d5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "n1", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217d9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217d9", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217db", - "_tpl": "5e023cf8186a883be655e54f", - "parentId": "66cbbe6ed31d686b240217d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 11 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021705", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021705", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021707", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b24021705", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00292", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217dd", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217dd", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217df", - "_tpl": "5f2aa43ba9b91d26f20ae6d2", - "parentId": "66cbbe6ed31d686b240217dd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217e1", - "_tpl": "651580dc71a4f10aec4b6056", - "parentId": "66cbbe6ed31d686b240217dd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021709", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021709", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402170b", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbbe6ed31d686b24021709", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402170d", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbbe6ed31d686b24021709", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402170f", + "_tpl": "619256e5f8af2c1a4e1f5d92", + "parentId": "66cbbe6ed31d686b24021709", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00478", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217e3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217e3", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00402", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217e5", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbbe6ed31d686b240217e3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021711", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021711", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021714", + "_tpl": "573728cc24597765cc785b5d", + "parentId": "66cbbe6ed31d686b24021711", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021715", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6ed31d686b24021714", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021717", + "_tpl": "5d03784a86f774203e7e0c4d", + "parentId": "66cbbe6ed31d686b24021711", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00401", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217e6", - "_tpl": "5aa7e454e5b5b0214e506fa2", - "parentId": "66cbbe6ed31d686b240217e3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217e7", - "_tpl": "657f925dada5fadd1f07a57a", - "parentId": "66cbbe6ed31d686b240217e6", - "slotId": "Helmet_top" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021719", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021719", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402171b", + "_tpl": "60a6220e953894617404b00a", + "parentId": "66cbbe6ed31d686b24021719", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402171c", + "_tpl": "56d59856d2720bd8418b456a", + "parentId": "66cbbe6ed31d686b24021719", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402171d", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "66cbbe6ed31d686b2402171c", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b2402171e", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "66cbbe6ed31d686b2402171c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b2402171f", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "66cbbe6ed31d686b2402171c", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b24021720", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "66cbbe6ed31d686b2402171f", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b24021721", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "66cbbe6ed31d686b2402171f", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbbe6ed31d686b24021722", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "66cbbe6ed31d686b2402171c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021723", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbbe6ed31d686b24021722", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } + }, + { + "_id": "66cbbe6ed31d686b24021725", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b24021719", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021727", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbbe6ed31d686b24021719", + "slotId": "main", + "location": { + "x": 3, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00491", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217e8", - "_tpl": "657f92acada5fadd1f07a57e", - "parentId": "66cbbe6ed31d686b240217e6", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217e9", - "_tpl": "657f92e7f4c82973640b2354", - "parentId": "66cbbe6ed31d686b240217e6", - "slotId": "Helmet_ears" - }, - { - "_id": "66cbbe6ed31d686b240217ea", - "_tpl": "57f4c844245977379d5c14d1", - "parentId": "66cbbe6ed31d686b240217e3", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021729", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021729", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402172b", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbbe6ed31d686b24021729", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402172c", + "_tpl": "66015072e9f84d5680039678", + "parentId": "66cbbe6ed31d686b24021729", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbbe6ed31d686b2402172d", + "_tpl": "66015dc4aaad2f54cb04c56a", + "parentId": "66cbbe6ed31d686b2402172c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b2402172e", + "_tpl": "6601546f86889319850bd566", + "parentId": "66cbbe6ed31d686b2402172d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 19.0 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00449", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217eb", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66cbbe6ed31d686b240217ea", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b240217ec", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbbe6ed31d686b240217ea", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b240217ed", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbbe6ed31d686b240217ec", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217ef", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbbe6ed31d686b240217e3", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021730", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021730", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021732", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b24021730", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021734", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbbe6ed31d686b24021730", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021736", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66cbbe6ed31d686b24021730", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00212", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217f1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217f1", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00206", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217f3", - "_tpl": "655dccfdbdcc6b5df71382b6", - "parentId": "66cbbe6ed31d686b240217f1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217f5", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "parentId": "66cbbe6ed31d686b240217f1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021738", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021738", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402173a", + "_tpl": "5b3a16655acfc40016387a2a", + "parentId": "66cbbe6ed31d686b24021738", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00351", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217f7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217f7", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00385", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217f9", - "_tpl": "5d120a10d7ad1a4e1026ba85", - "parentId": "66cbbe6ed31d686b240217f7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00055", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217fb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217fb", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240217fd", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbbe6ed31d686b240217fb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402173c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402173c", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402173e", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbbe6ed31d686b2402173c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021740", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbbe6ed31d686b2402173c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021742", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbbe6ed31d686b2402173c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00166", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240217ff", - "Items": [ - { - "_id": "66cbbe6ed31d686b240217ff", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021801", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbbe6ed31d686b240217ff", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021803", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbbe6ed31d686b240217ff", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021744", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021744", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021805", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbbe6ed31d686b240217ff", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021746", + "_tpl": "5aa2b923e5b5b000137b7589", + "parentId": "66cbbe6ed31d686b24021744", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021748", + "_tpl": "65f05b9d39dab9e9ec049cfd", + "parentId": "66cbbe6ed31d686b24021744", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021807", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbbe6ed31d686b240217ff", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021809", - "_tpl": "59e366c186f7741778269d85", - "parentId": "66cbbe6ed31d686b240217ff", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402174a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402174a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402174c", + "_tpl": "5a13ef0686f7746e5a411744", + "parentId": "66cbbe6ed31d686b2402174a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00495", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402180b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402180b", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402180c", - "_tpl": "5b40e2bc5acfc40016388216", - "parentId": "66cbbe6ed31d686b2402180b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbbe6ed31d686b2402180d", - "_tpl": "657112234269e9a568089eac", - "parentId": "66cbbe6ed31d686b2402180c", - "slotId": "Helmet_top" - }, - { - "_id": "66cbbe6ed31d686b2402180e", - "_tpl": "657112a4818110db4600aa66", - "parentId": "66cbbe6ed31d686b2402180c", - "slotId": "Helmet_back" + { + "Id": "container_Lighthouse_DesignStuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402180f", - "_tpl": "657112ce22996eaf110881fb", - "parentId": "66cbbe6ed31d686b2402180c", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021811", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbbe6ed31d686b2402180b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402174e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402174e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021813", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbbe6ed31d686b2402180b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021750", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbbe6ed31d686b2402174e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00196", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021815", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021815", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021817", - "_tpl": "5b3f7bf05acfc433000ecf6b", - "parentId": "66cbbe6ed31d686b24021815", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021819", - "_tpl": "5ba26835d4351e0035628ff5", - "parentId": "66cbbe6ed31d686b24021815", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 39 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021752", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021752", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00019", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402181b", - "_tpl": "62ff9920fe938a24c90c10d2", - "parentId": "66cbbe6ed31d686b24021815", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402181d", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6ed31d686b24021815", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021754", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021754", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 29 + { + "_id": "66cbbe6ed31d686b24021756", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbbe6ed31d686b24021754", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00209", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402181f", - "_tpl": "572b7adb24597762ae139821", - "parentId": "66cbbe6ed31d686b24021815", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021821", - "_tpl": "5cc9c20cd7f00c001336c65d", - "parentId": "66cbbe6ed31d686b24021815", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021758", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021758", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021823", - "_tpl": "5d6e689ca4b9361bc8618956", - "parentId": "66cbbe6ed31d686b24021815", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402175a", + "_tpl": "5b39ffbd5acfc47a8773fb06", + "parentId": "66cbbe6ed31d686b24021758", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 4 - } - }, - { - "_id": "66cbbe6ed31d686b24021825", - "_tpl": "5a702d198dc32e000b452fc3", - "parentId": "66cbbe6ed31d686b24021815", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402175c", + "_tpl": "5c87ca002e221600114cb150", + "parentId": "66cbbe6ed31d686b24021758", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402175e", + "_tpl": "5a9d6d13a2750c00164f6b03", + "parentId": "66cbbe6ed31d686b24021758", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00079", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021827", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021827", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021828", - "_tpl": "66b5f666cad6f002ab7214c2", - "parentId": "66cbbe6ed31d686b24021827", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbbe6ed31d686b24021829", - "_tpl": "66b61cfae98be930d701c029", - "parentId": "66cbbe6ed31d686b24021828", - "slotId": "Helmet_top" + { + "Id": "container_Lighthouse_DesignStuff_00316", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402182a", - "_tpl": "66b61ce0c5d72b027748867e", - "parentId": "66cbbe6ed31d686b24021828", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402182c", - "_tpl": "5c59529a2e221602b177d160", - "parentId": "66cbbe6ed31d686b24021827", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00335", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402182e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402182e", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021830", - "_tpl": "62a0a043cf4a99369e2624a5", - "parentId": "66cbbe6ed31d686b2402182e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021760", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021760", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021762", + "_tpl": "5de8eaadbbaf010b10528a6d", + "parentId": "66cbbe6ed31d686b24021760", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021764", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbbe6ed31d686b24021760", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021765", + "_tpl": "628dc750b910320f4c27a732", + "parentId": "66cbbe6ed31d686b24021760", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b24021766", + "_tpl": "6572f1ca4c8d903cc60c874e", + "parentId": "66cbbe6ed31d686b24021765", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbbe6ed31d686b24021767", + "_tpl": "6572f1d60103b4a3270332db", + "parentId": "66cbbe6ed31d686b24021765", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbbe6ed31d686b24021768", + "_tpl": "6572f1e10103b4a3270332df", + "parentId": "66cbbe6ed31d686b24021765", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbbe6ed31d686b24021769", + "_tpl": "6572f1edea457732140ce875", + "parentId": "66cbbe6ed31d686b24021765", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbbe6ed31d686b2402176a", + "_tpl": "6572f1f7ea457732140ce879", + "parentId": "66cbbe6ed31d686b24021765", + "slotId": "Groin" + }, + { + "_id": "66cbbe6ed31d686b2402176b", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "66cbbe6ed31d686b24021765", + "slotId": "Front_plate" + }, + { + "_id": "66cbbe6ed31d686b2402176c", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "66cbbe6ed31d686b24021765", + "slotId": "Back_plate" + }, + { + "_id": "66cbbe6ed31d686b2402176e", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "66cbbe6ed31d686b24021760", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402176f", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "parentId": "66cbbe6ed31d686b24021760", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 1 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbbe6ed31d686b24021770", + "_tpl": "5d3eb5b6a4b9361eab311902", + "parentId": "66cbbe6ed31d686b2402176f", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b24021771", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "66cbbe6ed31d686b2402176f", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b24021772", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "66cbbe6ed31d686b24021771", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b24021773", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "66cbbe6ed31d686b24021771", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbbe6ed31d686b24021774", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "66cbbe6ed31d686b2402176f", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021775", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "66cbbe6ed31d686b24021774", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11.0 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00341", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021832", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021832", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00318", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021834", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbbe6ed31d686b24021832", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00457", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021836", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021836", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021838", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b24021836", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021777", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021777", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021779", + "_tpl": "5eeb2ff5ea4f8b73c827350b", + "parentId": "66cbbe6ed31d686b24021777", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402177b", + "_tpl": "62ff9920fe938a24c90c10d2", + "parentId": "66cbbe6ed31d686b24021777", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402177d", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "66cbbe6ed31d686b24021777", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00185", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402183a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402183a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00322", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402183c", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66cbbe6ed31d686b2402183a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00284", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402183e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402183e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021840", - "_tpl": "5a0f006986f7741ffd2fe484", - "parentId": "66cbbe6ed31d686b2402183e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402177f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402177f", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021781", + "_tpl": "66992f4db9f31ddda10dd1c8", + "parentId": "66cbbe6ed31d686b2402177f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021783", + "_tpl": "5947e98b86f774778f1448bc", + "parentId": "66cbbe6ed31d686b2402177f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021785", + "_tpl": "5d0379a886f77420407aa271", + "parentId": "66cbbe6ed31d686b2402177f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00283", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021842", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021842", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00394", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021844", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbbe6ed31d686b24021842", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00282", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021846", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021846", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021848", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbbe6ed31d686b24021846", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021787", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021787", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021789", + "_tpl": "5bbdb870d4351e00367fb67d", + "parentId": "66cbbe6ed31d686b24021787", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402178b", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "66cbbe6ed31d686b24021787", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00281", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402184a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402184a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00200", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402184c", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbbe6ed31d686b2402184a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00370", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402184e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402184e", - "_tpl": "61aa1ead84ea0800645777fd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021850", - "_tpl": "5751a89d24597722aa0e8db0", - "parentId": "66cbbe6ed31d686b2402184e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402178d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402178d", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402178f", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbbe6ed31d686b2402178d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 36 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00045", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021852", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbbe6ed31d686b2402184e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021854", - "_tpl": "5d02797c86f774203f38e30a", - "parentId": "66cbbe6ed31d686b2402184e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021791", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021791", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021793", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66cbbe6ed31d686b24021791", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00506", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021856", - "_tpl": "5d02797c86f774203f38e30a", - "parentId": "66cbbe6ed31d686b2402184e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021858", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbbe6ed31d686b2402184e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021795", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021795", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021797", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbbe6ed31d686b24021795", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00345", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402185a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402185a", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402185c", - "_tpl": "606587d11246154cad35d635", - "parentId": "66cbbe6ed31d686b2402185a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402185e", - "_tpl": "5c9a26332e2216001219ea70", - "parentId": "66cbbe6ed31d686b2402185a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021799", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021799", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402179b", + "_tpl": "60363c0c92ec1c31037959f5", + "parentId": "66cbbe6ed31d686b24021799", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00194", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021860", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021860", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021861", - "_tpl": "5c0e57ba86f7747fa141986d", - "parentId": "66cbbe6ed31d686b24021860", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbbe6ed31d686b24021862", - "_tpl": "65707fc348c7a887f2010432", - "parentId": "66cbbe6ed31d686b24021861", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbbe6ed31d686b24021863", - "_tpl": "6570800612755ae0d907acf8", - "parentId": "66cbbe6ed31d686b24021861", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbbe6ed31d686b24021864", - "_tpl": "65708070f65e2491bf00972c", - "parentId": "66cbbe6ed31d686b24021861", - "slotId": "Soft_armor_left" - }, - { - "_id": "66cbbe6ed31d686b24021865", - "_tpl": "657080a212755ae0d907ad04", - "parentId": "66cbbe6ed31d686b24021861", - "slotId": "soft_armor_right" - }, - { - "_id": "66cbbe6ed31d686b24021866", - "_tpl": "657080ca12755ae0d907ad5e", - "parentId": "66cbbe6ed31d686b24021861", - "slotId": "Collar" - }, - { - "_id": "66cbbe6ed31d686b24021867", - "_tpl": "65708122f65e2491bf009755", - "parentId": "66cbbe6ed31d686b24021861", - "slotId": "Groin" - }, - { - "_id": "66cbbe6ed31d686b24021868", - "_tpl": "65708165696fe382cf073255", - "parentId": "66cbbe6ed31d686b24021861", - "slotId": "Groin_back" - }, - { - "_id": "66cbbe6ed31d686b24021869", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "66cbbe6ed31d686b24021861", - "slotId": "Front_plate" + { + "Id": "container_Lighthouse_DesignStuff_00486", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402186a", - "_tpl": "657b22485f444d6dff0c6c2f", - "parentId": "66cbbe6ed31d686b24021861", - "slotId": "Back_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402186c", - "_tpl": "5648ae314bdc2d3d1c8b457f", - "parentId": "66cbbe6ed31d686b24021860", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402179d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402179d", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402186e", - "_tpl": "5c0d688c86f77413ae3407b2", - "parentId": "66cbbe6ed31d686b24021860", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402179f", + "_tpl": "590de71386f774347051a052", + "parentId": "66cbbe6ed31d686b2402179d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 16 - } - }, - { - "_id": "66cbbe6ed31d686b24021870", - "_tpl": "5a16b8a9fcdbcb00165aa6ca", - "parentId": "66cbbe6ed31d686b24021860", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240217a0", + "_tpl": "56d59856d2720bd8418b456a", + "parentId": "66cbbe6ed31d686b2402179d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b240217a1", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "66cbbe6ed31d686b240217a0", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b240217a2", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "66cbbe6ed31d686b240217a0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b240217a3", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "66cbbe6ed31d686b240217a0", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b240217a4", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "66cbbe6ed31d686b240217a3", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b240217a5", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "66cbbe6ed31d686b240217a3", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbbe6ed31d686b240217a6", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "66cbbe6ed31d686b240217a0", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b240217a7", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbbe6ed31d686b240217a6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15.0 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00201", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021872", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021872", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00378", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021874", - "_tpl": "5cf8f3b0d7f00c00217872ef", - "parentId": "66cbbe6ed31d686b24021872", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021876", - "_tpl": "651580dc71a4f10aec4b6056", - "parentId": "66cbbe6ed31d686b24021872", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217a9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217a9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217ab", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbbe6ed31d686b240217a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217ad", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbbe6ed31d686b240217a9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00199", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021878", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021878", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00090", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402187a", - "_tpl": "656f664200d62bcd2e024077", - "parentId": "66cbbe6ed31d686b24021878", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402187c", - "_tpl": "5c5db5fc2e2216000f1b2842", - "parentId": "66cbbe6ed31d686b24021878", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217af", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217af", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217b2", + "_tpl": "5737330a2459776af32363a1", + "parentId": "66cbbe6ed31d686b240217af", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217b3", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbbe6ed31d686b240217b2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "66cbbe6ed31d686b240217b6", + "_tpl": "5737250c2459776125652acc", + "parentId": "66cbbe6ed31d686b240217af", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217b7", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b240217b6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Lootable_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402187e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402187e", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00455", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021880", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbbe6ed31d686b2402187e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 646 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021882", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbbe6ed31d686b2402187e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 941 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217b9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217b9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217bb", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbbe6ed31d686b240217b9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217bd", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbbe6ed31d686b240217b9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00494", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021884", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021884", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021885", - "_tpl": "5c0e53c886f7747fa54205c7", - "parentId": "66cbbe6ed31d686b24021884", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbbe6ed31d686b24021886", - "_tpl": "654a8b0b0337d53f9102c2ae", - "parentId": "66cbbe6ed31d686b24021885", - "slotId": "soft_armor_front" - }, - { - "_id": "66cbbe6ed31d686b24021887", - "_tpl": "654a8976f414fcea4004d78b", - "parentId": "66cbbe6ed31d686b24021885", - "slotId": "soft_armor_back" - }, - { - "_id": "66cbbe6ed31d686b24021888", - "_tpl": "654a8b3df414fcea4004d78f", - "parentId": "66cbbe6ed31d686b24021885", - "slotId": "soft_armor_left" - }, - { - "_id": "66cbbe6ed31d686b24021889", - "_tpl": "654a8b80f414fcea4004d797", - "parentId": "66cbbe6ed31d686b24021885", - "slotId": "soft_armor_right" - }, - { - "_id": "66cbbe6ed31d686b2402188a", - "_tpl": "654a8ae00337d53f9102c2aa", - "parentId": "66cbbe6ed31d686b24021885", - "slotId": "Collar" - }, - { - "_id": "66cbbe6ed31d686b2402188b", - "_tpl": "654a8bc5f414fcea4004d79b", - "parentId": "66cbbe6ed31d686b24021885", - "slotId": "Groin" - }, - { - "_id": "66cbbe6ed31d686b2402188c", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "66cbbe6ed31d686b24021885", - "slotId": "front_plate" + { + "Id": "container_Lighthouse_DesignStuff_00424", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402188d", - "_tpl": "656efd66034e8e01c407f35c", - "parentId": "66cbbe6ed31d686b24021885", - "slotId": "back_plate" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00187", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402188f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402188f", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021891", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbbe6ed31d686b2402188f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217bf", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217bf", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021893", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbbe6ed31d686b2402188f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240217c1", + "_tpl": "5f994730c91ed922dd355de3", + "parentId": "66cbbe6ed31d686b240217bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217c3", + "_tpl": "5d2f213448f0355009199284", + "parentId": "66cbbe6ed31d686b240217bf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217c5", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbbe6ed31d686b240217bf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217c7", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbbe6ed31d686b240217bf", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021895", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021895", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00477", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021896", - "_tpl": "66992b349950f5f4cd06029f", - "parentId": "66cbbe6ed31d686b24021895", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217c9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217c9", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbbe6ed31d686b240217cb", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbbe6ed31d686b240217c9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00211", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021897", - "_tpl": "669927203c4fda6471005cbe", - "parentId": "66cbbe6ed31d686b24021896", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402189d", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbbe6ed31d686b24021897", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217cd", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217cd", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217cf", + "_tpl": "5a0abb6e1526d8000a025282", + "parentId": "66cbbe6ed31d686b240217cd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217d1", + "_tpl": "5d123102d7ad1a004e475fe5", + "parentId": "66cbbe6ed31d686b240217cd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217d3", + "_tpl": "576a63cd2459771e796e0e11", + "parentId": "66cbbe6ed31d686b240217cd", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00429", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021898", - "_tpl": "6698c8ab29e062525d0ad8ab", - "parentId": "66cbbe6ed31d686b24021896", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b24021899", - "_tpl": "6698c9aa36ba38d29101770f", - "parentId": "66cbbe6ed31d686b24021898", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbbe6ed31d686b2402189a", - "_tpl": "6698c8c736ba38d29101770b", - "parentId": "66cbbe6ed31d686b24021896", - "slotId": "mod_handguard" - }, - { - "_id": "66cbbe6ed31d686b2402189b", - "_tpl": "669946c157df3e2b4e0a0dc5", - "parentId": "66cbbe6ed31d686b24021896", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b2402189c", - "_tpl": "6699249f3c4fda6471005cba", - "parentId": "66cbbe6ed31d686b24021896", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402189e", - "_tpl": "574d967124597745970e7c94", - "parentId": "66cbbe6ed31d686b24021895", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217d5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217d5", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66cbbe6ed31d686b240217d7", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbbe6ed31d686b240217d5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "n1", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402189f", - "_tpl": "574dad8024597745964bf05c", - "parentId": "66cbbe6ed31d686b2402189e", - "slotId": "mod_stock" - }, - { - "_id": "66cbbe6ed31d686b240218a0", - "_tpl": "634f02331f9f536910079b51", - "parentId": "66cbbe6ed31d686b2402189e", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b240218a1", - "_tpl": "634f04d82e5def262d0b30c6", - "parentId": "66cbbe6ed31d686b240218a0", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbbe6ed31d686b240218a2", - "_tpl": "634f02d7517ccc8a960fc744", - "parentId": "66cbbe6ed31d686b240218a1", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbbe6ed31d686b240218a3", - "_tpl": "634f08a21f9f536910079b5a", - "parentId": "66cbbe6ed31d686b240218a2", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbbe6ed31d686b240218a4", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "66cbbe6ed31d686b240218a1", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b240218a5", - "_tpl": "587df3a12459772c28142567", - "parentId": "66cbbe6ed31d686b2402189e", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218a7", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbbe6ed31d686b240218a5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217d9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217d9", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217db", + "_tpl": "5e023cf8186a883be655e54f", + "parentId": "66cbbe6ed31d686b240217d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 11 + } } - }, - { - "_id": "66cbbe6ed31d686b240218a6", - "_tpl": "634f05ca517ccc8a960fc748", - "parentId": "66cbbe6ed31d686b2402189e", - "slotId": "mod_reciever" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00241", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240218a9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218a9", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00292", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218ab", - "_tpl": "5a5f1ce64f39f90b401987bc", - "parentId": "66cbbe6ed31d686b240218a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218ad", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b240218a9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 33 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217dd", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217dd", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217df", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "parentId": "66cbbe6ed31d686b240217dd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217e1", + "_tpl": "651580dc71a4f10aec4b6056", + "parentId": "66cbbe6ed31d686b240217dd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00388", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240218af", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218af", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00478", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218b1", - "_tpl": "590c657e86f77412b013051d", - "parentId": "66cbbe6ed31d686b240218af", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218b3", - "_tpl": "62a09cfe4f842e1bd12da3e4", - "parentId": "66cbbe6ed31d686b240218af", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217e3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217e3", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240218b5", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbbe6ed31d686b240218af", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240217e5", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbbe6ed31d686b240217e3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217e6", + "_tpl": "5aa7e454e5b5b0214e506fa2", + "parentId": "66cbbe6ed31d686b240217e3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b240217e7", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "66cbbe6ed31d686b240217e6", + "slotId": "Helmet_top" + }, + { + "_id": "66cbbe6ed31d686b240217e8", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "66cbbe6ed31d686b240217e6", + "slotId": "Helmet_back" + }, + { + "_id": "66cbbe6ed31d686b240217e9", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "66cbbe6ed31d686b240217e6", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbbe6ed31d686b240217ea", + "_tpl": "57f4c844245977379d5c14d1", + "parentId": "66cbbe6ed31d686b240217e3", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b240217eb", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66cbbe6ed31d686b240217ea", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b240217ec", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbbe6ed31d686b240217ea", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b240217ed", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbbe6ed31d686b240217ec", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15.0 + } + }, + { + "_id": "66cbbe6ed31d686b240217ef", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbbe6ed31d686b240217e3", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240218b7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218b7", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00212", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218ba", - "_tpl": "657023a9126cc4a57d0e17a6", - "parentId": "66cbbe6ed31d686b240218b7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217f1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217f1", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217f3", + "_tpl": "655dccfdbdcc6b5df71382b6", + "parentId": "66cbbe6ed31d686b240217f1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240217f5", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "66cbbe6ed31d686b240217f1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00351", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218bb", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbbe6ed31d686b240218ba", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218bd", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbbe6ed31d686b240218b7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217f7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217f7", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240217f9", + "_tpl": "5d120a10d7ad1a4e1026ba85", + "parentId": "66cbbe6ed31d686b240217f7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00291", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240218bf", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218bf", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00055", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218c1", - "_tpl": "5a78830bc5856700137e4c90", - "parentId": "66cbbe6ed31d686b240218bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218c3", - "_tpl": "5fd4c4fa16cac650092f6771", - "parentId": "66cbbe6ed31d686b240218bf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217fb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217fb", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240218c4", - "_tpl": "59984ab886f7743e98271174", - "parentId": "66cbbe6ed31d686b240218bf", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 + { + "_id": "66cbbe6ed31d686b240217fd", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbbe6ed31d686b240217fb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00166", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218c5", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbbe6ed31d686b240218c4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b240218c6", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbbe6ed31d686b240218c4", - "slotId": "mod_stock" - }, - { - "_id": "66cbbe6ed31d686b240218c7", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbbe6ed31d686b240218c4", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218cd", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbbe6ed31d686b240218c7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240217ff", + "Items": [ + { + "_id": "66cbbe6ed31d686b240217ff", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021801", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbbe6ed31d686b240217ff", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021803", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbbe6ed31d686b240217ff", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021805", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbbe6ed31d686b240217ff", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021807", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbbe6ed31d686b240217ff", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021809", + "_tpl": "59e366c186f7741778269d85", + "parentId": "66cbbe6ed31d686b240217ff", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbbe6ed31d686b240218c8", - "_tpl": "5998597786f77414ea6da093", - "parentId": "66cbbe6ed31d686b240218c4", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbbe6ed31d686b240218c9", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbbe6ed31d686b240218c4", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b240218ca", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbbe6ed31d686b240218c4", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b240218cb", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbbe6ed31d686b240218c4", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbbe6ed31d686b240218cc", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbbe6ed31d686b240218cb", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00257", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240218cf", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218cf", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00495", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218d1", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbbe6ed31d686b240218cf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00295", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240218d3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218d3", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218d5", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbbe6ed31d686b240218d3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402180b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402180b", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240218d7", - "_tpl": "5ede4739e0350d05467f73e8", - "parentId": "66cbbe6ed31d686b240218d3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b2402180c", + "_tpl": "5b40e2bc5acfc40016388216", + "parentId": "66cbbe6ed31d686b2402180b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240218d9", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbbe6ed31d686b240218d3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402180d", + "_tpl": "657112234269e9a568089eac", + "parentId": "66cbbe6ed31d686b2402180c", + "slotId": "Helmet_top" + }, + { + "_id": "66cbbe6ed31d686b2402180e", + "_tpl": "657112a4818110db4600aa66", + "parentId": "66cbbe6ed31d686b2402180c", + "slotId": "Helmet_back" + }, + { + "_id": "66cbbe6ed31d686b2402180f", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "66cbbe6ed31d686b2402180c", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbbe6ed31d686b24021811", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbbe6ed31d686b2402180b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021813", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbbe6ed31d686b2402180b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00043", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240218db", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218db", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00196", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218dd", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbbe6ed31d686b240218db", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240218df", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218df", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218e1", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbbe6ed31d686b240218df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021815", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021815", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021817", + "_tpl": "5b3f7bf05acfc433000ecf6b", + "parentId": "66cbbe6ed31d686b24021815", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021819", + "_tpl": "5ba26835d4351e0035628ff5", + "parentId": "66cbbe6ed31d686b24021815", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 39 + } + }, + { + "_id": "66cbbe6ed31d686b2402181b", + "_tpl": "62ff9920fe938a24c90c10d2", + "parentId": "66cbbe6ed31d686b24021815", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402181d", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6ed31d686b24021815", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 29 + } + }, + { + "_id": "66cbbe6ed31d686b2402181f", + "_tpl": "572b7adb24597762ae139821", + "parentId": "66cbbe6ed31d686b24021815", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021821", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "66cbbe6ed31d686b24021815", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021823", + "_tpl": "5d6e689ca4b9361bc8618956", + "parentId": "66cbbe6ed31d686b24021815", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 4 + } + }, + { + "_id": "66cbbe6ed31d686b24021825", + "_tpl": "5a702d198dc32e000b452fc3", + "parentId": "66cbbe6ed31d686b24021815", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240218e3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218e3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00079", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218e5", - "_tpl": "590c621186f774138d11ea29", - "parentId": "66cbbe6ed31d686b240218e3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240218e7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218e7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218e9", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbbe6ed31d686b240218e7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021827", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021827", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021828", + "_tpl": "66b5f666cad6f002ab7214c2", + "parentId": "66cbbe6ed31d686b24021827", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b24021829", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "66cbbe6ed31d686b24021828", + "slotId": "Helmet_top" + }, + { + "_id": "66cbbe6ed31d686b2402182a", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "66cbbe6ed31d686b24021828", + "slotId": "Helmet_back" + }, + { + "_id": "66cbbe6ed31d686b2402182c", + "_tpl": "5c59529a2e221602b177d160", + "parentId": "66cbbe6ed31d686b24021827", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240218eb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218eb", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00335", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218ed", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbbe6ed31d686b240218eb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00217", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240218ef", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218ef", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218f1", - "_tpl": "5c9a1c3a2e2216000e69fb6a", - "parentId": "66cbbe6ed31d686b240218ef", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402182e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402182e", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021830", + "_tpl": "62a0a043cf4a99369e2624a5", + "parentId": "66cbbe6ed31d686b2402182e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00341", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218f3", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66cbbe6ed31d686b240218ef", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218f5", - "_tpl": "584924ec24597768f12ae244", - "parentId": "66cbbe6ed31d686b240218ef", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021832", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021832", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021834", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbbe6ed31d686b24021832", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00215", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240218f7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240218f7", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00457", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218f8", - "_tpl": "5de652c31b7e3716273428be", - "parentId": "66cbbe6ed31d686b240218f7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021836", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021836", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbbe6ed31d686b24021838", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b24021836", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00185", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218f9", - "_tpl": "5de653abf76fdc1ce94a5a2a", - "parentId": "66cbbe6ed31d686b240218f8", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218fe", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "66cbbe6ed31d686b240218f9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402183a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402183a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402183c", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66cbbe6ed31d686b2402183a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00284", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240218fa", - "_tpl": "5de655be4a9f347bc92edb88", - "parentId": "66cbbe6ed31d686b240218f8", - "slotId": "mod_stock" - }, - { - "_id": "66cbbe6ed31d686b240218fb", - "_tpl": "5de65547883dde217541644b", - "parentId": "66cbbe6ed31d686b240218f8", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b240218fc", - "_tpl": "5de6556a205ddc616a6bc4f7", - "parentId": "66cbbe6ed31d686b240218fb", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbbe6ed31d686b240218fd", - "_tpl": "5de6558e9f98ac2bc65950fc", - "parentId": "66cbbe6ed31d686b240218f8", - "slotId": "mod_mount" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021900", - "_tpl": "57fd23e32459772d0805bcf1", - "parentId": "66cbbe6ed31d686b240218f7", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402183e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402183e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021840", + "_tpl": "5a0f006986f7741ffd2fe484", + "parentId": "66cbbe6ed31d686b2402183e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00283", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021902", - "_tpl": "5d120a10d7ad1a4e1026ba85", - "parentId": "66cbbe6ed31d686b240218f7", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021904", - "_tpl": "651580dc71a4f10aec4b6056", - "parentId": "66cbbe6ed31d686b240218f7", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021842", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021842", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021844", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbbe6ed31d686b24021842", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00312", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021906", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021906", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00282", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021908", - "_tpl": "5cdeac22d7f00c000f26168f", - "parentId": "66cbbe6ed31d686b24021906", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402190a", - "_tpl": "6241c2c2117ad530666a5108", - "parentId": "66cbbe6ed31d686b24021906", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021846", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021846", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021848", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbbe6ed31d686b24021846", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00428", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402190c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402190c", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00281", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402190e", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbbe6ed31d686b2402190c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00225", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021910", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021910", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021912", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbbe6ed31d686b24021910", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402184a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402184a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402184c", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbbe6ed31d686b2402184a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00169", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021914", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021914", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00370", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021916", - "_tpl": "62a0a16d0b9d3c46de5b6e97", - "parentId": "66cbbe6ed31d686b24021914", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00361", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021918", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021918", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402191a", - "_tpl": "637b620db7afa97bfc3d7009", - "parentId": "66cbbe6ed31d686b24021918", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402184e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402184e", + "_tpl": "61aa1ead84ea0800645777fd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402191c", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbbe6ed31d686b24021918", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021850", + "_tpl": "5751a89d24597722aa0e8db0", + "parentId": "66cbbe6ed31d686b2402184e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402191e", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbbe6ed31d686b24021918", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021852", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbbe6ed31d686b2402184e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021854", + "_tpl": "5d02797c86f774203f38e30a", + "parentId": "66cbbe6ed31d686b2402184e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021856", + "_tpl": "5d02797c86f774203f38e30a", + "parentId": "66cbbe6ed31d686b2402184e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021858", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbbe6ed31d686b2402184e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00243", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021920", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021920", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00345", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021922", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "66cbbe6ed31d686b24021920", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00056", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021924", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021924", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021926", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbbe6ed31d686b24021924", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 951 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402185a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402185a", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402185c", + "_tpl": "606587d11246154cad35d635", + "parentId": "66cbbe6ed31d686b2402185a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402185e", + "_tpl": "5c9a26332e2216001219ea70", + "parentId": "66cbbe6ed31d686b2402185a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021928", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021928", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00194", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402192a", - "_tpl": "5cf638cbd7f00c06595bc936", - "parentId": "66cbbe6ed31d686b24021928", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402192c", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "66cbbe6ed31d686b24021928", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021860", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021860", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 9 - } - }, - { - "_id": "66cbbe6ed31d686b2402192e", - "_tpl": "5fd4c4fa16cac650092f6771", - "parentId": "66cbbe6ed31d686b24021928", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + { + "_id": "66cbbe6ed31d686b24021861", + "_tpl": "5c0e57ba86f7747fa141986d", + "parentId": "66cbbe6ed31d686b24021860", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021930", - "_tpl": "5df8e085bb49d91fb446d6a8", - "parentId": "66cbbe6ed31d686b24021928", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021862", + "_tpl": "65707fc348c7a887f2010432", + "parentId": "66cbbe6ed31d686b24021861", + "slotId": "Soft_armor_front" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021932", - "_tpl": "644a3df63b0b6f03e101e065", - "parentId": "66cbbe6ed31d686b24021928", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021863", + "_tpl": "6570800612755ae0d907acf8", + "parentId": "66cbbe6ed31d686b24021861", + "slotId": "Soft_armor_back" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021934", - "_tpl": "616554fe50224f204c1da2aa", - "parentId": "66cbbe6ed31d686b24021928", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021864", + "_tpl": "65708070f65e2491bf00972c", + "parentId": "66cbbe6ed31d686b24021861", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbbe6ed31d686b24021865", + "_tpl": "657080a212755ae0d907ad04", + "parentId": "66cbbe6ed31d686b24021861", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbbe6ed31d686b24021866", + "_tpl": "657080ca12755ae0d907ad5e", + "parentId": "66cbbe6ed31d686b24021861", + "slotId": "Collar" + }, + { + "_id": "66cbbe6ed31d686b24021867", + "_tpl": "65708122f65e2491bf009755", + "parentId": "66cbbe6ed31d686b24021861", + "slotId": "Groin" + }, + { + "_id": "66cbbe6ed31d686b24021868", + "_tpl": "65708165696fe382cf073255", + "parentId": "66cbbe6ed31d686b24021861", + "slotId": "Groin_back" + }, + { + "_id": "66cbbe6ed31d686b24021869", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "66cbbe6ed31d686b24021861", + "slotId": "Front_plate" + }, + { + "_id": "66cbbe6ed31d686b2402186a", + "_tpl": "657b22485f444d6dff0c6c2f", + "parentId": "66cbbe6ed31d686b24021861", + "slotId": "Back_plate" + }, + { + "_id": "66cbbe6ed31d686b2402186c", + "_tpl": "5648ae314bdc2d3d1c8b457f", + "parentId": "66cbbe6ed31d686b24021860", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402186e", + "_tpl": "5c0d688c86f77413ae3407b2", + "parentId": "66cbbe6ed31d686b24021860", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbbe6ed31d686b24021870", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "66cbbe6ed31d686b24021860", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00321", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021936", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021936", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00201", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021938", - "_tpl": "5c1bc7752e221602b1779b34", - "parentId": "66cbbe6ed31d686b24021936", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402193a", - "_tpl": "5a957c3fa2750c00137fa5f7", - "parentId": "66cbbe6ed31d686b24021936", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021872", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021872", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021874", + "_tpl": "5cf8f3b0d7f00c00217872ef", + "parentId": "66cbbe6ed31d686b24021872", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021876", + "_tpl": "651580dc71a4f10aec4b6056", + "parentId": "66cbbe6ed31d686b24021872", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00251", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402193c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402193c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00199", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402193e", - "_tpl": "573478bc24597738002c6175", - "parentId": "66cbbe6ed31d686b2402193c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021940", - "_tpl": "5d1b36a186f7742523398433", - "parentId": "66cbbe6ed31d686b2402193c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021878", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021878", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402187a", + "_tpl": "656f664200d62bcd2e024077", + "parentId": "66cbbe6ed31d686b24021878", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402187c", + "_tpl": "5c5db5fc2e2216000f1b2842", + "parentId": "66cbbe6ed31d686b24021878", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021942", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66cbbe6ed31d686b2402193c", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402187e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402187e", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021880", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbbe6ed31d686b2402187e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 646 + } + }, + { + "_id": "66cbbe6ed31d686b24021882", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbbe6ed31d686b2402187e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 941 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00227", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021944", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021944", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00494", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021946", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbbe6ed31d686b24021944", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021884", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021884", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021885", + "_tpl": "5c0e53c886f7747fa54205c7", + "parentId": "66cbbe6ed31d686b24021884", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b24021886", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "66cbbe6ed31d686b24021885", + "slotId": "soft_armor_front" + }, + { + "_id": "66cbbe6ed31d686b24021887", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "66cbbe6ed31d686b24021885", + "slotId": "soft_armor_back" + }, + { + "_id": "66cbbe6ed31d686b24021888", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "66cbbe6ed31d686b24021885", + "slotId": "soft_armor_left" + }, + { + "_id": "66cbbe6ed31d686b24021889", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "66cbbe6ed31d686b24021885", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbbe6ed31d686b2402188a", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "66cbbe6ed31d686b24021885", + "slotId": "Collar" + }, + { + "_id": "66cbbe6ed31d686b2402188b", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "66cbbe6ed31d686b24021885", + "slotId": "Groin" + }, + { + "_id": "66cbbe6ed31d686b2402188c", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "66cbbe6ed31d686b24021885", + "slotId": "front_plate" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402188d", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "66cbbe6ed31d686b24021885", + "slotId": "back_plate" } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00187", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021948", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbbe6ed31d686b24021944", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402188f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402188f", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021891", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbbe6ed31d686b2402188f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021893", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbbe6ed31d686b2402188f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402194a", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66cbbe6ed31d686b24021944", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402194c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402194c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402194e", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbbe6ed31d686b2402194c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021895", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021895", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021896", + "_tpl": "66992b349950f5f4cd06029f", + "parentId": "66cbbe6ed31d686b24021895", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbbe6ed31d686b24021897", + "_tpl": "669927203c4fda6471005cbe", + "parentId": "66cbbe6ed31d686b24021896", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b2402189d", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbbe6ed31d686b24021897", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25.0 + } + }, + { + "_id": "66cbbe6ed31d686b24021898", + "_tpl": "6698c8ab29e062525d0ad8ab", + "parentId": "66cbbe6ed31d686b24021896", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b24021899", + "_tpl": "6698c9aa36ba38d29101770f", + "parentId": "66cbbe6ed31d686b24021898", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbbe6ed31d686b2402189a", + "_tpl": "6698c8c736ba38d29101770b", + "parentId": "66cbbe6ed31d686b24021896", + "slotId": "mod_handguard" + }, + { + "_id": "66cbbe6ed31d686b2402189b", + "_tpl": "669946c157df3e2b4e0a0dc5", + "parentId": "66cbbe6ed31d686b24021896", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b2402189c", + "_tpl": "6699249f3c4fda6471005cba", + "parentId": "66cbbe6ed31d686b24021896", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b2402189e", + "_tpl": "574d967124597745970e7c94", + "parentId": "66cbbe6ed31d686b24021895", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbbe6ed31d686b2402189f", + "_tpl": "574dad8024597745964bf05c", + "parentId": "66cbbe6ed31d686b2402189e", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b240218a0", + "_tpl": "634f02331f9f536910079b51", + "parentId": "66cbbe6ed31d686b2402189e", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b240218a1", + "_tpl": "634f04d82e5def262d0b30c6", + "parentId": "66cbbe6ed31d686b240218a0", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbbe6ed31d686b240218a2", + "_tpl": "634f02d7517ccc8a960fc744", + "parentId": "66cbbe6ed31d686b240218a1", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbbe6ed31d686b240218a3", + "_tpl": "634f08a21f9f536910079b5a", + "parentId": "66cbbe6ed31d686b240218a2", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbbe6ed31d686b240218a4", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "66cbbe6ed31d686b240218a1", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b240218a5", + "_tpl": "587df3a12459772c28142567", + "parentId": "66cbbe6ed31d686b2402189e", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b240218a7", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbbe6ed31d686b240218a5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } + }, + { + "_id": "66cbbe6ed31d686b240218a6", + "_tpl": "634f05ca517ccc8a960fc748", + "parentId": "66cbbe6ed31d686b2402189e", + "slotId": "mod_reciever" } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00058", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021950", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021950", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00241", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021952", - "_tpl": "5a13ef7e86f7741290491063", - "parentId": "66cbbe6ed31d686b24021950", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00239", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021954", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021954", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021956", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6ed31d686b24021954", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 34 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240218a9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218a9", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218ab", + "_tpl": "5a5f1ce64f39f90b401987bc", + "parentId": "66cbbe6ed31d686b240218a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218ad", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b240218a9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 33 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00325", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021958", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021958", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00388", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402195a", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbbe6ed31d686b24021958", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 43 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402195d", - "_tpl": "5737280e24597765cc785b5c", - "parentId": "66cbbe6ed31d686b24021958", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240218af", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218af", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402195e", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbbe6ed31d686b2402195d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + { + "_id": "66cbbe6ed31d686b240218b1", + "_tpl": "590c657e86f77412b013051d", + "parentId": "66cbbe6ed31d686b240218af", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218b3", + "_tpl": "62a09cfe4f842e1bd12da3e4", + "parentId": "66cbbe6ed31d686b240218af", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218b5", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbbe6ed31d686b240218af", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00471", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021960", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021960", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021962", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66cbbe6ed31d686b24021960", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021964", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021964", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00267", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021966", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021966", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021968", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b24021966", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240218b7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218b7", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218ba", + "_tpl": "657023a9126cc4a57d0e17a6", + "parentId": "66cbbe6ed31d686b240218b7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218bb", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbbe6ed31d686b240218ba", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbbe6ed31d686b240218bd", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbbe6ed31d686b240218b7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00475", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402196a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402196a", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00291", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402196c", - "_tpl": "5d1b2fa286f77425227d1674", - "parentId": "66cbbe6ed31d686b2402196a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402196e", - "_tpl": "57347d90245977448f7b7f65", - "parentId": "66cbbe6ed31d686b2402196a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240218bf", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218bf", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218c1", + "_tpl": "5a78830bc5856700137e4c90", + "parentId": "66cbbe6ed31d686b240218bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218c3", + "_tpl": "5fd4c4fa16cac650092f6771", + "parentId": "66cbbe6ed31d686b240218bf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218c4", + "_tpl": "59984ab886f7743e98271174", + "parentId": "66cbbe6ed31d686b240218bf", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218c5", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbbe6ed31d686b240218c4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b240218c6", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbbe6ed31d686b240218c4", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b240218c7", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbbe6ed31d686b240218c4", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b240218cd", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbbe6ed31d686b240218c7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66cbbe6ed31d686b240218c8", + "_tpl": "5998597786f77414ea6da093", + "parentId": "66cbbe6ed31d686b240218c4", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbbe6ed31d686b240218c9", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbbe6ed31d686b240218c4", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b240218ca", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbbe6ed31d686b240218c4", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b240218cb", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbbe6ed31d686b240218c4", + "slotId": "mod_gas_block" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240218cc", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbbe6ed31d686b240218cb", + "slotId": "mod_handguard" } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00257", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402196f", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66cbbe6ed31d686b2402196a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240218cf", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218cf", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbbe6ed31d686b240218d1", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbbe6ed31d686b240218cf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00295", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021970", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66cbbe6ed31d686b2402196f", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021974", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbbe6ed31d686b24021970", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240218d3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218d3", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218d5", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbbe6ed31d686b240218d3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218d7", + "_tpl": "5ede4739e0350d05467f73e8", + "parentId": "66cbbe6ed31d686b240218d3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218d9", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbbe6ed31d686b240218d3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00043", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021971", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66cbbe6ed31d686b2402196f", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b24021972", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66cbbe6ed31d686b24021971", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021973", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66cbbe6ed31d686b2402196f", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021976", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021976", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b2402197a", - "_tpl": "57372d4c245977685a3da2a1", - "parentId": "66cbbe6ed31d686b24021976", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240218db", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218db", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240218dd", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbbe6ed31d686b240218db", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402197b", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbbe6ed31d686b2402197a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402197c", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbbe6ed31d686b2402197a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240218df", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218df", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218e1", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbbe6ed31d686b240218df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402197e", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6ed31d686b24021976", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 39 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240218e3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218e3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218e5", + "_tpl": "590c621186f774138d11ea29", + "parentId": "66cbbe6ed31d686b240218e3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00398", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021980", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021980", - "_tpl": "61aa1ead84ea0800645777fd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021982", - "_tpl": "60098ad7c2240c0fe85c570a", - "parentId": "66cbbe6ed31d686b24021980", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240218e7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218e7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240218e9", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbbe6ed31d686b240218e7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021984", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbbe6ed31d686b24021980", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240218eb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218eb", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240218ed", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbbe6ed31d686b240218eb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00217", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021986", - "_tpl": "60098af40accd37ef2175f27", - "parentId": "66cbbe6ed31d686b24021980", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240218ef", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218ef", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218f1", + "_tpl": "5c9a1c3a2e2216000e69fb6a", + "parentId": "66cbbe6ed31d686b240218ef", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240218f3", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66cbbe6ed31d686b240218ef", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218f5", + "_tpl": "584924ec24597768f12ae244", + "parentId": "66cbbe6ed31d686b240218ef", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00215", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021988", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbbe6ed31d686b24021980", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240218f7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240218f7", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240218f8", + "_tpl": "5de652c31b7e3716273428be", + "parentId": "66cbbe6ed31d686b240218f7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbbe6ed31d686b240218f9", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "parentId": "66cbbe6ed31d686b240218f8", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b240218fe", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "66cbbe6ed31d686b240218f9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } + }, + { + "_id": "66cbbe6ed31d686b240218fa", + "_tpl": "5de655be4a9f347bc92edb88", + "parentId": "66cbbe6ed31d686b240218f8", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b240218fb", + "_tpl": "5de65547883dde217541644b", + "parentId": "66cbbe6ed31d686b240218f8", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b240218fc", + "_tpl": "5de6556a205ddc616a6bc4f7", + "parentId": "66cbbe6ed31d686b240218fb", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbbe6ed31d686b240218fd", + "_tpl": "5de6558e9f98ac2bc65950fc", + "parentId": "66cbbe6ed31d686b240218f8", + "slotId": "mod_mount" + }, + { + "_id": "66cbbe6ed31d686b24021900", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "66cbbe6ed31d686b240218f7", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021902", + "_tpl": "5d120a10d7ad1a4e1026ba85", + "parentId": "66cbbe6ed31d686b240218f7", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021904", + "_tpl": "651580dc71a4f10aec4b6056", + "parentId": "66cbbe6ed31d686b240218f7", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00287", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402198a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402198a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00312", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402198c", - "_tpl": "59e3596386f774176c10a2a2", - "parentId": "66cbbe6ed31d686b2402198a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021906", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021906", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021908", + "_tpl": "5cdeac22d7f00c000f26168f", + "parentId": "66cbbe6ed31d686b24021906", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402190a", + "_tpl": "6241c2c2117ad530666a5108", + "parentId": "66cbbe6ed31d686b24021906", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00428", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402198e", - "_tpl": "57347d692459774491567cf1", - "parentId": "66cbbe6ed31d686b2402198a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402190c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402190c", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402190e", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbbe6ed31d686b2402190c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00225", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402198f", - "_tpl": "5648a7494bdc2d9d488b4583", - "parentId": "66cbbe6ed31d686b2402198a", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021990", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "66cbbe6ed31d686b2402198f", - "slotId": "Soft_armor_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021910", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021910", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021912", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbbe6ed31d686b24021910", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00169", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021991", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "66cbbe6ed31d686b2402198f", - "slotId": "Soft_armor_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021992", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "66cbbe6ed31d686b2402198f", - "slotId": "Soft_armor_left" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021914", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021914", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021916", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "parentId": "66cbbe6ed31d686b24021914", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00361", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021993", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "66cbbe6ed31d686b2402198f", - "slotId": "soft_armor_right" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021995", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbbe6ed31d686b2402198a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021918", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021918", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402191a", + "_tpl": "637b620db7afa97bfc3d7009", + "parentId": "66cbbe6ed31d686b24021918", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402191c", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbbe6ed31d686b24021918", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402191e", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbbe6ed31d686b24021918", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00243", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021997", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbbe6ed31d686b2402198a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021920", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021920", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021922", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "66cbbe6ed31d686b24021920", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00149", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021999", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021999", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00056", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402199b", - "_tpl": "5c94bbff86f7747ee735c08f", - "parentId": "66cbbe6ed31d686b24021999", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021924", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021924", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021926", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbbe6ed31d686b24021924", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 951 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00148", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b2402199d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402199d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402199f", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbbe6ed31d686b2402199d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00147", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240219a1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219a1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219a3", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbbe6ed31d686b240219a1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021928", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021928", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402192a", + "_tpl": "5cf638cbd7f00c06595bc936", + "parentId": "66cbbe6ed31d686b24021928", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402192c", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "66cbbe6ed31d686b24021928", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 9 + } + }, + { + "_id": "66cbbe6ed31d686b2402192e", + "_tpl": "5fd4c4fa16cac650092f6771", + "parentId": "66cbbe6ed31d686b24021928", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021930", + "_tpl": "5df8e085bb49d91fb446d6a8", + "parentId": "66cbbe6ed31d686b24021928", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021932", + "_tpl": "644a3df63b0b6f03e101e065", + "parentId": "66cbbe6ed31d686b24021928", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021934", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "66cbbe6ed31d686b24021928", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00430", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240219a5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219a5", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00321", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219a7", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbbe6ed31d686b240219a5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00145", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240219a9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219a9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219ab", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b240219a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021936", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021936", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021938", + "_tpl": "5c1bc7752e221602b1779b34", + "parentId": "66cbbe6ed31d686b24021936", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402193a", + "_tpl": "5a957c3fa2750c00137fa5f7", + "parentId": "66cbbe6ed31d686b24021936", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00144", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240219ad", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219ad", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00251", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219af", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbbe6ed31d686b240219ad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00143", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240219b1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219b1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219b3", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbbe6ed31d686b240219b1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402193c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402193c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402193e", + "_tpl": "573478bc24597738002c6175", + "parentId": "66cbbe6ed31d686b2402193c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021940", + "_tpl": "5d1b36a186f7742523398433", + "parentId": "66cbbe6ed31d686b2402193c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021942", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66cbbe6ed31d686b2402193c", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00142", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240219b5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219b5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00227", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219b7", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b240219b5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021944", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021944", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021946", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbbe6ed31d686b24021944", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021948", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbbe6ed31d686b24021944", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402194a", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66cbbe6ed31d686b24021944", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00160", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240219b9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219b9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219bb", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbbe6ed31d686b240219b9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402194c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402194c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402194e", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbbe6ed31d686b2402194c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00159", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240219bd", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219bd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00058", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219bf", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbbe6ed31d686b240219bd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021950", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021950", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021952", + "_tpl": "5a13ef7e86f7741290491063", + "parentId": "66cbbe6ed31d686b24021950", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00158", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240219c1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219c1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_Lighthouse_DesignStuff_00239", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021954", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021954", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021956", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6ed31d686b24021954", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 34 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00354", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240219c3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219c3", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00325", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219c5", - "_tpl": "6698c9ed36ba38d291017713", - "parentId": "66cbbe6ed31d686b240219c3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021958", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021958", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402195a", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbbe6ed31d686b24021958", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 43 + } + }, + { + "_id": "66cbbe6ed31d686b2402195d", + "_tpl": "5737280e24597765cc785b5c", + "parentId": "66cbbe6ed31d686b24021958", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402195e", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbbe6ed31d686b2402195d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00471", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219c6", - "_tpl": "5de7bd7bfd6b4e6e2276dc25", - "parentId": "66cbbe6ed31d686b240219c3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021960", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021960", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Foldable": { - "Folded": false + { + "_id": "66cbbe6ed31d686b24021962", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66cbbe6ed31d686b24021960", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219c7", - "_tpl": "5de8eac42a78646d96665d91", - "parentId": "66cbbe6ed31d686b240219c6", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219ce", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbbe6ed31d686b240219c7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 21.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021964", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021964", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00267", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219c8", - "_tpl": "5de910da8b6c4240ba2651b5", - "parentId": "66cbbe6ed31d686b240219c6", - "slotId": "mod_stock" - }, - { - "_id": "66cbbe6ed31d686b240219c9", - "_tpl": "5de8fbad2fbe23140d3ee9c4", - "parentId": "66cbbe6ed31d686b240219c6", - "slotId": "mod_foregrip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219ca", - "_tpl": "5de8e67c4a9f347bc92edbd7", - "parentId": "66cbbe6ed31d686b240219c6", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b240219cb", - "_tpl": "5de8fb539f98ac2bc659513a", - "parentId": "66cbbe6ed31d686b240219ca", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbbe6ed31d686b240219cc", - "_tpl": "5de8fc0b205ddc616a6bc51b", - "parentId": "66cbbe6ed31d686b240219ca", - "slotId": "mod_mount" - }, - { - "_id": "66cbbe6ed31d686b240219cd", - "_tpl": "5de922d4b11454561e39239f", - "parentId": "66cbbe6ed31d686b240219c6", - "slotId": "mod_charge" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00479", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240219d0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219d0", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240219d2", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbbe6ed31d686b240219d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021966", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021966", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021968", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b24021966", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00475", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219d4", - "_tpl": "5b43575a86f77424f443fe62", - "parentId": "66cbbe6ed31d686b240219d0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219d5", - "_tpl": "66bdc28a0b603c26902b2011", - "parentId": "66cbbe6ed31d686b240219d0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402196a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402196a", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402196c", + "_tpl": "5d1b2fa286f77425227d1674", + "parentId": "66cbbe6ed31d686b2402196a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402196e", + "_tpl": "57347d90245977448f7b7f65", + "parentId": "66cbbe6ed31d686b2402196a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402196f", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66cbbe6ed31d686b2402196a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbbe6ed31d686b24021970", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66cbbe6ed31d686b2402196f", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021974", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbbe6ed31d686b24021970", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66cbbe6ed31d686b24021971", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66cbbe6ed31d686b2402196f", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b24021972", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66cbbe6ed31d686b24021971", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b24021973", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66cbbe6ed31d686b2402196f", + "slotId": "mod_pistolgrip" } - }, - { - "_id": "66cbbe6ed31d686b240219d6", - "_tpl": "66bdc2ea8cbd597c9c2f9360", - "parentId": "66cbbe6ed31d686b240219d5", - "slotId": "Helmet_top" - }, - { - "_id": "66cbbe6ed31d686b240219d7", - "_tpl": "66bdc2e25f17154509115d1e", - "parentId": "66cbbe6ed31d686b240219d5", - "slotId": "Helmet_back" - }, - { - "_id": "66cbbe6ed31d686b240219d8", - "_tpl": "66bdc2d051aa8c345646d03f", - "parentId": "66cbbe6ed31d686b240219d5", - "slotId": "helmet_eyes" - }, - { - "_id": "66cbbe6ed31d686b240219d9", - "_tpl": "66bdc2d9408f1e66eb4fd957", - "parentId": "66cbbe6ed31d686b240219d5", - "slotId": "helmet_jaw" - }, - { - "_id": "66cbbe6ed31d686b240219da", - "_tpl": "66bdc2c90b603c26902b2018", - "parentId": "66cbbe6ed31d686b240219d5", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00467", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240219dc", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219dc", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219de", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbbe6ed31d686b240219dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00273", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240219e0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219e0", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219e2", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66cbbe6ed31d686b240219e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021976", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021976", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402197a", + "_tpl": "57372d4c245977685a3da2a1", + "parentId": "66cbbe6ed31d686b24021976", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402197b", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbbe6ed31d686b2402197a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b2402197c", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbbe6ed31d686b2402197a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b2402197e", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6ed31d686b24021976", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 39 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00481", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240219e4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219e4", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00398", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219e6", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbbe6ed31d686b240219e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219e8", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbbe6ed31d686b240219e4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021980", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021980", + "_tpl": "61aa1ead84ea0800645777fd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021982", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "66cbbe6ed31d686b24021980", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021984", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbbe6ed31d686b24021980", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021986", + "_tpl": "60098af40accd37ef2175f27", + "parentId": "66cbbe6ed31d686b24021980", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021988", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbbe6ed31d686b24021980", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00333", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240219ea", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219ea", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00287", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219ec", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbbe6ed31d686b240219ea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219ee", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "66cbbe6ed31d686b240219ea", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402198a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402198a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240219f0", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbbe6ed31d686b240219ea", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402198c", + "_tpl": "59e3596386f774176c10a2a2", + "parentId": "66cbbe6ed31d686b2402198a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402198e", + "_tpl": "57347d692459774491567cf1", + "parentId": "66cbbe6ed31d686b2402198a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402198f", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "66cbbe6ed31d686b2402198a", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b24021990", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "66cbbe6ed31d686b2402198f", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbbe6ed31d686b24021991", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "66cbbe6ed31d686b2402198f", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbbe6ed31d686b24021992", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "66cbbe6ed31d686b2402198f", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbbe6ed31d686b24021993", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "66cbbe6ed31d686b2402198f", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbbe6ed31d686b24021995", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbbe6ed31d686b2402198a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021997", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbbe6ed31d686b2402198a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00172", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240219f2", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219f2", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00149", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219f4", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbbe6ed31d686b240219f2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219f6", - "_tpl": "590c595c86f7747884343ad7", - "parentId": "66cbbe6ed31d686b240219f2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021999", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021999", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b240219f8", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbbe6ed31d686b240219f2", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b2402199b", + "_tpl": "5c94bbff86f7747ee735c08f", + "parentId": "66cbbe6ed31d686b24021999", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b240219fa", - "Items": [ - { - "_id": "66cbbe6ed31d686b240219fa", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00148", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219fc", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbbe6ed31d686b240219fa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1083 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240219fe", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbbe6ed31d686b240219fa", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b2402199d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402199d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 659 + { + "_id": "66cbbe6ed31d686b2402199f", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbbe6ed31d686b2402199d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00147", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a00", - "_tpl": "62a091170b9d3c46de5b6cf2", - "parentId": "66cbbe6ed31d686b240219fa", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a02", - "_tpl": "62a09cfe4f842e1bd12da3e4", - "parentId": "66cbbe6ed31d686b240219fa", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240219a1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219a1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a04", - "_tpl": "590de71386f774347051a052", - "parentId": "66cbbe6ed31d686b240219fa", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240219a3", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbbe6ed31d686b240219a1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a06", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a06", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00430", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a08", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b24021a06", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00406", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a0a", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a0a", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a0c", - "_tpl": "5cc700d4e4a949000f0f0f28", - "parentId": "66cbbe6ed31d686b24021a0a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240219a5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219a5", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a0e", - "_tpl": "5ab8f20c86f7745cdb629fb2", - "parentId": "66cbbe6ed31d686b24021a0a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240219a7", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbbe6ed31d686b240219a5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00374", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a10", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a10", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00145", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a12", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbbe6ed31d686b24021a10", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a14", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a14", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a16", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbbe6ed31d686b24021a14", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240219a9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219a9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219ab", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b240219a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00311", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a18", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a18", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00144", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a1a", - "_tpl": "5bc9c377d4351e3bac12251b", - "parentId": "66cbbe6ed31d686b24021a18", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00189", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a1c", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a1c", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a1e", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbbe6ed31d686b24021a1c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240219ad", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219ad", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219af", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbbe6ed31d686b240219ad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a20", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a20", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00143", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a22", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbbe6ed31d686b24021a20", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a24", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbbe6ed31d686b24021a20", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240219b1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219b1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219b3", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbbe6ed31d686b240219b1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00171", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021a26", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a26", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00142", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a28", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbbe6ed31d686b24021a26", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00186", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a2a", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a2a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a2c", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbbe6ed31d686b24021a2a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240219b5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219b5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219b7", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b240219b5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00249", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a2e", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a2e", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00160", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a30", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbbe6ed31d686b24021a2e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240219b9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219b9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 47 + { + "_id": "66cbbe6ed31d686b240219bb", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbbe6ed31d686b240219b9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00159", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a33", - "_tpl": "57372f5c24597769917c0131", - "parentId": "66cbbe6ed31d686b24021a2e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240219bd", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219bd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240219bf", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbbe6ed31d686b240219bd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00158", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a34", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbbe6ed31d686b24021a33", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240219c1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219c1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00193", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a36", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a36", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00354", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a38", - "_tpl": "587df583245977373c4f1129", - "parentId": "66cbbe6ed31d686b24021a36", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a3a", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021a36", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240219c3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219c3", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 38 - } - }, - { - "_id": "66cbbe6ed31d686b24021a3c", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbbe6ed31d686b24021a36", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b240219c5", + "_tpl": "6698c9ed36ba38d291017713", + "parentId": "66cbbe6ed31d686b240219c3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a3e", - "_tpl": "58d2946c86f7744e271174b5", - "parentId": "66cbbe6ed31d686b24021a36", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + { + "_id": "66cbbe6ed31d686b240219c6", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "parentId": "66cbbe6ed31d686b240219c3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a40", - "_tpl": "58c157c886f774032749fb06", - "parentId": "66cbbe6ed31d686b24021a36", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbbe6ed31d686b240219c7", + "_tpl": "5de8eac42a78646d96665d91", + "parentId": "66cbbe6ed31d686b240219c6", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a42", - "_tpl": "5a789261c5856700186c65d3", - "parentId": "66cbbe6ed31d686b24021a36", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbbe6ed31d686b240219ce", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbbe6ed31d686b240219c7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 21.0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a44", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "66cbbe6ed31d686b24021a36", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240219c8", + "_tpl": "5de910da8b6c4240ba2651b5", + "parentId": "66cbbe6ed31d686b240219c6", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b240219c9", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "parentId": "66cbbe6ed31d686b240219c6", + "slotId": "mod_foregrip" + }, + { + "_id": "66cbbe6ed31d686b240219ca", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "parentId": "66cbbe6ed31d686b240219c6", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b240219cb", + "_tpl": "5de8fb539f98ac2bc659513a", + "parentId": "66cbbe6ed31d686b240219ca", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b240219cc", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "parentId": "66cbbe6ed31d686b240219ca", + "slotId": "mod_mount" + }, + { + "_id": "66cbbe6ed31d686b240219cd", + "_tpl": "5de922d4b11454561e39239f", + "parentId": "66cbbe6ed31d686b240219c6", + "slotId": "mod_charge" } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00487", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a46", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a46", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00479", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a48", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbbe6ed31d686b24021a46", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a4a", - "_tpl": "64be7110bf597ba84a0a41ea", - "parentId": "66cbbe6ed31d686b24021a46", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240219d0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219d0", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a4c", - "_tpl": "5c0919b50db834001b7ce3b9", - "parentId": "66cbbe6ed31d686b24021a46", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 + { + "_id": "66cbbe6ed31d686b240219d2", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbbe6ed31d686b240219d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a4e", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbbe6ed31d686b24021a46", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240219d4", + "_tpl": "5b43575a86f77424f443fe62", + "parentId": "66cbbe6ed31d686b240219d0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219d5", + "_tpl": "66bdc28a0b603c26902b2011", + "parentId": "66cbbe6ed31d686b240219d0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b240219d6", + "_tpl": "66bdc2ea8cbd597c9c2f9360", + "parentId": "66cbbe6ed31d686b240219d5", + "slotId": "Helmet_top" + }, + { + "_id": "66cbbe6ed31d686b240219d7", + "_tpl": "66bdc2e25f17154509115d1e", + "parentId": "66cbbe6ed31d686b240219d5", + "slotId": "Helmet_back" + }, + { + "_id": "66cbbe6ed31d686b240219d8", + "_tpl": "66bdc2d051aa8c345646d03f", + "parentId": "66cbbe6ed31d686b240219d5", + "slotId": "helmet_eyes" + }, + { + "_id": "66cbbe6ed31d686b240219d9", + "_tpl": "66bdc2d9408f1e66eb4fd957", + "parentId": "66cbbe6ed31d686b240219d5", + "slotId": "helmet_jaw" + }, + { + "_id": "66cbbe6ed31d686b240219da", + "_tpl": "66bdc2c90b603c26902b2018", + "parentId": "66cbbe6ed31d686b240219d5", + "slotId": "Helmet_ears" } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00104", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a50", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a50", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00467", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a52", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbbe6ed31d686b24021a50", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240219dc", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219dc", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219de", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbbe6ed31d686b240219dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a54", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a54", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00273", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a56", - "_tpl": "5c6d11152e2216000f2003e7", - "parentId": "66cbbe6ed31d686b24021a54", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240219e0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219e0", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240219e2", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66cbbe6ed31d686b240219e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00481", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a58", - "_tpl": "62330bfadc5883093563729b", - "parentId": "66cbbe6ed31d686b24021a54", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 18 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240219e4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219e4", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219e6", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbbe6ed31d686b240219e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219e8", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbbe6ed31d686b240219e4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00520", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a5a", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a5a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00333", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a5c", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbbe6ed31d686b24021a5a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240219ea", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219ea", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219ec", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbbe6ed31d686b240219ea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219ee", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "66cbbe6ed31d686b240219ea", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240219f0", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbbe6ed31d686b240219ea", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00172", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a5e", - "_tpl": "60a621c49c197e4e8c4455e6", - "parentId": "66cbbe6ed31d686b24021a5a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240219f2", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219f2", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219f4", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbbe6ed31d686b240219f2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219f6", + "_tpl": "590c595c86f7747884343ad7", + "parentId": "66cbbe6ed31d686b240219f2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b240219f8", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbbe6ed31d686b240219f2", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a60", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "66cbbe6ed31d686b24021a5a", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b240219fa", + "Items": [ + { + "_id": "66cbbe6ed31d686b240219fa", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240219fc", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbbe6ed31d686b240219fa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1083 + } + }, + { + "_id": "66cbbe6ed31d686b240219fe", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbbe6ed31d686b240219fa", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 659 + } + }, + { + "_id": "66cbbe6ed31d686b24021a00", + "_tpl": "62a091170b9d3c46de5b6cf2", + "parentId": "66cbbe6ed31d686b240219fa", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a02", + "_tpl": "62a09cfe4f842e1bd12da3e4", + "parentId": "66cbbe6ed31d686b240219fa", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a04", + "_tpl": "590de71386f774347051a052", + "parentId": "66cbbe6ed31d686b240219fa", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00099", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a62", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a62", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a64", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbbe6ed31d686b24021a62", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a06", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a06", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021a08", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b24021a06", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00406", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a66", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbbe6ed31d686b24021a62", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a0a", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a0a", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a0c", + "_tpl": "5cc700d4e4a949000f0f0f28", + "parentId": "66cbbe6ed31d686b24021a0a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a0e", + "_tpl": "5ab8f20c86f7745cdb629fb2", + "parentId": "66cbbe6ed31d686b24021a0a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00459", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a68", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a68", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00374", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a6a", - "_tpl": "5d0375ff86f774186372f685", - "parentId": "66cbbe6ed31d686b24021a68", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a10", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a10", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a12", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbbe6ed31d686b24021a10", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00213", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a6c", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a6c", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a6e", - "_tpl": "5a78948ec5856700177b1124", - "parentId": "66cbbe6ed31d686b24021a6c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a14", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a14", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021a16", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbbe6ed31d686b24021a14", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00311", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a6f", - "_tpl": "5bfea6e90db834001b7347f3", - "parentId": "66cbbe6ed31d686b24021a6c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a18", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a18", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbbe6ed31d686b24021a1a", + "_tpl": "5bc9c377d4351e3bac12251b", + "parentId": "66cbbe6ed31d686b24021a18", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00189", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a70", - "_tpl": "5bfea7ad0db834001c38f1ee", - "parentId": "66cbbe6ed31d686b24021a6f", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a74", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbbe6ed31d686b24021a70", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a1c", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a1c", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a1e", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbbe6ed31d686b24021a1c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a71", - "_tpl": "5bfeb32b0db834001a6694d9", - "parentId": "66cbbe6ed31d686b24021a6f", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a72", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "66cbbe6ed31d686b24021a6f", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b24021a73", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "66cbbe6ed31d686b24021a72", - "slotId": "mod_muzzle" - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00488", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a76", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a76", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a78", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66cbbe6ed31d686b24021a76", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a20", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a20", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a7a", - "_tpl": "5c12688486f77426843c7d32", - "parentId": "66cbbe6ed31d686b24021a76", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021a22", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbbe6ed31d686b24021a20", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a24", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbbe6ed31d686b24021a20", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00482", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a7c", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a7c", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00171", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a7e", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbbe6ed31d686b24021a7c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a80", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbbe6ed31d686b24021a7c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021a26", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a26", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a81", - "_tpl": "5b40e2bc5acfc40016388216", - "parentId": "66cbbe6ed31d686b24021a7c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021a28", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbbe6ed31d686b24021a26", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00186", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a82", - "_tpl": "657112234269e9a568089eac", - "parentId": "66cbbe6ed31d686b24021a81", - "slotId": "Helmet_top" - }, - { - "_id": "66cbbe6ed31d686b24021a83", - "_tpl": "657112a4818110db4600aa66", - "parentId": "66cbbe6ed31d686b24021a81", - "slotId": "Helmet_back" - }, - { - "_id": "66cbbe6ed31d686b24021a84", - "_tpl": "657112ce22996eaf110881fb", - "parentId": "66cbbe6ed31d686b24021a81", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a86", - "_tpl": "5ac4c50d5acfc40019262e87", - "parentId": "66cbbe6ed31d686b24021a7c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a2a", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a2a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a2c", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbbe6ed31d686b24021a2a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00233", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a88", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a88", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00249", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a8a", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "66cbbe6ed31d686b24021a88", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00362", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a8c", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a8c", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a8e", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbbe6ed31d686b24021a8c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a2e", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a2e", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a90", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbbe6ed31d686b24021a8c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021a30", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbbe6ed31d686b24021a2e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 47 + } + }, + { + "_id": "66cbbe6ed31d686b24021a33", + "_tpl": "57372f5c24597769917c0131", + "parentId": "66cbbe6ed31d686b24021a2e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a34", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbbe6ed31d686b24021a33", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00331", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a92", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a92", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00193", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a94", - "_tpl": "57347d692459774491567cf1", - "parentId": "66cbbe6ed31d686b24021a92", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a96", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbbe6ed31d686b24021a92", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a36", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a36", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021a98", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbbe6ed31d686b24021a92", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021a38", + "_tpl": "587df583245977373c4f1129", + "parentId": "66cbbe6ed31d686b24021a36", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a3a", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021a36", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 38 + } + }, + { + "_id": "66cbbe6ed31d686b24021a3c", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbbe6ed31d686b24021a36", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a3e", + "_tpl": "58d2946c86f7744e271174b5", + "parentId": "66cbbe6ed31d686b24021a36", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a40", + "_tpl": "58c157c886f774032749fb06", + "parentId": "66cbbe6ed31d686b24021a36", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a42", + "_tpl": "5a789261c5856700186c65d3", + "parentId": "66cbbe6ed31d686b24021a36", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a44", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "66cbbe6ed31d686b24021a36", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a9a", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a9a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00487", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021a9c", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbbe6ed31d686b24021a9a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00438", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021a9e", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021a9e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021aa0", - "_tpl": "590a373286f774287540368b", - "parentId": "66cbbe6ed31d686b24021a9e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a46", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a46", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021aa2", - "_tpl": "62a09f32621468534a797acb", - "parentId": "66cbbe6ed31d686b24021a9e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021a48", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbbe6ed31d686b24021a46", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a4a", + "_tpl": "64be7110bf597ba84a0a41ea", + "parentId": "66cbbe6ed31d686b24021a46", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a4c", + "_tpl": "5c0919b50db834001b7ce3b9", + "parentId": "66cbbe6ed31d686b24021a46", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a4e", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbbe6ed31d686b24021a46", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00434", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021aa4", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021aa4", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00104", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021aa6", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbbe6ed31d686b24021aa4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021aa8", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbbe6ed31d686b24021aa4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a50", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a50", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021aaa", - "_tpl": "619cbf476b8a1b37a54eebf8", - "parentId": "66cbbe6ed31d686b24021aa4", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021a52", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbbe6ed31d686b24021a50", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00418", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021aac", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021aac", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021aae", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbbe6ed31d686b24021aac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ab0", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbbe6ed31d686b24021aac", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a54", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a54", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021ab2", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbbe6ed31d686b24021aac", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbbe6ed31d686b24021a56", + "_tpl": "5c6d11152e2216000f2003e7", + "parentId": "66cbbe6ed31d686b24021a54", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbbe6ed31d686b24021a58", + "_tpl": "62330bfadc5883093563729b", + "parentId": "66cbbe6ed31d686b24021a54", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 18 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00520", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ab4", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbbe6ed31d686b24021aac", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ab6", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbbe6ed31d686b24021aac", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a5a", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a5a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a5c", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbbe6ed31d686b24021a5a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a5e", + "_tpl": "60a621c49c197e4e8c4455e6", + "parentId": "66cbbe6ed31d686b24021a5a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a60", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "66cbbe6ed31d686b24021a5a", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00179", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ab8", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ab8", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00099", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021aba", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbbe6ed31d686b24021ab8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 784 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00014", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021abc", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021abc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021abe", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021abe", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ac0", - "_tpl": "60b0f561c4449e4cb624c1d7", - "parentId": "66cbbe6ed31d686b24021abe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a62", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a62", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a64", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbbe6ed31d686b24021a62", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a66", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbbe6ed31d686b24021a62", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021ac2", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ac2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00459", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ac4", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbbe6ed31d686b24021ac2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021ac6", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ac6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00309", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ac8", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ac8", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021aca", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbbe6ed31d686b24021ac8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a68", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a68", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a6a", + "_tpl": "5d0375ff86f774186372f685", + "parentId": "66cbbe6ed31d686b24021a68", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Lighthouse_DesignStuff_00258", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021acc", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021acc", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Lighthouse_DesignStuff_00213", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ace", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbbe6ed31d686b24021acc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Utes_06", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021acf", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021acf", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a6c", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a6c", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a6e", + "_tpl": "5a78948ec5856700177b1124", + "parentId": "66cbbe6ed31d686b24021a6c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a6f", + "_tpl": "5bfea6e90db834001b7347f3", + "parentId": "66cbbe6ed31d686b24021a6c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbbe6ed31d686b24021a70", + "_tpl": "5bfea7ad0db834001c38f1ee", + "parentId": "66cbbe6ed31d686b24021a6f", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021a74", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbbe6ed31d686b24021a70", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2.0 } + }, + { + "_id": "66cbbe6ed31d686b24021a71", + "_tpl": "5bfeb32b0db834001a6694d9", + "parentId": "66cbbe6ed31d686b24021a6f", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b24021a72", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "66cbbe6ed31d686b24021a6f", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b24021a73", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "66cbbe6ed31d686b24021a72", + "slotId": "mod_muzzle" } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00488", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ad0", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbbe6ed31d686b24021acf", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ad1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a76", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a76", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a78", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66cbbe6ed31d686b24021a76", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a7a", + "_tpl": "5c12688486f77426843c7d32", + "parentId": "66cbbe6ed31d686b24021a76", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00482", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ad2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ad3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a7c", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a7c", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a7e", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbbe6ed31d686b24021a7c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a80", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbbe6ed31d686b24021a7c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a81", + "_tpl": "5b40e2bc5acfc40016388216", + "parentId": "66cbbe6ed31d686b24021a7c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbbe6ed31d686b24021a82", + "_tpl": "657112234269e9a568089eac", + "parentId": "66cbbe6ed31d686b24021a81", + "slotId": "Helmet_top" + }, + { + "_id": "66cbbe6ed31d686b24021a83", + "_tpl": "657112a4818110db4600aa66", + "parentId": "66cbbe6ed31d686b24021a81", + "slotId": "Helmet_back" + }, + { + "_id": "66cbbe6ed31d686b24021a84", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "66cbbe6ed31d686b24021a81", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbbe6ed31d686b24021a86", + "_tpl": "5ac4c50d5acfc40019262e87", + "parentId": "66cbbe6ed31d686b24021a7c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00233", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ad4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 3 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ad5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a88", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a88", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a8a", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "66cbbe6ed31d686b24021a88", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00362", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ad6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 5 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ad7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a8c", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a8c", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a8e", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbbe6ed31d686b24021a8c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a90", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbbe6ed31d686b24021a8c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00331", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ad8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 7 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ad9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a92", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a92", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a94", + "_tpl": "57347d692459774491567cf1", + "parentId": "66cbbe6ed31d686b24021a92", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a96", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbbe6ed31d686b24021a92", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a98", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbbe6ed31d686b24021a92", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ada", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 9 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021adb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a9a", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a9a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021a9c", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbbe6ed31d686b24021a9a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00438", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021adc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbbe6ed31d686b24021add", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ade", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbbe6ed31d686b24021adf", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ae0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbbe6ed31d686b24021ae1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ae2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbbe6ed31d686b24021ae3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ae4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbbe6ed31d686b24021ae5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ae6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbbe6ed31d686b24021ae7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ae8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbbe6ed31d686b24021ae9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021aea", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbbe6ed31d686b24021aeb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021aec", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbbe6ed31d686b24021aed", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021aee", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbbe6ed31d686b24021aef", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021af0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbbe6ed31d686b24021af1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021af2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbbe6ed31d686b24021af3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021af4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbbe6ed31d686b24021af5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021af6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbbe6ed31d686b24021af7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021af8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbbe6ed31d686b24021af9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021afa", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbbe6ed31d686b24021afb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021afc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbbe6ed31d686b24021afd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021afe", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbbe6ed31d686b24021aff", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b00", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbbe6ed31d686b24021b01", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b02", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ad0", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "Utes_05", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021b03", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021b03", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021a9e", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021a9e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021aa0", + "_tpl": "590a373286f774287540368b", + "parentId": "66cbbe6ed31d686b24021a9e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021aa2", + "_tpl": "62a09f32621468534a797acb", + "parentId": "66cbbe6ed31d686b24021a9e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00434", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b04", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbbe6ed31d686b24021b03", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021b05", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b06", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b07", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021aa4", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021aa4", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021aa6", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbbe6ed31d686b24021aa4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021aa8", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbbe6ed31d686b24021aa4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021aaa", + "_tpl": "619cbf476b8a1b37a54eebf8", + "parentId": "66cbbe6ed31d686b24021aa4", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00418", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b08", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 3 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b09", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021aac", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021aac", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021aae", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbbe6ed31d686b24021aac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ab0", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbbe6ed31d686b24021aac", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ab2", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbbe6ed31d686b24021aac", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ab4", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbbe6ed31d686b24021aac", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ab6", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbbe6ed31d686b24021aac", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00179", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b0a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 5 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b0b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ab8", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ab8", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021aba", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbbe6ed31d686b24021ab8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 784 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00014", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b0c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 7 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b0d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021abc", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021abc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b0e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 9 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b0f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021abe", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021abe", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ac0", + "_tpl": "60b0f561c4449e4cb624c1d7", + "parentId": "66cbbe6ed31d686b24021abe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b10", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 11 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b11", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021ac2", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ac2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ac4", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbbe6ed31d686b24021ac2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b12", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 13 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b13", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021ac6", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ac6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00309", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b14", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 15 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b15", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ac8", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ac8", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021aca", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbbe6ed31d686b24021ac8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Lighthouse_DesignStuff_00258", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b16", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 17 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b17", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021acc", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021acc", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ace", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbbe6ed31d686b24021acc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Utes_06", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b18", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 19 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021b19", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b1a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbbe6ed31d686b24021b1b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b1c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbbe6ed31d686b24021b1d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b1e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbbe6ed31d686b24021b1f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b20", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbbe6ed31d686b24021b21", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b22", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbbe6ed31d686b24021b23", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b24", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbbe6ed31d686b24021b25", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b26", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbbe6ed31d686b24021b27", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b28", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbbe6ed31d686b24021b29", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b2a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbbe6ed31d686b24021b2b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b2c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbbe6ed31d686b24021b2d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b2e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbbe6ed31d686b24021b2f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b30", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbbe6ed31d686b24021b31", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b32", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbbe6ed31d686b24021b33", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b34", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbbe6ed31d686b24021b35", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b36", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b04", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "Utes_02", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021b37", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021b37", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021acf", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021acf", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } } - } - }, - { - "_id": "66cbbe6ed31d686b24021b38", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbbe6ed31d686b24021b37", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021b39", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b3a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbbe6ed31d686b24021b3b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b3c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbbe6ed31d686b24021b3d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b3e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbbe6ed31d686b24021b3f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b40", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbbe6ed31d686b24021b41", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b42", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbbe6ed31d686b24021b43", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b44", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbbe6ed31d686b24021b45", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b46", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbbe6ed31d686b24021b47", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b48", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbbe6ed31d686b24021b49", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b4a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbbe6ed31d686b24021b4b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b4c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbbe6ed31d686b24021b4d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b4e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbbe6ed31d686b24021b4f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b50", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbbe6ed31d686b24021b51", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b52", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbbe6ed31d686b24021b53", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b54", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbbe6ed31d686b24021b55", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b56", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbbe6ed31d686b24021b57", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b58", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbbe6ed31d686b24021b59", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b5a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbbe6ed31d686b24021b5b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b5c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbbe6ed31d686b24021b5d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b5e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbbe6ed31d686b24021b5f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b60", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbbe6ed31d686b24021b61", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b62", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbbe6ed31d686b24021b63", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b64", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbbe6ed31d686b24021b65", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b66", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbbe6ed31d686b24021b67", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b68", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbbe6ed31d686b24021b69", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021b6a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021b38", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "AGS_01", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021b6b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021b6b", - "_tpl": "5d52cc5ba4b9367408500062", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66cbbe6ed31d686b24021ad0", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbbe6ed31d686b24021acf", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021ad1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 } - } - }, - { - "_id": "66cbbe6ed31d686b24021b6c", - "_tpl": "5d52d479a4b936793d58c76b", - "parentId": "66cbbe6ed31d686b24021b6b", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021b6d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges" - }, - { - "_id": "66cbbe6ed31d686b24021b6e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbbe6ed31d686b24021b6f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 2 - }, - { - "_id": "66cbbe6ed31d686b24021b70", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbbe6ed31d686b24021b71", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 4 - }, - { - "_id": "66cbbe6ed31d686b24021b72", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbbe6ed31d686b24021b73", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 6 - }, - { - "_id": "66cbbe6ed31d686b24021b74", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbbe6ed31d686b24021b75", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 8 - }, - { - "_id": "66cbbe6ed31d686b24021b76", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbbe6ed31d686b24021b77", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 10 - }, - { - "_id": "66cbbe6ed31d686b24021b78", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbbe6ed31d686b24021b79", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 12 - }, - { - "_id": "66cbbe6ed31d686b24021b7a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbbe6ed31d686b24021b7b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 14 - }, - { - "_id": "66cbbe6ed31d686b24021b7c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbbe6ed31d686b24021b7d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 16 - }, - { - "_id": "66cbbe6ed31d686b24021b7e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbbe6ed31d686b24021b7f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 18 - }, - { - "_id": "66cbbe6ed31d686b24021b80", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbbe6ed31d686b24021b81", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 20 - }, - { - "_id": "66cbbe6ed31d686b24021b82", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbbe6ed31d686b24021b83", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 22 - }, - { - "_id": "66cbbe6ed31d686b24021b84", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbbe6ed31d686b24021b85", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 24 - }, - { - "_id": "66cbbe6ed31d686b24021b86", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbbe6ed31d686b24021b87", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 26 - }, - { - "_id": "66cbbe6ed31d686b24021b88", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbbe6ed31d686b24021b89", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 28 - }, - { - "_id": "66cbbe6ed31d686b24021b8a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbbe6ed31d686b24021b8b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 30 - }, - { - "_id": "66cbbe6ed31d686b24021b8c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbbe6ed31d686b24021b8d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 32 - }, - { - "_id": "66cbbe6ed31d686b24021b8e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbbe6ed31d686b24021b8f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 34 - }, - { - "_id": "66cbbe6ed31d686b24021b90", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbbe6ed31d686b24021b91", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 36 - }, - { - "_id": "66cbbe6ed31d686b24021b92", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbbe6ed31d686b24021b93", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 38 - }, - { - "_id": "66cbbe6ed31d686b24021b94", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbbe6ed31d686b24021b95", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 40 - }, - { - "_id": "66cbbe6ed31d686b24021b96", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbbe6ed31d686b24021b97", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 42 - }, - { - "_id": "66cbbe6ed31d686b24021b98", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbbe6ed31d686b24021b99", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 44 - }, - { - "_id": "66cbbe6ed31d686b24021b9a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbbe6ed31d686b24021b9b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 46 - }, - { - "_id": "66cbbe6ed31d686b24021b9c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbbe6ed31d686b24021b9d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 48 - }, - { - "_id": "66cbbe6ed31d686b24021b9e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 49 - }, - { - "_id": "66cbbe6ed31d686b24021b9f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 50 - }, - { - "_id": "66cbbe6ed31d686b24021ba0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 51 - }, - { - "_id": "66cbbe6ed31d686b24021ba1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 52 - }, - { - "_id": "66cbbe6ed31d686b24021ba2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 53 - }, - { - "_id": "66cbbe6ed31d686b24021ba3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 54 - }, - { - "_id": "66cbbe6ed31d686b24021ba4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 55 - }, - { - "_id": "66cbbe6ed31d686b24021ba5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 56 - }, - { - "_id": "66cbbe6ed31d686b24021ba6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 57 - }, - { - "_id": "66cbbe6ed31d686b24021ba7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 58 - }, - { - "_id": "66cbbe6ed31d686b24021ba8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 59 - }, - { - "_id": "66cbbe6ed31d686b24021ba9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 60 - }, - { - "_id": "66cbbe6ed31d686b24021baa", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 61 - }, - { - "_id": "66cbbe6ed31d686b24021bab", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 62 - }, - { - "_id": "66cbbe6ed31d686b24021bac", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 63 - }, - { - "_id": "66cbbe6ed31d686b24021bad", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 64 - }, - { - "_id": "66cbbe6ed31d686b24021bae", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 65 - }, - { - "_id": "66cbbe6ed31d686b24021baf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 66 - }, - { - "_id": "66cbbe6ed31d686b24021bb0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 67 - }, - { - "_id": "66cbbe6ed31d686b24021bb1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 68 - }, - { - "_id": "66cbbe6ed31d686b24021bb2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 69 - }, - { - "_id": "66cbbe6ed31d686b24021bb3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 70 - }, - { - "_id": "66cbbe6ed31d686b24021bb4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 71 - }, - { - "_id": "66cbbe6ed31d686b24021bb5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 72 - }, - { - "_id": "66cbbe6ed31d686b24021bb6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 73 - }, - { - "_id": "66cbbe6ed31d686b24021bb7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 74 - }, - { - "_id": "66cbbe6ed31d686b24021bb8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 75 - }, - { - "_id": "66cbbe6ed31d686b24021bb9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 76 - }, - { - "_id": "66cbbe6ed31d686b24021bba", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 77 - }, - { - "_id": "66cbbe6ed31d686b24021bbb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 78 - }, - { - "_id": "66cbbe6ed31d686b24021bbc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 79 - }, - { - "_id": "66cbbe6ed31d686b24021bbd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 80 - }, - { - "_id": "66cbbe6ed31d686b24021bbe", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 81 - }, - { - "_id": "66cbbe6ed31d686b24021bbf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 82 - }, - { - "_id": "66cbbe6ed31d686b24021bc0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 83 - }, - { - "_id": "66cbbe6ed31d686b24021bc1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 84 - }, - { - "_id": "66cbbe6ed31d686b24021bc2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 85 - }, - { - "_id": "66cbbe6ed31d686b24021bc3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 86 - }, - { - "_id": "66cbbe6ed31d686b24021bc4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 87 - }, - { - "_id": "66cbbe6ed31d686b24021bc5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 88 - }, - { - "_id": "66cbbe6ed31d686b24021bc6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 89 - }, - { - "_id": "66cbbe6ed31d686b24021bc7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 90 - }, - { - "_id": "66cbbe6ed31d686b24021bc8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 91 - }, - { - "_id": "66cbbe6ed31d686b24021bc9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 92 - }, - { - "_id": "66cbbe6ed31d686b24021bca", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 93 - }, - { - "_id": "66cbbe6ed31d686b24021bcb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 94 - }, - { - "_id": "66cbbe6ed31d686b24021bcc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 95 - }, - { - "_id": "66cbbe6ed31d686b24021bcd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 96 - }, - { - "_id": "66cbbe6ed31d686b24021bce", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 97 - }, - { - "_id": "66cbbe6ed31d686b24021bcf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021b6c", - "slotId": "cartridges", - "location": 98 - }, - { - "_id": "66cbbe6ed31d686b24021bd0", - "_tpl": "5d53f4b7a4b936793d58c780", - "parentId": "66cbbe6ed31d686b24021b6b", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "AGS_02", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021bd1", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021bd1", - "_tpl": "5d52cc5ba4b9367408500062", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66cbbe6ed31d686b24021ad2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbbe6ed31d686b24021ad3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 } - } - }, - { - "_id": "66cbbe6ed31d686b24021bd2", - "_tpl": "5d52d479a4b936793d58c76b", - "parentId": "66cbbe6ed31d686b24021bd1", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021bd3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges" - }, - { - "_id": "66cbbe6ed31d686b24021bd4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbbe6ed31d686b24021bd5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 2 - }, - { - "_id": "66cbbe6ed31d686b24021bd6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbbe6ed31d686b24021bd7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 4 - }, - { - "_id": "66cbbe6ed31d686b24021bd8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbbe6ed31d686b24021bd9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 6 - }, - { - "_id": "66cbbe6ed31d686b24021bda", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbbe6ed31d686b24021bdb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 8 - }, - { - "_id": "66cbbe6ed31d686b24021bdc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbbe6ed31d686b24021bdd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 10 - }, - { - "_id": "66cbbe6ed31d686b24021bde", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbbe6ed31d686b24021bdf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 12 - }, - { - "_id": "66cbbe6ed31d686b24021be0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbbe6ed31d686b24021be1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 14 - }, - { - "_id": "66cbbe6ed31d686b24021be2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbbe6ed31d686b24021be3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 16 - }, - { - "_id": "66cbbe6ed31d686b24021be4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbbe6ed31d686b24021be5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 18 - }, - { - "_id": "66cbbe6ed31d686b24021be6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbbe6ed31d686b24021be7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 20 - }, - { - "_id": "66cbbe6ed31d686b24021be8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbbe6ed31d686b24021be9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 22 - }, - { - "_id": "66cbbe6ed31d686b24021bea", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbbe6ed31d686b24021beb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 24 - }, - { - "_id": "66cbbe6ed31d686b24021bec", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbbe6ed31d686b24021bed", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 26 - }, - { - "_id": "66cbbe6ed31d686b24021bee", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbbe6ed31d686b24021bef", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 28 - }, - { - "_id": "66cbbe6ed31d686b24021bf0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbbe6ed31d686b24021bf1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 30 - }, - { - "_id": "66cbbe6ed31d686b24021bf2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbbe6ed31d686b24021bf3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 32 - }, - { - "_id": "66cbbe6ed31d686b24021bf4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbbe6ed31d686b24021bf5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 34 - }, - { - "_id": "66cbbe6ed31d686b24021bf6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbbe6ed31d686b24021bf7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 36 - }, - { - "_id": "66cbbe6ed31d686b24021bf8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbbe6ed31d686b24021bf9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 38 - }, - { - "_id": "66cbbe6ed31d686b24021bfa", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbbe6ed31d686b24021bfb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 40 - }, - { - "_id": "66cbbe6ed31d686b24021bfc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbbe6ed31d686b24021bfd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 42 - }, - { - "_id": "66cbbe6ed31d686b24021bfe", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbbe6ed31d686b24021bff", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 44 - }, - { - "_id": "66cbbe6ed31d686b24021c00", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbbe6ed31d686b24021c01", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 46 - }, - { - "_id": "66cbbe6ed31d686b24021c02", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbbe6ed31d686b24021c03", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 48 - }, - { - "_id": "66cbbe6ed31d686b24021c04", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 49 - }, - { - "_id": "66cbbe6ed31d686b24021c05", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 50 - }, - { - "_id": "66cbbe6ed31d686b24021c06", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 51 - }, - { - "_id": "66cbbe6ed31d686b24021c07", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 52 - }, - { - "_id": "66cbbe6ed31d686b24021c08", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 53 - }, - { - "_id": "66cbbe6ed31d686b24021c09", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 54 - }, - { - "_id": "66cbbe6ed31d686b24021c0a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 55 - }, - { - "_id": "66cbbe6ed31d686b24021c0b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 56 - }, - { - "_id": "66cbbe6ed31d686b24021c0c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 57 - }, - { - "_id": "66cbbe6ed31d686b24021c0d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 58 - }, - { - "_id": "66cbbe6ed31d686b24021c0e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 59 - }, - { - "_id": "66cbbe6ed31d686b24021c0f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 60 - }, - { - "_id": "66cbbe6ed31d686b24021c10", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 61 - }, - { - "_id": "66cbbe6ed31d686b24021c11", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 62 - }, - { - "_id": "66cbbe6ed31d686b24021c12", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 63 - }, - { - "_id": "66cbbe6ed31d686b24021c13", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 64 - }, - { - "_id": "66cbbe6ed31d686b24021c14", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 65 - }, - { - "_id": "66cbbe6ed31d686b24021c15", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 66 - }, - { - "_id": "66cbbe6ed31d686b24021c16", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 67 - }, - { - "_id": "66cbbe6ed31d686b24021c17", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 68 - }, - { - "_id": "66cbbe6ed31d686b24021c18", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 69 - }, - { - "_id": "66cbbe6ed31d686b24021c19", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 70 - }, - { - "_id": "66cbbe6ed31d686b24021c1a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 71 - }, - { - "_id": "66cbbe6ed31d686b24021c1b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 72 - }, - { - "_id": "66cbbe6ed31d686b24021c1c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 73 - }, - { - "_id": "66cbbe6ed31d686b24021c1d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 74 - }, - { - "_id": "66cbbe6ed31d686b24021c1e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 75 - }, - { - "_id": "66cbbe6ed31d686b24021c1f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 76 - }, - { - "_id": "66cbbe6ed31d686b24021c20", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 77 - }, - { - "_id": "66cbbe6ed31d686b24021c21", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 78 - }, - { - "_id": "66cbbe6ed31d686b24021c22", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 79 - }, - { - "_id": "66cbbe6ed31d686b24021c23", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 80 - }, - { - "_id": "66cbbe6ed31d686b24021c24", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 81 - }, - { - "_id": "66cbbe6ed31d686b24021c25", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 82 - }, - { - "_id": "66cbbe6ed31d686b24021c26", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 83 - }, - { - "_id": "66cbbe6ed31d686b24021c27", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 84 - }, - { - "_id": "66cbbe6ed31d686b24021c28", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 85 - }, - { - "_id": "66cbbe6ed31d686b24021c29", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 86 - }, - { - "_id": "66cbbe6ed31d686b24021c2a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 87 - }, - { - "_id": "66cbbe6ed31d686b24021c2b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 88 - }, - { - "_id": "66cbbe6ed31d686b24021c2c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 89 - }, - { - "_id": "66cbbe6ed31d686b24021c2d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 90 - }, - { - "_id": "66cbbe6ed31d686b24021c2e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 91 - }, - { - "_id": "66cbbe6ed31d686b24021c2f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 92 - }, - { - "_id": "66cbbe6ed31d686b24021c30", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 93 - }, - { - "_id": "66cbbe6ed31d686b24021c31", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 94 - }, - { - "_id": "66cbbe6ed31d686b24021c32", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 95 - }, - { - "_id": "66cbbe6ed31d686b24021c33", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 96 - }, - { - "_id": "66cbbe6ed31d686b24021c34", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 97 - }, - { - "_id": "66cbbe6ed31d686b24021c35", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbbe6ed31d686b24021bd2", - "slotId": "cartridges", - "location": 98 - }, - { - "_id": "66cbbe6ed31d686b24021c36", - "_tpl": "5d53f4b7a4b936793d58c780", - "parentId": "66cbbe6ed31d686b24021bd1", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "Utes_03", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021c37", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021c37", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66cbbe6ed31d686b24021ad4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbbe6ed31d686b24021ad5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 } - } - }, - { - "_id": "66cbbe6ed31d686b24021c38", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbbe6ed31d686b24021c37", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021c39", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c3a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbbe6ed31d686b24021c3b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c3c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbbe6ed31d686b24021c3d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c3e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbbe6ed31d686b24021c3f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c40", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbbe6ed31d686b24021c41", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c42", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbbe6ed31d686b24021c43", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c44", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbbe6ed31d686b24021c45", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c46", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbbe6ed31d686b24021c47", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c48", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbbe6ed31d686b24021c49", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c4a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbbe6ed31d686b24021c4b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c4c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbbe6ed31d686b24021c4d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c4e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbbe6ed31d686b24021c4f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c50", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbbe6ed31d686b24021c51", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c52", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbbe6ed31d686b24021c53", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c54", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbbe6ed31d686b24021c55", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c56", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbbe6ed31d686b24021c57", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c58", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbbe6ed31d686b24021c59", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c5a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbbe6ed31d686b24021c5b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c5c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbbe6ed31d686b24021c5d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c5e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbbe6ed31d686b24021c5f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c60", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbbe6ed31d686b24021c61", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c62", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbbe6ed31d686b24021c63", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c64", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbbe6ed31d686b24021c65", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c66", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbbe6ed31d686b24021c67", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c68", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbbe6ed31d686b24021c69", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c6a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c38", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "Utes_01", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021c6b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021c6b", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66cbbe6ed31d686b24021ad6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbbe6ed31d686b24021ad7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 } - } - }, - { - "_id": "66cbbe6ed31d686b24021c6c", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbbe6ed31d686b24021c6b", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021c6d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c6e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbbe6ed31d686b24021c6f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c70", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbbe6ed31d686b24021c71", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c72", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbbe6ed31d686b24021c73", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c74", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbbe6ed31d686b24021c75", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c76", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbbe6ed31d686b24021c77", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c78", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbbe6ed31d686b24021c79", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c7a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbbe6ed31d686b24021c7b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c7c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbbe6ed31d686b24021c7d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c7e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbbe6ed31d686b24021c7f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c80", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbbe6ed31d686b24021c81", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c82", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbbe6ed31d686b24021c83", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c84", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbbe6ed31d686b24021c85", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c86", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbbe6ed31d686b24021c87", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c88", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbbe6ed31d686b24021c89", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c8a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbbe6ed31d686b24021c8b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c8c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbbe6ed31d686b24021c8d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c8e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbbe6ed31d686b24021c8f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c90", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbbe6ed31d686b24021c91", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c92", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbbe6ed31d686b24021c93", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c94", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbbe6ed31d686b24021c95", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c96", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbbe6ed31d686b24021c97", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c98", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbbe6ed31d686b24021c99", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c9a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbbe6ed31d686b24021c9b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c9c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbbe6ed31d686b24021c9d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021c9e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021c6c", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "Utes_04", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbbe6ed31d686b24021c9f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021c9f", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66cbbe6ed31d686b24021ad8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbbe6ed31d686b24021ad9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 } + }, + { + "_id": "66cbbe6ed31d686b24021ada", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbbe6ed31d686b24021adb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021adc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbbe6ed31d686b24021add", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ade", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbbe6ed31d686b24021adf", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ae0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbbe6ed31d686b24021ae1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ae2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbbe6ed31d686b24021ae3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ae4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbbe6ed31d686b24021ae5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ae6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbbe6ed31d686b24021ae7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ae8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbbe6ed31d686b24021ae9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021aea", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbbe6ed31d686b24021aeb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021aec", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbbe6ed31d686b24021aed", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021aee", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbbe6ed31d686b24021aef", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021af0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbbe6ed31d686b24021af1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021af2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbbe6ed31d686b24021af3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021af4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbbe6ed31d686b24021af5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021af6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbbe6ed31d686b24021af7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021af8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbbe6ed31d686b24021af9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021afa", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbbe6ed31d686b24021afb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021afc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbbe6ed31d686b24021afd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021afe", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbbe6ed31d686b24021aff", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b00", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbbe6ed31d686b24021b01", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b02", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ad0", + "slotId": "cartridges", + "location": 49 } - }, - { - "_id": "66cbbe6ed31d686b24021ca0", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbbe6ed31d686b24021c9f", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b24021ca1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ca2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbbe6ed31d686b24021ca3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ca4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbbe6ed31d686b24021ca5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ca6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbbe6ed31d686b24021ca7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ca8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbbe6ed31d686b24021ca9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021caa", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbbe6ed31d686b24021cab", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cac", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbbe6ed31d686b24021cad", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cae", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbbe6ed31d686b24021caf", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cb0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbbe6ed31d686b24021cb1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cb2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbbe6ed31d686b24021cb3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cb4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbbe6ed31d686b24021cb5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cb6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbbe6ed31d686b24021cb7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cb8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbbe6ed31d686b24021cb9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cba", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbbe6ed31d686b24021cbb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cbc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbbe6ed31d686b24021cbd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cbe", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbbe6ed31d686b24021cbf", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cc0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbbe6ed31d686b24021cc1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cc2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbbe6ed31d686b24021cc3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cc4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbbe6ed31d686b24021cc5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cc6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbbe6ed31d686b24021cc7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cc8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbbe6ed31d686b24021cc9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cca", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbbe6ed31d686b24021ccb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021ccc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbbe6ed31d686b24021ccd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cce", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbbe6ed31d686b24021ccf", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cd0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbbe6ed31d686b24021cd1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbbe6ed31d686b24021cd2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbbe6ed31d686b24021ca0", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "ammo_all (10) [2598def2-89a0-42d9-9f3a-025d2ccc23f8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 33.205, - "y": 11.552, - "z": -811.127 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021cd5", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021cd5", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021cd6", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbbe6ed31d686b24021cd5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (100) [fc426a2e-9d32-4297-a1ff-3732de40a197]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -49.845, - "y": 7.512, - "z": -518.315 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021cd9", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021cd9", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021cda", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b24021cd9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (102) [1a366ed2-02f9-4d1b-8856-92b260293044]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -49.331, - "y": 7.512, - "z": -518.695 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021cdd", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021cdd", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021cde", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbbe6ed31d686b24021cdd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (107) [42ffa1d8-0724-4573-b62c-11e54c9474e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -68.504, - "y": 2.269, - "z": -692.024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ce1", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ce1", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021ce2", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbbe6ed31d686b24021ce1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (108) [a23b9d78-6443-46b4-ab58-acb2487c2d6c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -62.439, - "y": 2.269, - "z": -692.004 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ce6", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ce6", - "_tpl": "6570249f1419851aef03e709", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021ce7", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbbe6ed31d686b24021ce6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbbe6ed31d686b24021ce8", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbbe6ed31d686b24021ce6", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (109) [21d78649-65b8-413f-89e5-8c5de86826fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -139.896, - "y": 2.576, - "z": -686.135 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ceb", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ceb", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021cec", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbbe6ed31d686b24021ceb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (116) [421090c7-3b08-4359-814c-611e17ba53d2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -139.448, - "y": 2.401, - "z": -584.068 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021cef", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021cef", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021cf0", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbbe6ed31d686b24021cef", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (117) [1bb7cdec-93b5-4907-add4-4524441cbcd0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -140.427, - "y": 2.48, - "z": -583.143 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021cf3", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021cf3", - "_tpl": "65702406bfc87b3a34093216", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021cf4", - "_tpl": "5efb0fc6aeb21837e749c801", - "parentId": "66cbbe6ed31d686b24021cf3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (119) [cb604823-5933-4d79-8a38-ea408aa5353e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -50.919, - "y": 2.034, - "z": -501.365 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021cf8", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021cf8", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021cf9", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b24021cf8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021cfa", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b24021cf8", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "ammo_all (122) [926831bd-6dfd-488c-bf48-834266cb8c7b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -28.849, - "y": 2.668, - "z": -530.118 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021cfd", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021cfd", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021cfe", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbbe6ed31d686b24021cfd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (124) [91e01d49-69bf-4e8f-83ac-2eafc532852e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -28.627, - "y": 2.668, - "z": -529.815 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d01", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d01", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d02", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbbe6ed31d686b24021d01", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (126) [0813cc4d-d3f3-4540-91f8-0994b04222b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -44.679, - "y": 12.274, - "z": -781.691 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d06", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d06", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d07", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021d06", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021d08", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021d06", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "ammo_all (127) [cc2db936-5442-4064-b336-0e6334618981]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -44.4, - "y": 12.274, - "z": -781.878 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d0b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d0b", - "_tpl": "657024bdc5d7d4cb4d078564", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d0c", - "_tpl": "5e85a9f4add9fe03027d9bf1", - "parentId": "66cbbe6ed31d686b24021d0b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (128) [ebe968e1-bc55-4a81-aa82-285bcb653d4b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -180.792, - "y": 8.631, - "z": -632.94 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d10", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d10", - "_tpl": "57372b832459776701014e41", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d11", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbbe6ed31d686b24021d10", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021d12", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbbe6ed31d686b24021d10", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "ammo_all (133) [c95efc19-2f26-4cef-af22-e92e230b6d44]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -42.11, - "y": 9.988, - "z": 13.92 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d15", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d15", - "_tpl": "657025d4c5d7d4cb4d078585", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d16", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbbe6ed31d686b24021d15", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (139) [bd11e1a0-90b6-4d79-8703-3726bd2b2000]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -99.905, - "y": 21.23, - "z": 283.771 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d19", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d19", - "_tpl": "5737280e24597765cc785b5c", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d1a", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbbe6ed31d686b24021d19", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "ammo_all (14) [8c9b4611-1978-486d-b924-bd33b5647271]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -105.924, - "y": 10.816, - "z": -946.907 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d1d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d1d", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d1e", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbbe6ed31d686b24021d1d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (141) [95f8268e-41b4-45ee-93fe-743ae75f6e97]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 276.96, - "y": 3.15, - "z": 514.31 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d21", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d21", - "_tpl": "657024bdc5d7d4cb4d078564", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d22", - "_tpl": "5e85a9f4add9fe03027d9bf1", - "parentId": "66cbbe6ed31d686b24021d21", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (144) [bcc4f0d1-bdf5-4b38-9b79-5aed7535655a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 276.35, - "y": 2.65, - "z": 514.51 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d26", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d26", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d27", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021d26", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021d28", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021d26", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "ammo_all (146) [e94e0ce1-a1d9-4505-9a44-b35950ace3d7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 316.389, - "y": 2.234, - "z": 513.571 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d2b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d2b", - "_tpl": "648986bbc827d4637f01791e", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d2c", - "_tpl": "5cc80f38e4a949001152b560", - "parentId": "66cbbe6ed31d686b24021d2b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (147) [2a412763-6315-4f32-83b3-08f51170458e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 316.151, - "y": 2.234, - "z": 513.004 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d30", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d30", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d31", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6ed31d686b24021d30", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbbe6ed31d686b24021d32", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6ed31d686b24021d30", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (148) [09619d6e-f9ac-4e63-8605-7b0b7a67953b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 316.271, - "y": 2.282, - "z": 512.171 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d36", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d36", - "_tpl": "65702652cfc010a0f5006a53", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d37", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbbe6ed31d686b24021d36", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021d38", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbbe6ed31d686b24021d36", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "ammo_all (15) [0c9ba834-e71e-4875-8b51-ab12d41cbc4d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -104.24, - "y": 10.816, - "z": -947.682 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d3b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d3b", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d3c", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbbe6ed31d686b24021d3b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (151) [28a62282-56c7-41bd-893d-971f6b123d33]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 52.166, - "y": 11.539, - "z": -808.893 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d3f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d3f", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d40", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbbe6ed31d686b24021d3f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "ammo_all (153) [4cc7f0c8-41d5-4885-97a1-74a405116f1f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 318.37, - "y": 5.262, - "z": 492.717 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d43", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d43", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d44", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbbe6ed31d686b24021d43", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (154) [65d9a209-d981-40de-b864-fee1af5a589f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 318.299, - "y": 5.262, - "z": 493.018 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d48", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d48", - "_tpl": "6570249bcfc010a0f5006a07", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d49", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24021d48", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbbe6ed31d686b24021d4a", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24021d48", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (155) [8947b1d1-c13c-49c2-88d5-248c7599e167]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 317.978, - "y": 5.262, - "z": 493.601 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d4d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d4d", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d4e", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbbe6ed31d686b24021d4d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (159) [b6318aa3-130f-41ab-968f-9f5741c93e71]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 408.612, - "y": 0.842, - "z": 434.319 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d51", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d51", - "_tpl": "6570259fcfc010a0f5006a32", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d52", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66cbbe6ed31d686b24021d51", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (16) [64ca0d4c-ca59-4245-bd34-ea615f8f630f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -101.817, - "y": 11.025, - "z": -796.769 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d56", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d56", - "_tpl": "65702474bfc87b3a34093226", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d57", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6ed31d686b24021d56", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbbe6ed31d686b24021d58", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6ed31d686b24021d56", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (160) [51779e71-211e-4864-add8-a497f0db645d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 409.056, - "y": 0.842, - "z": 434.115 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d5b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d5b", - "_tpl": "65702591c5d7d4cb4d07857c", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d5c", - "_tpl": "5c925fa22e221601da359b7b", - "parentId": "66cbbe6ed31d686b24021d5b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (163) [9fa49385-6d63-4346-8048-909508a5e253]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 411.339, - "y": 0.424, - "z": 428.581 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d5f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d5f", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d60", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbbe6ed31d686b24021d5f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (164) [b7252f4e-aa57-4725-ba38-33f28d4cb1c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 411.5, - "y": 0.424, - "z": 428.095 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d63", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d63", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d64", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbbe6ed31d686b24021d63", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (165) [157827e7-d5de-4ec2-b239-5d562f23a781]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 412.301, - "y": 0.424, - "z": 428.153 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d68", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d68", - "_tpl": "65702474bfc87b3a34093226", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d69", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6ed31d686b24021d68", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbbe6ed31d686b24021d6a", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6ed31d686b24021d68", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (166) [2a757683-8c78-4910-949f-83d21127a5b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 403.901, - "y": 16.294, - "z": 535.944 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d6d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d6d", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d6e", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbbe6ed31d686b24021d6d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "ammo_all (167) [b678a675-988d-4f8f-937f-77c8b1b6c51b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 403.244, - "y": 16.294, - "z": 536.44 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d71", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d71", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d72", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbbe6ed31d686b24021d71", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "ammo_all (168) [b63c0b99-9c05-415f-aef5-8f25a5ea1a59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 403.855, - "y": 16.294, - "z": 536.445 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d75", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d75", - "_tpl": "6489870774a806211e4fb685", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d76", - "_tpl": "5ba26835d4351e0035628ff5", - "parentId": "66cbbe6ed31d686b24021d75", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "ammo_all (17) [994c76e2-3fca-4c4b-ae0d-9fcc7148439a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -102.795, - "y": 11.355, - "z": -796.145 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d79", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d79", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d7a", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbbe6ed31d686b24021d79", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (171) [f03cbfd1-cc35-4784-8131-a04ebb59ae91]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 396.018, - "y": 16.047, - "z": 533.182 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d7d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d7d", - "_tpl": "64acea0d03378853630da53b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d7e", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbbe6ed31d686b24021d7d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (172) [0a09302b-ba97-496f-b889-339dc05471d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 395.967, - "y": 16.047, - "z": 534.252 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d82", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d82", - "_tpl": "6570266bc5d7d4cb4d078594", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d83", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6ed31d686b24021d82", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021d84", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6ed31d686b24021d82", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "ammo_all (174) [7553c377-3786-40ff-bc1e-2bb4bb47b2dc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 350.725, - "y": 19.136, - "z": 533.413 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d87", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d87", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d88", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbbe6ed31d686b24021d87", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "ammo_all (175) [0a3a4d54-eeff-4519-91ad-98b8a48be3a0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 350.582, - "y": 19.136, - "z": 534.063 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d8c", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d8c", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d8d", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021d8c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021d8e", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021d8c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "ammo_all (176) [cb1ccd2c-5563-4dad-9778-6b10d18edde3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 350.036, - "y": 19.332, - "z": 533.755 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d91", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d91", - "_tpl": "6570241bcfc010a0f50069f5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d92", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbbe6ed31d686b24021d91", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - } - ] - }, - { - "Id": "ammo_all (178) [8b3dd652-1742-4009-9c7c-a76973e23148]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 349.762, - "y": 19.204, - "z": 534.686 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d95", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d95", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d96", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbbe6ed31d686b24021d95", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (180) [cda618c1-c907-493f-b2ca-87932f458e7c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 359.463, - "y": 19.653, - "z": 536.871 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d99", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d99", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d9a", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbbe6ed31d686b24021d99", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (182) [17bc87d1-9bf6-4764-b2bf-005f9cb6c351]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 360.415, - "y": 19.129, - "z": 537.9 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021d9d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021d9d", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021d9e", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbbe6ed31d686b24021d9d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "ammo_all (183) [28b35521-5e4f-40d4-a52a-d833762b59eb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 361.076, - "y": 19.521, - "z": 536.569 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021da1", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021da1", - "_tpl": "65702640cfc010a0f5006a4d", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021da2", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbbe6ed31d686b24021da1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (184) [a40839ee-5e24-42d5-988c-9252a273980f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 362.385, - "y": 19.309, - "z": 536.977 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021da5", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021da5", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021da6", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbbe6ed31d686b24021da5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (185) [ddd6ee92-ad43-4e72-b1b8-7569004cdc26]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 363.656, - "y": 19.522, - "z": 537.648 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021da9", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021da9", - "_tpl": "6570253acfc010a0f5006a1c", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021daa", - "_tpl": "573602322459776445391df1", - "parentId": "66cbbe6ed31d686b24021da9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 - } - } - ] - }, - { - "Id": "ammo_all (186) [15c86581-608b-4576-b2c7-97097c3a2b6c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 361.882, - "y": 19.426, - "z": 537.61 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021dad", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021dad", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dae", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbbe6ed31d686b24021dad", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (188) [2c962f47-55d6-496f-9afb-00eafe2b7ab9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 371.849, - "y": 21.168, - "z": 533.233 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021db1", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021db1", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021db2", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbbe6ed31d686b24021db1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (192) [ad6a4f52-8c47-4400-94ea-5d840632b2e5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 364.428, - "y": 15.662, - "z": 563.679 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021db6", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021db6", - "_tpl": "6570249bcfc010a0f5006a07", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021db7", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24021db6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbbe6ed31d686b24021db8", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24021db6", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (198) [e36bd992-633f-42ea-89b2-e921f2dfb7a2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 416.211, - "y": 15.948, - "z": 557.34 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021dbb", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021dbb", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dbc", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6ed31d686b24021dbb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "ammo_all (2) [8914fc6e-b5c0-4349-8875-45d927b926a3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 35.582, - "y": 11.851, - "z": -882.849 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021dbf", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021dbf", - "_tpl": "657024f9bfc87b3a3409323b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dc0", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6ed31d686b24021dbf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (202) [96a93148-e435-406f-941f-0b5399c6776c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 399.922, - "y": 15.491, - "z": 554.988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021dc3", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021dc3", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dc4", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbbe6ed31d686b24021dc3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (204) [5b22d4b5-7ac9-4091-8a9e-1d65eab0c6bb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 36.804, - "y": 14.871, - "z": -590.083 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021dc7", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021dc7", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dc8", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbbe6ed31d686b24021dc7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (205) [9403e546-886b-41fc-9975-3edec9b6161e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 37.251, - "y": 14.871, - "z": -590.308 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021dcb", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021dcb", - "_tpl": "6570262d1419851aef03e72d", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dcc", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66cbbe6ed31d686b24021dcb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (206) [368c2bdb-1c78-49dd-8b63-c67d87dabe73]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 35.296, - "y": 14.772, - "z": -590.892 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021dcf", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021dcf", - "_tpl": "6570259bc5d7d4cb4d07857f", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dd0", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbbe6ed31d686b24021dcf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (207) [7b08dd13-79ea-4f3d-a8f3-1ad41908f759]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 34.721, - "y": 14.772, - "z": -590.8 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021dd3", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021dd3", - "_tpl": "5c1127bdd174af44217ab8b9", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dd4", - "_tpl": "5c0d56a986f774449d5de529", - "parentId": "66cbbe6ed31d686b24021dd3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (209) [cd65cf8c-366a-49e2-9137-d5f486617bbc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 44.248, - "y": 15.503, - "z": -608.222 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021dd7", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021dd7", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dd8", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbbe6ed31d686b24021dd7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "ammo_all (210) [1a872c39-e108-40e3-8e2a-610863064b61]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 46.874, - "y": 14.246, - "z": -618.709 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ddb", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ddb", - "_tpl": "657023ccbfc87b3a3409320a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021ddc", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "66cbbe6ed31d686b24021ddb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (214) [f627bf76-7141-4561-b42a-8d469d36f3a0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 44.169, - "y": 14.234, - "z": -619.168 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ddf", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ddf", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021de0", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbbe6ed31d686b24021ddf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (215) [a049bf16-8212-453c-9ae0-1db72fd31a5d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 43.639, - "y": 14.234, - "z": -619.334 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021de3", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021de3", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021de4", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbbe6ed31d686b24021de3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (218) [b979c1e2-bbd7-49de-a9b3-ec094f9f8d2b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 42.378, - "y": 15.059, - "z": -632.334 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021de7", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021de7", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021de8", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbbe6ed31d686b24021de7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "ammo_all (22) [afaa46c2-3166-4d56-af39-ef2453e0ae76]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -101.187, - "y": 11.41, - "z": -794.412 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021deb", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021deb", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dec", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbbe6ed31d686b24021deb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (223) [f9c02d66-07f6-4eda-95cf-ad24e02b3c57]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 48.075, - "y": 14.636, - "z": -641.143 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021df0", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021df0", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021df1", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021df0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021df2", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021df0", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "ammo_all (226) [8137eff4-241d-4e8a-beeb-2ef50f31cee0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 56.429, - "y": 14.498, - "z": -657.74 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021df5", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021df5", - "_tpl": "657023f1bfc87b3a34093210", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021df6", - "_tpl": "59e6542b86f77411dc52a77a", - "parentId": "66cbbe6ed31d686b24021df5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (227) [02de2dd3-20ea-47e9-84be-577f3ed9b9ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 54.936, - "y": 14.259, - "z": -657.155 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021df9", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021df9", - "_tpl": "64aceaecc4eda9354b0226b6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dfa", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbbe6ed31d686b24021df9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "ammo_all (229) [6219d308-de11-4d43-b603-0536e313fd64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 54.24, - "y": 14.498, - "z": -657.66 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021dfd", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021dfd", - "_tpl": "657025d4c5d7d4cb4d078585", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021dfe", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbbe6ed31d686b24021dfd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (23) [999aa126-45e1-4070-9128-096b268cf1b6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -99.881, - "y": 11.035, - "z": -795.233 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e02", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e02", - "_tpl": "65702426cfc010a0f50069f8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e03", - "_tpl": "5d6e6772a4b936088465b17c", - "parentId": "66cbbe6ed31d686b24021e02", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbbe6ed31d686b24021e04", - "_tpl": "5d6e6772a4b936088465b17c", - "parentId": "66cbbe6ed31d686b24021e02", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (230) [bfd8ecb2-8663-4b0b-a440-a89618d2c0e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 50.787, - "y": 14.298, - "z": -644.847 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e08", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e08", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e09", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6ed31d686b24021e08", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbbe6ed31d686b24021e0a", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6ed31d686b24021e08", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (231) [a38488d5-4573-4743-bcbe-3a9f8ac6bdc3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 51.372, - "y": 15.137, - "z": -644.256 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e0d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e0d", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e0e", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b24021e0d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (232) [d5106c10-bc92-4944-b23a-929ccc7d3fe9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 53.754, - "y": 14.805, - "z": -642.048 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e12", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e12", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e13", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b24021e12", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021e14", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b24021e12", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "ammo_all (238) [728cb9c1-56a1-43d5-9987-d1db0a2fad99]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.736, - "y": 5.958, - "z": -756.766 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e17", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e17", - "_tpl": "6570241bcfc010a0f50069f5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e18", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbbe6ed31d686b24021e17", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - } - ] - }, - { - "Id": "ammo_all (239) [e7e42804-bd9d-43b9-a734-6d92b0a08198]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.837, - "y": 5.958, - "z": -756.378 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e1b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e1b", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e1c", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbbe6ed31d686b24021e1b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (241) [aeab8bb0-bdcd-4091-b5f7-53b0484bc36d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.556, - "y": 5.963, - "z": -756.101 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e1f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e1f", - "_tpl": "65702614c5d7d4cb4d07858b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e20", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbbe6ed31d686b24021e1f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (242) [e39a0ddb-9691-4848-8742-6155b41e4e4a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -68.943, - "y": 14.64, - "z": -741.603 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e23", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e23", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e24", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbbe6ed31d686b24021e23", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (243) [5475d9e1-5f57-4150-a153-60f886836c09]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -68.804, - "y": 14.968, - "z": -743.164 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e28", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e28", - "_tpl": "6570249bcfc010a0f5006a07", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e29", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24021e28", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbbe6ed31d686b24021e2a", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24021e28", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (244) [f4534088-829b-4373-b15c-e1fd499ef64a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -68.166, - "y": 14.899, - "z": -744.343 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e2d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e2d", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e2e", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbbe6ed31d686b24021e2d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "ammo_all (245) [f87d86b9-895a-4871-8df9-d42b86966cba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -68.766, - "y": 14.899, - "z": -744.283 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e31", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e31", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e32", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbbe6ed31d686b24021e31", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (246) [a16943bf-d920-408e-a79c-f00324cd6e7a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -69.701, - "y": 14.409, - "z": -742.178 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e35", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e35", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e36", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b24021e35", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "ammo_all (248) [2eed8d08-5210-489e-b7f7-ed3abffcea64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -75.414, - "y": 15.124, - "z": -755.474 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e39", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e39", - "_tpl": "65702420bfc87b3a34093219", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e3a", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66cbbe6ed31d686b24021e39", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - } - ] - }, - { - "Id": "ammo_all (25) [7ab98dad-e4ba-4c07-8bdf-0b7353cc6d18]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -92.747, - "y": 11.096, - "z": -795.208 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e3d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e3d", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e3e", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbbe6ed31d686b24021e3d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (250) [2cc8b220-1179-4948-a541-85a8a77b7d82]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -76.075, - "y": 14.705, - "z": -755.604 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e42", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e42", - "_tpl": "57372deb245977685d4159b3", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e43", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbbe6ed31d686b24021e42", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021e44", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbbe6ed31d686b24021e42", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "ammo_all (253) [4aebce64-de9e-4649-9b12-fb3d0f7fb576]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -69.743, - "y": 14.542, - "z": -750.385 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e47", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e47", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e48", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbbe6ed31d686b24021e47", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (259) [19bd23c3-a9d9-4d5f-a6d7-30e027c22d80]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -87.241, - "y": 14.701, - "z": -740.108 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e4b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e4b", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e4c", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbbe6ed31d686b24021e4b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (265) [6c736f33-7c30-4277-91b9-7d8deb2f50ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -109.899, - "y": 14.595, - "z": -733.374 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e4f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e4f", - "_tpl": "657024bdc5d7d4cb4d078564", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e50", - "_tpl": "5e85a9f4add9fe03027d9bf1", - "parentId": "66cbbe6ed31d686b24021e4f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (266) [002bf381-4c78-408f-b25c-b9e450ff583e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -109.324, - "y": 14.664, - "z": -732.06 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e53", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e53", - "_tpl": "657025d4c5d7d4cb4d078585", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e54", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbbe6ed31d686b24021e53", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (267) [e96787ff-dcc5-4dbd-b32f-c2529f5ecfa1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -108.339, - "y": 14.597, - "z": -731.98 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e57", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e57", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e58", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6ed31d686b24021e57", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "ammo_all (268) [f11f294a-75f4-4fc0-b992-e341d1c3dc7d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -113.574, - "y": 15.072, - "z": -729.652 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e5b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e5b", - "_tpl": "6570253ec5d7d4cb4d078573", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e5c", - "_tpl": "5735fdcd2459776445391d61", - "parentId": "66cbbe6ed31d686b24021e5b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 - } - } - ] - }, - { - "Id": "ammo_all (27) [bc61c363-0905-4495-b41b-c07e2ca805d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -16.521, - "y": 13.182, - "z": -901.059 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e60", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e60", - "_tpl": "65702681bfc87b3a3409325f", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e61", - "_tpl": "601949593ae8f707c4608daa", - "parentId": "66cbbe6ed31d686b24021e60", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021e62", - "_tpl": "601949593ae8f707c4608daa", - "parentId": "66cbbe6ed31d686b24021e60", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "ammo_all (270) [3a94bdfb-9be9-43e3-b70a-60e2c08303c1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -114.897, - "y": 14.461, - "z": -731.281 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e66", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e66", - "_tpl": "65702681bfc87b3a3409325f", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e67", - "_tpl": "601949593ae8f707c4608daa", - "parentId": "66cbbe6ed31d686b24021e66", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbbe6ed31d686b24021e68", - "_tpl": "601949593ae8f707c4608daa", - "parentId": "66cbbe6ed31d686b24021e66", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "ammo_all (271) [e6df807e-f39a-4f29-8dcf-ce941c5412bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -113.618, - "y": 14.461, - "z": -730.348 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e6b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e6b", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e6c", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbbe6ed31d686b24021e6b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (272) [e2748cb2-5cd9-4150-b4aa-c4cfbc7e6a20]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -82.591, - "y": 14.907, - "z": -731.274 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e6f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e6f", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e70", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbbe6ed31d686b24021e6f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "ammo_all (274) [e4955af7-6170-4dca-9271-089e5af71e9d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -80.995, - "y": 14.296, - "z": -731.596 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e73", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e73", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e74", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbbe6ed31d686b24021e73", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (277) [bd030d4d-37c8-49a9-9dfa-4bff1ade033a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -74.357, - "y": 14.989, - "z": -730.771 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e77", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e77", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e78", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbbe6ed31d686b24021e77", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "ammo_all (280) [5ca1104b-f856-4186-aee7-872b6ec77eee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -75.843, - "y": 15.28, - "z": -733.163 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e7b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e7b", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_05", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021e7c", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbbe6ed31d686b24021e7b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (282) [27ba94ef-8477-4049-a77d-d61e16a4329f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -88.625, - "y": 15.18, - "z": -729.909 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e7f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e7f", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021e80", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbbe6ed31d686b24021e7f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021b03", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021b03", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbbe6ed31d686b24021b04", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbbe6ed31d686b24021b03", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021b05", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b06", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbbe6ed31d686b24021b07", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b08", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbbe6ed31d686b24021b09", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b0a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbbe6ed31d686b24021b0b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b0c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbbe6ed31d686b24021b0d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b0e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbbe6ed31d686b24021b0f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b10", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbbe6ed31d686b24021b11", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b12", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbbe6ed31d686b24021b13", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b14", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbbe6ed31d686b24021b15", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b16", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbbe6ed31d686b24021b17", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b18", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbbe6ed31d686b24021b19", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b1a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbbe6ed31d686b24021b1b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b1c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbbe6ed31d686b24021b1d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b1e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbbe6ed31d686b24021b1f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b20", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbbe6ed31d686b24021b21", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b22", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbbe6ed31d686b24021b23", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b24", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbbe6ed31d686b24021b25", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b26", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbbe6ed31d686b24021b27", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b28", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbbe6ed31d686b24021b29", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b2a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbbe6ed31d686b24021b2b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b2c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbbe6ed31d686b24021b2d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b2e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbbe6ed31d686b24021b2f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b30", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbbe6ed31d686b24021b31", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b32", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbbe6ed31d686b24021b33", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b34", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbbe6ed31d686b24021b35", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b36", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b04", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "ammo_all (283) [13d7f57b-30ce-4e75-ae5e-dea9e513d58f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -79.543, - "y": 15.029, - "z": -744.31 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e84", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e84", - "_tpl": "657024431419851aef03e6fd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_02", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021e85", - "_tpl": "64b8ee384b75259c590fa89b", - "parentId": "66cbbe6ed31d686b24021e84", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021e86", - "_tpl": "64b8ee384b75259c590fa89b", - "parentId": "66cbbe6ed31d686b24021e84", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021b37", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021b37", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbbe6ed31d686b24021b38", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbbe6ed31d686b24021b37", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021b39", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b3a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbbe6ed31d686b24021b3b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b3c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbbe6ed31d686b24021b3d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b3e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbbe6ed31d686b24021b3f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b40", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbbe6ed31d686b24021b41", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b42", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbbe6ed31d686b24021b43", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b44", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbbe6ed31d686b24021b45", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b46", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbbe6ed31d686b24021b47", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b48", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbbe6ed31d686b24021b49", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b4a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbbe6ed31d686b24021b4b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b4c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbbe6ed31d686b24021b4d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b4e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbbe6ed31d686b24021b4f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b50", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbbe6ed31d686b24021b51", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b52", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbbe6ed31d686b24021b53", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b54", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbbe6ed31d686b24021b55", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b56", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbbe6ed31d686b24021b57", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b58", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbbe6ed31d686b24021b59", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b5a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbbe6ed31d686b24021b5b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b5c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbbe6ed31d686b24021b5d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b5e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbbe6ed31d686b24021b5f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b60", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbbe6ed31d686b24021b61", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b62", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbbe6ed31d686b24021b63", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b64", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbbe6ed31d686b24021b65", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b66", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbbe6ed31d686b24021b67", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b68", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbbe6ed31d686b24021b69", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021b6a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021b38", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "ammo_all (284) [6fbcfad2-83bc-4ca8-b515-df8c021a3841]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -113.49, - "y": 14.63, - "z": -754.405 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e8a", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e8a", - "_tpl": "6570249bcfc010a0f5006a07", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021e8b", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24021e8a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + { + "Id": "AGS_01", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021e8c", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24021e8a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (285) [20a7b4ee-8c39-4e8e-a01c-fbb0d5c432f3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -113.003, - "y": 14.63, - "z": -754.706 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e8f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e8f", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021e90", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbbe6ed31d686b24021e8f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021b6b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021b6b", + "_tpl": "5d52cc5ba4b9367408500062", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbbe6ed31d686b24021b6c", + "_tpl": "5d52d479a4b936793d58c76b", + "parentId": "66cbbe6ed31d686b24021b6b", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021b6d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges" + }, + { + "_id": "66cbbe6ed31d686b24021b6e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbbe6ed31d686b24021b6f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 2 + }, + { + "_id": "66cbbe6ed31d686b24021b70", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbbe6ed31d686b24021b71", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 4 + }, + { + "_id": "66cbbe6ed31d686b24021b72", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbbe6ed31d686b24021b73", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 6 + }, + { + "_id": "66cbbe6ed31d686b24021b74", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbbe6ed31d686b24021b75", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 8 + }, + { + "_id": "66cbbe6ed31d686b24021b76", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbbe6ed31d686b24021b77", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 10 + }, + { + "_id": "66cbbe6ed31d686b24021b78", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbbe6ed31d686b24021b79", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 12 + }, + { + "_id": "66cbbe6ed31d686b24021b7a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbbe6ed31d686b24021b7b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 14 + }, + { + "_id": "66cbbe6ed31d686b24021b7c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbbe6ed31d686b24021b7d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 16 + }, + { + "_id": "66cbbe6ed31d686b24021b7e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbbe6ed31d686b24021b7f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 18 + }, + { + "_id": "66cbbe6ed31d686b24021b80", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbbe6ed31d686b24021b81", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 20 + }, + { + "_id": "66cbbe6ed31d686b24021b82", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbbe6ed31d686b24021b83", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 22 + }, + { + "_id": "66cbbe6ed31d686b24021b84", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbbe6ed31d686b24021b85", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 24 + }, + { + "_id": "66cbbe6ed31d686b24021b86", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbbe6ed31d686b24021b87", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 26 + }, + { + "_id": "66cbbe6ed31d686b24021b88", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbbe6ed31d686b24021b89", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 28 + }, + { + "_id": "66cbbe6ed31d686b24021b8a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbbe6ed31d686b24021b8b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 30 + }, + { + "_id": "66cbbe6ed31d686b24021b8c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbbe6ed31d686b24021b8d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 32 + }, + { + "_id": "66cbbe6ed31d686b24021b8e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbbe6ed31d686b24021b8f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 34 + }, + { + "_id": "66cbbe6ed31d686b24021b90", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbbe6ed31d686b24021b91", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 36 + }, + { + "_id": "66cbbe6ed31d686b24021b92", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbbe6ed31d686b24021b93", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 38 + }, + { + "_id": "66cbbe6ed31d686b24021b94", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbbe6ed31d686b24021b95", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 40 + }, + { + "_id": "66cbbe6ed31d686b24021b96", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbbe6ed31d686b24021b97", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 42 + }, + { + "_id": "66cbbe6ed31d686b24021b98", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbbe6ed31d686b24021b99", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 44 + }, + { + "_id": "66cbbe6ed31d686b24021b9a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbbe6ed31d686b24021b9b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 46 + }, + { + "_id": "66cbbe6ed31d686b24021b9c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbbe6ed31d686b24021b9d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 48 + }, + { + "_id": "66cbbe6ed31d686b24021b9e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 49 + }, + { + "_id": "66cbbe6ed31d686b24021b9f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 50 + }, + { + "_id": "66cbbe6ed31d686b24021ba0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 51 + }, + { + "_id": "66cbbe6ed31d686b24021ba1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 52 + }, + { + "_id": "66cbbe6ed31d686b24021ba2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 53 + }, + { + "_id": "66cbbe6ed31d686b24021ba3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 54 + }, + { + "_id": "66cbbe6ed31d686b24021ba4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 55 + }, + { + "_id": "66cbbe6ed31d686b24021ba5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 56 + }, + { + "_id": "66cbbe6ed31d686b24021ba6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 57 + }, + { + "_id": "66cbbe6ed31d686b24021ba7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 58 + }, + { + "_id": "66cbbe6ed31d686b24021ba8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 59 + }, + { + "_id": "66cbbe6ed31d686b24021ba9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 60 + }, + { + "_id": "66cbbe6ed31d686b24021baa", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 61 + }, + { + "_id": "66cbbe6ed31d686b24021bab", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 62 + }, + { + "_id": "66cbbe6ed31d686b24021bac", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 63 + }, + { + "_id": "66cbbe6ed31d686b24021bad", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 64 + }, + { + "_id": "66cbbe6ed31d686b24021bae", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 65 + }, + { + "_id": "66cbbe6ed31d686b24021baf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 66 + }, + { + "_id": "66cbbe6ed31d686b24021bb0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 67 + }, + { + "_id": "66cbbe6ed31d686b24021bb1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 68 + }, + { + "_id": "66cbbe6ed31d686b24021bb2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 69 + }, + { + "_id": "66cbbe6ed31d686b24021bb3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 70 + }, + { + "_id": "66cbbe6ed31d686b24021bb4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 71 + }, + { + "_id": "66cbbe6ed31d686b24021bb5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 72 + }, + { + "_id": "66cbbe6ed31d686b24021bb6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 73 + }, + { + "_id": "66cbbe6ed31d686b24021bb7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 74 + }, + { + "_id": "66cbbe6ed31d686b24021bb8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 75 + }, + { + "_id": "66cbbe6ed31d686b24021bb9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 76 + }, + { + "_id": "66cbbe6ed31d686b24021bba", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 77 + }, + { + "_id": "66cbbe6ed31d686b24021bbb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 78 + }, + { + "_id": "66cbbe6ed31d686b24021bbc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 79 + }, + { + "_id": "66cbbe6ed31d686b24021bbd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 80 + }, + { + "_id": "66cbbe6ed31d686b24021bbe", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 81 + }, + { + "_id": "66cbbe6ed31d686b24021bbf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 82 + }, + { + "_id": "66cbbe6ed31d686b24021bc0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 83 + }, + { + "_id": "66cbbe6ed31d686b24021bc1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 84 + }, + { + "_id": "66cbbe6ed31d686b24021bc2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 85 + }, + { + "_id": "66cbbe6ed31d686b24021bc3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 86 + }, + { + "_id": "66cbbe6ed31d686b24021bc4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 87 + }, + { + "_id": "66cbbe6ed31d686b24021bc5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 88 + }, + { + "_id": "66cbbe6ed31d686b24021bc6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 89 + }, + { + "_id": "66cbbe6ed31d686b24021bc7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 90 + }, + { + "_id": "66cbbe6ed31d686b24021bc8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 91 + }, + { + "_id": "66cbbe6ed31d686b24021bc9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 92 + }, + { + "_id": "66cbbe6ed31d686b24021bca", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 93 + }, + { + "_id": "66cbbe6ed31d686b24021bcb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 94 + }, + { + "_id": "66cbbe6ed31d686b24021bcc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 95 + }, + { + "_id": "66cbbe6ed31d686b24021bcd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 96 + }, + { + "_id": "66cbbe6ed31d686b24021bce", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 97 + }, + { + "_id": "66cbbe6ed31d686b24021bcf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021b6c", + "slotId": "cartridges", + "location": 98 + }, + { + "_id": "66cbbe6ed31d686b24021bd0", + "_tpl": "5d53f4b7a4b936793d58c780", + "parentId": "66cbbe6ed31d686b24021b6b", + "slotId": "mod_scope" } - } - ] - }, - { - "Id": "ammo_all (288) [678d797f-f16a-4d79-b430-53fcec0e40e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -103.99, - "y": 14.78, - "z": -746.35 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e93", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e93", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "AGS_02", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021e94", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbbe6ed31d686b24021e93", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "ammo_all (291) [385cdac1-44f9-420a-8544-d2ea1134acdd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -106.208, - "y": 14.342, - "z": -749.014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e97", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e97", - "_tpl": "65702546cfc010a0f5006a1f", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021e98", - "_tpl": "573603562459776430731618", - "parentId": "66cbbe6ed31d686b24021e97", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021bd1", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021bd1", + "_tpl": "5d52cc5ba4b9367408500062", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbbe6ed31d686b24021bd2", + "_tpl": "5d52d479a4b936793d58c76b", + "parentId": "66cbbe6ed31d686b24021bd1", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021bd3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges" + }, + { + "_id": "66cbbe6ed31d686b24021bd4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbbe6ed31d686b24021bd5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 2 + }, + { + "_id": "66cbbe6ed31d686b24021bd6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbbe6ed31d686b24021bd7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 4 + }, + { + "_id": "66cbbe6ed31d686b24021bd8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbbe6ed31d686b24021bd9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 6 + }, + { + "_id": "66cbbe6ed31d686b24021bda", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbbe6ed31d686b24021bdb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 8 + }, + { + "_id": "66cbbe6ed31d686b24021bdc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbbe6ed31d686b24021bdd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 10 + }, + { + "_id": "66cbbe6ed31d686b24021bde", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbbe6ed31d686b24021bdf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 12 + }, + { + "_id": "66cbbe6ed31d686b24021be0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbbe6ed31d686b24021be1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 14 + }, + { + "_id": "66cbbe6ed31d686b24021be2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbbe6ed31d686b24021be3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 16 + }, + { + "_id": "66cbbe6ed31d686b24021be4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbbe6ed31d686b24021be5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 18 + }, + { + "_id": "66cbbe6ed31d686b24021be6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbbe6ed31d686b24021be7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 20 + }, + { + "_id": "66cbbe6ed31d686b24021be8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbbe6ed31d686b24021be9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 22 + }, + { + "_id": "66cbbe6ed31d686b24021bea", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbbe6ed31d686b24021beb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 24 + }, + { + "_id": "66cbbe6ed31d686b24021bec", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbbe6ed31d686b24021bed", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 26 + }, + { + "_id": "66cbbe6ed31d686b24021bee", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbbe6ed31d686b24021bef", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 28 + }, + { + "_id": "66cbbe6ed31d686b24021bf0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbbe6ed31d686b24021bf1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 30 + }, + { + "_id": "66cbbe6ed31d686b24021bf2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbbe6ed31d686b24021bf3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 32 + }, + { + "_id": "66cbbe6ed31d686b24021bf4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbbe6ed31d686b24021bf5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 34 + }, + { + "_id": "66cbbe6ed31d686b24021bf6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbbe6ed31d686b24021bf7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 36 + }, + { + "_id": "66cbbe6ed31d686b24021bf8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbbe6ed31d686b24021bf9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 38 + }, + { + "_id": "66cbbe6ed31d686b24021bfa", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbbe6ed31d686b24021bfb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 40 + }, + { + "_id": "66cbbe6ed31d686b24021bfc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbbe6ed31d686b24021bfd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 42 + }, + { + "_id": "66cbbe6ed31d686b24021bfe", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbbe6ed31d686b24021bff", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 44 + }, + { + "_id": "66cbbe6ed31d686b24021c00", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbbe6ed31d686b24021c01", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 46 + }, + { + "_id": "66cbbe6ed31d686b24021c02", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbbe6ed31d686b24021c03", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 48 + }, + { + "_id": "66cbbe6ed31d686b24021c04", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 49 + }, + { + "_id": "66cbbe6ed31d686b24021c05", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 50 + }, + { + "_id": "66cbbe6ed31d686b24021c06", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 51 + }, + { + "_id": "66cbbe6ed31d686b24021c07", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 52 + }, + { + "_id": "66cbbe6ed31d686b24021c08", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 53 + }, + { + "_id": "66cbbe6ed31d686b24021c09", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 54 + }, + { + "_id": "66cbbe6ed31d686b24021c0a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 55 + }, + { + "_id": "66cbbe6ed31d686b24021c0b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 56 + }, + { + "_id": "66cbbe6ed31d686b24021c0c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 57 + }, + { + "_id": "66cbbe6ed31d686b24021c0d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 58 + }, + { + "_id": "66cbbe6ed31d686b24021c0e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 59 + }, + { + "_id": "66cbbe6ed31d686b24021c0f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 60 + }, + { + "_id": "66cbbe6ed31d686b24021c10", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 61 + }, + { + "_id": "66cbbe6ed31d686b24021c11", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 62 + }, + { + "_id": "66cbbe6ed31d686b24021c12", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 63 + }, + { + "_id": "66cbbe6ed31d686b24021c13", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 64 + }, + { + "_id": "66cbbe6ed31d686b24021c14", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 65 + }, + { + "_id": "66cbbe6ed31d686b24021c15", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 66 + }, + { + "_id": "66cbbe6ed31d686b24021c16", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 67 + }, + { + "_id": "66cbbe6ed31d686b24021c17", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 68 + }, + { + "_id": "66cbbe6ed31d686b24021c18", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 69 + }, + { + "_id": "66cbbe6ed31d686b24021c19", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 70 + }, + { + "_id": "66cbbe6ed31d686b24021c1a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 71 + }, + { + "_id": "66cbbe6ed31d686b24021c1b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 72 + }, + { + "_id": "66cbbe6ed31d686b24021c1c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 73 + }, + { + "_id": "66cbbe6ed31d686b24021c1d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 74 + }, + { + "_id": "66cbbe6ed31d686b24021c1e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 75 + }, + { + "_id": "66cbbe6ed31d686b24021c1f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 76 + }, + { + "_id": "66cbbe6ed31d686b24021c20", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 77 + }, + { + "_id": "66cbbe6ed31d686b24021c21", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 78 + }, + { + "_id": "66cbbe6ed31d686b24021c22", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 79 + }, + { + "_id": "66cbbe6ed31d686b24021c23", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 80 + }, + { + "_id": "66cbbe6ed31d686b24021c24", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 81 + }, + { + "_id": "66cbbe6ed31d686b24021c25", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 82 + }, + { + "_id": "66cbbe6ed31d686b24021c26", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 83 + }, + { + "_id": "66cbbe6ed31d686b24021c27", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 84 + }, + { + "_id": "66cbbe6ed31d686b24021c28", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 85 + }, + { + "_id": "66cbbe6ed31d686b24021c29", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 86 + }, + { + "_id": "66cbbe6ed31d686b24021c2a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 87 + }, + { + "_id": "66cbbe6ed31d686b24021c2b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 88 + }, + { + "_id": "66cbbe6ed31d686b24021c2c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 89 + }, + { + "_id": "66cbbe6ed31d686b24021c2d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 90 + }, + { + "_id": "66cbbe6ed31d686b24021c2e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 91 + }, + { + "_id": "66cbbe6ed31d686b24021c2f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 92 + }, + { + "_id": "66cbbe6ed31d686b24021c30", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 93 + }, + { + "_id": "66cbbe6ed31d686b24021c31", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 94 + }, + { + "_id": "66cbbe6ed31d686b24021c32", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 95 + }, + { + "_id": "66cbbe6ed31d686b24021c33", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 96 + }, + { + "_id": "66cbbe6ed31d686b24021c34", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 97 + }, + { + "_id": "66cbbe6ed31d686b24021c35", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbbe6ed31d686b24021bd2", + "slotId": "cartridges", + "location": 98 + }, + { + "_id": "66cbbe6ed31d686b24021c36", + "_tpl": "5d53f4b7a4b936793d58c780", + "parentId": "66cbbe6ed31d686b24021bd1", + "slotId": "mod_scope" } - } - ] - }, - { - "Id": "ammo_all (292) [99613be2-21a7-4005-9fbe-6a383a8e6b12]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -105.608, - "y": 14.342, - "z": -749.235 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e9b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e9b", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_03", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021e9c", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbbe6ed31d686b24021e9b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021c37", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021c37", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbbe6ed31d686b24021c38", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbbe6ed31d686b24021c37", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021c39", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c3a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbbe6ed31d686b24021c3b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c3c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbbe6ed31d686b24021c3d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c3e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbbe6ed31d686b24021c3f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c40", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbbe6ed31d686b24021c41", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c42", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbbe6ed31d686b24021c43", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c44", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbbe6ed31d686b24021c45", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c46", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbbe6ed31d686b24021c47", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c48", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbbe6ed31d686b24021c49", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c4a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbbe6ed31d686b24021c4b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c4c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbbe6ed31d686b24021c4d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c4e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbbe6ed31d686b24021c4f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c50", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbbe6ed31d686b24021c51", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c52", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbbe6ed31d686b24021c53", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c54", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbbe6ed31d686b24021c55", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c56", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbbe6ed31d686b24021c57", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c58", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbbe6ed31d686b24021c59", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c5a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbbe6ed31d686b24021c5b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c5c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbbe6ed31d686b24021c5d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c5e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbbe6ed31d686b24021c5f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c60", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbbe6ed31d686b24021c61", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c62", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbbe6ed31d686b24021c63", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c64", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbbe6ed31d686b24021c65", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c66", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbbe6ed31d686b24021c67", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c68", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbbe6ed31d686b24021c69", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c6a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c38", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "ammo_all (294) [3c19f117-bfec-472c-a203-9d21678646be]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -117.249, - "y": 15.267, - "z": -738.108 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021e9f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021e9f", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_01", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ea0", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbbe6ed31d686b24021e9f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021c6b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021c6b", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbbe6ed31d686b24021c6c", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbbe6ed31d686b24021c6b", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021c6d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c6e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbbe6ed31d686b24021c6f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c70", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbbe6ed31d686b24021c71", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c72", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbbe6ed31d686b24021c73", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c74", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbbe6ed31d686b24021c75", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c76", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbbe6ed31d686b24021c77", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c78", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbbe6ed31d686b24021c79", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c7a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbbe6ed31d686b24021c7b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c7c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbbe6ed31d686b24021c7d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c7e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbbe6ed31d686b24021c7f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c80", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbbe6ed31d686b24021c81", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c82", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbbe6ed31d686b24021c83", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c84", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbbe6ed31d686b24021c85", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c86", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbbe6ed31d686b24021c87", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c88", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbbe6ed31d686b24021c89", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c8a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbbe6ed31d686b24021c8b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c8c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbbe6ed31d686b24021c8d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c8e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbbe6ed31d686b24021c8f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c90", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbbe6ed31d686b24021c91", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c92", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbbe6ed31d686b24021c93", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c94", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbbe6ed31d686b24021c95", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c96", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbbe6ed31d686b24021c97", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c98", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbbe6ed31d686b24021c99", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c9a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbbe6ed31d686b24021c9b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c9c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbbe6ed31d686b24021c9d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021c9e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021c6c", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "ammo_all (295) [7aa4ec1f-b016-478b-8365-ea4e97446fae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -116.949, - "y": 14.609, - "z": -736.28 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ea3", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ea3", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_04", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ea4", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b24021ea3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "ammo_all (298) [53dd9af2-2f93-4c3e-a200-6026fce6c52a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -197.341, - "y": 14.469, - "z": -694.091 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ea7", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ea7", - "_tpl": "65702420bfc87b3a34093219", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ea8", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66cbbe6ed31d686b24021ea7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbbe6ed31d686b24021c9f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021c9f", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbbe6ed31d686b24021ca0", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbbe6ed31d686b24021c9f", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b24021ca1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ca2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbbe6ed31d686b24021ca3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ca4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbbe6ed31d686b24021ca5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ca6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbbe6ed31d686b24021ca7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ca8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbbe6ed31d686b24021ca9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021caa", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbbe6ed31d686b24021cab", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cac", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbbe6ed31d686b24021cad", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cae", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbbe6ed31d686b24021caf", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cb0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbbe6ed31d686b24021cb1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cb2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbbe6ed31d686b24021cb3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cb4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbbe6ed31d686b24021cb5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cb6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbbe6ed31d686b24021cb7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cb8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbbe6ed31d686b24021cb9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cba", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbbe6ed31d686b24021cbb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cbc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbbe6ed31d686b24021cbd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cbe", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbbe6ed31d686b24021cbf", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cc0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbbe6ed31d686b24021cc1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cc2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbbe6ed31d686b24021cc3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cc4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbbe6ed31d686b24021cc5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cc6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbbe6ed31d686b24021cc7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cc8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbbe6ed31d686b24021cc9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cca", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbbe6ed31d686b24021ccb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021ccc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbbe6ed31d686b24021ccd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cce", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbbe6ed31d686b24021ccf", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cd0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbbe6ed31d686b24021cd1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbbe6ed31d686b24021cd2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbbe6ed31d686b24021ca0", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "ammo_all (299) [f8bb10ef-1ac8-4c87-93f6-3e3cee771cb6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -197.311, - "y": 14.914, - "z": -693.023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021eab", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021eab", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (10) [2598def2-89a0-42d9-9f3a-025d2ccc23f8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 33.205, + "y": 11.552, + "z": -811.127 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021eac", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbbe6ed31d686b24021eab", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021cd5", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021cd5", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021cd6", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbbe6ed31d686b24021cd5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (305) [3b548253-bad5-4640-a187-332c5ed42ff4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -178.68, - "y": 14.72, - "z": -695.125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021eb0", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021eb0", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021eb1", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b24021eb0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + { + "Id": "ammo_all (100) [fc426a2e-9d32-4297-a1ff-3732de40a197]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -49.845, + "y": 7.512, + "z": -518.315 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021eb2", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b24021eb0", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021cd9", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021cd9", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021cda", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b24021cd9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (309) [8e63d8e3-e0eb-402d-9286-1810c8838eda]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -182.39, - "y": 15.116, - "z": -695.031 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021eb5", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021eb5", - "_tpl": "657024b31419851aef03e70f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (102) [1a366ed2-02f9-4d1b-8856-92b260293044]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -49.331, + "y": 7.512, + "z": -518.695 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021eb6", - "_tpl": "5f647f31b6238e5dd066e196", - "parentId": "66cbbe6ed31d686b24021eb5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021cdd", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021cdd", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021cde", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbbe6ed31d686b24021cdd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (312) [267ceee8-2e65-40cc-a089-78c8b93e29ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -191.954, - "y": 14.753, - "z": -688.608 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021eb9", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021eb9", - "_tpl": "657024bdc5d7d4cb4d078564", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (107) [42ffa1d8-0724-4573-b62c-11e54c9474e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -68.504, + "y": 2.269, + "z": -692.024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021eba", - "_tpl": "5e85a9f4add9fe03027d9bf1", - "parentId": "66cbbe6ed31d686b24021eb9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ce1", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ce1", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ce2", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbbe6ed31d686b24021ce1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (313) [813aaf5e-7a70-4e40-a91c-6c04b497f80d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -193.4, - "y": 15.116, - "z": -684.348 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ebe", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ebe", - "_tpl": "65702474bfc87b3a34093226", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbbe6ed31d686b24021ebf", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6ed31d686b24021ebe", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + { + "Id": "ammo_all (108) [a23b9d78-6443-46b4-ab58-acb2487c2d6c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -62.439, + "y": 2.269, + "z": -692.004 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ec0", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6ed31d686b24021ebe", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "ammo_all (315) [9236e02d-2d04-4c96-af02-8197b1fe15ea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -197.83, - "y": 14.541, - "z": -690.589 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ec3", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ec3", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ce6", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ce6", + "_tpl": "6570249f1419851aef03e709", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ce7", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbbe6ed31d686b24021ce6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021ce8", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbbe6ed31d686b24021ce6", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "ammo_all (109) [21d78649-65b8-413f-89e5-8c5de86826fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -139.896, + "y": 2.576, + "z": -686.135 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ec4", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbbe6ed31d686b24021ec3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ceb", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ceb", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021cec", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbbe6ed31d686b24021ceb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (316) [195523f6-d71f-4833-922a-3edae802ccbf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -197.21, - "y": 14.541, - "z": -690.485 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ec7", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ec7", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (116) [421090c7-3b08-4359-814c-611e17ba53d2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -139.448, + "y": 2.401, + "z": -584.068 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ec8", - "_tpl": "5a269f97c4a282000b151807", - "parentId": "66cbbe6ed31d686b24021ec7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021cef", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021cef", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021cf0", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbbe6ed31d686b24021cef", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (317) [e15f4c2b-2121-4f05-9615-caebdc608ab0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -196.48, - "y": 14.29, - "z": -689.763 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ecb", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ecb", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (117) [1bb7cdec-93b5-4907-add4-4524441cbcd0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -140.427, + "y": 2.48, + "z": -583.143 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ecc", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbbe6ed31d686b24021ecb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021cf3", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021cf3", + "_tpl": "65702406bfc87b3a34093216", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021cf4", + "_tpl": "5efb0fc6aeb21837e749c801", + "parentId": "66cbbe6ed31d686b24021cf3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (32) [fb50f5ff-8340-4539-8dae-075b0eb70f96]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -110.706, - "y": 11.737, - "z": -886.481 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ecf", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ecf", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (119) [cb604823-5933-4d79-8a38-ea408aa5353e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -50.919, + "y": 2.034, + "z": -501.365 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ed0", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbbe6ed31d686b24021ecf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021cf8", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021cf8", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021cf9", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b24021cf8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021cfa", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b24021cf8", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ammo_all (320) [f3e9f3fe-6000-4d2a-aac4-0bcb2474d1c5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -189.565, - "y": 14.522, - "z": -635.938 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ed3", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ed3", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (122) [926831bd-6dfd-488c-bf48-834266cb8c7b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -28.849, + "y": 2.668, + "z": -530.118 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ed4", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbbe6ed31d686b24021ed3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021cfd", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021cfd", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021cfe", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbbe6ed31d686b24021cfd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (321) [c09523cd-db9f-48d2-b313-f10a33072995]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -174.884, - "y": 14.986, - "z": -642.98 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ed7", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ed7", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (124) [91e01d49-69bf-4e8f-83ac-2eafc532852e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -28.627, + "y": 2.668, + "z": -529.815 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ed8", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbbe6ed31d686b24021ed7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d01", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d01", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d02", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbbe6ed31d686b24021d01", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (325) [04b4a229-2541-4b43-8f80-619f2303a67e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -188.963, - "y": 14.916, - "z": -663.57 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021edb", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021edb", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (126) [0813cc4d-d3f3-4540-91f8-0994b04222b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -44.679, + "y": 12.274, + "z": -781.691 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021edc", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbbe6ed31d686b24021edb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d06", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d06", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d07", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021d06", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021d08", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021d06", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ammo_all (329) [e722f758-f396-4bba-9f45-df112c438101]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -192.767, - "y": 14.464, - "z": -665.816 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ee0", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ee0", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (127) [cc2db936-5442-4064-b336-0e6334618981]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -44.4, + "y": 12.274, + "z": -781.878 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ee1", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b24021ee0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d0b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d0b", + "_tpl": "657024bdc5d7d4cb4d078564", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d0c", + "_tpl": "5e85a9f4add9fe03027d9bf1", + "parentId": "66cbbe6ed31d686b24021d0b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "ammo_all (128) [ebe968e1-bc55-4a81-aa82-285bcb653d4b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -180.792, + "y": 8.631, + "z": -632.94 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ee2", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b24021ee0", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d10", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d10", + "_tpl": "57372b832459776701014e41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d11", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbbe6ed31d686b24021d10", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021d12", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbbe6ed31d686b24021d10", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ammo_all (331) [c6583d2e-143c-4d47-83c4-cbec1f3ee785]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -187.754, - "y": 14.284, - "z": -660.642 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ee5", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ee5", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (133) [c95efc19-2f26-4cef-af22-e92e230b6d44]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -42.11, + "y": 9.988, + "z": 13.92 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ee6", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbbe6ed31d686b24021ee5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d15", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d15", + "_tpl": "657025d4c5d7d4cb4d078585", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d16", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbbe6ed31d686b24021d15", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (332) [e503ea79-8118-46a8-925a-30933df12c76]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -185.498, - "y": 15.043, - "z": -662.299 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ee9", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ee9", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (139) [bd11e1a0-90b6-4d79-8703-3726bd2b2000]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -99.905, + "y": 21.23, + "z": 283.771 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021eea", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbbe6ed31d686b24021ee9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d19", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d19", + "_tpl": "5737280e24597765cc785b5c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d1a", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbbe6ed31d686b24021d19", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo_all (335) [58290d67-4545-4460-8b6a-6ac748b48f98]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -180.042, - "y": 14.573, - "z": -670.138 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021eee", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021eee", - "_tpl": "65702474bfc87b3a34093226", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (14) [8c9b4611-1978-486d-b924-bd33b5647271]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -105.924, + "y": 10.816, + "z": -946.907 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021eef", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6ed31d686b24021eee", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d1d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d1d", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d1e", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbbe6ed31d686b24021d1d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "ammo_all (141) [95f8268e-41b4-45ee-93fe-743ae75f6e97]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 276.96, + "y": 3.15, + "z": 514.31 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ef0", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6ed31d686b24021eee", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d21", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d21", + "_tpl": "657024bdc5d7d4cb4d078564", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d22", + "_tpl": "5e85a9f4add9fe03027d9bf1", + "parentId": "66cbbe6ed31d686b24021d21", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (336) [69606286-4fc4-4faf-b346-ba804bef9dab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -180.951, - "y": 14.402, - "z": -668.977 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ef3", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ef3", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (144) [bcc4f0d1-bdf5-4b38-9b79-5aed7535655a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 276.35, + "y": 2.65, + "z": 514.51 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ef4", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbbe6ed31d686b24021ef3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d26", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d26", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d27", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021d26", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021d28", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021d26", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ammo_all (34) [adf958c6-8f99-4b1b-b0d5-de74c935aeca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 51.949, - "y": 2.849, - "z": 505.151 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ef7", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ef7", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (146) [e94e0ce1-a1d9-4505-9a44-b35950ace3d7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 316.389, + "y": 2.234, + "z": 513.571 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ef8", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbbe6ed31d686b24021ef7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d2b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d2b", + "_tpl": "648986bbc827d4637f01791e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d2c", + "_tpl": "5cc80f38e4a949001152b560", + "parentId": "66cbbe6ed31d686b24021d2b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (340) [fc5451ad-9e46-4e77-a25f-c65dc3d221d1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -174.538, - "y": 14.919, - "z": -676.06 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021efb", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021efb", - "_tpl": "5739d41224597779c3645501", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (147) [2a412763-6315-4f32-83b3-08f51170458e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 316.151, + "y": 2.234, + "z": 513.004 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021efc", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbbe6ed31d686b24021efb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d30", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d30", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d31", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6ed31d686b24021d30", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021d32", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6ed31d686b24021d30", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (344) [12a3f5de-d681-4afe-af20-52a411c5857c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -175.439, - "y": 14.977, - "z": -684.358 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021eff", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021eff", - "_tpl": "5739d41224597779c3645501", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (148) [09619d6e-f9ac-4e63-8605-7b0b7a67953b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 316.271, + "y": 2.282, + "z": 512.171 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d36", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d36", + "_tpl": "65702652cfc010a0f5006a53", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d37", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbbe6ed31d686b24021d36", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021d38", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbbe6ed31d686b24021d36", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "ammo_all (15) [0c9ba834-e71e-4875-8b51-ab12d41cbc4d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -104.24, + "y": 10.816, + "z": -947.682 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f00", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbbe6ed31d686b24021eff", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d3b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d3b", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d3c", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbbe6ed31d686b24021d3b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (345) [e8f1db4c-2d9f-4022-bc52-f7bfe20388c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -174.72, - "y": 15.031, - "z": -684.43 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f03", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f03", - "_tpl": "64aceaecc4eda9354b0226b6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (151) [28a62282-56c7-41bd-893d-971f6b123d33]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 52.166, + "y": 11.539, + "z": -808.893 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f04", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbbe6ed31d686b24021f03", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d3f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d3f", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d40", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbbe6ed31d686b24021d3f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "ammo_all (347) [17149909-b48c-4789-b21a-19aea10d9a5a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -174.015, - "y": 14.49, - "z": -690.019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f07", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f07", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (153) [4cc7f0c8-41d5-4885-97a1-74a405116f1f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 318.37, + "y": 5.262, + "z": 492.717 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f08", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b24021f07", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d43", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d43", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d44", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbbe6ed31d686b24021d43", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (348) [4a4afa41-23dd-479b-b285-7ddd9ea42c8a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -174.837, - "y": 14.873, - "z": -689.955 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f0b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f0b", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (154) [65d9a209-d981-40de-b864-fee1af5a589f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 318.299, + "y": 5.262, + "z": 493.018 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f0c", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbbe6ed31d686b24021f0b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d48", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d48", + "_tpl": "6570249bcfc010a0f5006a07", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d49", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24021d48", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021d4a", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24021d48", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (351) [d7a7ebc9-1caf-4765-85bb-1d23411bb9d7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -190.555, - "y": 14.925, - "z": -649.583 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f0f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f0f", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (155) [8947b1d1-c13c-49c2-88d5-248c7599e167]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 317.978, + "y": 5.262, + "z": 493.601 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f10", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbbe6ed31d686b24021f0f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d4d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d4d", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d4e", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbbe6ed31d686b24021d4d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (352) [bdaf9f4f-4337-492a-92fc-39e6812885f1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -190.541, - "y": 14.414, - "z": -648.267 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f13", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f13", - "_tpl": "648987d673c462723909a151", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (159) [b6318aa3-130f-41ab-968f-9f5741c93e71]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 408.612, + "y": 0.842, + "z": 434.319 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f14", - "_tpl": "5efb0da7a29a85116f6ea05f", - "parentId": "66cbbe6ed31d686b24021f13", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d51", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d51", + "_tpl": "6570259fcfc010a0f5006a32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d52", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66cbbe6ed31d686b24021d51", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (353) [f5dcd2ba-e183-4fac-97d2-94bcb9d9a6c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -191.92, - "y": 14.597, - "z": -645.435 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f17", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f17", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (16) [64ca0d4c-ca59-4245-bd34-ea615f8f630f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -101.817, + "y": 11.025, + "z": -796.769 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f18", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbbe6ed31d686b24021f17", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d56", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d56", + "_tpl": "65702474bfc87b3a34093226", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d57", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6ed31d686b24021d56", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021d58", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6ed31d686b24021d56", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (354) [f2d6ef61-53bc-4f32-9072-e4b2e09885de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -192.18, - "y": 14.597, - "z": -643.21 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f1b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f1b", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (160) [51779e71-211e-4864-add8-a497f0db645d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 409.056, + "y": 0.842, + "z": 434.115 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f1c", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbbe6ed31d686b24021f1b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d5b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d5b", + "_tpl": "65702591c5d7d4cb4d07857c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d5c", + "_tpl": "5c925fa22e221601da359b7b", + "parentId": "66cbbe6ed31d686b24021d5b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (356) [df533ec9-6b67-4ea4-8c1f-38c8180a5b6a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 357.803, - "y": 16.136, - "z": 550.369 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f1f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f1f", - "_tpl": "6570259bc5d7d4cb4d07857f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (163) [9fa49385-6d63-4346-8048-909508a5e253]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 411.339, + "y": 0.424, + "z": 428.581 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f20", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbbe6ed31d686b24021f1f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d5f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d5f", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d60", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbbe6ed31d686b24021d5f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (360) [ffe270fb-cb42-48cd-bcf7-638b7bc9a71a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 357.449, - "y": 16.33, - "z": 553.081 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f24", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f24", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (164) [b7252f4e-aa57-4725-ba38-33f28d4cb1c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 411.5, + "y": 0.424, + "z": 428.095 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f25", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6ed31d686b24021f24", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d63", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d63", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d64", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbbe6ed31d686b24021d63", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "ammo_all (165) [157827e7-d5de-4ec2-b239-5d562f23a781]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 412.301, + "y": 0.424, + "z": 428.153 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f26", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6ed31d686b24021f24", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d68", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d68", + "_tpl": "65702474bfc87b3a34093226", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d69", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6ed31d686b24021d68", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021d6a", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6ed31d686b24021d68", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (363) [77425f2d-8252-4c53-9e19-0d994c4caaed]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 404.184, - "y": 3.229, - "z": 392.283 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f29", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f29", - "_tpl": "65702524cfc010a0f5006a16", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (166) [2a757683-8c78-4910-949f-83d21127a5b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 403.901, + "y": 16.294, + "z": 535.944 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f2a", - "_tpl": "5cc80f67e4a949035e43bbba", - "parentId": "66cbbe6ed31d686b24021f29", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d6d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d6d", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d6e", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbbe6ed31d686b24021d6d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "ammo_all (364) [aa8bb589-430c-47ee-a254-0704c3aaaeaa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 402.195, - "y": 2.093, - "z": 392.802 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f2d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f2d", - "_tpl": "657023e7c5d7d4cb4d078552", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (167) [b678a675-988d-4f8f-937f-77c8b1b6c51b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 403.244, + "y": 16.294, + "z": 536.44 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f2e", - "_tpl": "62330c18744e5e31df12f516", - "parentId": "66cbbe6ed31d686b24021f2d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d71", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d71", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d72", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbbe6ed31d686b24021d71", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "ammo_all (365) [d695749c-f13a-4585-a1b6-a92225c16daa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 402.598, - "y": 2.093, - "z": 392.976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f31", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f31", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (168) [b63c0b99-9c05-415f-aef5-8f25a5ea1a59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 403.855, + "y": 16.294, + "z": 536.445 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f32", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbbe6ed31d686b24021f31", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d75", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d75", + "_tpl": "6489870774a806211e4fb685", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d76", + "_tpl": "5ba26835d4351e0035628ff5", + "parentId": "66cbbe6ed31d686b24021d75", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "ammo_all (366) [fca34e6f-089c-4e5d-9e32-9865f714763b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 403.049, - "y": 2.714, - "z": 392.074 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f35", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f35", - "_tpl": "657023ccbfc87b3a3409320a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (17) [994c76e2-3fca-4c4b-ae0d-9fcc7148439a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -102.795, + "y": 11.355, + "z": -796.145 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f36", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "66cbbe6ed31d686b24021f35", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d79", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d79", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d7a", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbbe6ed31d686b24021d79", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (368) [debe2e8d-79ab-4d9d-8f04-8fade6af9498]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 356.613, - "y": 20.75, - "z": 560.024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f39", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f39", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (171) [f03cbfd1-cc35-4784-8131-a04ebb59ae91]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 396.018, + "y": 16.047, + "z": 533.182 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f3a", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbbe6ed31d686b24021f39", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d7d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d7d", + "_tpl": "64acea0d03378853630da53b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d7e", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbbe6ed31d686b24021d7d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (371) [246b81d4-a039-4a26-87bb-67c882aa6494]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 357.922, - "y": 20.75, - "z": 558.328 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f3d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f3d", - "_tpl": "64acea09c4eda9354b0226ad", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (172) [0a09302b-ba97-496f-b889-339dc05471d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 395.967, + "y": 16.047, + "z": 534.252 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d82", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d82", + "_tpl": "6570266bc5d7d4cb4d078594", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d83", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6ed31d686b24021d82", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021d84", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6ed31d686b24021d82", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "ammo_all (174) [7553c377-3786-40ff-bc1e-2bb4bb47b2dc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 350.725, + "y": 19.136, + "z": 533.413 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f3e", - "_tpl": "59e4cf5286f7741778269d8a", - "parentId": "66cbbe6ed31d686b24021f3d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d87", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d87", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d88", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbbe6ed31d686b24021d87", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo_all (373) [64bd99c7-d883-4066-9a53-83274f5ba4d7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 354.786, - "y": 20.273, - "z": 555.935 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f41", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f41", - "_tpl": "657026341419851aef03e730", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (175) [0a3a4d54-eeff-4519-91ad-98b8a48be3a0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 350.582, + "y": 19.136, + "z": 534.063 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f42", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6ed31d686b24021f41", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d8c", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d8c", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d8d", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021d8c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021d8e", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021d8c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ammo_all (374) [66862b73-0c69-4998-a36c-40b104d0c7cc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 354.898, - "y": 20.933, - "z": 554.848 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f45", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f45", - "_tpl": "6570251ccfc010a0f5006a13", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (176) [cb1ccd2c-5563-4dad-9778-6b10d18edde3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 350.036, + "y": 19.332, + "z": 533.755 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f46", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbbe6ed31d686b24021f45", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d91", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d91", + "_tpl": "6570241bcfc010a0f50069f5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d92", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbbe6ed31d686b24021d91", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "ammo_all (375) [25eea5b0-4015-441e-a5a0-f33c8474e374]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 355.137, - "y": 20.933, - "z": 554.36 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f49", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f49", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (178) [8b3dd652-1742-4009-9c7c-a76973e23148]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 349.762, + "y": 19.204, + "z": 534.686 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f4a", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbbe6ed31d686b24021f49", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d95", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d95", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d96", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbbe6ed31d686b24021d95", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (38) [f83d54aa-e8ed-4e56-85ff-658f6b7c0ba3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -146.95, - "y": 9.322, - "z": -708.11 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f4d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f4d", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (180) [cda618c1-c907-493f-b2ca-87932f458e7c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 359.463, + "y": 19.653, + "z": 536.871 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f4e", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbbe6ed31d686b24021f4d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d99", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d99", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d9a", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbbe6ed31d686b24021d99", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (42) [0278555c-aeb0-47fd-bd91-8e439902ee3d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -281.57, - "y": 13.897, - "z": -187.402 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f51", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f51", - "_tpl": "657025bbcfc010a0f5006a35", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (182) [17bc87d1-9bf6-4764-b2bf-005f9cb6c351]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 360.415, + "y": 19.129, + "z": 537.9 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f52", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbbe6ed31d686b24021f51", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021d9d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021d9d", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021d9e", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbbe6ed31d686b24021d9d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "ammo_all (43) [72d077f3-b617-4528-ae4b-5ff3a14ce34f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -240.692, - "y": 14.814, - "z": -172.038 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f55", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f55", - "_tpl": "65702619bfc87b3a34093259", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (183) [28b35521-5e4f-40d4-a52a-d833762b59eb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 361.076, + "y": 19.521, + "z": 536.569 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f56", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66cbbe6ed31d686b24021f55", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021da1", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021da1", + "_tpl": "65702640cfc010a0f5006a4d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021da2", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbbe6ed31d686b24021da1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (45) [8aaa5791-d846-40ed-ba26-1ba16179ea6f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -240.732, - "y": 14.814, - "z": -171.9 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f59", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f59", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (184) [a40839ee-5e24-42d5-988c-9252a273980f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 362.385, + "y": 19.309, + "z": 536.977 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f5a", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b24021f59", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021da5", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021da5", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021da6", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbbe6ed31d686b24021da5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (47) [9b44f186-cbe5-4124-84a7-933f3777d096]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 52.36, - "y": 5.254, - "z": -495.424 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f5d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f5d", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (185) [ddd6ee92-ad43-4e72-b1b8-7569004cdc26]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 363.656, + "y": 19.522, + "z": 537.648 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f5e", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbbe6ed31d686b24021f5d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021da9", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021da9", + "_tpl": "6570253acfc010a0f5006a1c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021daa", + "_tpl": "573602322459776445391df1", + "parentId": "66cbbe6ed31d686b24021da9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "ammo_all (48) [3c92fe53-454f-405a-b66f-9f4c702b7f53]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 51.368, - "y": 5.254, - "z": -495.095 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f61", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f61", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (186) [15c86581-608b-4576-b2c7-97097c3a2b6c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 361.882, + "y": 19.426, + "z": 537.61 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f62", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbbe6ed31d686b24021f61", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021dad", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021dad", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dae", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbbe6ed31d686b24021dad", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (49) [a7f8bfd8-9576-4fd5-a5f7-ba5b837e8dff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 50.992, - "y": 5.254, - "z": -493.08 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f65", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f65", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (188) [2c962f47-55d6-496f-9afb-00eafe2b7ab9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 371.849, + "y": 21.168, + "z": 533.233 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f66", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbbe6ed31d686b24021f65", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021db1", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021db1", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021db2", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbbe6ed31d686b24021db1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (52) [1d90ef4c-be68-4c5a-97cd-efb3c43d35ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 50.155, - "y": 5.455, - "z": -490.994 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f69", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f69", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (192) [ad6a4f52-8c47-4400-94ea-5d840632b2e5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 364.428, + "y": 15.662, + "z": 563.679 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f6a", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbbe6ed31d686b24021f69", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021db6", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021db6", + "_tpl": "6570249bcfc010a0f5006a07", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021db7", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24021db6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021db8", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24021db6", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (53) [cce0d5e8-bd4c-4d44-a0fe-1b13656ced3f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 2.409, - "y": 0.194, - "z": -343.651 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f6d", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f6d", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (198) [e36bd992-633f-42ea-89b2-e921f2dfb7a2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 416.211, + "y": 15.948, + "z": 557.34 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f6e", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbbe6ed31d686b24021f6d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021dbb", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021dbb", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dbc", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6ed31d686b24021dbb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo_all (54) [8b3634bc-20b2-4e81-a0b9-d11d2b2f1740]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 2.26, - "y": 0.194, - "z": -344.142 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f71", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f71", - "_tpl": "657024aebfc87b3a3409322f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (2) [8914fc6e-b5c0-4349-8875-45d927b926a3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 35.582, + "y": 11.851, + "z": -882.849 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f72", - "_tpl": "5e85a9a6eacf8c039e4e2ac1", - "parentId": "66cbbe6ed31d686b24021f71", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021dbf", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021dbf", + "_tpl": "657024f9bfc87b3a3409323b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dc0", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6ed31d686b24021dbf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (58) [6489cbbd-e81e-4959-a632-8d0c342098e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 88.75, - "y": 7.562, - "z": -138.79 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f75", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f75", - "_tpl": "648986bbc827d4637f01791e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (202) [96a93148-e435-406f-941f-0b5399c6776c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 399.922, + "y": 15.491, + "z": 554.988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f76", - "_tpl": "5cc80f38e4a949001152b560", - "parentId": "66cbbe6ed31d686b24021f75", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021dc3", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021dc3", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dc4", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbbe6ed31d686b24021dc3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (6) [5c39f810-38e8-41c9-8c68-1caacdae1e64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 52.708, - "y": 11.47, - "z": -809.262 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f79", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f79", - "_tpl": "65702566bfc87b3a3409324d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (204) [5b22d4b5-7ac9-4091-8a9e-1d65eab0c6bb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 36.804, + "y": 14.871, + "z": -590.083 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f7a", - "_tpl": "5e023e6e34d52a55c3304f71", - "parentId": "66cbbe6ed31d686b24021f79", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021dc7", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021dc7", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dc8", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbbe6ed31d686b24021dc7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (61) [09076bf0-77a4-4c6c-ac82-3ab69da49915]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 80.225, - "y": 28.526, - "z": -47.515 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f7e", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f7e", - "_tpl": "657024431419851aef03e6fd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (205) [9403e546-886b-41fc-9975-3edec9b6161e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 37.251, + "y": 14.871, + "z": -590.308 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f7f", - "_tpl": "64b8ee384b75259c590fa89b", - "parentId": "66cbbe6ed31d686b24021f7e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021dcb", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021dcb", + "_tpl": "6570262d1419851aef03e72d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dcc", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66cbbe6ed31d686b24021dcb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "ammo_all (206) [368c2bdb-1c78-49dd-8b63-c67d87dabe73]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 35.296, + "y": 14.772, + "z": -590.892 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f80", - "_tpl": "64b8ee384b75259c590fa89b", - "parentId": "66cbbe6ed31d686b24021f7e", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021dcf", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021dcf", + "_tpl": "6570259bc5d7d4cb4d07857f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dd0", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbbe6ed31d686b24021dcf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (64) [ee9a176e-e97f-4124-9b69-cb95ae578134]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 80.453, - "y": 28.526, - "z": -46.357 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f83", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f83", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (207) [7b08dd13-79ea-4f3d-a8f3-1ad41908f759]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 34.721, + "y": 14.772, + "z": -590.8 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f84", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbbe6ed31d686b24021f83", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021dd3", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021dd3", + "_tpl": "5c1127bdd174af44217ab8b9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dd4", + "_tpl": "5c0d56a986f774449d5de529", + "parentId": "66cbbe6ed31d686b24021dd3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (65) [6778e74b-32cc-43c2-aa97-f38754e99600]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -129.138, - "y": 18.478, - "z": -116.93 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f87", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f87", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (209) [cd65cf8c-366a-49e2-9137-d5f486617bbc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 44.248, + "y": 15.503, + "z": -608.222 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f88", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbbe6ed31d686b24021f87", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021dd7", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021dd7", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dd8", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbbe6ed31d686b24021dd7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo_all (66) [98cddf4e-9d3e-4ba2-aee1-4f2d2a4e3328]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -129.91, - "y": 18.478, - "z": -116.602 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f8b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f8b", - "_tpl": "64acea0d03378853630da53b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (210) [1a872c39-e108-40e3-8e2a-610863064b61]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 46.874, + "y": 14.246, + "z": -618.709 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f8c", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbbe6ed31d686b24021f8b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ddb", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ddb", + "_tpl": "657023ccbfc87b3a3409320a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ddc", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "66cbbe6ed31d686b24021ddb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (68) [b15caf85-1ae9-427e-bfcf-1f5bcf635cfb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -110.589, - "y": 18.059, - "z": -76.396 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f8f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f8f", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (214) [f627bf76-7141-4561-b42a-8d469d36f3a0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 44.169, + "y": 14.234, + "z": -619.168 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f90", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbbe6ed31d686b24021f8f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ddf", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ddf", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021de0", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbbe6ed31d686b24021ddf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (69) [27a7ea56-5362-4f98-a00e-8a23990a6c8d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -111.333, - "y": 18.193, - "z": -76.848 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f93", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f93", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (215) [a049bf16-8212-453c-9ae0-1db72fd31a5d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 43.639, + "y": 14.234, + "z": -619.334 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f94", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbbe6ed31d686b24021f93", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021de3", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021de3", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021de4", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbbe6ed31d686b24021de3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (72) [b32944f9-d1fe-42f1-a63f-98f1e8ccbc0d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -79.585, - "y": 9.445, - "z": -285.985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f97", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f97", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (218) [b979c1e2-bbd7-49de-a9b3-ec094f9f8d2b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 42.378, + "y": 15.059, + "z": -632.334 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f98", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbbe6ed31d686b24021f97", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021de7", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021de7", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021de8", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbbe6ed31d686b24021de7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo_all (74) [10ed07ff-cfed-4f23-92d3-74988b266466]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -108.779, - "y": 10.914, - "z": -880.418 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f9b", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f9b", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (22) [afaa46c2-3166-4d56-af39-ef2453e0ae76]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -101.187, + "y": 11.41, + "z": -794.412 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021f9c", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbbe6ed31d686b24021f9b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021deb", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021deb", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dec", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbbe6ed31d686b24021deb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (75) [02e15aea-e449-4874-b2eb-fb22d1098edf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -107.884, - "y": 10.914, - "z": -880.183 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021f9f", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021f9f", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (223) [f9c02d66-07f6-4eda-95cf-ad24e02b3c57]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 48.075, + "y": 14.636, + "z": -641.143 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fa0", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbbe6ed31d686b24021f9f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021df0", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021df0", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021df1", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021df0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021df2", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021df0", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ammo_all (76) [430ac125-f26b-461c-9335-179682c1e211]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -108.378, - "y": 10.914, - "z": -880.254 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fa4", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fa4", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (226) [8137eff4-241d-4e8a-beeb-2ef50f31cee0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 56.429, + "y": 14.498, + "z": -657.74 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fa5", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6ed31d686b24021fa4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021df5", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021df5", + "_tpl": "657023f1bfc87b3a34093210", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021df6", + "_tpl": "59e6542b86f77411dc52a77a", + "parentId": "66cbbe6ed31d686b24021df5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "ammo_all (227) [02de2dd3-20ea-47e9-84be-577f3ed9b9ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 54.936, + "y": 14.259, + "z": -657.155 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fa6", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6ed31d686b24021fa4", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021df9", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021df9", + "_tpl": "64aceaecc4eda9354b0226b6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dfa", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbbe6ed31d686b24021df9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "ammo_all (77) [587fbfba-50c4-4fce-9956-96ddab70c0f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -107.641, - "y": 10.914, - "z": -880.658 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fa9", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fa9", - "_tpl": "657023f81419851aef03e6f1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (229) [6219d308-de11-4d43-b603-0536e313fd64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 54.24, + "y": 14.498, + "z": -657.66 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021faa", - "_tpl": "5f0596629e22f464da6bbdd9", - "parentId": "66cbbe6ed31d686b24021fa9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021dfd", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021dfd", + "_tpl": "657025d4c5d7d4cb4d078585", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021dfe", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbbe6ed31d686b24021dfd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_all (78) [1ea79472-2e9e-4cc0-8536-37103a1a101c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -108.784, - "y": 10.914, - "z": -880.957 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fad", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fad", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (23) [999aa126-45e1-4070-9128-096b268cf1b6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -99.881, + "y": 11.035, + "z": -795.233 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fae", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbbe6ed31d686b24021fad", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e02", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e02", + "_tpl": "65702426cfc010a0f50069f8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e03", + "_tpl": "5d6e6772a4b936088465b17c", + "parentId": "66cbbe6ed31d686b24021e02", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021e04", + "_tpl": "5d6e6772a4b936088465b17c", + "parentId": "66cbbe6ed31d686b24021e02", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (80) [952d1acd-0cec-48f5-abff-278b34ebbae7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -108.646, - "y": 11.629, - "z": -864.372 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fb1", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fb1", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (230) [bfd8ecb2-8663-4b0b-a440-a89618d2c0e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 50.787, + "y": 14.298, + "z": -644.847 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fb2", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbbe6ed31d686b24021fb1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e08", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e08", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e09", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6ed31d686b24021e08", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021e0a", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6ed31d686b24021e08", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_all (81) [db37b501-bc29-4393-b0ac-9cbb816fc381]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -110.111, - "y": 11.503, - "z": -863.476 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fb5", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fb5", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (231) [a38488d5-4573-4743-bcbe-3a9f8ac6bdc3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 51.372, + "y": 15.137, + "z": -644.256 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fb6", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b24021fb5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e0d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e0d", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e0e", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b24021e0d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (88) [b4242d95-9d13-4be1-a3c4-c404e056de44]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -34.581, - "y": 11.761, - "z": -812.37 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fb9", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fb9", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (232) [d5106c10-bc92-4944-b23a-929ccc7d3fe9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 53.754, + "y": 14.805, + "z": -642.048 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fba", - "_tpl": "5a269f97c4a282000b151807", - "parentId": "66cbbe6ed31d686b24021fb9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e12", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e12", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e13", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b24021e12", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021e14", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b24021e12", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ammo_all (9) [0a692da4-cb08-4b36-8d02-5f4c29ee7668]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 54.022, - "y": 11.068, - "z": -808.657 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fbd", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fbd", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (238) [728cb9c1-56a1-43d5-9987-d1db0a2fad99]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.736, + "y": 5.958, + "z": -756.766 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e17", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e17", + "_tpl": "6570241bcfc010a0f50069f5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e18", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbbe6ed31d686b24021e17", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } + ] + }, + { + "Id": "ammo_all (239) [e7e42804-bd9d-43b9-a734-6d92b0a08198]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.837, + "y": 5.958, + "z": -756.378 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fbe", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbbe6ed31d686b24021fbd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e1b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e1b", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e1c", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbbe6ed31d686b24021e1b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (98) [ade386ed-b016-4ed6-9b17-412a467d1e84]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 3.365, - "y": 2.673, - "z": -490.336 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fc1", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fc1", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (241) [aeab8bb0-bdcd-4091-b5f7-53b0484bc36d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.556, + "y": 5.963, + "z": -756.101 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fc2", - "_tpl": "5a269f97c4a282000b151807", - "parentId": "66cbbe6ed31d686b24021fc1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e1f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e1f", + "_tpl": "65702614c5d7d4cb4d07858b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e20", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbbe6ed31d686b24021e1f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato (10) [c22ca6be-78fb-4fd3-a9c0-7458645d9252]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -94.382, - "y": 0.928, - "z": -555.36 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fc5", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fc5", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (242) [e39a0ddb-9691-4848-8742-6155b41e4e4a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -68.943, + "y": 14.64, + "z": -741.603 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fc6", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbbe6ed31d686b24021fc5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e23", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e23", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e24", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbbe6ed31d686b24021e23", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_nato (11) [43584dc7-9b95-49b2-96df-dac8ba9a439c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -94.918, - "y": 0.928, - "z": -555.535 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fc9", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fc9", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (243) [5475d9e1-5f57-4150-a153-60f886836c09]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -68.804, + "y": 14.968, + "z": -743.164 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fca", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbbe6ed31d686b24021fc9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e28", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e28", + "_tpl": "6570249bcfc010a0f5006a07", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e29", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24021e28", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021e2a", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24021e28", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_nato (16) [8f6d2018-ba25-4c1f-a2e0-1091a79de768]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -10.226, - "y": 7.536, - "z": -449.915 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fce", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fce", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (244) [f4534088-829b-4373-b15c-e1fd499ef64a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -68.166, + "y": 14.899, + "z": -744.343 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fcf", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021fce", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e2d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e2d", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e2e", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbbe6ed31d686b24021e2d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "ammo_all (245) [f87d86b9-895a-4871-8df9-d42b86966cba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -68.766, + "y": 14.899, + "z": -744.283 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fd0", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24021fce", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e31", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e31", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e32", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbbe6ed31d686b24021e31", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato (17) [52acd32f-9122-48c9-b1a7-d51b6c092e99]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -6.857, - "y": 7.536, - "z": -451.116 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fd3", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fd3", - "_tpl": "65702406bfc87b3a34093216", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (246) [a16943bf-d920-408e-a79c-f00324cd6e7a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -69.701, + "y": 14.409, + "z": -742.178 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fd4", - "_tpl": "5efb0fc6aeb21837e749c801", - "parentId": "66cbbe6ed31d686b24021fd3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e35", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e35", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e36", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b24021e35", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo_nato (19) [d1b4b9ba-4368-449a-b2f0-cea907492ee8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 16.467, - "y": 5.645, - "z": -452.836 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fd7", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fd7", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (248) [2eed8d08-5210-489e-b7f7-ed3abffcea64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -75.414, + "y": 15.124, + "z": -755.474 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fd8", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbbe6ed31d686b24021fd7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e39", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e39", + "_tpl": "65702420bfc87b3a34093219", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e3a", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66cbbe6ed31d686b24021e39", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "ammo_nato (20) [68d116f1-8834-45ef-bcc6-07b188e69cc0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 15.827, - "y": 5.645, - "z": -452.322 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fdc", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fdc", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (25) [7ab98dad-e4ba-4c07-8bdf-0b7353cc6d18]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -92.747, + "y": 11.096, + "z": -795.208 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fdd", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6ed31d686b24021fdc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e3d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e3d", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e3e", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbbe6ed31d686b24021e3d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "ammo_all (250) [2cc8b220-1179-4948-a541-85a8a77b7d82]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -76.075, + "y": 14.705, + "z": -755.604 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fde", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6ed31d686b24021fdc", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e42", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e42", + "_tpl": "57372deb245977685d4159b3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e43", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbbe6ed31d686b24021e42", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021e44", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbbe6ed31d686b24021e42", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ammo_nato (23) [aba641ca-3985-4fe7-abc5-be6ba200fcd6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 11.576, - "y": 4.931, - "z": -451.196 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fe1", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fe1", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (253) [4aebce64-de9e-4649-9b12-fb3d0f7fb576]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -69.743, + "y": 14.542, + "z": -750.385 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fe2", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbbe6ed31d686b24021fe1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e47", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e47", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e48", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbbe6ed31d686b24021e47", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato (28) [50437227-7c4b-4a64-928f-530a80e47587]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 16.568, - "y": 5.702, - "z": -444.63 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fe5", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fe5", - "_tpl": "65702420bfc87b3a34093219", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (259) [19bd23c3-a9d9-4d5f-a6d7-30e027c22d80]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -87.241, + "y": 14.701, + "z": -740.108 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fe6", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66cbbe6ed31d686b24021fe5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e4b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e4b", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e4c", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbbe6ed31d686b24021e4b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_nato (29) [f2978d4e-031d-4788-b4a2-fdd605b46a48]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 17.62, - "y": 5.881, - "z": -444.294 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021fea", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021fea", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (265) [6c736f33-7c30-4277-91b9-7d8deb2f50ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -109.899, + "y": 14.595, + "z": -733.374 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021feb", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6ed31d686b24021fea", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e4f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e4f", + "_tpl": "657024bdc5d7d4cb4d078564", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e50", + "_tpl": "5e85a9f4add9fe03027d9bf1", + "parentId": "66cbbe6ed31d686b24021e4f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "ammo_all (266) [002bf381-4c78-408f-b25c-b9e450ff583e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -109.324, + "y": 14.664, + "z": -732.06 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021fec", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6ed31d686b24021fea", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e53", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e53", + "_tpl": "657025d4c5d7d4cb4d078585", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e54", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbbe6ed31d686b24021e53", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_nato (31) [9eccc88f-7db9-4444-8b88-88d8cce599c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 21.2148, - "y": 5.247, - "z": -444.5847 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ff0", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ff0", - "_tpl": "6570249f1419851aef03e709", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (267) [e96787ff-dcc5-4dbd-b32f-c2529f5ecfa1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -108.339, + "y": 14.597, + "z": -731.98 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ff1", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbbe6ed31d686b24021ff0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e57", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e57", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e58", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6ed31d686b24021e57", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "ammo_all (268) [f11f294a-75f4-4fc0-b992-e341d1c3dc7d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -113.574, + "y": 15.072, + "z": -729.652 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ff2", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbbe6ed31d686b24021ff0", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e5b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e5b", + "_tpl": "6570253ec5d7d4cb4d078573", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e5c", + "_tpl": "5735fdcd2459776445391d61", + "parentId": "66cbbe6ed31d686b24021e5b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "ammo_nato (34) [9e404efa-816c-4b25-977f-1d4a789fe6ca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 45.008, - "y": 9.767, - "z": -447.647 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ff5", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ff5", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (27) [bc61c363-0905-4495-b41b-c07e2ca805d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -16.521, + "y": 13.182, + "z": -901.059 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ff6", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbbe6ed31d686b24021ff5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e60", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e60", + "_tpl": "65702681bfc87b3a3409325f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e61", + "_tpl": "601949593ae8f707c4608daa", + "parentId": "66cbbe6ed31d686b24021e60", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021e62", + "_tpl": "601949593ae8f707c4608daa", + "parentId": "66cbbe6ed31d686b24021e60", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "ammo_nato (35) [ac7fd8b3-3174-4a52-af23-784afd922bcc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 45.137, - "y": 9.767, - "z": -448.271 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ff9", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ff9", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (270) [3a94bdfb-9be9-43e3-b70a-60e2c08303c1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -114.897, + "y": 14.461, + "z": -731.281 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ffa", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbbe6ed31d686b24021ff9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e66", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e66", + "_tpl": "65702681bfc87b3a3409325f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e67", + "_tpl": "601949593ae8f707c4608daa", + "parentId": "66cbbe6ed31d686b24021e66", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021e68", + "_tpl": "601949593ae8f707c4608daa", + "parentId": "66cbbe6ed31d686b24021e66", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "ammo_nato (37) [f7e77c4b-0335-482e-8fa2-8e5c934e66ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -84.152, - "y": 18.611, - "z": -61.229 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24021ffd", - "Items": [ - { - "_id": "66cbbe6ed31d686b24021ffd", - "_tpl": "657025d4c5d7d4cb4d078585", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (271) [e6df807e-f39a-4f29-8dcf-ce941c5412bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -113.618, + "y": 14.461, + "z": -730.348 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24021ffe", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbbe6ed31d686b24021ffd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e6b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e6b", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e6c", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbbe6ed31d686b24021e6b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_nato (38) [00a19abb-e590-4312-b8c3-b2e227df6f9a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -83.851, - "y": 18.611, - "z": -61.563 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022001", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022001", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (272) [e2748cb2-5cd9-4150-b4aa-c4cfbc7e6a20]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -82.591, + "y": 14.907, + "z": -731.274 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022002", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbbe6ed31d686b24022001", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e6f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e6f", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e70", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbbe6ed31d686b24021e6f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_nato (40) [b243f314-7ab8-4cd8-a56c-9676ce68a31d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 15.287, - "y": 6.043, - "z": -444.735 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022005", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022005", - "_tpl": "64acea0d03378853630da53b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (274) [e4955af7-6170-4dca-9271-089e5af71e9d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -80.995, + "y": 14.296, + "z": -731.596 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022006", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbbe6ed31d686b24022005", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e73", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e73", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e74", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbbe6ed31d686b24021e73", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato (41) [2064c8b6-7e2f-40c7-b62b-e4367097cbe4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 14.987, - "y": 6.043, - "z": -445.44 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022009", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022009", - "_tpl": "648984e3f09d032aa9399d53", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (277) [bd030d4d-37c8-49a9-9dfa-4bff1ade033a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -74.357, + "y": 14.989, + "z": -730.771 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402200a", - "_tpl": "5efb0c1bd79ff02a1f5e68d9", - "parentId": "66cbbe6ed31d686b24022009", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e77", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e77", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e78", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbbe6ed31d686b24021e77", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "ammo_nato (42) [8c2b313f-3bf7-43c6-9a53-9edc0c4d151e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 43.722, - "y": 5.542, - "z": -654.697 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402200d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402200d", - "_tpl": "65702420bfc87b3a34093219", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (280) [5ca1104b-f856-4186-aee7-872b6ec77eee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -75.843, + "y": 15.28, + "z": -733.163 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402200e", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66cbbe6ed31d686b2402200d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e7b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e7b", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e7c", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbbe6ed31d686b24021e7b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato (44) [dec37e16-51c9-46bc-ac51-0d28ebee42df]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 41.829, - "y": 5.595, - "z": -653.987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022012", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022012", - "_tpl": "6570249bcfc010a0f5006a07", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (282) [27ba94ef-8477-4049-a77d-d61e16a4329f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -88.625, + "y": 15.18, + "z": -729.909 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022013", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24022012", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e7f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e7f", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e80", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbbe6ed31d686b24021e7f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "ammo_all (283) [13d7f57b-30ce-4e75-ae5e-dea9e513d58f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -79.543, + "y": 15.029, + "z": -744.31 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022014", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24022012", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e84", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e84", + "_tpl": "657024431419851aef03e6fd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e85", + "_tpl": "64b8ee384b75259c590fa89b", + "parentId": "66cbbe6ed31d686b24021e84", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021e86", + "_tpl": "64b8ee384b75259c590fa89b", + "parentId": "66cbbe6ed31d686b24021e84", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_nato (45) [133470b2-7dd0-45ee-9ef8-5bfd23090275]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 40.554, - "y": 5.382, - "z": -654.32 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022017", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022017", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (284) [6fbcfad2-83bc-4ca8-b515-df8c021a3841]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -113.49, + "y": 14.63, + "z": -754.405 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022018", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbbe6ed31d686b24022017", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e8a", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e8a", + "_tpl": "6570249bcfc010a0f5006a07", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e8b", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24021e8a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021e8c", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24021e8a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_nato (47) [aaf379ef-c6fb-48b3-a11d-64a31e7cc178]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 42.447, - "y": 5.382, - "z": -654.603 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402201b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402201b", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (285) [20a7b4ee-8c39-4e8e-a01c-fbb0d5c432f3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -113.003, + "y": 14.63, + "z": -754.706 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402201c", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbbe6ed31d686b2402201b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e8f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e8f", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e90", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbbe6ed31d686b24021e8f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo_nato [0d86460d-646b-4162-828e-565a404f6697]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -99.299, - "y": 2.638, - "z": -578.437 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402201f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402201f", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (288) [678d797f-f16a-4d79-b430-53fcec0e40e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -103.99, + "y": 14.78, + "z": -746.35 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022020", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbbe6ed31d686b2402201f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e93", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e93", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e94", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbbe6ed31d686b24021e93", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "AmmoBox 5.45x39 (6) [e91cdb97-ceb7-4ac4-a5f6-896a08f7e007]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -61.657, - "y": 27.775, - "z": 132.941 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022023", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022023", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (291) [385cdac1-44f9-420a-8544-d2ea1134acdd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -106.208, + "y": 14.342, + "z": -749.014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022024", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbbe6ed31d686b24022023", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e97", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e97", + "_tpl": "65702546cfc010a0f5006a1f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e98", + "_tpl": "573603562459776430731618", + "parentId": "66cbbe6ed31d686b24021e97", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (1) [b1d71ac6-f133-4bf0-9e17-de153bbe34cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.425, - "y": 1.896, - "z": 518.097 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022027", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022027", - "_tpl": "6570259fcfc010a0f5006a32", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (292) [99613be2-21a7-4005-9fbe-6a383a8e6b12]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -105.608, + "y": 14.342, + "z": -749.235 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022028", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66cbbe6ed31d686b24022027", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e9b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e9b", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021e9c", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbbe6ed31d686b24021e9b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (10) [c23cbf40-2053-4ab4-9184-3014b8ea03f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 63.651, - "y": 1.896, - "z": 519.494 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402202b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402202b", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (294) [3c19f117-bfec-472c-a203-9d21678646be]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -117.249, + "y": 15.267, + "z": -738.108 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402202c", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbbe6ed31d686b2402202b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021e9f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021e9f", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ea0", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbbe6ed31d686b24021e9f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (12) [7fcd4e33-4948-47db-bb0e-d24d5b273add]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -101.394, - "y": 33.756, - "z": 104.831 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022030", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022030", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (295) [7aa4ec1f-b016-478b-8365-ea4e97446fae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -116.949, + "y": 14.609, + "z": -736.28 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022031", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24022030", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ea3", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ea3", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ea4", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b24021ea3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "ammo_all (298) [53dd9af2-2f93-4c3e-a200-6026fce6c52a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -197.341, + "y": 14.469, + "z": -694.091 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022032", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24022030", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ea7", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ea7", + "_tpl": "65702420bfc87b3a34093219", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ea8", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66cbbe6ed31d686b24021ea7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (12) [cf13e840-7201-4984-9e42-13aa95ea0897]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -102.921, - "y": 2.17, - "z": -473.472 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022035", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022035", - "_tpl": "64aceab0426a303417060654", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (299) [f8bb10ef-1ac8-4c87-93f6-3e3cee771cb6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -197.311, + "y": 14.914, + "z": -693.023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022036", - "_tpl": "64b8f7b5389d7ffd620ccba2", - "parentId": "66cbbe6ed31d686b24022035", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021eab", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021eab", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021eac", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbbe6ed31d686b24021eab", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (13) [aa237c05-3f4e-48dc-b97e-bf6a46ddd1aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -103.843, - "y": 2.233, - "z": -474.322 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022039", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022039", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (305) [3b548253-bad5-4640-a187-332c5ed42ff4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -178.68, + "y": 14.72, + "z": -695.125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021eb0", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021eb0", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021eb1", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b24021eb0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021eb2", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b24021eb0", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "ammo_all (309) [8e63d8e3-e0eb-402d-9286-1810c8838eda]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -182.39, + "y": 15.116, + "z": -695.031 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402203a", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbbe6ed31d686b24022039", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021eb5", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021eb5", + "_tpl": "657024b31419851aef03e70f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021eb6", + "_tpl": "5f647f31b6238e5dd066e196", + "parentId": "66cbbe6ed31d686b24021eb5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (14) [7a4e4d1c-67ca-4b1a-a94b-8bf0f8544f91]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.448, - "y": 38.077, - "z": 97.978 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402203d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402203d", - "_tpl": "657024e3c5d7d4cb4d07856a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (312) [267ceee8-2e65-40cc-a089-78c8b93e29ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -191.954, + "y": 14.753, + "z": -688.608 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402203e", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbbe6ed31d686b2402203d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021eb9", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021eb9", + "_tpl": "657024bdc5d7d4cb4d078564", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021eba", + "_tpl": "5e85a9f4add9fe03027d9bf1", + "parentId": "66cbbe6ed31d686b24021eb9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (14) [dae1b385-772f-456b-83a8-05763528cd82]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 215.144, - "y": 3.171, - "z": 525.716 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022041", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022041", - "_tpl": "657023ccbfc87b3a3409320a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (313) [813aaf5e-7a70-4e40-a91c-6c04b497f80d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -193.4, + "y": 15.116, + "z": -684.348 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022042", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "66cbbe6ed31d686b24022041", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ebe", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ebe", + "_tpl": "65702474bfc87b3a34093226", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ebf", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6ed31d686b24021ebe", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021ec0", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6ed31d686b24021ebe", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (15) [98cfc5bb-38f5-410e-886a-18cabc47ae2a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -123.981, - "y": 37.149, - "z": 95.241 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022045", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022045", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (315) [9236e02d-2d04-4c96-af02-8197b1fe15ea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -197.83, + "y": 14.541, + "z": -690.589 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022046", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbbe6ed31d686b24022045", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ec3", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ec3", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ec4", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbbe6ed31d686b24021ec3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (16) [aeb56b0c-dec5-470c-aa6b-1099e8c2fd4f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -123.623, - "y": 37.545, - "z": 96.16 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022049", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022049", - "_tpl": "6489875745f9ca4ba51c4808", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (316) [195523f6-d71f-4833-922a-3edae802ccbf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -197.21, + "y": 14.541, + "z": -690.485 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402204a", - "_tpl": "5a26ac0ec4a28200741e1e18", - "parentId": "66cbbe6ed31d686b24022049", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ec7", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ec7", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ec8", + "_tpl": "5a269f97c4a282000b151807", + "parentId": "66cbbe6ed31d686b24021ec7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (17) [541d947a-f8de-48b8-880c-95a29805130b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.731, - "y": 37.579, - "z": 101.313 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402204d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402204d", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (317) [e15f4c2b-2121-4f05-9615-caebdc608ab0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -196.48, + "y": 14.29, + "z": -689.763 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402204e", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbbe6ed31d686b2402204d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ecb", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ecb", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ecc", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbbe6ed31d686b24021ecb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (2) [3f257d38-7c0f-43fe-a253-baf24abb6a59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.48, - "y": 1.896, - "z": 519.03 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022051", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022051", - "_tpl": "648985c074a806211e4fb682", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (32) [fb50f5ff-8340-4539-8dae-075b0eb70f96]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -110.706, + "y": 11.737, + "z": -886.481 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022052", - "_tpl": "5fd20ff893a8961fc660a954", - "parentId": "66cbbe6ed31d686b24022051", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ecf", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ecf", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ed0", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbbe6ed31d686b24021ecf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (21) [9beed535-b77c-493a-b57a-1d1038aba1a2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -112.403, - "y": 37.611, - "z": 90.385 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022055", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022055", - "_tpl": "657024f9bfc87b3a3409323b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (320) [f3e9f3fe-6000-4d2a-aac4-0bcb2474d1c5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -189.565, + "y": 14.522, + "z": -635.938 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022056", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6ed31d686b24022055", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ed3", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ed3", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ed4", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbbe6ed31d686b24021ed3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (22) [09422080-7062-4294-b969-3b59ef3456ce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.266, - "y": 37.937, - "z": 84.709 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022059", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022059", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (321) [c09523cd-db9f-48d2-b313-f10a33072995]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -174.884, + "y": 14.986, + "z": -642.98 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402205a", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbbe6ed31d686b24022059", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ed7", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ed7", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ed8", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbbe6ed31d686b24021ed7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (23) [7bd46e79-c77f-44a0-a972-9b0da3efe7c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -116.349, - "y": 37.937, - "z": 76.239 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402205d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402205d", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (325) [04b4a229-2541-4b43-8f80-619f2303a67e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -188.963, + "y": 14.916, + "z": -663.57 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402205e", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbbe6ed31d686b2402205d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021edb", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021edb", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021edc", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbbe6ed31d686b24021edb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (24) [977b010b-f896-41a2-a038-21f4fac5b52b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -116.767, - "y": 37.937, - "z": 75.806 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022061", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022061", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (329) [e722f758-f396-4bba-9f45-df112c438101]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -192.767, + "y": 14.464, + "z": -665.816 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022062", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66cbbe6ed31d686b24022061", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ee0", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ee0", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ee1", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b24021ee0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021ee2", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b24021ee0", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (25) [c28ef51a-b5ac-4bc1-ac7b-86c38560397b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.765, - "y": 19.319, - "z": -90.608 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022065", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022065", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (331) [c6583d2e-143c-4d47-83c4-cbec1f3ee785]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -187.754, + "y": 14.284, + "z": -660.642 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022066", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbbe6ed31d686b24022065", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ee5", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ee5", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ee6", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbbe6ed31d686b24021ee5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (26) [7233858d-4576-4e3f-bafb-93375937681b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.626, - "y": 19.319, - "z": -91.021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022069", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022069", - "_tpl": "5737266524597761006c6a8c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (332) [e503ea79-8118-46a8-925a-30933df12c76]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -185.498, + "y": 15.043, + "z": -662.299 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402206a", - "_tpl": "57371eb62459776125652ac1", - "parentId": "66cbbe6ed31d686b24022069", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ee9", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ee9", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021eea", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbbe6ed31d686b24021ee9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (29) [97cc7dd0-f7e8-4726-afa1-557d0439fcd2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -86.71, - "y": 19.244, - "z": -89.967 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402206d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402206d", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (335) [58290d67-4545-4460-8b6a-6ac748b48f98]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -180.042, + "y": 14.573, + "z": -670.138 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402206e", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbbe6ed31d686b2402206d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021eee", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021eee", + "_tpl": "65702474bfc87b3a34093226", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021eef", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6ed31d686b24021eee", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021ef0", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6ed31d686b24021eee", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (3) [502c58aa-a822-4151-839c-3a86a3e79d3d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 13.384, - "y": 6.434, - "z": 99.217 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022072", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022072", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (336) [69606286-4fc4-4faf-b346-ba804bef9dab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -180.951, + "y": 14.402, + "z": -668.977 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022073", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbbe6ed31d686b24022072", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ef3", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ef3", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ef4", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbbe6ed31d686b24021ef3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "ammo_all (34) [adf958c6-8f99-4b1b-b0d5-de74c935aeca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 51.949, + "y": 2.849, + "z": 505.151 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022074", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbbe6ed31d686b24022072", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ef7", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ef7", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ef8", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbbe6ed31d686b24021ef7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (3) [d9655d46-51d4-417b-bc81-0a38ea0d57b5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -69.47, - "y": 27.752, - "z": 109.665 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022077", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022077", - "_tpl": "6570262d1419851aef03e72d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (340) [fc5451ad-9e46-4e77-a25f-c65dc3d221d1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -174.538, + "y": 14.919, + "z": -676.06 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021efb", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021efb", + "_tpl": "5739d41224597779c3645501", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021efc", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbbe6ed31d686b24021efb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "ammo_all (344) [12a3f5de-d681-4afe-af20-52a411c5857c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -175.439, + "y": 14.977, + "z": -684.358 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022078", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66cbbe6ed31d686b24022077", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021eff", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021eff", + "_tpl": "5739d41224597779c3645501", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f00", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbbe6ed31d686b24021eff", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (30) [eeffacf2-4f0a-437c-aafc-ef5c8a015e76]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -132.792, - "y": 41.174, - "z": 93.887 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402207b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402207b", - "_tpl": "6570240ecfc010a0f50069f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (345) [e8f1db4c-2d9f-4022-bc52-f7bfe20388c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -174.72, + "y": 15.031, + "z": -684.43 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402207c", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbbe6ed31d686b2402207b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f03", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f03", + "_tpl": "64aceaecc4eda9354b0226b6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f04", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbbe6ed31d686b24021f03", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (31) [aafb0707-5cb8-41ce-9f48-8363935d9548]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -132.641, - "y": 41.174, - "z": 93.467 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022080", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022080", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (347) [17149909-b48c-4789-b21a-19aea10d9a5a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -174.015, + "y": 14.49, + "z": -690.019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022081", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24022080", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f07", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f07", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f08", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b24021f07", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "ammo_all (348) [4a4afa41-23dd-479b-b285-7ddd9ea42c8a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -174.837, + "y": 14.873, + "z": -689.955 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022082", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b24022080", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f0b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f0b", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f0c", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbbe6ed31d686b24021f0b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (32) [6d933226-3591-4597-8122-17bdd1c8f895]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -132.305, - "y": 41.174, - "z": 93.826 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022085", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022085", - "_tpl": "65702536c5d7d4cb4d078570", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (351) [d7a7ebc9-1caf-4765-85bb-1d23411bb9d7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -190.555, + "y": 14.925, + "z": -649.583 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022086", - "_tpl": "573601b42459776410737435", - "parentId": "66cbbe6ed31d686b24022085", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f0f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f0f", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f10", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbbe6ed31d686b24021f0f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (34) [dfb5c39a-6eb2-4f01-93d8-fc8cdd592675]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.868, - "y": 42.323, - "z": 92.544 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402208a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402208a", - "_tpl": "657024a91419851aef03e70c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (352) [bdaf9f4f-4337-492a-92fc-39e6812885f1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -190.541, + "y": 14.414, + "z": -648.267 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402208b", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "66cbbe6ed31d686b2402208a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f13", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f13", + "_tpl": "648987d673c462723909a151", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f14", + "_tpl": "5efb0da7a29a85116f6ea05f", + "parentId": "66cbbe6ed31d686b24021f13", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "ammo_all (353) [f5dcd2ba-e183-4fac-97d2-94bcb9d9a6c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -191.92, + "y": 14.597, + "z": -645.435 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402208c", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "66cbbe6ed31d686b2402208a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f17", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f17", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f18", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbbe6ed31d686b24021f17", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (36) [9b1be247-dc30-4971-abc7-a6030e79e612]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.748, - "y": 42.323, - "z": 93.015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402208f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402208f", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (354) [f2d6ef61-53bc-4f32-9072-e4b2e09885de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -192.18, + "y": 14.597, + "z": -643.21 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022090", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbbe6ed31d686b2402208f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f1b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f1b", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f1c", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbbe6ed31d686b24021f1b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (39) [047bbbe5-a9b0-4c05-b7ce-f612626a3166]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -144.661, - "y": 40.562, - "z": 92.824 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022093", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022093", - "_tpl": "657023f1bfc87b3a34093210", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (356) [df533ec9-6b67-4ea4-8c1f-38c8180a5b6a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 357.803, + "y": 16.136, + "z": 550.369 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022094", - "_tpl": "59e6542b86f77411dc52a77a", - "parentId": "66cbbe6ed31d686b24022093", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f1f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f1f", + "_tpl": "6570259bc5d7d4cb4d07857f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f20", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbbe6ed31d686b24021f1f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (4) [a0110cd9-b841-441a-82e2-72e0c547f057]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 62.455, - "y": 1.896, - "z": 516.966 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022098", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022098", - "_tpl": "6570249bcfc010a0f5006a07", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (360) [ffe270fb-cb42-48cd-bcf7-638b7bc9a71a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 357.449, + "y": 16.33, + "z": 553.081 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022099", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24022098", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f24", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f24", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f25", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6ed31d686b24021f24", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021f26", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6ed31d686b24021f24", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "ammo_all (363) [77425f2d-8252-4c53-9e19-0d994c4caaed]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 404.184, + "y": 3.229, + "z": 392.283 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402209a", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24022098", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f29", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f29", + "_tpl": "65702524cfc010a0f5006a16", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f2a", + "_tpl": "5cc80f67e4a949035e43bbba", + "parentId": "66cbbe6ed31d686b24021f29", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (40) [bb8a1eb5-50f6-4f10-b771-5d677c754b72]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -145.115, - "y": 40.562, - "z": 92.786 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402209d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402209d", - "_tpl": "6570240ecfc010a0f50069f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (364) [aa8bb589-430c-47ee-a254-0704c3aaaeaa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 402.195, + "y": 2.093, + "z": 392.802 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402209e", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbbe6ed31d686b2402209d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f2d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f2d", + "_tpl": "657023e7c5d7d4cb4d078552", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f2e", + "_tpl": "62330c18744e5e31df12f516", + "parentId": "66cbbe6ed31d686b24021f2d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (42) [770d73d2-639c-4df3-a771-e72e0c7301fd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -145.004, - "y": 40.979, - "z": 91.053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220a1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220a1", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (365) [d695749c-f13a-4585-a1b6-a92225c16daa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 402.598, + "y": 2.093, + "z": 392.976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220a2", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66cbbe6ed31d686b240220a1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f31", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f31", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f32", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbbe6ed31d686b24021f31", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (44) [3b71bbc9-e469-4a5b-9941-4b40473bbfdf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -137.529, - "y": 40.867, - "z": 78.865 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220a5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220a5", - "_tpl": "65702621cfc010a0f5006a44", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (366) [fca34e6f-089c-4e5d-9e32-9865f714763b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 403.049, + "y": 2.714, + "z": 392.074 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220a6", - "_tpl": "57371f2b24597761224311f1", - "parentId": "66cbbe6ed31d686b240220a5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f35", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f35", + "_tpl": "657023ccbfc87b3a3409320a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f36", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "66cbbe6ed31d686b24021f35", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (46) [1dbc0138-4dd6-4482-9eba-4dca427ff990]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -101.443, - "y": 33.269, - "z": 97.24 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220a9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220a9", - "_tpl": "657024011419851aef03e6f4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (368) [debe2e8d-79ab-4d9d-8f04-8fade6af9498]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 356.613, + "y": 20.75, + "z": 560.024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220aa", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "66cbbe6ed31d686b240220a9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f39", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f39", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f3a", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbbe6ed31d686b24021f39", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (48) [85fd8ead-81ff-41ac-b74f-a8dc8d58467e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -101.148, - "y": 33.756, - "z": 104.668 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220ad", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220ad", - "_tpl": "6570259fcfc010a0f5006a32", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (371) [246b81d4-a039-4a26-87bb-67c882aa6494]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 357.922, + "y": 20.75, + "z": 558.328 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220ae", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66cbbe6ed31d686b240220ad", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f3d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f3d", + "_tpl": "64acea09c4eda9354b0226ad", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f3e", + "_tpl": "59e4cf5286f7741778269d8a", + "parentId": "66cbbe6ed31d686b24021f3d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (49) [f381f752-ccdb-4d71-9010-5d4defab5406]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -101.371, - "y": 33.901, - "z": 104.583 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220b2", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220b2", - "_tpl": "6570247ebfc87b3a34093229", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (373) [64bd99c7-d883-4066-9a53-83274f5ba4d7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 354.786, + "y": 20.273, + "z": 555.935 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220b3", - "_tpl": "5d6e68d1a4b93622fe60e845", - "parentId": "66cbbe6ed31d686b240220b2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f41", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f41", + "_tpl": "657026341419851aef03e730", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f42", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6ed31d686b24021f41", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "ammo_all (374) [66862b73-0c69-4998-a36c-40b104d0c7cc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 354.898, + "y": 20.933, + "z": 554.848 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220b4", - "_tpl": "5d6e68d1a4b93622fe60e845", - "parentId": "66cbbe6ed31d686b240220b2", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f45", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f45", + "_tpl": "6570251ccfc010a0f5006a13", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f46", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbbe6ed31d686b24021f45", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (50) [6f5a5166-aeba-49c4-bfc1-5caf67436b56]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -107.524, - "y": 33.844, - "z": 104.004 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220b7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220b7", - "_tpl": "6570251ccfc010a0f5006a13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (375) [25eea5b0-4015-441e-a5a0-f33c8474e374]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 355.137, + "y": 20.933, + "z": 554.36 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f49", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f49", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f4a", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbbe6ed31d686b24021f49", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "ammo_all (38) [f83d54aa-e8ed-4e56-85ff-658f6b7c0ba3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -146.95, + "y": 9.322, + "z": -708.11 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220b8", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbbe6ed31d686b240220b7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f4d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f4d", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f4e", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbbe6ed31d686b24021f4d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (59) [d6ea71de-99d1-46c9-8e7e-eddaab90b021]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -143.342, - "y": 40.562, - "z": 91.815 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220bb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220bb", - "_tpl": "64acee6903378853630da544", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (42) [0278555c-aeb0-47fd-bd91-8e439902ee3d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -281.57, + "y": 13.897, + "z": -187.402 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220bc", - "_tpl": "64b8f7c241772715af0f9c3d", - "parentId": "66cbbe6ed31d686b240220bb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f51", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f51", + "_tpl": "657025bbcfc010a0f5006a35", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f52", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbbe6ed31d686b24021f51", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (60) [c07833f3-1614-4494-a98e-84c98aac0a19]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -72.211, - "y": 22.21, - "z": -59.158 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220bf", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220bf", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (43) [72d077f3-b617-4528-ae4b-5ff3a14ce34f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -240.692, + "y": 14.814, + "z": -172.038 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220c0", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbbe6ed31d686b240220bf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f55", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f55", + "_tpl": "65702619bfc87b3a34093259", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f56", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66cbbe6ed31d686b24021f55", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (61) [75ffd6ca-4169-4295-8573-8ab6a5d7a68f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -72.756, - "y": 22.21, - "z": -58.76 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220c3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220c3", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (45) [8aaa5791-d846-40ed-ba26-1ba16179ea6f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -240.732, + "y": 14.814, + "z": -171.9 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220c4", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbbe6ed31d686b240220c3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f59", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f59", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f5a", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b24021f59", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (63) [eed50780-6d8d-4da1-874f-da311551a92a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -113.254, - "y": 40.878, - "z": 88.143 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220c7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220c7", - "_tpl": "657025a81419851aef03e724", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (47) [9b44f186-cbe5-4124-84a7-933f3777d096]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 52.36, + "y": 5.254, + "z": -495.424 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220c8", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbbe6ed31d686b240220c7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f5d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f5d", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f5e", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbbe6ed31d686b24021f5d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (64) [4879b13f-3fbd-4ba6-b993-510c270b63fc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -113.562, - "y": 40.878, - "z": 87.966 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220cb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220cb", - "_tpl": "65702546cfc010a0f5006a1f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (48) [3c92fe53-454f-405a-b66f-9f4c702b7f53]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 51.368, + "y": 5.254, + "z": -495.095 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220cc", - "_tpl": "573603562459776430731618", - "parentId": "66cbbe6ed31d686b240220cb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f61", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f61", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f62", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbbe6ed31d686b24021f61", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (66) [ec7574b8-6dfb-4fcd-87ca-2ef9a4254df7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.998, - "y": 5.115, - "z": -451.201 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220d0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220d0", - "_tpl": "6570264d1419851aef03e736", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (49) [a7f8bfd8-9576-4fd5-a5f7-ba5b837e8dff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 50.992, + "y": 5.254, + "z": -493.08 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220d1", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbbe6ed31d686b240220d0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f65", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f65", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f66", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbbe6ed31d686b24021f65", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "ammo_all (52) [1d90ef4c-be68-4c5a-97cd-efb3c43d35ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 50.155, + "y": 5.455, + "z": -490.994 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220d2", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbbe6ed31d686b240220d0", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f69", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f69", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f6a", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbbe6ed31d686b24021f69", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "AmmoBox NATO (70) [4c0581d9-0bb0-4af4-94ca-660ee3d47160]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -73.079, - "y": 27.405, - "z": 120.03 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220d5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220d5", - "_tpl": "657025bbcfc010a0f5006a35", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_all (53) [cce0d5e8-bd4c-4d44-a0fe-1b13656ced3f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 2.409, + "y": 0.194, + "z": -343.651 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220d6", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbbe6ed31d686b240220d5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f6d", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f6d", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f6e", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbbe6ed31d686b24021f6d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ashor_A_optic (1) [27a8e316-484a-47dc-bdce-ce05effb8bf4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.53302, - "y": 10.1633034, - "z": -290.022 - }, - "Rotation": { - "x": 0.0, - "y": 67.2812042, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220d8", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220d8", - "_tpl": "64c196ad26a15b84aa07132f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (54) [8b3634bc-20b2-4e81-a0b9-d11d2b2f1740]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 2.26, + "y": 0.194, + "z": -344.142 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f71", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f71", + "_tpl": "657024aebfc87b3a3409322f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f72", + "_tpl": "5e85a9a6eacf8c039e4e2ac1", + "parentId": "66cbbe6ed31d686b24021f71", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ashor_A_optic (3) [8408938b-9400-48de-8379-8818cc4055b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.85602, - "y": 10.1993027, - "z": -289.978 - }, - "Rotation": { - "x": 0.0, - "y": 67.2812042, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220da", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220da", - "_tpl": "5a37cb10c4a282329a73b4e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (58) [6489cbbd-e81e-4959-a632-8d0c342098e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 88.75, + "y": 7.562, + "z": -138.79 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f75", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f75", + "_tpl": "648986bbc827d4637f01791e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f76", + "_tpl": "5cc80f38e4a949001152b560", + "parentId": "66cbbe6ed31d686b24021f75", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ashor_A_optic (4) [fedd2d72-a44c-448a-b4f8-07cd545714fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.01402, - "y": 10.2693024, - "z": -289.915 - }, - "Rotation": { - "x": 0.0, - "y": 67.2812042, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220dc", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220dc", - "_tpl": "5a37cb10c4a282329a73b4e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (6) [5c39f810-38e8-41c9-8c68-1caacdae1e64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 52.708, + "y": 11.47, + "z": -809.262 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f79", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f79", + "_tpl": "65702566bfc87b3a3409324d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f7a", + "_tpl": "5e023e6e34d52a55c3304f71", + "parentId": "66cbbe6ed31d686b24021f79", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ashor_A_optic (5) [09beaada-f687-4b8a-94c4-f2b776fdbf93]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.18503, - "y": 10.2573051, - "z": -289.514 - }, - "Rotation": { - "x": 0.0, - "y": 67.2812042, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220de", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220de", - "_tpl": "57da93632459771cb65bf83f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (61) [09076bf0-77a4-4c6c-ac82-3ab69da49915]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 80.225, + "y": 28.526, + "z": -47.515 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f7e", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f7e", + "_tpl": "657024431419851aef03e6fd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f7f", + "_tpl": "64b8ee384b75259c590fa89b", + "parentId": "66cbbe6ed31d686b24021f7e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021f80", + "_tpl": "64b8ee384b75259c590fa89b", + "parentId": "66cbbe6ed31d686b24021f7e", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ashor_A_optic [058f1750-49e2-4697-821f-db64cc5ff75d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.91002, - "y": 9.047615, - "z": -294.065 - }, - "Rotation": { - "x": 0.0, - "y": 92.27727, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220e0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220e0", - "_tpl": "5fbe760793164a5b6278efc8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (64) [ee9a176e-e97f-4124-9b69-cb95ae578134]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 80.453, + "y": 28.526, + "z": -46.357 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f83", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f83", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f84", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbbe6ed31d686b24021f83", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ashor_Arena_armor [fcd6a8c6-0fd2-4254-90ac-d65408a787b6]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -78.2580261, - "y": 8.203304, - "z": -297.337 - }, - "Rotation": { - "x": 270.0, - "y": 267.989532, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220e1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220e1", - "_tpl": "6038b4ca92ec1c3103795a0d" - }, - { - "_id": "66cbbe6ed31d686b240220e2", - "_tpl": "6575e71760703324250610c3", - "parentId": "66cbbe6ed31d686b240220e1", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbbe6ed31d686b240220e3", - "_tpl": "6575e72660703324250610c7", - "parentId": "66cbbe6ed31d686b240220e1", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbbe6ed31d686b240220e4", - "_tpl": "656fa76500d62bcd2e024080", - "parentId": "66cbbe6ed31d686b240220e1", - "slotId": "Front_plate" + { + "Id": "ammo_all (65) [6778e74b-32cc-43c2-aa97-f38754e99600]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -129.138, + "y": 18.478, + "z": -116.93 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240220e5", - "_tpl": "656fa76500d62bcd2e024080", - "parentId": "66cbbe6ed31d686b240220e1", - "slotId": "Back_plate" - } - ] - }, - { - "Id": "ashor_plate1 (1) [10359ef9-cc6d-4860-ad92-4435e80a58a4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -77.911026, - "y": 9.089302, - "z": -291.697 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220e7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220e7", - "_tpl": "656faf0ca0dce000a2020f77", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "ashor_plate1 (2) [52db389d-967a-4d61-971a-32ba365a57e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -77.72502, - "y": 9.103302, - "z": -291.939 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220e9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220e9", - "_tpl": "656f63c027aed95beb08f62c", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "ashor_plate1 (4) [9edb5759-023d-4ec7-a10b-d55c5a501e42]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -78.3470154, - "y": 9.058304, - "z": -294.83 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220eb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220eb", - "_tpl": "656fac30c6baea13cd07e10c", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "ashor_plate1 (6) [d641f6a2-1293-454f-b3f7-614c7a341e50]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -78.37102, - "y": 9.071304, - "z": -293.916 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220ed", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220ed", - "_tpl": "64afd81707e2cf40e903a316", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "ashor_plate1 (8) [6d8f64e0-5e59-4302-a42e-d4fdb634d78e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -78.04802, - "y": 9.047302, - "z": -295.557983 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220ef", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220ef", - "_tpl": "656fa61e94b480b8a500c0e8", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "ashor_plate1 [8a8b2bd3-d42e-4f9d-af83-3bd74a7f09ea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -76.2630157, - "y": 9.139305, - "z": -292.337 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220f1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220f1", - "_tpl": "657b28d25f444d6dff0c6c77", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "ashor_plate2 [9d11cb5f-d55e-44e3-a0e4-51dfc711e917]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.90503, - "y": 9.102303, - "z": -293.339 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220f3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220f3", - "_tpl": "654a4a964b446df1ad03f192", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f87", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f87", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f88", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbbe6ed31d686b24021f87", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ashor_sup_mods (1) [937c79a5-deba-4572-8008-63c935f150ec]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.35602, - "y": 9.393303, - "z": -293.447 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220f5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220f5", - "_tpl": "5888945a2459774bf43ba385", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (66) [98cddf4e-9d3e-4ba2-aee1-4f2d2a4e3328]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -129.91, + "y": 18.478, + "z": -116.602 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f8b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f8b", + "_tpl": "64acea0d03378853630da53b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f8c", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbbe6ed31d686b24021f8b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ashor_sup_mods (2) [1b227d24-dab5-419a-b39f-b88806ef85bb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.71202, - "y": 9.221302, - "z": -294.16 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220f7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220f7", - "_tpl": "544a3a774bdc2d3a388b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (68) [b15caf85-1ae9-427e-bfcf-1f5bcf635cfb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -110.589, + "y": 18.059, + "z": -76.396 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f8f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f8f", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f90", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbbe6ed31d686b24021f8f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ashor_sup_mods (3) [f9eaef35-3333-4486-886d-66061ba4597e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.43402, - "y": 9.185303, - "z": -294.263 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220f9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220f9", - "_tpl": "655f13e0a246670fb0373245", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (69) [27a7ea56-5362-4f98-a00e-8a23990a6c8d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -111.333, + "y": 18.193, + "z": -76.848 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f93", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f93", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f94", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbbe6ed31d686b24021f93", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ashor_sup_mods (4) [8347d936-11fc-4e8a-8b83-37579ae8b362]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.68002, - "y": 9.393303, - "z": -293.947 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220fb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220fb", - "_tpl": "5cc9b815d7f00c000e2579d6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (72) [b32944f9-d1fe-42f1-a63f-98f1e8ccbc0d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -79.585, + "y": 9.445, + "z": -285.985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f97", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f97", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f98", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbbe6ed31d686b24021f97", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ashor_sup_mods (5) [6ebe0b31-8a90-4d04-aa86-bca84cd1ca65]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.2350159, - "y": 9.320305, - "z": -293.499 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220fd", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220fd", - "_tpl": "5d44334ba4b9362b346d1948", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (74) [10ed07ff-cfed-4f23-92d3-74988b266466]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -108.779, + "y": 10.914, + "z": -880.418 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f9b", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f9b", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021f9c", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbbe6ed31d686b24021f9b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ashor_sup_mods [2ef30078-27a2-47b8-903e-98c4d58d0a67]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.50502, - "y": 9.362305, - "z": -293.298 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240220ff", - "Items": [ - { - "_id": "66cbbe6ed31d686b240220ff", - "_tpl": "558022b54bdc2dac148b458d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (75) [02e15aea-e449-4874-b2eb-fb22d1098edf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -107.884, + "y": 10.914, + "z": -880.183 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021f9f", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021f9f", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fa0", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbbe6ed31d686b24021f9f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "battery (19) [38e14089-30ae-4345-bd17-b503c7b26d36]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -74.476, - "y": 9.657, - "z": -277.479 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022101", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022101", - "_tpl": "590a358486f77429692b2790", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (76) [430ac125-f26b-461c-9335-179682c1e211]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -108.378, + "y": 10.914, + "z": -880.254 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fa4", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fa4", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fa5", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6ed31d686b24021fa4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021fa6", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6ed31d686b24021fa4", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "battery (28) [ceccc607-8b7b-4034-b68b-2692c95508f3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 330.497, - "y": 5.5, - "z": 512.881 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022103", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022103", - "_tpl": "590a358486f77429692b2790", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (77) [587fbfba-50c4-4fce-9956-96ddab70c0f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -107.641, + "y": 10.914, + "z": -880.658 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fa9", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fa9", + "_tpl": "657023f81419851aef03e6f1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021faa", + "_tpl": "5f0596629e22f464da6bbdd9", + "parentId": "66cbbe6ed31d686b24021fa9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "canned_food_drink (102) [6780a145-b69a-4594-8149-463d24143c18]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.316, - "y": 6.536, - "z": -297.471 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022105", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022105", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (78) [1ea79472-2e9e-4cc0-8536-37103a1a101c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -108.784, + "y": 10.914, + "z": -880.957 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fad", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fad", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fae", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbbe6ed31d686b24021fad", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "canned_food_drink (143) [69c14a47-7369-48c9-8503-4f3c17b7e5e9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -56.571, - "y": 6.865, - "z": -295.848 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022107", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022107", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (80) [952d1acd-0cec-48f5-abff-278b34ebbae7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -108.646, + "y": 11.629, + "z": -864.372 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fb1", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fb1", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fb2", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbbe6ed31d686b24021fb1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "canned_food_drink (144) [0b8e705b-b0bf-4281-b7e9-c6e248490267]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -56.571, - "y": 7.229, - "z": -296.281 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022109", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022109", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (81) [db37b501-bc29-4393-b0ac-9cbb816fc381]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -110.111, + "y": 11.503, + "z": -863.476 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fb5", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fb5", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fb6", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b24021fb5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "canned_food_drink (18) [662d3cab-bf63-4980-83ea-373b44700c6a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 127.544, - "y": 3.018, - "z": 293.464 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402210b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402210b", - "_tpl": "57347d8724597744596b4e76", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (88) [b4242d95-9d13-4be1-a3c4-c404e056de44]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -34.581, + "y": 11.761, + "z": -812.37 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fb9", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fb9", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fba", + "_tpl": "5a269f97c4a282000b151807", + "parentId": "66cbbe6ed31d686b24021fb9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "canned_food_drink (189) [8b3b51eb-9f14-4133-9aa5-ec5b137e8b35]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -66.294, - "y": 20.873, - "z": -135.296 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402210d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402210d", - "_tpl": "57347d8724597744596b4e76", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (9) [0a692da4-cb08-4b36-8d02-5f4c29ee7668]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 54.022, + "y": 11.068, + "z": -808.657 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fbd", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fbd", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fbe", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbbe6ed31d686b24021fbd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "canned_food_drink (206) [bf9d0a81-0897-4625-b48b-e0f3dbf55c20]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -72.242, - "y": 6.251, - "z": -280.411 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402210f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402210f", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (98) [ade386ed-b016-4ed6-9b17-412a467d1e84]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 3.365, + "y": 2.673, + "z": -490.336 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fc1", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fc1", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fc2", + "_tpl": "5a269f97c4a282000b151807", + "parentId": "66cbbe6ed31d686b24021fc1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "canned_food_drink (214) [cb657d94-9d87-490e-88bc-4fb8662cb083]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -147.175, - "y": 12.776, - "z": -246.911 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022111", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022111", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (10) [c22ca6be-78fb-4fd3-a9c0-7458645d9252]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -94.382, + "y": 0.928, + "z": -555.36 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fc5", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fc5", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fc6", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbbe6ed31d686b24021fc5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "canned_food_drink (216) [1b23f7c2-81dd-4d20-92c9-f01cef7ba5a3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.701, - "y": 3.89, - "z": -188.731 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022113", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022113", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (11) [43584dc7-9b95-49b2-96df-dac8ba9a439c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -94.918, + "y": 0.928, + "z": -555.535 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fc9", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fc9", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fca", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbbe6ed31d686b24021fc9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "canned_food_drink (31) [e270fcda-de80-45a8-8f4a-ca394d321350]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 131.605, - "y": 6.933, - "z": 290.57 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022115", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022115", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (16) [8f6d2018-ba25-4c1f-a2e0-1091a79de768]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -10.226, + "y": 7.536, + "z": -449.915 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fce", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fce", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fcf", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021fce", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021fd0", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24021fce", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "canned_food_drink (50) [98648a84-2ef1-4a75-8934-bd320f49036d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.181, - "y": 20.873, - "z": -133.774 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] + }, + { + "Id": "ammo_nato (17) [52acd32f-9122-48c9-b1a7-d51b6c092e99]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -6.857, + "y": 7.536, + "z": -451.116 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fd3", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fd3", + "_tpl": "65702406bfc87b3a34093216", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fd4", + "_tpl": "5efb0fc6aeb21837e749c801", + "parentId": "66cbbe6ed31d686b24021fd3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022117", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022117", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (19) [d1b4b9ba-4368-449a-b2f0-cea907492ee8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 16.467, + "y": 5.645, + "z": -452.836 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fd7", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fd7", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fd8", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbbe6ed31d686b24021fd7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "canned_food_drink (92) [e5a81618-85a0-4d4b-a515-bc4ab0516358]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -140.65, - "y": 6.247, - "z": 450.636 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022119", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022119", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (20) [68d116f1-8834-45ef-bcc6-07b188e69cc0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 15.827, + "y": 5.645, + "z": -452.322 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fdc", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fdc", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fdd", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6ed31d686b24021fdc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021fde", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6ed31d686b24021fdc", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "cigarettes (18) [102edbfd-40f1-40a1-bfa0-bc4cb2b8205b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.828, - "y": 4.689, - "z": 268.753 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402211b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402211b", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (23) [aba641ca-3985-4fe7-abc5-be6ba200fcd6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 11.576, + "y": 4.931, + "z": -451.196 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fe1", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fe1", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fe2", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbbe6ed31d686b24021fe1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "fast_food(small) (4) [ba67bfd1-770d-4f2a-a84c-e9fb71356566]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -128.431, - "y": 37.434, - "z": 102.706 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402211d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402211d", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (28) [50437227-7c4b-4a64-928f-530a80e47587]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 16.568, + "y": 5.702, + "z": -444.63 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fe5", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fe5", + "_tpl": "65702420bfc87b3a34093219", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021fe6", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66cbbe6ed31d686b24021fe5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "fast_food(small) (59) [a435f7b8-cefd-4de7-8050-6d6020794bb4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -81.531, - "y": 19.582, - "z": -53.239 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402211f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402211f", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (29) [f2978d4e-031d-4788-b4a2-fdd605b46a48]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 17.62, + "y": 5.881, + "z": -444.294 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021fea", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021fea", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021feb", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6ed31d686b24021fea", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24021fec", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6ed31d686b24021fea", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "fast_food(small) (93) [b55d836b-b7a7-4578-be04-1c0dc1db7b18]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -144.058, - "y": 12.219, - "z": -250.161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022121", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022121", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (31) [9eccc88f-7db9-4444-8b88-88d8cce599c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 21.2148, + "y": 5.247, + "z": -444.5847 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ff0", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ff0", + "_tpl": "6570249f1419851aef03e709", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ff1", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbbe6ed31d686b24021ff0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24021ff2", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbbe6ed31d686b24021ff0", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "fast_food(small) (94) [2c97a484-059f-4180-a58b-44d08b242a7f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 135.963, - "y": 3.663, - "z": 271.519 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022123", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022123", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (34) [9e404efa-816c-4b25-977f-1d4a789fe6ca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 45.008, + "y": 9.767, + "z": -447.647 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ff5", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ff5", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ff6", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbbe6ed31d686b24021ff5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "food_varios_mix (30) [2db3ee8d-5c3f-4b0a-bba8-37dcda794744]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 332.617, - "y": 3.22, - "z": 519.291 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022125", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022125", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (35) [ac7fd8b3-3174-4a52-af23-784afd922bcc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 45.137, + "y": 9.767, + "z": -448.271 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ff9", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ff9", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ffa", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbbe6ed31d686b24021ff9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "food_varios_mix (32) [d546aaf2-80b0-4a6d-b561-67a10b33069d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 335.119, - "y": 2.99, - "z": 520.073 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022127", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022127", - "_tpl": "5d1b376e86f774252519444e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (37) [f7e77c4b-0335-482e-8fa2-8e5c934e66ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -84.152, + "y": 18.611, + "z": -61.229 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24021ffd", + "Items": [ + { + "_id": "66cbbe6ed31d686b24021ffd", + "_tpl": "657025d4c5d7d4cb4d078585", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24021ffe", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbbe6ed31d686b24021ffd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_varios_mix (38) [dbd26a31-5b8a-4736-ada7-24bcb84c228e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 329.21, - "y": 3.158, - "z": 523.369 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022129", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022129", - "_tpl": "5d1b376e86f774252519444e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (38) [00a19abb-e590-4312-b8c3-b2e227df6f9a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -83.851, + "y": 18.611, + "z": -61.563 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022001", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022001", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022002", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbbe6ed31d686b24022001", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "food_varios_mix (46) [03b87203-070e-4c6c-8b3d-324dd64a826f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 341.175, - "y": 2.039, - "z": 521.531 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402212b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402212b", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (40) [b243f314-7ab8-4cd8-a56c-9676ce68a31d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 15.287, + "y": 6.043, + "z": -444.735 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022005", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022005", + "_tpl": "64acea0d03378853630da53b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022006", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbbe6ed31d686b24022005", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_varios_mix (5) [03c3c367-f4db-4716-bf0d-8baf466f893b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -94.681, - "y": 10.784, - "z": -794.47 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402212d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402212d", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (41) [2064c8b6-7e2f-40c7-b62b-e4367097cbe4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 14.987, + "y": 6.043, + "z": -445.44 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022009", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022009", + "_tpl": "648984e3f09d032aa9399d53", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402200a", + "_tpl": "5efb0c1bd79ff02a1f5e68d9", + "parentId": "66cbbe6ed31d686b24022009", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_varios_mix (50) [0bcc4974-c13f-4e84-a405-0b687c559501]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 337.421, - "y": 3.438, - "z": 517.144 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402212f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402212f", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (42) [8c2b313f-3bf7-43c6-9a53-9edc0c4d151e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 43.722, + "y": 5.542, + "z": -654.697 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402200d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402200d", + "_tpl": "65702420bfc87b3a34093219", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402200e", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66cbbe6ed31d686b2402200d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "food_varios_mix (65) [16edebc3-e3c2-4a79-8dbd-7a314129d499]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -200.284, - "y": 5.518, - "z": -640.984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022131", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022131", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (44) [dec37e16-51c9-46bc-ac51-0d28ebee42df]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 41.829, + "y": 5.595, + "z": -653.987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022012", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022012", + "_tpl": "6570249bcfc010a0f5006a07", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022013", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24022012", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24022014", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24022012", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "food_varios_mix (67) [0f0d4f9b-1339-4226-b01a-08ba581e5b9a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -199.486, - "y": 6.056, - "z": -645.695 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022133", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022133", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (45) [133470b2-7dd0-45ee-9ef8-5bfd23090275]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 40.554, + "y": 5.382, + "z": -654.32 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022017", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022017", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022018", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbbe6ed31d686b24022017", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_varios_mix (68) [c6f29b02-c5ce-4c03-91c5-7ad7411bc731]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -198.775, - "y": 6.056, - "z": -645.677 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022135", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022135", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato (47) [aaf379ef-c6fb-48b3-a11d-64a31e7cc178]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 42.447, + "y": 5.382, + "z": -654.603 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402201b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402201b", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402201c", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbbe6ed31d686b2402201b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "food_varios_mix (71) [38a03b6b-362b-4759-b65b-330551ff5a6b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -196.256, - "y": 6.006, - "z": -640.963 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022137", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022137", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato [0d86460d-646b-4162-828e-565a404f6697]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -99.299, + "y": 2.638, + "z": -578.437 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402201f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402201f", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022020", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbbe6ed31d686b2402201f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_zone (12) [415a1fb8-9b03-4087-bec9-90a9303f5438]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -255.964, - "y": 14.708, - "z": -206.625 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022139", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022139", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "AmmoBox 5.45x39 (6) [e91cdb97-ceb7-4ac4-a5f6-896a08f7e007]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -61.657, + "y": 27.775, + "z": 132.941 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022023", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022023", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022024", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbbe6ed31d686b24022023", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "food_zone (14) [85b7dcac-ff8b-422d-8125-de22a75df446]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.835, - "y": 40.297, - "z": 131.558 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402213b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402213b", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "AmmoBox NATO (1) [b1d71ac6-f133-4bf0-9e17-de153bbe34cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.425, + "y": 1.896, + "z": 518.097 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022027", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022027", + "_tpl": "6570259fcfc010a0f5006a32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022028", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66cbbe6ed31d686b24022027", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "food_zone (21) [d6901698-9382-44a5-bb9c-3700189f6525]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -116.956, - "y": 40.858, - "z": 79.39 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402213d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402213d", - "_tpl": "65815f0e647e3d7246384e14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "AmmoBox NATO (10) [c23cbf40-2053-4ab4-9184-3014b8ea03f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 63.651, + "y": 1.896, + "z": 519.494 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402202b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402202b", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402202c", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbbe6ed31d686b2402202b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_zone (26) [3dcd0d3d-2848-4508-94db-ebfe605887a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -117.601, - "y": 40.961, - "z": 89.31 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402213f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402213f", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "AmmoBox NATO (12) [7fcd4e33-4948-47db-bb0e-d24d5b273add]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -101.394, + "y": 33.756, + "z": 104.831 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022030", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022030", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022031", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24022030", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24022032", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24022030", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "food_zone (31) [0c32b9fc-397d-49f2-a883-0f04084e8876]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -147.246, - "y": 40.887, - "z": 101.361 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022141", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022141", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "AmmoBox NATO (12) [cf13e840-7201-4984-9e42-13aa95ea0897]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -102.921, + "y": 2.17, + "z": -473.472 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022035", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022035", + "_tpl": "64aceab0426a303417060654", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022036", + "_tpl": "64b8f7b5389d7ffd620ccba2", + "parentId": "66cbbe6ed31d686b24022035", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_zone (33) [e5072764-2e00-4b0c-9c82-326873b65c92]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -186.244, - "y": 13.663, - "z": -209.667 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022143", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022143", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "AmmoBox NATO (13) [aa237c05-3f4e-48dc-b97e-bf6a46ddd1aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -103.843, + "y": 2.233, + "z": -474.322 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022039", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022039", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402203a", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbbe6ed31d686b24022039", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_zone (37) [7e742bd6-ebc6-45e0-b3dd-fb94fb909a5b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.127, - "y": 40.59, - "z": 131.476 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022145", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022145", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "AmmoBox NATO (14) [7a4e4d1c-67ca-4b1a-a94b-8bf0f8544f91]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.448, + "y": 38.077, + "z": 97.978 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402203d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402203d", + "_tpl": "657024e3c5d7d4cb4d07856a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402203e", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbbe6ed31d686b2402203d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "food_zone (6) [4d45d058-f066-419a-85d9-5bf97b691d5c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -189.644, - "y": 13.663, - "z": -207.991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022147", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022147", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "AmmoBox NATO (14) [dae1b385-772f-456b-83a8-05763528cd82]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 215.144, + "y": 3.171, + "z": 525.716 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022041", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022041", + "_tpl": "657023ccbfc87b3a3409320a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022042", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "66cbbe6ed31d686b24022041", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_zone (8) [f9b629e6-af49-4b43-b81b-2221a7f58d24]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -257.353, - "y": 15.11, - "z": -201.306 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022149", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022149", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "AmmoBox NATO (15) [98cfc5bb-38f5-410e-886a-18cabc47ae2a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -123.981, + "y": 37.149, + "z": 95.241 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022045", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022045", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022046", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbbe6ed31d686b24022045", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "item_barter_electr_hdd_barahol_quest [453592fd-2dcc-4705-809f-c2d043fb821c]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 352.6155, - "y": 16.2855, - "z": 545.5325 - }, - "Rotation": { - "x": 90.0, - "y": 143.941727, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402214b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402214b", - "_tpl": "628393620d8524273e7eb028", - "upd": { - "StackObjectsCount": 1 + { + "Id": "AmmoBox NATO (16) [aeb56b0c-dec5-470c-aa6b-1099e8c2fd4f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -123.623, + "y": 37.545, + "z": 96.16 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022049", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022049", + "_tpl": "6489875745f9ca4ba51c4808", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402204a", + "_tpl": "5a26ac0ec4a28200741e1e18", + "parentId": "66cbbe6ed31d686b24022049", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "item_flash_card_soft_v3_quest [c621656e-8663-4a4b-821f-6227eb6519dd]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": -133.4922, - "y": 2.8779, - "z": -497.9937 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -139.22, - "y": 2.4206, - "z": -686.048 + { + "Id": "AmmoBox NATO (17) [541d947a-f8de-48b8-880c-95a29805130b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.731, + "y": 37.579, + "z": 101.313 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402204d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402204d", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b2402204e", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbbe6ed31d686b2402204d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox NATO (2) [3f257d38-7c0f-43fe-a253-baf24abb6a59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.48, + "y": 1.896, + "z": 519.03 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -134.9648, - "y": 2.8757, - "z": -678.8499 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022051", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022051", + "_tpl": "648985c074a806211e4fb682", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b24022052", + "_tpl": "5fd20ff893a8961fc660a954", + "parentId": "66cbbe6ed31d686b24022051", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox NATO (21) [9beed535-b77c-493a-b57a-1d1038aba1a2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -112.403, + "y": 37.611, + "z": 90.385 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -178.272, - "y": 5.8165, - "z": -649.599 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022055", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022055", + "_tpl": "657024f9bfc87b3a3409323b", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b24022056", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6ed31d686b24022055", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox NATO (22) [09422080-7062-4294-b969-3b59ef3456ce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.266, + "y": 37.937, + "z": 84.709 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": -197.6766, - "y": 5.7923, - "z": -651.9562 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022059", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022059", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b2402205a", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbbe6ed31d686b24022059", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "AmmoBox NATO (23) [7bd46e79-c77f-44a0-a972-9b0da3efe7c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -116.349, + "y": 37.937, + "z": 76.239 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": -122.483, - "y": 5.422, - "z": -733.8048 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402205d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402205d", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b2402205e", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbbe6ed31d686b2402205d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox NATO (24) [977b010b-f896-41a2-a038-21f4fac5b52b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -116.767, + "y": 37.937, + "z": 75.806 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": -114.446, - "y": 9.1012, - "z": -731.515 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022061", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022061", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b24022062", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66cbbe6ed31d686b24022061", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox NATO (25) [c28ef51a-b5ac-4bc1-ac7b-86c38560397b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.765, + "y": 19.319, + "z": -90.608 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[6]", - "Weight": 1, - "Position": { - "x": -65.779, - "y": 5.8221, - "z": -734.927 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022065", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022065", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b24022066", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbbe6ed31d686b24022065", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "AmmoBox NATO (26) [7233858d-4576-4e3f-bafb-93375937681b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.626, + "y": 19.319, + "z": -91.021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[7]", - "Weight": 1, - "Position": { - "x": -61.8229, - "y": 2.7588, - "z": -689.4481 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022069", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022069", + "_tpl": "5737266524597761006c6a8c", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b2402206a", + "_tpl": "57371eb62459776125652ac1", + "parentId": "66cbbe6ed31d686b24022069", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "AmmoBox NATO (29) [97cc7dd0-f7e8-4726-afa1-557d0439fcd2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -86.71, + "y": 19.244, + "z": -89.967 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[8]", - "Weight": 1, - "Position": { - "x": 30.5200958, - "y": 9.1071, - "z": -646.7069 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402206d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402206d", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b2402206e", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbbe6ed31d686b2402206d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox NATO (3) [502c58aa-a822-4151-839c-3a86a3e79d3d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 13.384, + "y": 6.434, + "z": 99.217 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[9]", - "Weight": 1, - "Position": { - "x": 27.9509964, - "y": 9.0999, - "z": -650.5705 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022072", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022072", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022073", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbbe6ed31d686b24022072", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b24022074", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbbe6ed31d686b24022072", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "AmmoBox NATO (3) [d9655d46-51d4-417b-bc81-0a38ea0d57b5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -69.47, + "y": 27.752, + "z": 109.665 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[10]", - "Weight": 1, - "Position": { - "x": 50.5459976, - "y": 5.927, - "z": -649.859 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022077", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022077", + "_tpl": "6570262d1419851aef03e72d", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b24022078", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66cbbe6ed31d686b24022077", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox NATO (30) [eeffacf2-4f0a-437c-aafc-ef5c8a015e76]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -132.792, + "y": 41.174, + "z": 93.887 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[11]", - "Weight": 1, - "Position": { - "x": 0.192001343, - "y": 2.8773, - "z": -598.199 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402207b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402207b", + "_tpl": "6570240ecfc010a0f50069f2", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b2402207c", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbbe6ed31d686b2402207b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox NATO (31) [aafb0707-5cb8-41ce-9f48-8363935d9548]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -132.641, + "y": 41.174, + "z": 93.467 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[12]", - "Weight": 1, - "Position": { - "x": -28.7638016, - "y": 2.8203, - "z": -525.2898 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022080", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022080", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[13]", - "Weight": 1, - "Position": { - "x": -46.7180023, - "y": 8.1166, - "z": -519.991 + { + "_id": "66cbbe6ed31d686b24022081", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24022080", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b24022082", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b24022080", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "AmmoBox NATO (32) [6d933226-3591-4597-8122-17bdd1c8f895]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -132.305, + "y": 41.174, + "z": 93.826 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[14]", - "Weight": 1, - "Position": { - "x": -100.754, - "y": 1.0697, - "z": -491.3172 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022085", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022085", + "_tpl": "65702536c5d7d4cb4d078570", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b24022086", + "_tpl": "573601b42459776410737435", + "parentId": "66cbbe6ed31d686b24022085", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } + ] + }, + { + "Id": "AmmoBox NATO (34) [dfb5c39a-6eb2-4f01-93d8-fc8cdd592675]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.868, + "y": 42.323, + "z": 92.544 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[15]", - "Weight": 1, - "Position": { - "x": -133.4922, - "y": 2.8779, - "z": -497.9937 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402208a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402208a", + "_tpl": "657024a91419851aef03e70c", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[16]", - "Weight": 1, - "Position": { - "x": -171.334, - "y": 9.2309, - "z": -633.393 + { + "_id": "66cbbe6ed31d686b2402208b", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "66cbbe6ed31d686b2402208a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b2402208c", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "66cbbe6ed31d686b2402208a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "AmmoBox NATO (36) [9b1be247-dc30-4971-abc7-a6030e79e612]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.748, + "y": 42.323, + "z": 93.015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[17]", - "Weight": 1, - "Position": { - "x": -63.1750031, - "y": 5.2796, - "z": -627.414 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402208f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402208f", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b24022090", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbbe6ed31d686b2402208f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox NATO (39) [047bbbe5-a9b0-4c05-b7ce-f612626a3166]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -144.661, + "y": 40.562, + "z": 92.824 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[18]", - "Weight": 1, - "Position": { - "x": -69.882, - "y": 2.4355, - "z": -654.615967 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022093", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022093", + "_tpl": "657023f1bfc87b3a34093210", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b24022094", + "_tpl": "59e6542b86f77411dc52a77a", + "parentId": "66cbbe6ed31d686b24022093", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox NATO (4) [a0110cd9-b841-441a-82e2-72e0c547f057]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 62.455, + "y": 1.896, + "z": 516.966 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[19]", - "Weight": 1, - "Position": { - "x": -68.6482, - "y": 2.978, - "z": -697.1657 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402214d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402214d", - "_tpl": "6331bb0d1aa9f42b804997a6", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "item_quest_keeper2_kompr_fake_final [48ceb5d9-a0d0-458e-b3bc-ab9622ffbc79]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 21.2779083, - "y": 5.31199932, - "z": -445.487946 - }, - "Rotation": { - "x": -1.21621515e-5, - "y": 323.941772, - "z": 3.987292e-5 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 21.2779083, - "y": 5.31199932, - "z": -445.487946 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022098", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022098", + "_tpl": "6570249bcfc010a0f5006a07", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": -1.21621515e-5, - "y": 323.941772, - "z": 3.987292e-5 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 32.03167, - "y": 4.912996, - "z": -454.489777 - }, - "Rotation": { - "x": -3.26002446e-5, - "y": -0.000218542715, - "z": 270.000031 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402214f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402214f", - "_tpl": "6398a0861c712b1e1d4dadf1", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "item_spec_radiotransmitterbody [74b09da8-cea5-4905-a508-6f3db360492e]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -114.139, - "y": 40.3917, - "z": 95.1129761 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -140.383, - "y": 2.9291, - "z": -686.027 + { + "_id": "66cbbe6ed31d686b24022099", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24022098", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b2402209a", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24022098", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "AmmoBox NATO (40) [bb8a1eb5-50f6-4f10-b771-5d677c754b72]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -145.115, + "y": 40.562, + "z": 92.786 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -69.291, - "y": 3.4699, - "z": -695.73 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402209d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402209d", + "_tpl": "6570240ecfc010a0f50069f2", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b2402209e", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbbe6ed31d686b2402209d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox NATO (42) [770d73d2-639c-4df3-a771-e72e0c7301fd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -145.004, + "y": 40.979, + "z": 91.053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 40.2740021, - "y": 15.1105, - "z": -619.311 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220a1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220a1", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220a2", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66cbbe6ed31d686b240220a1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "AmmoBox NATO (44) [3b71bbc9-e469-4a5b-9941-4b40473bbfdf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -137.529, + "y": 40.867, + "z": 78.865 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": -46.276, - "y": 8.6158, - "z": -521.0152 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220a5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220a5", + "_tpl": "65702621cfc010a0f5006a44", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220a6", + "_tpl": "57371f2b24597761224311f1", + "parentId": "66cbbe6ed31d686b240220a5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox NATO (46) [1dbc0138-4dd6-4482-9eba-4dca427ff990]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -101.443, + "y": 33.269, + "z": 97.24 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": -100.585, - "y": 1.5309, - "z": -491.943 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220a9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220a9", + "_tpl": "657024011419851aef03e6f4", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220aa", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "66cbbe6ed31d686b240220a9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox NATO (48) [85fd8ead-81ff-41ac-b74f-a8dc8d58467e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -101.148, + "y": 33.756, + "z": 104.668 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": -77.514, - "y": 20.469, - "z": -72.0840149 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220ad", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220ad", + "_tpl": "6570259fcfc010a0f5006a32", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220ae", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66cbbe6ed31d686b240220ad", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox NATO (49) [f381f752-ccdb-4d71-9010-5d4defab5406]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -101.371, + "y": 33.901, + "z": 104.583 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[6]", - "Weight": 1, - "Position": { - "x": -80.694, - "y": 18.8225, - "z": -92.13699 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220b2", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220b2", + "_tpl": "6570247ebfc87b3a34093229", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[7]", - "Weight": 1, - "Position": { - "x": -116.042, - "y": 40.3917, - "z": 91.302 + { + "_id": "66cbbe6ed31d686b240220b3", + "_tpl": "5d6e68d1a4b93622fe60e845", + "parentId": "66cbbe6ed31d686b240220b2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220b4", + "_tpl": "5d6e68d1a4b93622fe60e845", + "parentId": "66cbbe6ed31d686b240220b2", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "AmmoBox NATO (50) [6f5a5166-aeba-49c4-bfc1-5caf67436b56]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -107.524, + "y": 33.844, + "z": 104.004 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[8]", - "Weight": 1, - "Position": { - "x": -114.139, - "y": 40.3917, - "z": 95.1129761 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220b7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220b7", + "_tpl": "6570251ccfc010a0f5006a13", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220b8", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbbe6ed31d686b240220b7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox NATO (59) [d6ea71de-99d1-46c9-8e7e-eddaab90b021]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -143.342, + "y": 40.562, + "z": 91.815 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[9]", - "Weight": 1, - "Position": { - "x": -68.905, - "y": 26.475, - "z": 136.367 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220bb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220bb", + "_tpl": "64acee6903378853630da544", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 47.4469948, - "y": 253.784988, - "z": 180 + { + "_id": "66cbbe6ed31d686b240220bc", + "_tpl": "64b8f7c241772715af0f9c3d", + "parentId": "66cbbe6ed31d686b240220bb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox NATO (60) [c07833f3-1614-4494-a98e-84c98aac0a19]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -72.211, + "y": 22.21, + "z": -59.158 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[10]", - "Weight": 1, - "Position": { - "x": 135.2674, - "y": 5.6936, - "z": 287.9223 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220bf", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220bf", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 355.801, - "y": 163.206985, - "z": 1.07008937e-7 + { + "_id": "66cbbe6ed31d686b240220c0", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbbe6ed31d686b240220bf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox NATO (61) [75ffd6ca-4169-4295-8573-8ab6a5d7a68f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -72.756, + "y": 22.21, + "z": -58.76 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[11]", - "Weight": 1, - "Position": { - "x": 1.35900116, - "y": 2.1595, - "z": -630.858032 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220c3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220c3", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220c4", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbbe6ed31d686b240220c3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox NATO (63) [eed50780-6d8d-4da1-874f-da311551a92a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -113.254, + "y": 40.878, + "z": 88.143 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[12]", - "Weight": 1, - "Position": { - "x": -54.7257, - "y": 6.5304, - "z": -294.8269 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220c7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220c7", + "_tpl": "657025a81419851aef03e724", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220c8", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbbe6ed31d686b240220c7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox NATO (64) [4879b13f-3fbd-4ba6-b993-510c270b63fc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -113.562, + "y": 40.878, + "z": 87.966 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[13]", - "Weight": 1, - "Position": { - "x": -81.666, - "y": 22.3841, - "z": -91.04553 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220cb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220cb", + "_tpl": "65702546cfc010a0f5006a1f", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 74.14857, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220cc", + "_tpl": "573603562459776430731618", + "parentId": "66cbbe6ed31d686b240220cb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } + ] + }, + { + "Id": "AmmoBox NATO (66) [ec7574b8-6dfb-4fcd-87ca-2ef9a4254df7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.998, + "y": 5.115, + "z": -451.201 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[14]", - "Weight": 1, - "Position": { - "x": -115.973007, - "y": 41.2528, - "z": 88.95398 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220d0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220d0", + "_tpl": "6570264d1419851aef03e736", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 246.140961, - "z": 0 - } - }, - { - "Name": "groupPoint[15]", - "Weight": 1, - "Position": { - "x": -180.094559, - "y": 15.249, - "z": -651.085 + { + "_id": "66cbbe6ed31d686b240220d1", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbbe6ed31d686b240220d0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } }, - "Rotation": { - "x": 0, - "y": 196.372635, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220d2", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbbe6ed31d686b240220d0", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "AmmoBox NATO (70) [4c0581d9-0bb0-4af4-94ca-660ee3d47160]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -73.079, + "y": 27.405, + "z": 120.03 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[16]", - "Weight": 1, - "Position": { - "x": -60.6951, - "y": 5.3316, - "z": -627.515869 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220d5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220d5", + "_tpl": "657025bbcfc010a0f5006a35", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 226.8926, - "z": 0 + { + "_id": "66cbbe6ed31d686b240220d6", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbbe6ed31d686b240220d5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "ashor_A_optic (1) [27a8e316-484a-47dc-bdce-ce05effb8bf4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.53302, + "y": 10.1633034, + "z": -290.022 + }, + "Rotation": { + "x": 0.0, + "y": 67.2812042, + "z": 0.0 }, - { - "Name": "groupPoint[17]", - "Weight": 1, - "Position": { - "x": -54.7156, - "y": 2.5759, - "z": -525.9251 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220d8", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220d8", + "_tpl": "64c196ad26a15b84aa07132f", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "ashor_A_optic (3) [8408938b-9400-48de-8379-8818cc4055b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.85602, + "y": 10.1993027, + "z": -289.978 + }, + "Rotation": { + "x": 0.0, + "y": 67.2812042, + "z": 0.0 }, - { - "Name": "groupPoint[18]", - "Weight": 1, - "Position": { - "x": -125.2112, - "y": 3.9244, - "z": -530.8186 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220da", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220da", + "_tpl": "5a37cb10c4a282329a73b4e7", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "ashor_A_optic (4) [fedd2d72-a44c-448a-b4f8-07cd545714fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.01402, + "y": 10.2693024, + "z": -289.915 + }, + "Rotation": { + "x": 0.0, + "y": 67.2812042, + "z": 0.0 }, - { - "Name": "groupPoint[19]", - "Weight": 1, - "Position": { - "x": 0.427200317, - "y": 3.3931, - "z": -654.5141 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022151", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022151", - "_tpl": "6399f54b0a36db13c823ad21", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220dc", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220dc", + "_tpl": "5a37cb10c4a282329a73b4e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jev_small [8682324c-9035-48dd-b904-86b0379aaa52]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -256.165, - "y": 15.039, - "z": -205.067 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022153", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022153", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_A_optic (5) [09beaada-f687-4b8a-94c4-f2b776fdbf93]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.18503, + "y": 10.2573051, + "z": -289.514 + }, + "Rotation": { + "x": 0.0, + "y": 67.2812042, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220de", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220de", + "_tpl": "57da93632459771cb65bf83f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly&food (3) [c2a51977-bd81-480d-b372-6633ff15dc78]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 87.892, - "y": 1.407, - "z": 463.806 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022155", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022155", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_A_optic [058f1750-49e2-4697-821f-db64cc5ff75d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.91002, + "y": 9.047615, + "z": -294.065 + }, + "Rotation": { + "x": 0.0, + "y": 92.27727, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220e0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220e0", + "_tpl": "5fbe760793164a5b6278efc8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly&food (4) [7ecadc1b-e75d-43b5-9afd-05dc1fe10a81]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 87.71, - "y": 1.387, - "z": 463.316 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022157", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022157", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_Arena_armor [fcd6a8c6-0fd2-4254-90ac-d65408a787b6]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -78.2580261, + "y": 8.203304, + "z": -297.337 + }, + "Rotation": { + "x": 270.0, + "y": 267.989532, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220e1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220e1", + "_tpl": "6038b4ca92ec1c3103795a0d" + }, + { + "_id": "66cbbe6ed31d686b240220e2", + "_tpl": "6575e71760703324250610c3", + "parentId": "66cbbe6ed31d686b240220e1", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbbe6ed31d686b240220e3", + "_tpl": "6575e72660703324250610c7", + "parentId": "66cbbe6ed31d686b240220e1", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbbe6ed31d686b240220e4", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "66cbbe6ed31d686b240220e1", + "slotId": "Front_plate" + }, + { + "_id": "66cbbe6ed31d686b240220e5", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "66cbbe6ed31d686b240220e1", + "slotId": "Back_plate" } - } - ] - }, - { - "Id": "Jeverly&food (5) [63bcd87c-faa1-4998-9ba3-fb03f305aa79]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -69.9567642, - "y": 7.201, - "z": -290.5127 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022159", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022159", - "_tpl": "635a758bfefc88a93f021b8a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_plate1 (1) [10359ef9-cc6d-4860-ad92-4435e80a58a4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -77.911026, + "y": 9.089302, + "z": -291.697 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220e7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220e7", + "_tpl": "656faf0ca0dce000a2020f77", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly&food (6) [3ab32fd1-5702-41e9-9584-8a7b940ea7af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -134.829, - "y": 32.106, - "z": 274.996 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402215b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402215b", - "_tpl": "57513f9324597720a7128161", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_plate1 (2) [52db389d-967a-4d61-971a-32ba365a57e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -77.72502, + "y": 9.103302, + "z": -291.939 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220e9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220e9", + "_tpl": "656f63c027aed95beb08f62c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly&food (7) [cf30013f-0a00-4653-ae67-e98c77b733ea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -133.053, - "y": 32.106, - "z": 274.087 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402215d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402215d", - "_tpl": "575146b724597720a27126d5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_plate1 (4) [9edb5759-023d-4ec7-a10b-d55c5a501e42]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -78.3470154, + "y": 9.058304, + "z": -294.83 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220eb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220eb", + "_tpl": "656fac30c6baea13cd07e10c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly&food (9) [3a5a18c5-70b1-45be-91ee-caff2aa309b2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -73.981, - "y": 19.369, - "z": -92.398 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402215f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402215f", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_plate1 (6) [d641f6a2-1293-454f-b3f7-614c7a341e50]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -78.37102, + "y": 9.071304, + "z": -293.916 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220ed", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220ed", + "_tpl": "64afd81707e2cf40e903a316", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (11) [2d28b2b5-ee71-4aa1-bd78-8d71b230d8e5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -142.463, - "y": 12.401, - "z": -248.087 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022161", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022161", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_plate1 (8) [6d8f64e0-5e59-4302-a42e-d4fdb634d78e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -78.04802, + "y": 9.047302, + "z": -295.557983 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220ef", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220ef", + "_tpl": "656fa61e94b480b8a500c0e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (19) [7a166371-19e5-4d9b-bf61-ff79cfb0f294]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -75.83, - "y": 9.277, - "z": -293.835 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022163", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022163", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_plate1 [8a8b2bd3-d42e-4f9d-af83-3bd74a7f09ea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -76.2630157, + "y": 9.139305, + "z": -292.337 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220f1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220f1", + "_tpl": "657b28d25f444d6dff0c6c77", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (29) [30bdeea0-39ea-4155-8997-0fe5f3a1611e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 124.992, - "y": 0.554, - "z": 282.003 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022165", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022165", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_plate2 [9d11cb5f-d55e-44e3-a0e4-51dfc711e917]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.90503, + "y": 9.102303, + "z": -293.339 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220f3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220f3", + "_tpl": "654a4a964b446df1ad03f192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (35) [d76b54b7-72dd-4db5-a0b2-0d4c146ec5ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 127.153, - "y": 4.475, - "z": 271.193 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022167", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022167", - "_tpl": "655c652d60d0ac437100fed7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_sup_mods (1) [937c79a5-deba-4572-8008-63c935f150ec]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.35602, + "y": 9.393303, + "z": -293.447 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220f5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220f5", + "_tpl": "5888945a2459774bf43ba385", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (48) [318dd7c3-7dcb-429a-89df-614efe020d82]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 329.226, - "y": 6.014, - "z": 484.262 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022169", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022169", - "_tpl": "655c67ab0d37ca5135388f4b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_sup_mods (2) [1b227d24-dab5-419a-b39f-b88806ef85bb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.71202, + "y": 9.221302, + "z": -294.16 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220f7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220f7", + "_tpl": "544a3a774bdc2d3a388b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (50) [933c875a-8ac8-4edc-a90f-9d85f7495409]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -259.345, - "y": 14.345, - "z": -208.509 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402216b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402216b", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_sup_mods (3) [f9eaef35-3333-4486-886d-66061ba4597e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.43402, + "y": 9.185303, + "z": -294.263 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220f9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220f9", + "_tpl": "655f13e0a246670fb0373245", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (64) [665bb6b7-bbd0-478c-b206-f4c535321f42]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 329.709, - "y": 5.75, - "z": 485.471 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402216d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402216d", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_sup_mods (4) [8347d936-11fc-4e8a-8b83-37579ae8b362]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.68002, + "y": 9.393303, + "z": -293.947 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220fb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220fb", + "_tpl": "5cc9b815d7f00c000e2579d6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (74) [728c3549-c6f1-4420-ab8c-24b337d9a02a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 324.488, - "y": 6.288, - "z": 484.723 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402216f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402216f", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_sup_mods (5) [6ebe0b31-8a90-4d04-aa86-bca84cd1ca65]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.2350159, + "y": 9.320305, + "z": -293.499 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220fd", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220fd", + "_tpl": "5d44334ba4b9362b346d1948", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (75) [2ca2cccd-1dfd-4ed7-bc20-d34ae23472b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 322.128, - "y": 5.746, - "z": 487.657 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022171", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022171", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_sup_mods [2ef30078-27a2-47b8-903e-98c4d58d0a67]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.50502, + "y": 9.362305, + "z": -293.298 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240220ff", + "Items": [ + { + "_id": "66cbbe6ed31d686b240220ff", + "_tpl": "558022b54bdc2dac148b458d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (76) [9ad99929-948f-4ef3-8d75-c7d979d1f7f2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 323.011, - "y": 5.746, - "z": 488.102 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022173", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022173", - "_tpl": "5e54f62086f774219b0f1937", - "upd": { - "StackObjectsCount": 1 + { + "Id": "battery (19) [38e14089-30ae-4345-bd17-b503c7b26d36]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -74.476, + "y": 9.657, + "z": -277.479 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022101", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022101", + "_tpl": "590a358486f77429692b2790", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (92) [2d0b9868-f5c1-4b20-afe5-77d566850b52]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 328.841, - "y": 5.305, - "z": 484.795 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022175", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022175", - "_tpl": "5f745ee30acaeb0d490d8c5b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "battery (28) [ceccc607-8b7b-4034-b68b-2692c95508f3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 330.497, + "y": 5.5, + "z": 512.881 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022103", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022103", + "_tpl": "590a358486f77429692b2790", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_common (94) [ded189e7-8d37-4757-bff4-83a179ab031c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 327.242, - "y": 5.305, - "z": 483.857 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022177", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022177", - "_tpl": "655c67ab0d37ca5135388f4b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "canned_food_drink (102) [6780a145-b69a-4594-8149-463d24143c18]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.316, + "y": 6.536, + "z": -297.471 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022105", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022105", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (2) [f2b6be56-fe1e-4f5f-ab99-35f9e112c97c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -112.281, - "y": 33.461, - "z": 80.885 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022179", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022179", - "_tpl": "57347c93245977448d35f6e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "canned_food_drink (143) [69c14a47-7369-48c9-8503-4f3c17b7e5e9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -56.571, + "y": 6.865, + "z": -295.848 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022107", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022107", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (21) [c3588021-0799-435d-ba59-350714e3c5aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 335.942, - "y": 5.262, - "z": 483.299 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402217b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402217b", - "_tpl": "5c13cef886f774072e618e82", - "upd": { - "StackObjectsCount": 1 + { + "Id": "canned_food_drink (144) [0b8e705b-b0bf-4281-b7e9-c6e248490267]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -56.571, + "y": 7.229, + "z": -296.281 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022109", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022109", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (26) [823e62f3-85df-4d92-a2e3-1fedb96975d0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 334.79, - "y": 5.595, - "z": 483.174 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402217d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402217d", - "_tpl": "5c13cef886f774072e618e82", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "m4a1_default (6) [fd69f34a-adca-4ddf-a949-7b87f5719b0f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -133.144, - "y": 41.827, - "z": 95.192 - }, - "Rotation": { - "x": -2.05704737e-7, - "y": -1.69511168e-6, - "z": 83.0808945 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402217e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402217e", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "Id": "canned_food_drink (18) [662d3cab-bf63-4980-83ea-373b44700c6a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 127.544, + "y": 3.018, + "z": 293.464 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402210b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402210b", + "_tpl": "57347d8724597744596b4e76", + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "canned_food_drink (189) [8b3b51eb-9f14-4133-9aa5-ec5b137e8b35]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -66.294, + "y": 20.873, + "z": -135.296 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402217f", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "66cbbe6ed31d686b2402217e", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbbe6ed31d686b24022180", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "66cbbe6ed31d686b2402217e", - "slotId": "mod_magazine" - }, - { - "_id": "66cbbe6ed31d686b2402218c", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbbe6ed31d686b24022180", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402210d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402210d", + "_tpl": "57347d8724597744596b4e76", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "canned_food_drink (206) [bf9d0a81-0897-4625-b48b-e0f3dbf55c20]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -72.242, + "y": 6.251, + "z": -280.411 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022181", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "66cbbe6ed31d686b2402217e", - "slotId": "mod_reciever" - }, - { - "_id": "66cbbe6ed31d686b24022182", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "66cbbe6ed31d686b24022181", - "slotId": "mod_barrel" - }, - { - "_id": "66cbbe6ed31d686b24022183", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "66cbbe6ed31d686b24022182", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbbe6ed31d686b24022184", - "_tpl": "56ea8d2fd2720b7c698b4570", - "parentId": "66cbbe6ed31d686b24022182", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbbe6ed31d686b24022185", - "_tpl": "55d4af3a4bdc2d972f8b456f", - "parentId": "66cbbe6ed31d686b24022184", - "slotId": "mod_sight_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402210f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402210f", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "canned_food_drink (214) [cb657d94-9d87-490e-88bc-4fb8662cb083]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -147.175, + "y": 12.776, + "z": -246.911 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022186", - "_tpl": "55d459824bdc2d892f8b4573", - "parentId": "66cbbe6ed31d686b24022181", - "slotId": "mod_handguard" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022111", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022111", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "canned_food_drink (216) [1b23f7c2-81dd-4d20-92c9-f01cef7ba5a3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.701, + "y": 3.89, + "z": -188.731 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022187", - "_tpl": "637f57b78d137b27f70c496a", - "parentId": "66cbbe6ed31d686b24022186", - "slotId": "mod_handguard" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022113", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022113", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "canned_food_drink (31) [e270fcda-de80-45a8-8f4a-ca394d321350]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 131.605, + "y": 6.933, + "z": 290.57 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022188", - "_tpl": "55d5f46a4bdc2d1b198b4567", - "parentId": "66cbbe6ed31d686b24022181", - "slotId": "mod_sight_rear" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022115", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022115", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "canned_food_drink (50) [98648a84-2ef1-4a75-8934-bd320f49036d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.181, + "y": 20.873, + "z": -133.774 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022189", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "66cbbe6ed31d686b2402217e", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022117", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022117", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "canned_food_drink (92) [e5a81618-85a0-4d4b-a515-bc4ab0516358]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -140.65, + "y": 6.247, + "z": 450.636 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402218a", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "66cbbe6ed31d686b24022189", - "slotId": "mod_stock_000" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022119", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022119", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "cigarettes (18) [102edbfd-40f1-40a1-bfa0-bc4cb2b8205b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.828, + "y": 4.689, + "z": 268.753 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402218b", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "66cbbe6ed31d686b2402217e", - "slotId": "mod_charge" - } - ] - }, - { - "Id": "Medical_all (1) [3c2adc7a-0ad4-4b0a-8683-7fdfd77d7835]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.065, - "y": 18.596, - "z": -136.883 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402211b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402211b", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402218e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402218e", - "_tpl": "5af0548586f7743a532b7e99", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food(small) (4) [ba67bfd1-770d-4f2a-a84c-e9fb71356566]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -128.431, + "y": 37.434, + "z": 102.706 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402211d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402211d", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (18) [ede05b39-e9ee-4797-a8a2-c113b2b6e091]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 31.327, - "y": 5.513, - "z": -645.327 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022190", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022190", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food(small) (59) [a435f7b8-cefd-4de7-8050-6d6020794bb4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -81.531, + "y": 19.582, + "z": -53.239 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402211f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402211f", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (28) [cce892f4-4bbe-46dd-9b28-8fccf7f8d95f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.111, - "y": 5.929, - "z": -649.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022192", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022192", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food(small) (93) [b55d836b-b7a7-4578-be04-1c0dc1db7b18]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -144.058, + "y": 12.219, + "z": -250.161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022121", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022121", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (43) [b5d89601-5727-47c6-b8c6-9486f5f6ee0f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.021, - "y": 5.698, - "z": -645.119 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022194", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022194", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food(small) (94) [2c97a484-059f-4180-a58b-44d08b242a7f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 135.963, + "y": 3.663, + "z": 271.519 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022123", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022123", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (47) [3a3a0ae3-799e-4b5f-9158-fe604f8490be]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 51.679, - "y": 6.382, - "z": -648.967 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022196", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022196", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (30) [2db3ee8d-5c3f-4b0a-bba8-37dcda794744]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 332.617, + "y": 3.22, + "z": 519.291 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022125", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022125", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (49) [2acef1c9-ac88-4195-a0d2-3c33ad8c9683]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 360.183, - "y": 20.281, - "z": 548.638 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022198", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022198", - "_tpl": "5ed5160a87bb8443d10680b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (32) [d546aaf2-80b0-4a6d-b561-67a10b33069d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 335.119, + "y": 2.99, + "z": 520.073 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022127", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022127", + "_tpl": "5d1b376e86f774252519444e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (52) [6165a042-5c96-47dd-aeb6-44d0f65e87d5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 360.765, - "y": 20.354, - "z": 550.069 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402219a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402219a", - "_tpl": "637b620db7afa97bfc3d7009", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (38) [dbd26a31-5b8a-4736-ada7-24bcb84c228e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 329.21, + "y": 3.158, + "z": 523.369 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022129", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022129", + "_tpl": "5d1b376e86f774252519444e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (55) [6080eba0-f314-4ecb-8a82-c14cd6bb36b5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 362.18, - "y": 20.867, - "z": 551.352 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402219c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402219c", - "_tpl": "5ed51652f6c34d2cc26336a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (46) [03b87203-070e-4c6c-8b3d-324dd64a826f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 341.175, + "y": 2.039, + "z": 521.531 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402212b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402212b", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (6) [e4d1c533-3110-4621-a9d7-6d1f4f376761]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -132.506, - "y": 21.425, - "z": 297.647 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402219e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402219e", - "_tpl": "5af0454c86f7746bf20992e8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (5) [03c3c367-f4db-4716-bf0d-8baf466f893b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -94.681, + "y": 10.784, + "z": -794.47 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402212d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402212d", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies (11) [21e3af91-d7af-4d32-ac7f-c7d4058f2229]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.34, - "y": 27.036, - "z": 135.45 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221a0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221a0", - "_tpl": "590c695186f7741e566b64a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (50) [0bcc4974-c13f-4e84-a405-0b687c559501]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 337.421, + "y": 3.438, + "z": 517.144 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402212f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402212f", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies (20) [4b36bfa8-1b36-46f5-98bc-1fe06e547041]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -0.142, - "y": 6.188, - "z": 286.199 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221a2", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221a2", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (65) [16edebc3-e3c2-4a79-8dbd-7a314129d499]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -200.284, + "y": 5.518, + "z": -640.984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022131", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022131", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies (5) [3e09b3a3-2ea3-4ba9-8931-6b840aabe1a2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.032, - "y": 34.299, - "z": 81.271 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221a4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221a4", - "_tpl": "62a0a043cf4a99369e2624a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (67) [0f0d4f9b-1339-4226-b01a-08ba581e5b9a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -199.486, + "y": 6.056, + "z": -645.695 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022133", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022133", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies (9) [9327e819-f31b-4cba-ab4d-aa2a03a28adf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -75.087, - "y": 27.036, - "z": 135.787 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221a6", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221a6", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (68) [c6f29b02-c5ce-4c03-91c5-7ad7411bc731]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -198.775, + "y": 6.056, + "z": -645.677 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022135", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022135", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds_varios_simple (8) [ee44d4ba-d46c-4757-83ad-386446da444a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -57.52, - "y": 6.168, - "z": -294.545 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221a8", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221a8", - "_tpl": "590c678286f77426c9660122", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (71) [38a03b6b-362b-4759-b65b-330551ff5a6b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -196.256, + "y": 6.006, + "z": -640.963 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022137", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022137", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds_varios_simple (9) [6398733b-7ac7-47f8-b113-d9b8d0bb0cb3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -57.52, - "y": 6.691, - "z": -294.545 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221aa", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221aa", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (12) [415a1fb8-9b03-4087-bec9-90a9303f5438]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -255.964, + "y": 14.708, + "z": -206.625 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022139", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022139", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds1_common (13) [2e0e3f2b-56da-4845-a7ba-578128277275]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -110.107, - "y": 0.126, - "z": -566.14 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221ac", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221ac", - "_tpl": "5b4335ba86f7744d2837a264", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (14) [85b7dcac-ff8b-422d-8125-de22a75df446]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.835, + "y": 40.297, + "z": 131.558 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402213b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402213b", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds1_common (15) [d5158e39-2bd2-45f0-9065-373d4a9478f1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -112.171, - "y": 0.149, - "z": -562.957 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221ae", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221ae", - "_tpl": "5d1b3a5d86f774252167ba22", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (21) [d6901698-9382-44a5-bb9c-3700189f6525]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -116.956, + "y": 40.858, + "z": 79.39 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402213d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402213d", + "_tpl": "65815f0e647e3d7246384e14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds1_stimul (17) [ed7b22dd-fc7e-46ef-ad82-710b9ab6b8d5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -113.854, - "y": 5.984, - "z": -756.48 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221b0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221b0", - "_tpl": "66507eabf5ddb0818b085b68", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (26) [3dcd0d3d-2848-4508-94db-ebfe605887a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -117.601, + "y": 40.961, + "z": 89.31 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402213f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402213f", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds1_stimul (33) [40d8c28b-9582-4199-8d77-2cc955badbab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -113.375, - "y": 11.644, - "z": -844.348 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221b2", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221b2", - "_tpl": "5ed5160a87bb8443d10680b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (31) [0c32b9fc-397d-49f2-a883-0f04084e8876]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -147.246, + "y": 40.887, + "z": 101.361 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022141", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022141", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds1_stimul (47) [f02c802f-89cf-4fff-a64c-95e7beaa502b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -121.471, - "y": 11.484, - "z": -841.057 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221b4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221b4", - "_tpl": "637b620db7afa97bfc3d7009", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (33) [e5072764-2e00-4b0c-9c82-326873b65c92]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -186.244, + "y": 13.663, + "z": -209.667 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022143", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022143", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds1_stimul (53) [72930645-010c-4ac7-8e1c-6f39935d82b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -118.778, - "y": 11.592, - "z": -836.514 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221b6", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221b6", - "_tpl": "66507eabf5ddb0818b085b68", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (37) [7e742bd6-ebc6-45e0-b3dd-fb94fb909a5b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.127, + "y": 40.59, + "z": 131.476 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022145", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022145", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds1_stimul (56) [af0992bb-abf2-42b2-8ddc-c8239ffb3481]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -118.109, - "y": 11.035, - "z": -836.484 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221b8", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221b8", - "_tpl": "66507eabf5ddb0818b085b68", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (6) [4d45d058-f066-419a-85d9-5bf97b691d5c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -189.644, + "y": 13.663, + "z": -207.991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022147", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022147", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "militar_electr_stuff (110) [25f3d55d-00de-4b98-a25f-c386f42fe085]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 373.494, - "y": 15.566, - "z": 571.349 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221ba", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221ba", - "_tpl": "5e2aee0a86f774755a234b62", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone (8) [f9b629e6-af49-4b43-b81b-2221a7f58d24]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -257.353, + "y": 15.11, + "z": -201.306 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022149", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022149", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "militar_electr_stuff (115) [d08b83ee-b403-457e-a13b-32710beb74fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 371.454, - "y": 15.86, - "z": 567.66 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221bc", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221bc", - "_tpl": "61bf7b6302b3924be92fa8c3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_barter_electr_hdd_barahol_quest [453592fd-2dcc-4705-809f-c2d043fb821c]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 352.6155, + "y": 16.2855, + "z": 545.5325 + }, + "Rotation": { + "x": 90.0, + "y": 143.941727, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402214b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402214b", + "_tpl": "628393620d8524273e7eb028", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "militar_electr_stuff (130) [3513e4d3-423b-48ee-9621-6aad606e2844]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 365.503, - "y": 15.753, - "z": 553.432 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221be", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221be", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_flash_card_soft_v3_quest [c621656e-8663-4a4b-821f-6227eb6519dd]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": -133.4922, + "y": 2.8779, + "z": -497.9937 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -139.22, + "y": 2.4206, + "z": -686.048 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -134.9648, + "y": 2.8757, + "z": -678.8499 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -178.272, + "y": 5.8165, + "z": -649.599 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": -197.6766, + "y": 5.7923, + "z": -651.9562 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": -122.483, + "y": 5.422, + "z": -733.8048 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": -114.446, + "y": 9.1012, + "z": -731.515 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[6]", + "Weight": 1, + "Position": { + "x": -65.779, + "y": 5.8221, + "z": -734.927 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[7]", + "Weight": 1, + "Position": { + "x": -61.8229, + "y": 2.7588, + "z": -689.4481 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[8]", + "Weight": 1, + "Position": { + "x": 30.5200958, + "y": 9.1071, + "z": -646.7069 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[9]", + "Weight": 1, + "Position": { + "x": 27.9509964, + "y": 9.0999, + "z": -650.5705 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[10]", + "Weight": 1, + "Position": { + "x": 50.5459976, + "y": 5.927, + "z": -649.859 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[11]", + "Weight": 1, + "Position": { + "x": 0.192001343, + "y": 2.8773, + "z": -598.199 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[12]", + "Weight": 1, + "Position": { + "x": -28.7638016, + "y": 2.8203, + "z": -525.2898 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[13]", + "Weight": 1, + "Position": { + "x": -46.7180023, + "y": 8.1166, + "z": -519.991 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[14]", + "Weight": 1, + "Position": { + "x": -100.754, + "y": 1.0697, + "z": -491.3172 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[15]", + "Weight": 1, + "Position": { + "x": -133.4922, + "y": 2.8779, + "z": -497.9937 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[16]", + "Weight": 1, + "Position": { + "x": -171.334, + "y": 9.2309, + "z": -633.393 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[17]", + "Weight": 1, + "Position": { + "x": -63.1750031, + "y": 5.2796, + "z": -627.414 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[18]", + "Weight": 1, + "Position": { + "x": -69.882, + "y": 2.4355, + "z": -654.615967 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[19]", + "Weight": 1, + "Position": { + "x": -68.6482, + "y": 2.978, + "z": -697.1657 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } } - } - ] - }, - { - "Id": "militar_electr_stuff (15) [24e1a0a4-ea5f-48c6-9735-6171ea713c3d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -199.209, - "y": 7.865, - "z": -665.31 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402214d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402214d", + "_tpl": "6331bb0d1aa9f42b804997a6", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221c0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221c0", - "_tpl": "5d0375ff86f774186372f685", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_quest_keeper2_kompr_fake_final [48ceb5d9-a0d0-458e-b3bc-ab9622ffbc79]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 21.2779083, + "y": 5.31199932, + "z": -445.487946 + }, + "Rotation": { + "x": -1.21621515e-5, + "y": 323.941772, + "z": 3.987292e-5 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 21.2779083, + "y": 5.31199932, + "z": -445.487946 + }, + "Rotation": { + "x": -1.21621515e-5, + "y": 323.941772, + "z": 3.987292e-5 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 32.03167, + "y": 4.912996, + "z": -454.489777 + }, + "Rotation": { + "x": -3.26002446e-5, + "y": -0.000218542715, + "z": 270.000031 + } } - } - ] - }, - { - "Id": "militar_electr_stuff (24) [b83c0b90-29d3-4367-9a50-aceb87bd4c06]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -199.146, - "y": 8.633, - "z": -700.615 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402214f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402214f", + "_tpl": "6398a0861c712b1e1d4dadf1", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221c2", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221c2", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_spec_radiotransmitterbody [74b09da8-cea5-4905-a508-6f3db360492e]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -114.139, + "y": 40.3917, + "z": 95.1129761 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -140.383, + "y": 2.9291, + "z": -686.027 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -69.291, + "y": 3.4699, + "z": -695.73 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 40.2740021, + "y": 15.1105, + "z": -619.311 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": -46.276, + "y": 8.6158, + "z": -521.0152 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": -100.585, + "y": 1.5309, + "z": -491.943 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": -77.514, + "y": 20.469, + "z": -72.0840149 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[6]", + "Weight": 1, + "Position": { + "x": -80.694, + "y": 18.8225, + "z": -92.13699 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[7]", + "Weight": 1, + "Position": { + "x": -116.042, + "y": 40.3917, + "z": 91.302 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[8]", + "Weight": 1, + "Position": { + "x": -114.139, + "y": 40.3917, + "z": 95.1129761 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[9]", + "Weight": 1, + "Position": { + "x": -68.905, + "y": 26.475, + "z": 136.367 + }, + "Rotation": { + "x": 47.4469948, + "y": 253.784988, + "z": 180 + } + }, + { + "Name": "groupPoint[10]", + "Weight": 1, + "Position": { + "x": 135.2674, + "y": 5.6936, + "z": 287.9223 + }, + "Rotation": { + "x": 355.801, + "y": 163.206985, + "z": 1.07008937e-7 + } + }, + { + "Name": "groupPoint[11]", + "Weight": 1, + "Position": { + "x": 1.35900116, + "y": 2.1595, + "z": -630.858032 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[12]", + "Weight": 1, + "Position": { + "x": -54.7257, + "y": 6.5304, + "z": -294.8269 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[13]", + "Weight": 1, + "Position": { + "x": -81.666, + "y": 22.3841, + "z": -91.04553 + }, + "Rotation": { + "x": 0, + "y": 74.14857, + "z": 0 + } + }, + { + "Name": "groupPoint[14]", + "Weight": 1, + "Position": { + "x": -115.973007, + "y": 41.2528, + "z": 88.95398 + }, + "Rotation": { + "x": 0, + "y": 246.140961, + "z": 0 + } + }, + { + "Name": "groupPoint[15]", + "Weight": 1, + "Position": { + "x": -180.094559, + "y": 15.249, + "z": -651.085 + }, + "Rotation": { + "x": 0, + "y": 196.372635, + "z": 0 + } + }, + { + "Name": "groupPoint[16]", + "Weight": 1, + "Position": { + "x": -60.6951, + "y": 5.3316, + "z": -627.515869 + }, + "Rotation": { + "x": 0, + "y": 226.8926, + "z": 0 + } + }, + { + "Name": "groupPoint[17]", + "Weight": 1, + "Position": { + "x": -54.7156, + "y": 2.5759, + "z": -525.9251 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[18]", + "Weight": 1, + "Position": { + "x": -125.2112, + "y": 3.9244, + "z": -530.8186 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[19]", + "Weight": 1, + "Position": { + "x": 0.427200317, + "y": 3.3931, + "z": -654.5141 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + } + ], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022151", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022151", + "_tpl": "6399f54b0a36db13c823ad21", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "militar_electr_stuff [b87bdf53-65f7-49af-bbfb-85515bedfd55]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.529, - "y": 21.251, - "z": 301.203 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221c4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221c4", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jev_small [8682324c-9035-48dd-b904-86b0379aaa52]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -256.165, + "y": 15.039, + "z": -205.067 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022153", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022153", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (10) [5a7683c1-c273-4fb9-be05-d19c642d40a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 60.621, - "y": 11.291, - "z": -811.655 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221c7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221c7", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Jeverly&food (3) [c2a51977-bd81-480d-b372-6633ff15dc78]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 87.892, + "y": 1.407, + "z": 463.806 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221c8", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbbe6ed31d686b240221c7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022155", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022155", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (100) [0cb559e6-05ea-477c-ba55-5bb4861e6155]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 109.048, - "y": 0.638, - "z": -164.334 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221cb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221cb", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Jeverly&food (4) [7ecadc1b-e75d-43b5-9afd-05dc1fe10a81]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 87.71, + "y": 1.387, + "z": 463.316 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221cc", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbbe6ed31d686b240221cb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022157", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022157", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (102) [a7eec37a-8e81-4649-8b58-0d68286d6d06]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 54.035, - "y": 1.663, - "z": -100.371 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221ce", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221ce", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly&food (5) [63bcd87c-faa1-4998-9ba3-fb03f305aa79]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -69.9567642, + "y": 7.201, + "z": -290.5127 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022159", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022159", + "_tpl": "635a758bfefc88a93f021b8a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (106) [294f0bef-015d-4879-aac2-114e456d8cb3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -14.121, - "y": 0.761, - "z": 53.258 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221d0", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221d0", - "_tpl": "5d235b4d86f7742e017bc88a", - "upd": { - "StackObjectsCount": 2 + { + "Id": "Jeverly&food (6) [3ab32fd1-5702-41e9-9584-8a7b940ea7af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -134.829, + "y": 32.106, + "z": 274.996 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402215b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402215b", + "_tpl": "57513f9324597720a7128161", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (107) [1331c79b-9b52-413a-afe2-7c52d315285d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -13.612, - "y": 0.761, - "z": 53.14 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221d4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221d4", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Jeverly&food (7) [cf30013f-0a00-4653-ae67-e98c77b733ea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -133.053, + "y": 32.106, + "z": 274.087 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221d5", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b240221d4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402215d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402215d", + "_tpl": "575146b724597720a27126d5", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Jeverly&food (9) [3a5a18c5-70b1-45be-91ee-caff2aa309b2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -73.981, + "y": 19.369, + "z": -92.398 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221d6", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b240221d4", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402215f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402215f", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (108) [20fa0e9f-5ecc-4965-8169-97f8748635e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -183.349, - "y": 5.129, - "z": -451.523 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221d9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221d9", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "jeverly_common (11) [2d28b2b5-ee71-4aa1-bd78-8d71b230d8e5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -142.463, + "y": 12.401, + "z": -248.087 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221da", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbbe6ed31d686b240221d9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022161", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022161", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (11) [f3cf8a8a-dfd9-4759-81b4-d9c9849cb512]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.601, - "y": 11.481, - "z": -792.419 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221dd", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221dd", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "jeverly_common (19) [7a166371-19e5-4d9b-bf61-ff79cfb0f294]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -75.83, + "y": 9.277, + "z": -293.835 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221de", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbbe6ed31d686b240221dd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022163", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022163", + "_tpl": "59faf7ca86f7740dbe19f6c2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (110) [2a6d0784-f0ac-4ded-a4f0-fc58f9a57f1e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -181.991, - "y": 5.129, - "z": -451.155 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221e1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221e1", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_common (29) [30bdeea0-39ea-4155-8997-0fe5f3a1611e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 124.992, + "y": 0.554, + "z": 282.003 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022165", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022165", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "jeverly_common (35) [d76b54b7-72dd-4db5-a0b2-0d4c146ec5ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 127.153, + "y": 4.475, + "z": 271.193 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221e2", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbbe6ed31d686b240221e1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022167", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022167", + "_tpl": "655c652d60d0ac437100fed7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (112) [3f77985b-af59-492f-ae36-de78922e75c4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -250.403, - "y": 0.137, - "z": -389.55 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221e5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221e5", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_common (48) [318dd7c3-7dcb-429a-89df-614efe020d82]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 329.226, + "y": 6.014, + "z": 484.262 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022169", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022169", + "_tpl": "655c67ab0d37ca5135388f4b", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "jeverly_common (50) [933c875a-8ac8-4edc-a90f-9d85f7495409]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -259.345, + "y": 14.345, + "z": -208.509 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221e6", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b240221e5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402216b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402216b", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (115) [1711f538-ed11-4eb3-90ab-60589b3eeb2d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -212.579, - "y": 2.336, - "z": -365.794 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221e9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221e9", - "_tpl": "65702420bfc87b3a34093219", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_common (64) [665bb6b7-bbd0-478c-b206-f4c535321f42]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 329.709, + "y": 5.75, + "z": 485.471 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402216d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402216d", + "_tpl": "59faf7ca86f7740dbe19f6c2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "jeverly_common (74) [728c3549-c6f1-4420-ab8c-24b337d9a02a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 324.488, + "y": 6.288, + "z": 484.723 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221ea", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66cbbe6ed31d686b240221e9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402216f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402216f", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (118) [948f5476-2658-4555-b63e-b9151dea1e4b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -83.265, - "y": 20.101, - "z": -135.287 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221ec", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221ec", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_common (75) [2ca2cccd-1dfd-4ed7-bc20-d34ae23472b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 322.128, + "y": 5.746, + "z": 487.657 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022171", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022171", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (12) [e48c2692-9c32-4794-bf3a-8783ae5c739f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.275, - "y": 11.46, - "z": -792.405 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221ef", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221ef", - "_tpl": "6570251ccfc010a0f5006a13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_common (76) [9ad99929-948f-4ef3-8d75-c7d979d1f7f2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 323.011, + "y": 5.746, + "z": 488.102 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022173", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022173", + "_tpl": "5e54f62086f774219b0f1937", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "jeverly_common (92) [2d0b9868-f5c1-4b20-afe5-77d566850b52]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 328.841, + "y": 5.305, + "z": 484.795 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221f0", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbbe6ed31d686b240221ef", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022175", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022175", + "_tpl": "5f745ee30acaeb0d490d8c5b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (120) [aab0f460-479a-4b16-adf5-c79bc3b4068d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.989, - "y": 20.482, - "z": -129.816 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221f3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221f3", - "_tpl": "657025bbcfc010a0f5006a35", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_common (94) [ded189e7-8d37-4757-bff4-83a179ab031c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 327.242, + "y": 5.305, + "z": 483.857 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022177", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022177", + "_tpl": "655c67ab0d37ca5135388f4b", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_toospaste_stuff (2) [f2b6be56-fe1e-4f5f-ab99-35f9e112c97c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -112.281, + "y": 33.461, + "z": 80.885 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221f4", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbbe6ed31d686b240221f3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022179", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022179", + "_tpl": "57347c93245977448d35f6e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (122) [531090f1-0a67-4a64-8ba7-d49a27338cfd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -114.323, - "y": 18.794, - "z": -111.806 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221f7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221f7", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (21) [c3588021-0799-435d-ba59-350714e3c5aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 335.942, + "y": 5.262, + "z": 483.299 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402217b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402217b", + "_tpl": "5c13cef886f774072e618e82", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_toospaste_stuff (26) [823e62f3-85df-4d92-a2e3-1fedb96975d0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 334.79, + "y": 5.595, + "z": 483.174 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221f8", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbbe6ed31d686b240221f7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402217d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402217d", + "_tpl": "5c13cef886f774072e618e82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (125) [58ed5ac3-7f5a-410c-9aed-864234f31eae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.72, - "y": 18.941, - "z": -53.252 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221fb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221fb", - "_tpl": "65702614c5d7d4cb4d07858b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "m4a1_default (6) [fd69f34a-adca-4ddf-a949-7b87f5719b0f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -133.144, + "y": 41.827, + "z": 95.192 + }, + "Rotation": { + "x": -2.05704737e-7, + "y": -1.69511168e-6, + "z": 83.0808945 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402217e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402217e", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbbe6ed31d686b2402217f", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "66cbbe6ed31d686b2402217e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbbe6ed31d686b24022180", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "66cbbe6ed31d686b2402217e", + "slotId": "mod_magazine" + }, + { + "_id": "66cbbe6ed31d686b2402218c", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbbe6ed31d686b24022180", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 + } + }, + { + "_id": "66cbbe6ed31d686b24022181", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "66cbbe6ed31d686b2402217e", + "slotId": "mod_reciever" + }, + { + "_id": "66cbbe6ed31d686b24022182", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "66cbbe6ed31d686b24022181", + "slotId": "mod_barrel" + }, + { + "_id": "66cbbe6ed31d686b24022183", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "66cbbe6ed31d686b24022182", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbbe6ed31d686b24022184", + "_tpl": "56ea8d2fd2720b7c698b4570", + "parentId": "66cbbe6ed31d686b24022182", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbbe6ed31d686b24022185", + "_tpl": "55d4af3a4bdc2d972f8b456f", + "parentId": "66cbbe6ed31d686b24022184", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbbe6ed31d686b24022186", + "_tpl": "55d459824bdc2d892f8b4573", + "parentId": "66cbbe6ed31d686b24022181", + "slotId": "mod_handguard" + }, + { + "_id": "66cbbe6ed31d686b24022187", + "_tpl": "637f57b78d137b27f70c496a", + "parentId": "66cbbe6ed31d686b24022186", + "slotId": "mod_handguard" + }, + { + "_id": "66cbbe6ed31d686b24022188", + "_tpl": "55d5f46a4bdc2d1b198b4567", + "parentId": "66cbbe6ed31d686b24022181", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbbe6ed31d686b24022189", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "66cbbe6ed31d686b2402217e", + "slotId": "mod_stock" + }, + { + "_id": "66cbbe6ed31d686b2402218a", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "66cbbe6ed31d686b24022189", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbbe6ed31d686b2402218b", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "66cbbe6ed31d686b2402217e", + "slotId": "mod_charge" } + ] + }, + { + "Id": "Medical_all (1) [3c2adc7a-0ad4-4b0a-8683-7fdfd77d7835]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.065, + "y": 18.596, + "z": -136.883 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240221fc", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbbe6ed31d686b240221fb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402218e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402218e", + "_tpl": "5af0548586f7743a532b7e99", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (126) [6e637bbc-9f63-484e-87fe-8fe681f59798]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -143.157, - "y": 40.528, - "z": 107.839 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240221fe", - "Items": [ - { - "_id": "66cbbe6ed31d686b240221fe", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 665 + { + "Id": "Medical_all (18) [ede05b39-e9ee-4797-a8a2-c113b2b6e091]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 31.327, + "y": 5.513, + "z": -645.327 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022190", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022190", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (127) [6f188cb3-7c9a-4eab-a522-5c4bb969f393]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -143.939, - "y": 40.528, - "z": 108.277 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022200", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022200", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all (28) [cce892f4-4bbe-46dd-9b28-8fccf7f8d95f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.111, + "y": 5.929, + "z": -649.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022192", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022192", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (129) [b73d6b77-e278-4740-a6e0-ced8c2f0984a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -128.82, - "y": 40.54, - "z": 99.249 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022202", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022202", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all (43) [b5d89601-5727-47c6-b8c6-9486f5f6ee0f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.021, + "y": 5.698, + "z": -645.119 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022194", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022194", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (13) [47cc6b6f-e1a2-4400-ba7e-7bf2bf0ed7e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 17.005, - "y": 11.787, - "z": -803.914 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022205", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022205", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Medical_all (47) [3a3a0ae3-799e-4b5f-9158-fe604f8490be]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 51.679, + "y": 6.382, + "z": -648.967 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022206", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbbe6ed31d686b24022205", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022196", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022196", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (131) [7edf0e22-0c70-4e87-ab97-329a4cb1db09]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -123.998, - "y": 40.825, - "z": 100.743 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022209", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022209", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Medical_all (49) [2acef1c9-ac88-4195-a0d2-3c33ad8c9683]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 360.183, + "y": 20.281, + "z": 548.638 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402220a", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbbe6ed31d686b24022209", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022198", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022198", + "_tpl": "5ed5160a87bb8443d10680b5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (134) [abecdf0d-aa4e-4ee6-aac3-561be4c2aa21]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.871, - "y": 40.828, - "z": 87.288 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402220d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402220d", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Medical_all (52) [6165a042-5c96-47dd-aeb6-44d0f65e87d5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 360.765, + "y": 20.354, + "z": 550.069 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402220e", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66cbbe6ed31d686b2402220d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402219a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402219a", + "_tpl": "637b620db7afa97bfc3d7009", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (136) [2f810e0a-49a5-4a75-ac32-281f20000a06]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -102.581, - "y": 33.523, - "z": 84.031 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022211", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022211", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Medical_all (55) [6080eba0-f314-4ecb-8a82-c14cd6bb36b5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 362.18, + "y": 20.867, + "z": 551.352 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022212", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbbe6ed31d686b24022211", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402219c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402219c", + "_tpl": "5ed51652f6c34d2cc26336a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (137) [f84830f1-3acf-4aac-b997-9f2f807591f8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -101.798, - "y": 33.523, - "z": 86.528 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022216", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022216", - "_tpl": "57372ee1245977685d4159b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Medical_all (6) [e4d1c533-3110-4621-a9d7-6d1f4f376761]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -132.506, + "y": 21.425, + "z": 297.647 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022217", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbbe6ed31d686b24022216", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402219e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402219e", + "_tpl": "5af0454c86f7746bf20992e8", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Medical_all&suplies (11) [21e3af91-d7af-4d32-ac7f-c7d4058f2229]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.34, + "y": 27.036, + "z": 135.45 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022218", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbbe6ed31d686b24022216", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221a0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221a0", + "_tpl": "590c695186f7741e566b64a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (138) [fc2349c7-687a-4eac-8ddc-93017f6ef920]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.316, - "y": 37.325, - "z": 99.823 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402221a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402221a", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all&suplies (20) [4b36bfa8-1b36-46f5-98bc-1fe06e547041]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -0.142, + "y": 6.188, + "z": 286.199 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221a2", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221a2", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (140) [67138838-cf30-46d2-a07a-a659be2a7617]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -146.735, - "y": 11.868, - "z": -230.911 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402221d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402221d", - "_tpl": "6570251ccfc010a0f5006a13", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Medical_all&suplies (5) [3e09b3a3-2ea3-4ba9-8931-6b840aabe1a2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.032, + "y": 34.299, + "z": 81.271 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402221e", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbbe6ed31d686b2402221d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221a4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221a4", + "_tpl": "62a0a043cf4a99369e2624a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (142) [a029596e-6e07-4614-b852-440d76c678f6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -149.407, - "y": 12.189, - "z": -232.409 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022220", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022220", - "_tpl": "60098b1705871270cd5352a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all&suplies (9) [9327e819-f31b-4cba-ab4d-aa2a03a28adf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -75.087, + "y": 27.036, + "z": 135.787 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221a6", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221a6", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (143) [e91e9b02-3784-4cf8-ba32-0b0df9e3d36d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -83.923, - "y": 6.186, - "z": -295.759 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022223", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022223", - "_tpl": "6579847c5a0e5879d12f2873", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "meds_varios_simple (8) [ee44d4ba-d46c-4757-83ad-386446da444a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -57.52, + "y": 6.168, + "z": -294.545 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022224", - "_tpl": "6576f4708ca9c4381d16cd9d", - "parentId": "66cbbe6ed31d686b24022223", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221a8", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221a8", + "_tpl": "590c678286f77426c9660122", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (144) [7104b13a-714b-4378-b7ae-ca36f1abbf7f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -85.501, - "y": 6.731, - "z": -294.922 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022228", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022228", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "meds_varios_simple (9) [6398733b-7ac7-47f8-b113-d9b8d0bb0cb3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -57.52, + "y": 6.691, + "z": -294.545 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022229", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbbe6ed31d686b24022228", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221aa", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221aa", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "meds1_common (13) [2e0e3f2b-56da-4845-a7ba-578128277275]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -110.107, + "y": 0.126, + "z": -566.14 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402222a", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbbe6ed31d686b24022228", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221ac", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221ac", + "_tpl": "5b4335ba86f7744d2837a264", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (145) [db635c8d-ed04-4e95-82aa-ed2d2eedd826]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -80.729, - "y": 6.17, - "z": -282.193 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402222d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402222d", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "meds1_common (15) [d5158e39-2bd2-45f0-9065-373d4a9478f1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -112.171, + "y": 0.149, + "z": -562.957 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402222e", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbbe6ed31d686b2402222d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221ae", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221ae", + "_tpl": "5d1b3a5d86f774252167ba22", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (147) [de0690a6-930f-4834-b460-96a26d2dead6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.299, - "y": 6.741, - "z": -264.873 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022231", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022231", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "meds1_stimul (17) [ed7b22dd-fc7e-46ef-ad82-710b9ab6b8d5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -113.854, + "y": 5.984, + "z": -756.48 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022232", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbbe6ed31d686b24022231", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221b0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221b0", + "_tpl": "66507eabf5ddb0818b085b68", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (149) [a8dde1aa-72e9-4336-9b49-441757cd3714]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -70.656, - "y": 6.954, - "z": -277.624 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022235", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022235", - "_tpl": "6570259fcfc010a0f5006a32", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "meds1_stimul (33) [40d8c28b-9582-4199-8d77-2cc955badbab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -113.375, + "y": 11.644, + "z": -844.348 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022236", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66cbbe6ed31d686b24022235", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221b2", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221b2", + "_tpl": "5ed5160a87bb8443d10680b5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (153) [8ec344f4-686e-40bb-bc3e-6a17c1ad672d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -73.319, - "y": 9.949, - "z": -297.522 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022239", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022239", - "_tpl": "64acea09c4eda9354b0226ad", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "meds1_stimul (47) [f02c802f-89cf-4fff-a64c-95e7beaa502b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -121.471, + "y": 11.484, + "z": -841.057 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402223a", - "_tpl": "59e4cf5286f7741778269d8a", - "parentId": "66cbbe6ed31d686b24022239", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221b4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221b4", + "_tpl": "637b620db7afa97bfc3d7009", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (154) [f5ff5687-26b1-47c7-9d34-282beb704ace]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -72.892, - "y": 9.949, - "z": -297.469 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402223d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402223d", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "meds1_stimul (53) [72930645-010c-4ac7-8e1c-6f39935d82b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -118.778, + "y": 11.592, + "z": -836.514 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402223e", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b2402223d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221b6", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221b6", + "_tpl": "66507eabf5ddb0818b085b68", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (155) [8ec94a8f-632b-4f32-9318-5505e70cca46]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -82.431, - "y": 22.603, - "z": -56.764 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022241", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022241", - "_tpl": "65702406bfc87b3a34093216", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "meds1_stimul (56) [af0992bb-abf2-42b2-8ddc-c8239ffb3481]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -118.109, + "y": 11.035, + "z": -836.484 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022242", - "_tpl": "5efb0fc6aeb21837e749c801", - "parentId": "66cbbe6ed31d686b24022241", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221b8", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221b8", + "_tpl": "66507eabf5ddb0818b085b68", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (156) [86964ffb-9e38-46f1-ba47-8bc2d2e70f04]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -82.508, - "y": 22.89, - "z": -55.825 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022246", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022246", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "militar_electr_stuff (110) [25f3d55d-00de-4b98-a25f-c386f42fe085]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 373.494, + "y": 15.566, + "z": 571.349 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022247", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6ed31d686b24022246", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221ba", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221ba", + "_tpl": "5e2aee0a86f774755a234b62", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "militar_electr_stuff (115) [d08b83ee-b403-457e-a13b-32710beb74fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 371.454, + "y": 15.86, + "z": 567.66 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022248", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6ed31d686b24022246", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221bc", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221bc", + "_tpl": "61bf7b6302b3924be92fa8c3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (157) [b08258a2-279a-424a-baf6-44fcd9450b32]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -83.045, - "y": 22.091, - "z": -56.99 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402224c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402224c", - "_tpl": "65702681bfc87b3a3409325f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "militar_electr_stuff (130) [3513e4d3-423b-48ee-9621-6aad606e2844]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 365.503, + "y": 15.753, + "z": 553.432 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402224d", - "_tpl": "601949593ae8f707c4608daa", - "parentId": "66cbbe6ed31d686b2402224c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221be", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221be", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "militar_electr_stuff (15) [24e1a0a4-ea5f-48c6-9735-6171ea713c3d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -199.209, + "y": 7.865, + "z": -665.31 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402224e", - "_tpl": "601949593ae8f707c4608daa", - "parentId": "66cbbe6ed31d686b2402224c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221c0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221c0", + "_tpl": "5d0375ff86f774186372f685", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (159) [2f16faf2-b9a8-4c7d-bdaf-451760a87e10]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -92.736, - "y": 7.318, - "z": -266.7 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022250", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022250", - "_tpl": "590c5f0d86f77413997acfab", - "upd": { - "StackObjectsCount": 1 + { + "Id": "militar_electr_stuff (24) [b83c0b90-29d3-4367-9a50-aceb87bd4c06]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -199.146, + "y": 8.633, + "z": -700.615 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221c2", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221c2", + "_tpl": "5c06779c86f77426e00dd782", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (160) [fe92fd1c-9fbf-450b-b2ed-622bee53beaa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -91.331, - "y": 7.318, - "z": -267.692 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022253", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022253", - "_tpl": "657024e3c5d7d4cb4d07856a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "militar_electr_stuff [b87bdf53-65f7-49af-bbfb-85515bedfd55]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.529, + "y": 21.251, + "z": 301.203 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022254", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbbe6ed31d686b24022253", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221c4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221c4", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (161) [21cdb821-46cf-4737-aa9d-5ec55852135b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -112.443, - "y": 7.252, - "z": -278.746 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022258", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022258", - "_tpl": "6570249bcfc010a0f5006a07", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (10) [5a7683c1-c273-4fb9-be05-d19c642d40a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 60.621, + "y": 11.291, + "z": -811.655 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022259", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24022258", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221c7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221c7", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221c8", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbbe6ed31d686b240221c7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "mix_food_ammo_common (100) [0cb559e6-05ea-477c-ba55-5bb4861e6155]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 109.048, + "y": 0.638, + "z": -164.334 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402225a", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b24022258", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221cb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221cb", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221cc", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbbe6ed31d686b240221cb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (162) [bdad5d3a-6bc5-4a33-8ef0-24866edd89d5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.662, - "y": 7.252, - "z": -279.802 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402225d", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402225d", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (102) [a7eec37a-8e81-4649-8b58-0d68286d6d06]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 54.035, + "y": 1.663, + "z": -100.371 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402225e", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbbe6ed31d686b2402225d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221ce", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221ce", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (164) [c26033d5-0872-4a4c-bf29-c453f32dbef1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.555, - "y": 7.232, - "z": -273.185 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022261", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022261", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (106) [294f0bef-015d-4879-aac2-114e456d8cb3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -14.121, + "y": 0.761, + "z": 53.258 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022262", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbbe6ed31d686b24022261", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221d0", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221d0", + "_tpl": "5d235b4d86f7742e017bc88a", + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (165) [e03be11e-2424-4144-b7d4-901fdb8b93bb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -123.789, - "y": 7.232, - "z": -273.735 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022264", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022264", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (107) [1331c79b-9b52-413a-afe2-7c52d315285d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -13.612, + "y": 0.761, + "z": 53.14 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221d4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221d4", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221d5", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b240221d4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b240221d6", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b240221d4", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (168) [3f7a59f9-1492-49fb-a858-72e8e6cc0e64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 2.992, - "y": 4.986, - "z": -447.04 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022267", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022267", - "_tpl": "6570251ccfc010a0f5006a13", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (108) [20fa0e9f-5ecc-4965-8169-97f8748635e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -183.349, + "y": 5.129, + "z": -451.523 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022268", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbbe6ed31d686b24022267", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221d9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221d9", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221da", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbbe6ed31d686b240221d9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (169) [d599b937-b448-4309-89a1-bf8371814b4e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.409, - "y": 4.986, - "z": -447.93 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402226c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402226c", - "_tpl": "6570266bc5d7d4cb4d078594", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (11) [f3cf8a8a-dfd9-4759-81b4-d9c9849cb512]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.601, + "y": 11.481, + "z": -792.419 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402226d", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6ed31d686b2402226c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221dd", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221dd", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221de", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbbe6ed31d686b240221dd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "mix_food_ammo_common (110) [2a6d0784-f0ac-4ded-a4f0-fc58f9a57f1e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -181.991, + "y": 5.129, + "z": -451.155 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402226e", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6ed31d686b2402226c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221e1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221e1", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221e2", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbbe6ed31d686b240221e1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (171) [3ee55da9-5a6e-49f5-be46-1af15716a97c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -205.65, - "y": 7.187, - "z": 415.746 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022271", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022271", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (112) [3f77985b-af59-492f-ae36-de78922e75c4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -250.403, + "y": 0.137, + "z": -389.55 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022272", - "_tpl": "5a269f97c4a282000b151807", - "parentId": "66cbbe6ed31d686b24022271", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221e5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221e5", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221e6", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b240221e5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (172) [bb45de32-7f64-4c7d-a816-b62664a1fd98]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -205.193, - "y": 7.187, - "z": 415.421 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022275", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022275", - "_tpl": "6570240a1419851aef03e6f7", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (115) [1711f538-ed11-4eb3-90ab-60589b3eeb2d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -212.579, + "y": 2.336, + "z": -365.794 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022276", - "_tpl": "5efb0d4f4bc50b58e81710f3", - "parentId": "66cbbe6ed31d686b24022275", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221e9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221e9", + "_tpl": "65702420bfc87b3a34093219", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221ea", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66cbbe6ed31d686b240221e9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (181) [3fe795ab-5ea3-4276-887d-512e39a7e3f0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -221.316, - "y": 6.637, - "z": 423.373 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022279", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022279", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (118) [948f5476-2658-4555-b63e-b9151dea1e4b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -83.265, + "y": 20.101, + "z": -135.287 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402227a", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbbe6ed31d686b24022279", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221ec", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221ec", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (182) [9d7530ce-e8d3-42bb-bd1f-c9fe6b98915c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -209.561, - "y": 6.945, - "z": 414.718 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402227c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402227c", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 99 + { + "Id": "mix_food_ammo_common (12) [e48c2692-9c32-4794-bf3a-8783ae5c739f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.275, + "y": 11.46, + "z": -792.405 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221ef", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221ef", + "_tpl": "6570251ccfc010a0f5006a13", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221f0", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbbe6ed31d686b240221ef", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (184) [f63bfd79-9430-4cd8-9adf-ff641ce5f963]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -209.268, - "y": 6.752, - "z": 413.887 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402227e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402227e", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (120) [aab0f460-479a-4b16-adf5-c79bc3b4068d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.989, + "y": 20.482, + "z": -129.816 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221f3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221f3", + "_tpl": "657025bbcfc010a0f5006a35", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221f4", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbbe6ed31d686b240221f3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (185) [dd17a119-0f3b-4a69-b401-7e74ce2ad924]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.013, - "y": 0.502, - "z": 568.046 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022280", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022280", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (122) [531090f1-0a67-4a64-8ba7-d49a27338cfd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -114.323, + "y": 18.794, + "z": -111.806 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221f7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221f7", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221f8", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbbe6ed31d686b240221f7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (187) [6eff0a34-c825-4b57-9069-0ad8b56c0ced]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.484, - "y": 1.666, - "z": 565.839 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022283", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022283", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (125) [58ed5ac3-7f5a-410c-9aed-864234f31eae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.72, + "y": 18.941, + "z": -53.252 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221fb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221fb", + "_tpl": "65702614c5d7d4cb4d07858b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240221fc", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbbe6ed31d686b240221fb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "mix_food_ammo_common (126) [6e637bbc-9f63-484e-87fe-8fe681f59798]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -143.157, + "y": 40.528, + "z": 107.839 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022284", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b24022283", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240221fe", + "Items": [ + { + "_id": "66cbbe6ed31d686b240221fe", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 665 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (188) [add4aaf9-ee9a-4168-9605-024ac8e15a8e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -63.461, - "y": 11.234, - "z": -904.396 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022287", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022287", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (127) [6f188cb3-7c9a-4eab-a522-5c4bb969f393]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -143.939, + "y": 40.528, + "z": 108.277 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022288", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbbe6ed31d686b24022287", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022200", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022200", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (190) [e81d0aa4-4b64-4607-b5a3-4c21133ea721]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -66.297, - "y": 11.234, - "z": -904.312 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402228b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402228b", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (129) [b73d6b77-e278-4740-a6e0-ced8c2f0984a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -128.82, + "y": 40.54, + "z": 99.249 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402228c", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbbe6ed31d686b2402228b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022202", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022202", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (191) [5aee120b-f186-47f5-bc2b-223019ff94ac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -65.768, - "y": 11.234, - "z": -903.359 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402228f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402228f", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (13) [47cc6b6f-e1a2-4400-ba7e-7bf2bf0ed7e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 17.005, + "y": 11.787, + "z": -803.914 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022290", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b2402228f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022205", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022205", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022206", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbbe6ed31d686b24022205", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (193) [3179c430-6a4a-486e-be49-c258cd14a56a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -69.28, - "y": 10.8, - "z": -907.864 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022293", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022293", - "_tpl": "657025d4c5d7d4cb4d078585", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (131) [7edf0e22-0c70-4e87-ab97-329a4cb1db09]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -123.998, + "y": 40.825, + "z": 100.743 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022294", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbbe6ed31d686b24022293", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022209", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022209", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402220a", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbbe6ed31d686b24022209", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (194) [5c1bc316-bac3-4eab-904e-a45a32220c75]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.43, - "y": 10.555, - "z": -912.821 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022297", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022297", - "_tpl": "5737266524597761006c6a8c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (134) [abecdf0d-aa4e-4ee6-aac3-561be4c2aa21]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.871, + "y": 40.828, + "z": 87.288 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022298", - "_tpl": "57371eb62459776125652ac1", - "parentId": "66cbbe6ed31d686b24022297", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402220d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402220d", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402220e", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66cbbe6ed31d686b2402220d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (196) [f3243e91-662f-43b2-8853-3b95e891bf3b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -3.308, - "y": 11.179, - "z": -804.696 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402229b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402229b", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (136) [2f810e0a-49a5-4a75-ac32-281f20000a06]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -102.581, + "y": 33.523, + "z": 84.031 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402229c", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b2402229b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022211", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022211", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022212", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbbe6ed31d686b24022211", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (198) [df0f04eb-dcb1-4c9d-ab2d-1fd247a77a93]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.877, - "y": 11.379, - "z": -806.045 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402229e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402229e", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (137) [f84830f1-3acf-4aac-b997-9f2f807591f8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -101.798, + "y": 33.523, + "z": 86.528 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022216", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022216", + "_tpl": "57372ee1245977685d4159b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022217", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbbe6ed31d686b24022216", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24022218", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbbe6ed31d686b24022216", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (2) [c88bf9c3-48c8-433e-8d7b-adac6fbe7165]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 87.326, - "y": 2.047, - "z": 457.35 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222a2", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222a2", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (138) [fc2349c7-687a-4eac-8ddc-93017f6ef920]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.316, + "y": 37.325, + "z": 99.823 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222a3", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b240222a2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402221a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402221a", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix_food_ammo_common (140) [67138838-cf30-46d2-a07a-a659be2a7617]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -146.735, + "y": 11.868, + "z": -230.911 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222a4", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6ed31d686b240222a2", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402221d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402221d", + "_tpl": "6570251ccfc010a0f5006a13", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402221e", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbbe6ed31d686b2402221d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (20) [1853dc5e-3bb5-4c7c-b6a9-139b2d8cb8c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.429, - "y": 11.11, - "z": -826.533 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222a7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222a7", - "_tpl": "648986bbc827d4637f01791e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (142) [a029596e-6e07-4614-b852-440d76c678f6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -149.407, + "y": 12.189, + "z": -232.409 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222a8", - "_tpl": "5cc80f38e4a949001152b560", - "parentId": "66cbbe6ed31d686b240222a7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022220", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022220", + "_tpl": "60098b1705871270cd5352a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (200) [eb9a6511-99fc-4f29-9db5-ab7ddd8796b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 0.345, - "y": 11.455, - "z": -805.327 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222ab", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222ab", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (143) [e91e9b02-3784-4cf8-ba32-0b0df9e3d36d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -83.923, + "y": 6.186, + "z": -295.759 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222ac", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbbe6ed31d686b240222ab", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022223", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022223", + "_tpl": "6579847c5a0e5879d12f2873", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022224", + "_tpl": "6576f4708ca9c4381d16cd9d", + "parentId": "66cbbe6ed31d686b24022223", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (204) [8cb4127f-f900-4d64-b8c9-5e6c7568100c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 4.216, - "y": 11.526, - "z": -811.035 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222ae", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222ae", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (144) [7104b13a-714b-4378-b7ae-ca36f1abbf7f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -85.501, + "y": 6.731, + "z": -294.922 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022228", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022228", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022229", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbbe6ed31d686b24022228", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b2402222a", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbbe6ed31d686b24022228", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (205) [d50d672a-3ceb-4b29-a6da-d78f68923c2b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.296, - "y": 6.318, - "z": 474.387 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222b1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222b1", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (145) [db635c8d-ed04-4e95-82aa-ed2d2eedd826]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -80.729, + "y": 6.17, + "z": -282.193 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222b2", - "_tpl": "5a269f97c4a282000b151807", - "parentId": "66cbbe6ed31d686b240222b1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402222d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402222d", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402222e", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbbe6ed31d686b2402222d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (206) [df4dfc6b-262a-480d-81f2-944ce75a8a65]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.751, - "y": 6.318, - "z": 473.729 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222b5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222b5", - "_tpl": "6570259fcfc010a0f5006a32", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (147) [de0690a6-930f-4834-b460-96a26d2dead6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.299, + "y": 6.741, + "z": -264.873 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222b6", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66cbbe6ed31d686b240222b5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022231", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022231", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022232", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbbe6ed31d686b24022231", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (207) [1351ac0a-60f5-4035-9cd4-ff8f0b3abfe4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.121, - "y": 6.318, - "z": 474.389 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222b8", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222b8", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (149) [a8dde1aa-72e9-4336-9b49-441757cd3714]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -70.656, + "y": 6.954, + "z": -277.624 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022235", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022235", + "_tpl": "6570259fcfc010a0f5006a32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022236", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66cbbe6ed31d686b24022235", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (209) [6d1cabe5-02b2-4fbf-b38b-f78bb1632941]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.764, - "y": 0.793, - "z": 468.648 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222bb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222bb", - "_tpl": "657023ccbfc87b3a3409320a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (153) [8ec344f4-686e-40bb-bc3e-6a17c1ad672d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -73.319, + "y": 9.949, + "z": -297.522 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022239", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022239", + "_tpl": "64acea09c4eda9354b0226ad", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402223a", + "_tpl": "59e4cf5286f7741778269d8a", + "parentId": "66cbbe6ed31d686b24022239", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "mix_food_ammo_common (154) [f5ff5687-26b1-47c7-9d34-282beb704ace]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -72.892, + "y": 9.949, + "z": -297.469 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222bc", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "66cbbe6ed31d686b240222bb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402223d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402223d", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402223e", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b2402223d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (21) [f6538274-47d4-452b-a14c-e27874dfa164]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.933, - "y": 10.711, - "z": -917.059 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222bf", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222bf", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (155) [8ec94a8f-632b-4f32-9318-5505e70cca46]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -82.431, + "y": 22.603, + "z": -56.764 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022241", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022241", + "_tpl": "65702406bfc87b3a34093216", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022242", + "_tpl": "5efb0fc6aeb21837e749c801", + "parentId": "66cbbe6ed31d686b24022241", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "mix_food_ammo_common (156) [86964ffb-9e38-46f1-ba47-8bc2d2e70f04]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -82.508, + "y": 22.89, + "z": -55.825 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222c0", - "_tpl": "5a269f97c4a282000b151807", - "parentId": "66cbbe6ed31d686b240222bf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022246", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022246", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022247", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6ed31d686b24022246", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b24022248", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6ed31d686b24022246", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (210) [d0dbb86d-299f-4566-abc9-1c356459fa70]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.565, - "y": 0.793, - "z": 469.872 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222c4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222c4", - "_tpl": "6570900858b315e8b70a8a98", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (157) [b08258a2-279a-424a-baf6-44fcd9450b32]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -83.045, + "y": 22.091, + "z": -56.99 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222c5", - "_tpl": "61962b617c6c7b169525f168", - "parentId": "66cbbe6ed31d686b240222c4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402224c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402224c", + "_tpl": "65702681bfc87b3a3409325f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402224d", + "_tpl": "601949593ae8f707c4608daa", + "parentId": "66cbbe6ed31d686b2402224c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b2402224e", + "_tpl": "601949593ae8f707c4608daa", + "parentId": "66cbbe6ed31d686b2402224c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "mix_food_ammo_common (159) [2f16faf2-b9a8-4c7d-bdaf-451760a87e10]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -92.736, + "y": 7.318, + "z": -266.7 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222c6", - "_tpl": "61962b617c6c7b169525f168", - "parentId": "66cbbe6ed31d686b240222c4", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022250", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022250", + "_tpl": "590c5f0d86f77413997acfab", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (214) [4d964cb5-46e8-4f74-88dd-3492e82ec735]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 55.054, - "y": 0.906, - "z": 452.581 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222c9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222c9", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (160) [fe92fd1c-9fbf-450b-b2ed-622bee53beaa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -91.331, + "y": 7.318, + "z": -267.692 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222ca", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbbe6ed31d686b240222c9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022253", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022253", + "_tpl": "657024e3c5d7d4cb4d07856a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022254", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbbe6ed31d686b24022253", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (215) [f46e7480-0203-4850-bb91-ea0943478ede]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.104, - "y": 2.16, - "z": 455.411 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222cd", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222cd", - "_tpl": "6570241bcfc010a0f50069f5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (161) [21cdb821-46cf-4737-aa9d-5ec55852135b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -112.443, + "y": 7.252, + "z": -278.746 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222ce", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbbe6ed31d686b240222cd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022258", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022258", + "_tpl": "6570249bcfc010a0f5006a07", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022259", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24022258", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b2402225a", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b24022258", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (217) [1efcdb61-d7a3-43cd-8569-eeb6997d9c85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 62.127, - "y": 1.028, - "z": 454.593 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222d1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222d1", - "_tpl": "64acea0d03378853630da53b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (162) [bdad5d3a-6bc5-4a33-8ef0-24866edd89d5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.662, + "y": 7.252, + "z": -279.802 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222d2", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbbe6ed31d686b240222d1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402225d", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402225d", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402225e", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbbe6ed31d686b2402225d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (220) [e869d791-4320-4fb4-80e0-15d2874963d3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 96.816, - "y": 4.59, - "z": 274.288 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222d5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222d5", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (164) [c26033d5-0872-4a4c-bf29-c453f32dbef1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.555, + "y": 7.232, + "z": -273.185 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222d6", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbbe6ed31d686b240222d5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022261", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022261", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022262", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbbe6ed31d686b24022261", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (221) [802afc67-3f03-4202-915b-7ce0dc00efcb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 95.005, - "y": 4.59, - "z": 275.652 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222d9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222d9", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (165) [e03be11e-2424-4144-b7d4-901fdb8b93bb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -123.789, + "y": 7.232, + "z": -273.735 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222da", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbbe6ed31d686b240222d9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022264", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022264", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (223) [e076a3f3-99b6-4c2a-bad7-33634aa38819]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.436, - "y": 4.59, - "z": 273.019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222dc", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222dc", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (168) [3f7a59f9-1492-49fb-a858-72e8e6cc0e64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 2.992, + "y": 4.986, + "z": -447.04 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022267", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022267", + "_tpl": "6570251ccfc010a0f5006a13", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022268", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbbe6ed31d686b24022267", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (225) [18e6f7ea-984b-4503-9b4c-e778cbe53ea5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 74.22, - "y": 0.734, - "z": -220.165 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222de", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222de", - "_tpl": "5755383e24597772cb798966", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (169) [d599b937-b448-4309-89a1-bf8371814b4e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.409, + "y": 4.986, + "z": -447.93 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402226c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402226c", + "_tpl": "6570266bc5d7d4cb4d078594", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402226d", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6ed31d686b2402226c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b2402226e", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6ed31d686b2402226c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (227) [2b971e33-3839-4001-904f-02ce73469a62]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 72.743, - "y": 0.734, - "z": -219.646 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222e1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222e1", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (171) [3ee55da9-5a6e-49f5-be46-1af15716a97c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -205.65, + "y": 7.187, + "z": 415.746 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222e2", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbbe6ed31d686b240222e1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022271", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022271", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022272", + "_tpl": "5a269f97c4a282000b151807", + "parentId": "66cbbe6ed31d686b24022271", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (229) [5d4a1bdf-e83f-4616-aa1e-3e57ab30aa59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.039, - "y": 0.759, - "z": -480.927 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222e4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222e4", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (172) [bb45de32-7f64-4c7d-a816-b62664a1fd98]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -205.193, + "y": 7.187, + "z": 415.421 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022275", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022275", + "_tpl": "6570240a1419851aef03e6f7", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022276", + "_tpl": "5efb0d4f4bc50b58e81710f3", + "parentId": "66cbbe6ed31d686b24022275", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (230) [33fcfd19-18f4-4c06-ba7a-a47379f1dd99]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 102.024, - "y": 0.759, - "z": -480.953 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222e7", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222e7", - "_tpl": "65702406bfc87b3a34093216", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (181) [3fe795ab-5ea3-4276-887d-512e39a7e3f0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -221.316, + "y": 6.637, + "z": 423.373 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222e8", - "_tpl": "5efb0fc6aeb21837e749c801", - "parentId": "66cbbe6ed31d686b240222e7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022279", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022279", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402227a", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbbe6ed31d686b24022279", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (232) [a8a18598-b7d9-437d-bb73-485147903600]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 102.54, - "y": 0.759, - "z": -483.907 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222eb", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222eb", - "_tpl": "64acea0d03378853630da53b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (182) [9d7530ce-e8d3-42bb-bd1f-c9fe6b98915c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -209.561, + "y": 6.945, + "z": 414.718 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222ec", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbbe6ed31d686b240222eb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402227c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402227c", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 99 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (233) [9d15c72d-44a4-44f1-8cb6-f276c9adddf8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 100.988, - "y": 0.759, - "z": -484.277 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222ef", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222ef", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (184) [f63bfd79-9430-4cd8-9adf-ff641ce5f963]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -209.268, + "y": 6.752, + "z": 413.887 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222f0", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6ed31d686b240222ef", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402227e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402227e", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (234) [6830d91c-a108-480b-ba0c-90d954ea44a5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 2.305, - "y": 1.923, - "z": -630.533 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222f4", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222f4", - "_tpl": "6570264d1419851aef03e736", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (185) [dd17a119-0f3b-4a69-b401-7e74ce2ad924]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.013, + "y": 0.502, + "z": 568.046 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022280", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022280", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix_food_ammo_common (187) [6eff0a34-c825-4b57-9069-0ad8b56c0ced]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.484, + "y": 1.666, + "z": 565.839 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222f5", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbbe6ed31d686b240222f4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022283", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022283", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022284", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b24022283", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "mix_food_ammo_common (188) [add4aaf9-ee9a-4168-9605-024ac8e15a8e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -63.461, + "y": 11.234, + "z": -904.396 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222f6", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbbe6ed31d686b240222f4", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022287", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022287", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022288", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbbe6ed31d686b24022287", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (236) [00b2c57a-b217-426c-a6e8-14867a10edc1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -0.382, - "y": 1.923, - "z": -631.653 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222f9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222f9", - "_tpl": "657025d4c5d7d4cb4d078585", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (190) [e81d0aa4-4b64-4607-b5a3-4c21133ea721]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -66.297, + "y": 11.234, + "z": -904.312 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402228b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402228b", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402228c", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbbe6ed31d686b2402228b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "mix_food_ammo_common (191) [5aee120b-f186-47f5-bc2b-223019ff94ac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -65.768, + "y": 11.234, + "z": -903.359 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222fa", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbbe6ed31d686b240222f9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402228f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402228f", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022290", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b2402228f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (237) [885e49e9-7666-4e82-894a-e0b672e65c7f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -152.857, - "y": 5.573, - "z": -562.92 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240222fd", - "Items": [ - { - "_id": "66cbbe6ed31d686b240222fd", - "_tpl": "657024f9bfc87b3a3409323b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (193) [3179c430-6a4a-486e-be49-c258cd14a56a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -69.28, + "y": 10.8, + "z": -907.864 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240222fe", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6ed31d686b240222fd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022293", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022293", + "_tpl": "657025d4c5d7d4cb4d078585", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022294", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbbe6ed31d686b24022293", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (238) [948d21df-daf3-435f-baab-1114158173b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -154.341, - "y": 5.65, - "z": -560.128 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022300", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022300", - "_tpl": "635a758bfefc88a93f021b8a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (194) [5c1bc316-bac3-4eab-904e-a45a32220c75]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.43, + "y": 10.555, + "z": -912.821 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022297", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022297", + "_tpl": "5737266524597761006c6a8c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022298", + "_tpl": "57371eb62459776125652ac1", + "parentId": "66cbbe6ed31d686b24022297", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (239) [4d203a21-fd11-4c40-be77-697cbb4cf722]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 128.39, - "y": 0.24, - "z": -866.03 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022303", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022303", - "_tpl": "648986bbc827d4637f01791e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (196) [f3243e91-662f-43b2-8853-3b95e891bf3b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -3.308, + "y": 11.179, + "z": -804.696 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022304", - "_tpl": "5cc80f38e4a949001152b560", - "parentId": "66cbbe6ed31d686b24022303", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402229b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402229b", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402229c", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b2402229b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (240) [1f53745f-a3f1-4a16-be4c-c4f595340216]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.88, - "y": 0.83, - "z": -864.69 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022307", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022307", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (198) [df0f04eb-dcb1-4c9d-ab2d-1fd247a77a93]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.877, + "y": 11.379, + "z": -806.045 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022308", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbbe6ed31d686b24022307", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402229e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402229e", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (244) [ac4f7c61-6adf-47eb-b973-54b331718b1b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 170.644, - "y": 1.284, - "z": -755.181 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402230b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402230b", - "_tpl": "657023ccbfc87b3a3409320a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (2) [c88bf9c3-48c8-433e-8d7b-adac6fbe7165]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 87.326, + "y": 2.047, + "z": 457.35 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402230c", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "66cbbe6ed31d686b2402230b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222a2", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222a2", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222a3", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b240222a2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b240222a4", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6ed31d686b240222a2", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (245) [c9075032-1a21-497b-aba1-1256c1df7256]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 169.481, - "y": 1.284, - "z": -753.15 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402230f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402230f", - "_tpl": "5737266524597761006c6a8c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (20) [1853dc5e-3bb5-4c7c-b6a9-139b2d8cb8c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.429, + "y": 11.11, + "z": -826.533 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022310", - "_tpl": "57371eb62459776125652ac1", - "parentId": "66cbbe6ed31d686b2402230f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222a7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222a7", + "_tpl": "648986bbc827d4637f01791e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222a8", + "_tpl": "5cc80f38e4a949001152b560", + "parentId": "66cbbe6ed31d686b240222a7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (246) [df13a96d-b013-45c2-a473-644ce5e896de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 167.774, - "y": 1.494, - "z": -756.253 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022313", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022313", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (200) [eb9a6511-99fc-4f29-9db5-ab7ddd8796b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 0.345, + "y": 11.455, + "z": -805.327 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022314", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbbe6ed31d686b24022313", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222ab", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222ab", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222ac", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbbe6ed31d686b240222ab", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (247) [247606dc-7943-4f3f-9866-d341855305fd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -260.824, - "y": 1.203, - "z": -346.079 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022317", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022317", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (204) [8cb4127f-f900-4d64-b8c9-5e6c7568100c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 4.216, + "y": 11.526, + "z": -811.035 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022318", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbbe6ed31d686b24022317", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222ae", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222ae", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (249) [25f94a5d-2d1d-4a0b-a896-84d9d75ded36]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -263.966, - "y": 1.798, - "z": -350.868 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402231b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402231b", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (205) [d50d672a-3ceb-4b29-a6da-d78f68923c2b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.296, + "y": 6.318, + "z": 474.387 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402231c", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbbe6ed31d686b2402231b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222b1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222b1", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222b2", + "_tpl": "5a269f97c4a282000b151807", + "parentId": "66cbbe6ed31d686b240222b1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (25) [45e2600d-0524-4bdd-87e6-f0e183986a83]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -11.352, - "y": 12.267, - "z": -858.282 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402231f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402231f", - "_tpl": "6570253acfc010a0f5006a1c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (206) [df4dfc6b-262a-480d-81f2-944ce75a8a65]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.751, + "y": 6.318, + "z": 473.729 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022320", - "_tpl": "573602322459776445391df1", - "parentId": "66cbbe6ed31d686b2402231f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222b5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222b5", + "_tpl": "6570259fcfc010a0f5006a32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222b6", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66cbbe6ed31d686b240222b5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (250) [1a27a7da-140f-4950-af95-8dc8f008bc5d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -267.634, - "y": 1.756, - "z": -346.904 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022322", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022322", - "_tpl": "6389c6463485cf0eeb260715", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (207) [1351ac0a-60f5-4035-9cd4-ff8f0b3abfe4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.121, + "y": 6.318, + "z": 474.389 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222b8", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222b8", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (252) [d816a63a-f96e-437d-95f5-e60666604c7a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -271.131, - "y": 1.177, - "z": -353.664 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022326", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022326", - "_tpl": "65702474bfc87b3a34093226", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (209) [6d1cabe5-02b2-4fbf-b38b-f78bb1632941]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.764, + "y": 0.793, + "z": 468.648 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022327", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6ed31d686b24022326", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222bb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222bb", + "_tpl": "657023ccbfc87b3a3409320a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222bc", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "66cbbe6ed31d686b240222bb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "mix_food_ammo_common (21) [f6538274-47d4-452b-a14c-e27874dfa164]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.933, + "y": 10.711, + "z": -917.059 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022328", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6ed31d686b24022326", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222bf", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222bf", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222c0", + "_tpl": "5a269f97c4a282000b151807", + "parentId": "66cbbe6ed31d686b240222bf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (253) [317083d6-8d27-4b3e-9dfc-1f4a98fa7f31]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -266.994019, - "y": 2.054, - "z": -342.532959 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402232b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402232b", - "_tpl": "657025bbcfc010a0f5006a35", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (210) [d0dbb86d-299f-4566-abc9-1c356459fa70]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.565, + "y": 0.793, + "z": 469.872 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402232c", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbbe6ed31d686b2402232b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222c4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222c4", + "_tpl": "6570900858b315e8b70a8a98", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222c5", + "_tpl": "61962b617c6c7b169525f168", + "parentId": "66cbbe6ed31d686b240222c4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b240222c6", + "_tpl": "61962b617c6c7b169525f168", + "parentId": "66cbbe6ed31d686b240222c4", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (254) [c9790499-fd8d-4947-9a77-a3f0b2e91cd9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -295.907, - "y": 1.06, - "z": -342.094 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402232f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402232f", - "_tpl": "65702414c5d7d4cb4d078555", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (214) [4d964cb5-46e8-4f74-88dd-3492e82ec735]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 55.054, + "y": 0.906, + "z": 452.581 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022330", - "_tpl": "5ea2a8e200685063ec28c05a", - "parentId": "66cbbe6ed31d686b2402232f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222c9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222c9", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222ca", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbbe6ed31d686b240222c9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (255) [a68933a1-e7ab-43aa-a973-f56cb8a36e20]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -296.459, - "y": 1.417, - "z": -341.877 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022333", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022333", - "_tpl": "657023f81419851aef03e6f1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (215) [f46e7480-0203-4850-bb91-ea0943478ede]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.104, + "y": 2.16, + "z": 455.411 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022334", - "_tpl": "5f0596629e22f464da6bbdd9", - "parentId": "66cbbe6ed31d686b24022333", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222cd", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222cd", + "_tpl": "6570241bcfc010a0f50069f5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222ce", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbbe6ed31d686b240222cd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (258) [231a3009-c500-496f-a707-f16c1801f30d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -304.462, - "y": 1.06, - "z": -314.36 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022337", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022337", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (217) [1efcdb61-d7a3-43cd-8569-eeb6997d9c85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 62.127, + "y": 1.028, + "z": 454.593 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022338", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbbe6ed31d686b24022337", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222d1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222d1", + "_tpl": "64acea0d03378853630da53b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222d2", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbbe6ed31d686b240222d1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (259) [db0eb0cb-52f0-4ed4-bfff-f69d3a0704a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -302.339, - "y": 0.685, - "z": -312.454 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402233c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402233c", - "_tpl": "6570266bc5d7d4cb4d078594", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (220) [e869d791-4320-4fb4-80e0-15d2874963d3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 96.816, + "y": 4.59, + "z": 274.288 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402233d", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6ed31d686b2402233c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222d5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222d5", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222d6", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbbe6ed31d686b240222d5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "mix_food_ammo_common (221) [802afc67-3f03-4202-915b-7ce0dc00efcb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 95.005, + "y": 4.59, + "z": 275.652 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402233e", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6ed31d686b2402233c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222d9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222d9", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222da", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbbe6ed31d686b240222d9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (260) [5a730c73-0a7c-43eb-8b2b-a61189e3c365]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -265.937, - "y": 1.412, - "z": -314.377 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022341", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022341", - "_tpl": "65702591c5d7d4cb4d07857c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (223) [e076a3f3-99b6-4c2a-bad7-33634aa38819]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.436, + "y": 4.59, + "z": 273.019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022342", - "_tpl": "5c925fa22e221601da359b7b", - "parentId": "66cbbe6ed31d686b24022341", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222dc", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222dc", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (262) [75a333f3-e426-4790-8466-985a117e59b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.702, - "y": 15.411, - "z": 53.559 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022346", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022346", - "_tpl": "657024a4bfc87b3a3409322c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (225) [18e6f7ea-984b-4503-9b4c-e778cbe53ea5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 74.22, + "y": 0.734, + "z": -220.165 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022347", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66cbbe6ed31d686b24022346", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222de", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222de", + "_tpl": "5755383e24597772cb798966", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix_food_ammo_common (227) [2b971e33-3839-4001-904f-02ce73469a62]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 72.743, + "y": 0.734, + "z": -219.646 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022348", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66cbbe6ed31d686b24022346", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222e1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222e1", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222e2", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbbe6ed31d686b240222e1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (263) [ac765d28-d9ae-4674-9bc5-48bef17d2d45]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.929, - "y": 15.521, - "z": 54.125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402234c", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402234c", - "_tpl": "6570249bcfc010a0f5006a07", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (229) [5d4a1bdf-e83f-4616-aa1e-3e57ab30aa59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.039, + "y": 0.759, + "z": -480.927 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402234d", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b2402234c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222e4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222e4", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix_food_ammo_common (230) [33fcfd19-18f4-4c06-ba7a-a47379f1dd99]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 102.024, + "y": 0.759, + "z": -480.953 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402234e", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b2402234c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222e7", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222e7", + "_tpl": "65702406bfc87b3a34093216", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222e8", + "_tpl": "5efb0fc6aeb21837e749c801", + "parentId": "66cbbe6ed31d686b240222e7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (264) [ca27d2da-2c4e-4c28-b1a0-a8b8a4aa262f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -288.637, - "y": 0.869, - "z": -338.863 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022351", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022351", - "_tpl": "64aceaecc4eda9354b0226b6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (232) [a8a18598-b7d9-437d-bb73-485147903600]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 102.54, + "y": 0.759, + "z": -483.907 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022352", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbbe6ed31d686b24022351", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222eb", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222eb", + "_tpl": "64acea0d03378853630da53b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222ec", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbbe6ed31d686b240222eb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (265) [96de81e5-3a17-4165-ad9b-41f2f3cfa60c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -288.793, - "y": 0.869, - "z": -340.204 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022355", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022355", - "_tpl": "65702420bfc87b3a34093219", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (233) [9d15c72d-44a4-44f1-8cb6-f276c9adddf8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 100.988, + "y": 0.759, + "z": -484.277 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022356", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66cbbe6ed31d686b24022355", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222ef", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222ef", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222f0", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6ed31d686b240222ef", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (266) [6a1c8bc0-8671-4cee-ac27-27fddc7f469e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -331.336, - "y": 0.661, - "z": -295.7 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402235a", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402235a", - "_tpl": "6570249bcfc010a0f5006a07", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (234) [6830d91c-a108-480b-ba0c-90d954ea44a5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 2.305, + "y": 1.923, + "z": -630.533 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402235b", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b2402235a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222f4", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222f4", + "_tpl": "6570264d1419851aef03e736", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222f5", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbbe6ed31d686b240222f4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b240222f6", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbbe6ed31d686b240222f4", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "mix_food_ammo_common (236) [00b2c57a-b217-426c-a6e8-14867a10edc1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -0.382, + "y": 1.923, + "z": -631.653 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402235c", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbbe6ed31d686b2402235a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222f9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222f9", + "_tpl": "657025d4c5d7d4cb4d078585", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222fa", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbbe6ed31d686b240222f9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (268) [98441fcb-8005-4cbc-bc54-9259b6c0418b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -305.213, - "y": 11.488, - "z": -155.88 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402235f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402235f", - "_tpl": "6570259fcfc010a0f5006a32", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (237) [885e49e9-7666-4e82-894a-e0b672e65c7f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -152.857, + "y": 5.573, + "z": -562.92 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022360", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66cbbe6ed31d686b2402235f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240222fd", + "Items": [ + { + "_id": "66cbbe6ed31d686b240222fd", + "_tpl": "657024f9bfc87b3a3409323b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240222fe", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6ed31d686b240222fd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (269) [4cb63215-6793-4e32-9b51-c704913555b9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -142.659, - "y": 12.311, - "z": -242.177 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022363", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022363", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (238) [948d21df-daf3-435f-baab-1114158173b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -154.341, + "y": 5.65, + "z": -560.128 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022364", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbbe6ed31d686b24022363", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022300", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022300", + "_tpl": "635a758bfefc88a93f021b8a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (27) [1d5417a8-7b87-4a5f-bb48-b4abfee81726]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -30.981, - "y": 13.139, - "z": -851.585 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022367", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022367", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (239) [4d203a21-fd11-4c40-be77-697cbb4cf722]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 128.39, + "y": 0.24, + "z": -866.03 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022368", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbbe6ed31d686b24022367", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022303", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022303", + "_tpl": "648986bbc827d4637f01791e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022304", + "_tpl": "5cc80f38e4a949001152b560", + "parentId": "66cbbe6ed31d686b24022303", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (270) [e2363be9-9c12-4c93-b8ba-16593e766606]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -189.541, - "y": 16.098, - "z": -200.791 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402236b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402236b", - "_tpl": "657024b31419851aef03e70f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (240) [1f53745f-a3f1-4a16-be4c-c4f595340216]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.88, + "y": 0.83, + "z": -864.69 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402236c", - "_tpl": "5f647f31b6238e5dd066e196", - "parentId": "66cbbe6ed31d686b2402236b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022307", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022307", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022308", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbbe6ed31d686b24022307", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (272) [f532c67a-6c5e-491c-836a-72fb57bf6f29]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -189.569, - "y": 13.438, - "z": -202.656 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402236f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402236f", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (244) [ac4f7c61-6adf-47eb-b973-54b331718b1b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 170.644, + "y": 1.284, + "z": -755.181 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022370", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbbe6ed31d686b2402236f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402230b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402230b", + "_tpl": "657023ccbfc87b3a3409320a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402230c", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "66cbbe6ed31d686b2402230b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (275) [11d8e365-2ab8-4bd6-ae9f-7e5b33141d6c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.2, - "y": 21.369, - "z": 285.777 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022373", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022373", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (245) [c9075032-1a21-497b-aba1-1256c1df7256]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 169.481, + "y": 1.284, + "z": -753.15 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022374", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbbe6ed31d686b24022373", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402230f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402230f", + "_tpl": "5737266524597761006c6a8c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022310", + "_tpl": "57371eb62459776125652ac1", + "parentId": "66cbbe6ed31d686b2402230f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (276) [2bf475ae-d664-4889-821e-832b22a4e6aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -117.709, - "y": 21.369, - "z": 287.306 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022377", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022377", - "_tpl": "5c1127bdd174af44217ab8b9", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (246) [df13a96d-b013-45c2-a473-644ce5e896de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 167.774, + "y": 1.494, + "z": -756.253 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022378", - "_tpl": "5c0d56a986f774449d5de529", - "parentId": "66cbbe6ed31d686b24022377", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022313", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022313", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022314", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbbe6ed31d686b24022313", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (278) [c9e77b1f-d7e5-4de3-b257-1d7ee91e5fbb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -105.782, - "y": 4.258, - "z": -468.5 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402237b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402237b", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (247) [247606dc-7943-4f3f-9866-d341855305fd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -260.824, + "y": 1.203, + "z": -346.079 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402237c", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbbe6ed31d686b2402237b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022317", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022317", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022318", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbbe6ed31d686b24022317", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (279) [72810276-7819-416a-807b-70e78a146d08]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -106.826, - "y": 4.258, - "z": -469.091 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402237f", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402237f", - "_tpl": "6570259bc5d7d4cb4d07857f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (249) [25f94a5d-2d1d-4a0b-a896-84d9d75ded36]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -263.966, + "y": 1.798, + "z": -350.868 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022380", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbbe6ed31d686b2402237f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402231b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402231b", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402231c", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbbe6ed31d686b2402231b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (285) [dadfe230-f6cb-4c1d-8708-80d6d8d65218]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 214.965, - "y": 3.57, - "z": 522.956 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022383", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022383", - "_tpl": "6570259bc5d7d4cb4d07857f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (25) [45e2600d-0524-4bdd-87e6-f0e183986a83]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -11.352, + "y": 12.267, + "z": -858.282 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022384", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbbe6ed31d686b24022383", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402231f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402231f", + "_tpl": "6570253acfc010a0f5006a1c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022320", + "_tpl": "573602322459776445391df1", + "parentId": "66cbbe6ed31d686b2402231f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (287) [fc684e64-a3c1-4ceb-8a15-21f02c48b40d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 228.068, - "y": 2.675, - "z": 522.135 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022387", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022387", - "_tpl": "657025bbcfc010a0f5006a35", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (250) [1a27a7da-140f-4950-af95-8dc8f008bc5d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -267.634, + "y": 1.756, + "z": -346.904 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022388", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbbe6ed31d686b24022387", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022322", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022322", + "_tpl": "6389c6463485cf0eeb260715", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (288) [ce1c07fc-2309-4589-8b5f-6ef3579f9fb4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 231.072, - "y": 2.669, - "z": 518.151 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402238b", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402238b", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (252) [d816a63a-f96e-437d-95f5-e60666604c7a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -271.131, + "y": 1.177, + "z": -353.664 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402238c", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6ed31d686b2402238b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022326", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022326", + "_tpl": "65702474bfc87b3a34093226", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022327", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6ed31d686b24022326", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24022328", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6ed31d686b24022326", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (289) [3c1bd2bd-97a7-4182-a21c-7a263b124de5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 234.569, - "y": 2.724, - "z": 518.529 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022390", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022390", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (253) [317083d6-8d27-4b3e-9dfc-1f4a98fa7f31]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -266.994019, + "y": 2.054, + "z": -342.532959 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022391", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6ed31d686b24022390", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402232b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402232b", + "_tpl": "657025bbcfc010a0f5006a35", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402232c", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbbe6ed31d686b2402232b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "mix_food_ammo_common (254) [c9790499-fd8d-4947-9a77-a3f0b2e91cd9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -295.907, + "y": 1.06, + "z": -342.094 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022392", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6ed31d686b24022390", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402232f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402232f", + "_tpl": "65702414c5d7d4cb4d078555", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022330", + "_tpl": "5ea2a8e200685063ec28c05a", + "parentId": "66cbbe6ed31d686b2402232f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (292) [e3e67494-e822-499e-afa2-ab9d60bb0ede]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 330.359, - "y": 2.385, - "z": 528.805 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022395", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022395", - "_tpl": "657025161419851aef03e718", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (255) [a68933a1-e7ab-43aa-a973-f56cb8a36e20]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -296.459, + "y": 1.417, + "z": -341.877 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b24022396", - "_tpl": "5cc80f53e4a949000e1ea4f8", - "parentId": "66cbbe6ed31d686b24022395", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022333", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022333", + "_tpl": "657023f81419851aef03e6f1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022334", + "_tpl": "5f0596629e22f464da6bbdd9", + "parentId": "66cbbe6ed31d686b24022333", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (294) [498c3660-0a48-4f9a-bd0a-5153202989a4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 328.98, - "y": 2.345, - "z": 526.725 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b24022399", - "Items": [ - { - "_id": "66cbbe6ed31d686b24022399", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (258) [231a3009-c500-496f-a707-f16c1801f30d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -304.462, + "y": 1.06, + "z": -314.36 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402239a", - "_tpl": "5c3df7d588a4501f290594e5", - "parentId": "66cbbe6ed31d686b24022399", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022337", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022337", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022338", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbbe6ed31d686b24022337", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (295) [5da32845-5b3a-49cf-8f0e-dc7df408055c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 328.633, - "y": 2.345, - "z": 526.093 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b2402239e", - "Items": [ - { - "_id": "66cbbe6ed31d686b2402239e", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (259) [db0eb0cb-52f0-4ed4-bfff-f69d3a0704a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -302.339, + "y": 0.685, + "z": -312.454 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b2402239f", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b2402239e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402233c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402233c", + "_tpl": "6570266bc5d7d4cb4d078594", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402233d", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6ed31d686b2402233c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b2402233e", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6ed31d686b2402233c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "mix_food_ammo_common (260) [5a730c73-0a7c-43eb-8b2b-a61189e3c365]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -265.937, + "y": 1.412, + "z": -314.377 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240223a0", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbbe6ed31d686b2402239e", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022341", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022341", + "_tpl": "65702591c5d7d4cb4d07857c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022342", + "_tpl": "5c925fa22e221601da359b7b", + "parentId": "66cbbe6ed31d686b24022341", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (297) [7173b0c1-4896-40c2-8d4d-8d2ec5a56970]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 329.321, - "y": 2.736, - "z": 529.297 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240223a3", - "Items": [ - { - "_id": "66cbbe6ed31d686b240223a3", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (262) [75a333f3-e426-4790-8466-985a117e59b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.702, + "y": 15.411, + "z": 53.559 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240223a4", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbbe6ed31d686b240223a3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022346", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022346", + "_tpl": "657024a4bfc87b3a3409322c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022347", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66cbbe6ed31d686b24022346", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24022348", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66cbbe6ed31d686b24022346", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (3) [c5518fb8-e188-4823-8003-fd131d30a2b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.42, - "y": 1.407, - "z": 459.672 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240223a6", - "Items": [ - { - "_id": "66cbbe6ed31d686b240223a6", - "_tpl": "60098b1705871270cd5352a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (263) [ac765d28-d9ae-4674-9bc5-48bef17d2d45]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.929, + "y": 15.521, + "z": 54.125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402234c", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402234c", + "_tpl": "6570249bcfc010a0f5006a07", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402234d", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b2402234c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b2402234e", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b2402234c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (301) [0a6d4dd1-d15f-486a-aa48-ac0f2cb36d0b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 325.579, - "y": 5.662, - "z": 521.069 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240223a9", - "Items": [ - { - "_id": "66cbbe6ed31d686b240223a9", - "_tpl": "6570259bc5d7d4cb4d07857f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (264) [ca27d2da-2c4e-4c28-b1a0-a8b8a4aa262f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -288.637, + "y": 0.869, + "z": -338.863 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240223aa", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbbe6ed31d686b240223a9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022351", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022351", + "_tpl": "64aceaecc4eda9354b0226b6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022352", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbbe6ed31d686b24022351", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (302) [4fa4d97e-7b5f-4a17-a183-1d15a5dcb619]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 324.901, - "y": 5.698, - "z": 521.134 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240223ad", - "Items": [ - { - "_id": "66cbbe6ed31d686b240223ad", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (265) [96de81e5-3a17-4165-ad9b-41f2f3cfa60c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -288.793, + "y": 0.869, + "z": -340.204 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240223ae", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbbe6ed31d686b240223ad", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022355", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022355", + "_tpl": "65702420bfc87b3a34093219", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022356", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66cbbe6ed31d686b24022355", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (303) [1846dc79-3dd3-4bd1-8ff0-187c5b4fd2c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 324.167, - "y": 6.015, - "z": 519.639 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240223b1", - "Items": [ - { - "_id": "66cbbe6ed31d686b240223b1", - "_tpl": "65702566bfc87b3a3409324d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (266) [6a1c8bc0-8671-4cee-ac27-27fddc7f469e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -331.336, + "y": 0.661, + "z": -295.7 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240223b2", - "_tpl": "5e023e6e34d52a55c3304f71", - "parentId": "66cbbe6ed31d686b240223b1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402235a", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402235a", + "_tpl": "6570249bcfc010a0f5006a07", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402235b", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b2402235a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b2402235c", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbbe6ed31d686b2402235a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (305) [25d49958-dc98-4aba-9840-c053dbf2267a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 328.266, - "y": 5.591, - "z": 520.064 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6ed31d686b240223b5", - "Items": [ - { - "_id": "66cbbe6ed31d686b240223b5", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (268) [98441fcb-8005-4cbc-bc54-9259b6c0418b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -305.213, + "y": 11.488, + "z": -155.88 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6ed31d686b240223b6", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbbe6ed31d686b240223b5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402235f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402235f", + "_tpl": "6570259fcfc010a0f5006a32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022360", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66cbbe6ed31d686b2402235f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (308) [5996a755-2d6b-472f-b5c4-1fa3cf9c8cc1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 328.538, - "y": 5.919, - "z": 514.865 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223b9", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223b9", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (269) [4cb63215-6793-4e32-9b51-c704913555b9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -142.659, + "y": 12.311, + "z": -242.177 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223ba", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbbe6fd31d686b240223b9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022363", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022363", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022364", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbbe6ed31d686b24022363", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (309) [c76531a6-33b5-467c-acbf-dee913925504]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 332.347, - "y": 5.54, - "z": 515.034 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223bd", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223bd", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (27) [1d5417a8-7b87-4a5f-bb48-b4abfee81726]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -30.981, + "y": 13.139, + "z": -851.585 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223be", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbbe6fd31d686b240223bd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022367", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022367", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022368", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbbe6ed31d686b24022367", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (31) [8fd96baa-7d48-45a3-b7e4-dce68c07a4cc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -117.873, - "y": 11.853, - "z": -804.061 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223c1", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223c1", - "_tpl": "648984e3f09d032aa9399d53", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (270) [e2363be9-9c12-4c93-b8ba-16593e766606]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -189.541, + "y": 16.098, + "z": -200.791 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223c2", - "_tpl": "5efb0c1bd79ff02a1f5e68d9", - "parentId": "66cbbe6fd31d686b240223c1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402236b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402236b", + "_tpl": "657024b31419851aef03e70f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402236c", + "_tpl": "5f647f31b6238e5dd066e196", + "parentId": "66cbbe6ed31d686b2402236b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (310) [f604779f-e0ed-472f-a107-2719cf621977]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 333.536, - "y": 5.97, - "z": 513.703 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223c5", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223c5", - "_tpl": "657023d6cfc010a0f50069e9", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (272) [f532c67a-6c5e-491c-836a-72fb57bf6f29]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -189.569, + "y": 13.438, + "z": -202.656 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223c6", - "_tpl": "5fc382b6d6fa9c00c571bbc3", - "parentId": "66cbbe6fd31d686b240223c5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402236f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402236f", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022370", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbbe6ed31d686b2402236f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (312) [666eb640-30fe-4637-b074-7e73e4a3ac70]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 332.381, - "y": 5.588, - "z": 523.281 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223c9", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223c9", - "_tpl": "65702577cfc010a0f5006a2c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (275) [11d8e365-2ab8-4bd6-ae9f-7e5b33141d6c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.2, + "y": 21.369, + "z": 285.777 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223ca", - "_tpl": "5887431f2459777e1612938f", - "parentId": "66cbbe6fd31d686b240223c9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022373", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022373", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022374", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbbe6ed31d686b24022373", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (316) [417cfc75-df26-4d60-b4db-75a620fbbbb1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 334.512, - "y": 2.764, - "z": 530.191 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223cd", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223cd", - "_tpl": "6489875745f9ca4ba51c4808", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (276) [2bf475ae-d664-4889-821e-832b22a4e6aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -117.709, + "y": 21.369, + "z": 287.306 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223ce", - "_tpl": "5a26ac0ec4a28200741e1e18", - "parentId": "66cbbe6fd31d686b240223cd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022377", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022377", + "_tpl": "5c1127bdd174af44217ab8b9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022378", + "_tpl": "5c0d56a986f774449d5de529", + "parentId": "66cbbe6ed31d686b24022377", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (320) [49ca81ea-849d-4aa4-850a-4c70514ed224]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 363.38, - "y": 2.92, - "z": 487.38 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223d2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223d2", - "_tpl": "65702469c5d7d4cb4d07855b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (278) [c9e77b1f-d7e5-4de3-b257-1d7ee91e5fbb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -105.782, + "y": 4.258, + "z": -468.5 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223d3", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "66cbbe6fd31d686b240223d2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402237b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402237b", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402237c", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbbe6ed31d686b2402237b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "mix_food_ammo_common (279) [72810276-7819-416a-807b-70e78a146d08]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -106.826, + "y": 4.258, + "z": -469.091 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223d4", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "66cbbe6fd31d686b240223d2", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402237f", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402237f", + "_tpl": "6570259bc5d7d4cb4d07857f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022380", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbbe6ed31d686b2402237f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (323) [56d0e8ca-c852-4b29-a2a5-d6b3a45d6b12]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 362.186, - "y": 2.736, - "z": 448.837 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223d7", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223d7", - "_tpl": "657023f81419851aef03e6f1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (285) [dadfe230-f6cb-4c1d-8708-80d6d8d65218]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 214.965, + "y": 3.57, + "z": 522.956 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223d8", - "_tpl": "5f0596629e22f464da6bbdd9", - "parentId": "66cbbe6fd31d686b240223d7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022383", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022383", + "_tpl": "6570259bc5d7d4cb4d07857f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022384", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbbe6ed31d686b24022383", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (324) [633efd15-ef68-436e-a8ae-ce29ed278561]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 352.057, - "y": 2.953, - "z": 451.027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223dc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223dc", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (287) [fc684e64-a3c1-4ceb-8a15-21f02c48b40d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 228.068, + "y": 2.675, + "z": 522.135 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223dd", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6fd31d686b240223dc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022387", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022387", + "_tpl": "657025bbcfc010a0f5006a35", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022388", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbbe6ed31d686b24022387", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "mix_food_ammo_common (288) [ce1c07fc-2309-4589-8b5f-6ef3579f9fb4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 231.072, + "y": 2.669, + "z": 518.151 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223de", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6fd31d686b240223dc", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402238b", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402238b", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402238c", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6ed31d686b2402238b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (325) [9e7f768f-df70-4a78-8773-1f157217055c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 352.634, - "y": 2.998, - "z": 451.433 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223e1", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223e1", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (289) [3c1bd2bd-97a7-4182-a21c-7a263b124de5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 234.569, + "y": 2.724, + "z": 518.529 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223e2", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6fd31d686b240223e1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022390", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022390", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022391", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6ed31d686b24022390", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6ed31d686b24022392", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6ed31d686b24022390", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (326) [19077d93-9a34-4c86-ae26-51a0caf034c0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 359.987, - "y": 2.938, - "z": 462.037 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223e5", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223e5", - "_tpl": "6570241bcfc010a0f50069f5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (292) [e3e67494-e822-499e-afa2-ab9d60bb0ede]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 330.359, + "y": 2.385, + "z": 528.805 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223e6", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbbe6fd31d686b240223e5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022395", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022395", + "_tpl": "657025161419851aef03e718", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b24022396", + "_tpl": "5cc80f53e4a949000e1ea4f8", + "parentId": "66cbbe6ed31d686b24022395", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (327) [b944429a-cc56-4067-bcaa-37ba1db60241]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 362.016, - "y": 3.39, - "z": 460.64 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223e9", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223e9", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (294) [498c3660-0a48-4f9a-bd0a-5153202989a4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 328.98, + "y": 2.345, + "z": 526.725 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223ea", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbbe6fd31d686b240223e9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b24022399", + "Items": [ + { + "_id": "66cbbe6ed31d686b24022399", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402239a", + "_tpl": "5c3df7d588a4501f290594e5", + "parentId": "66cbbe6ed31d686b24022399", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (328) [29e87525-6994-4761-9a6f-be34cfff3202]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 363.505, - "y": 2.741, - "z": 462.359 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223ed", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223ed", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (295) [5da32845-5b3a-49cf-8f0e-dc7df408055c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 328.633, + "y": 2.345, + "z": 526.093 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223ee", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6fd31d686b240223ed", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b2402239e", + "Items": [ + { + "_id": "66cbbe6ed31d686b2402239e", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b2402239f", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b2402239e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6ed31d686b240223a0", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbbe6ed31d686b2402239e", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (33) [a249d661-606d-468a-a032-ba9b24cc9ae5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -96.556, - "y": 11.201, - "z": -867.602 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223f1", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223f1", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (297) [7173b0c1-4896-40c2-8d4d-8d2ec5a56970]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 329.321, + "y": 2.736, + "z": 529.297 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223f2", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbbe6fd31d686b240223f1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240223a3", + "Items": [ + { + "_id": "66cbbe6ed31d686b240223a3", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240223a4", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbbe6ed31d686b240223a3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (331) [1828101d-a7c8-4b88-9ea1-df3d88690339]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 366.633, - "y": 3.322, - "z": 469.014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223f4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223f4", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (3) [c5518fb8-e188-4823-8003-fd131d30a2b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.42, + "y": 1.407, + "z": 459.672 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240223a6", + "Items": [ + { + "_id": "66cbbe6ed31d686b240223a6", + "_tpl": "60098b1705871270cd5352a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (332) [76263894-a24d-4155-b41b-a272413774a7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 368.693, - "y": 2.276, - "z": 468.62 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223f7", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223f7", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (301) [0a6d4dd1-d15f-486a-aa48-ac0f2cb36d0b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 325.579, + "y": 5.662, + "z": 521.069 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223f8", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbbe6fd31d686b240223f7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240223a9", + "Items": [ + { + "_id": "66cbbe6ed31d686b240223a9", + "_tpl": "6570259bc5d7d4cb4d07857f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240223aa", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbbe6ed31d686b240223a9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (333) [8d7505bc-4e2a-45ec-b5b1-1c9574c6daa0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 313.273, - "y": 2.289, - "z": 483.55 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223fb", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223fb", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (302) [4fa4d97e-7b5f-4a17-a183-1d15a5dcb619]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 324.901, + "y": 5.698, + "z": 521.134 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240223fc", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbbe6fd31d686b240223fb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240223ad", + "Items": [ + { + "_id": "66cbbe6ed31d686b240223ad", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240223ae", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbbe6ed31d686b240223ad", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (334) [a3a9d886-3554-4b78-9269-b2221bdfba3f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 314.867, - "y": 2.937, - "z": 483.312 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240223ff", - "Items": [ - { - "_id": "66cbbe6fd31d686b240223ff", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (303) [1846dc79-3dd3-4bd1-8ff0-187c5b4fd2c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 324.167, + "y": 6.015, + "z": 519.639 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022400", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbbe6fd31d686b240223ff", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240223b1", + "Items": [ + { + "_id": "66cbbe6ed31d686b240223b1", + "_tpl": "65702566bfc87b3a3409324d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240223b2", + "_tpl": "5e023e6e34d52a55c3304f71", + "parentId": "66cbbe6ed31d686b240223b1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (335) [b139f247-4bf6-47c6-b672-a484cfc500c8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 320.896, - "y": 2.738, - "z": 483.465 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022404", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022404", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (305) [25d49958-dc98-4aba-9840-c053dbf2267a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 328.266, + "y": 5.591, + "z": 520.064 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022405", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6fd31d686b24022404", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6ed31d686b240223b5", + "Items": [ + { + "_id": "66cbbe6ed31d686b240223b5", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6ed31d686b240223b6", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbbe6ed31d686b240223b5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "mix_food_ammo_common (308) [5996a755-2d6b-472f-b5c4-1fa3cf9c8cc1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 328.538, + "y": 5.919, + "z": 514.865 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022406", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6fd31d686b24022404", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223b9", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223b9", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223ba", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbbe6fd31d686b240223b9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (336) [c6f7b379-6f31-47da-9cbd-41e3e7eaa31e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 325.150482, - "y": 2.708, - "z": 488.516174 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022409", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022409", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (309) [c76531a6-33b5-467c-acbf-dee913925504]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 332.347, + "y": 5.54, + "z": 515.034 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402240a", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbbe6fd31d686b24022409", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223bd", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223bd", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223be", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbbe6fd31d686b240223bd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (337) [4fc7c035-46c2-4418-8822-a95f0d3b2686]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 334.144, - "y": 2.964, - "z": 487.497 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402240d", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402240d", - "_tpl": "657023f81419851aef03e6f1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (31) [8fd96baa-7d48-45a3-b7e4-dce68c07a4cc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -117.873, + "y": 11.853, + "z": -804.061 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402240e", - "_tpl": "5f0596629e22f464da6bbdd9", - "parentId": "66cbbe6fd31d686b2402240d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223c1", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223c1", + "_tpl": "648984e3f09d032aa9399d53", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223c2", + "_tpl": "5efb0c1bd79ff02a1f5e68d9", + "parentId": "66cbbe6fd31d686b240223c1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (338) [a003cd70-5c77-413b-91a9-eaca599637b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 333.562, - "y": 3.006, - "z": 487.654 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022412", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022412", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (310) [f604779f-e0ed-472f-a107-2719cf621977]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 333.536, + "y": 5.97, + "z": 513.703 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022413", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6fd31d686b24022412", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223c5", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223c5", + "_tpl": "657023d6cfc010a0f50069e9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223c6", + "_tpl": "5fc382b6d6fa9c00c571bbc3", + "parentId": "66cbbe6fd31d686b240223c5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "mix_food_ammo_common (312) [666eb640-30fe-4637-b074-7e73e4a3ac70]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 332.381, + "y": 5.588, + "z": 523.281 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022414", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6fd31d686b24022412", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223c9", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223c9", + "_tpl": "65702577cfc010a0f5006a2c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223ca", + "_tpl": "5887431f2459777e1612938f", + "parentId": "66cbbe6fd31d686b240223c9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (341) [9e329771-1365-4422-ab41-378a1c160164]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 324.122, - "y": 2.939, - "z": 486.913 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022417", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022417", - "_tpl": "657023bebfc87b3a34093207", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (316) [417cfc75-df26-4d60-b4db-75a620fbbbb1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 334.512, + "y": 2.764, + "z": 530.191 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022418", - "_tpl": "5fbe3ffdf8b6a877a729ea82", - "parentId": "66cbbe6fd31d686b24022417", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223cd", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223cd", + "_tpl": "6489875745f9ca4ba51c4808", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223ce", + "_tpl": "5a26ac0ec4a28200741e1e18", + "parentId": "66cbbe6fd31d686b240223cd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (342) [5726061f-d8ef-46c5-90b9-2c4245842a7f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 322.961, - "y": 5.673, - "z": 492.109 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402241b", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402241b", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (320) [49ca81ea-849d-4aa4-850a-4c70514ed224]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 363.38, + "y": 2.92, + "z": 487.38 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402241c", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbbe6fd31d686b2402241b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223d2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223d2", + "_tpl": "65702469c5d7d4cb4d07855b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223d3", + "_tpl": "5d6e68c4a4b9361b93413f79", + "parentId": "66cbbe6fd31d686b240223d2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6fd31d686b240223d4", + "_tpl": "5d6e68c4a4b9361b93413f79", + "parentId": "66cbbe6fd31d686b240223d2", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (344) [d3cb127a-90e9-412f-bb64-ba9fd734b42b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 387.355, - "y": 1.625, - "z": 442.737 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402241f", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402241f", - "_tpl": "64aceaecc4eda9354b0226b6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (323) [56d0e8ca-c852-4b29-a2a5-d6b3a45d6b12]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 362.186, + "y": 2.736, + "z": 448.837 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022420", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbbe6fd31d686b2402241f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223d7", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223d7", + "_tpl": "657023f81419851aef03e6f1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223d8", + "_tpl": "5f0596629e22f464da6bbdd9", + "parentId": "66cbbe6fd31d686b240223d7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (346) [5dc26176-e90e-4e63-bcea-642206bb9174]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 420.36, - "y": 14.174, - "z": 510.461 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022423", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022423", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (324) [633efd15-ef68-436e-a8ae-ce29ed278561]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 352.057, + "y": 2.953, + "z": 451.027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022424", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbbe6fd31d686b24022423", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223dc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223dc", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223dd", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6fd31d686b240223dc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6fd31d686b240223de", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6fd31d686b240223dc", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (347) [bb1c1f8b-8777-4d4f-838b-c2bf92298a7c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 418.831, - "y": 13.508, - "z": 511.7 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022427", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022427", - "_tpl": "64898602f09d032aa9399d56", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (325) [9e7f768f-df70-4a78-8773-1f157217055c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 352.634, + "y": 2.998, + "z": 451.433 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022428", - "_tpl": "61962b617c6c7b169525f168", - "parentId": "66cbbe6fd31d686b24022427", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223e1", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223e1", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223e2", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6fd31d686b240223e1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (348) [de54abbb-f9fa-4b26-b44e-3c6fecb4416c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 404.642, - "y": 16.455, - "z": 529.201 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402242b", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402242b", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (326) [19077d93-9a34-4c86-ae26-51a0caf034c0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 359.987, + "y": 2.938, + "z": 462.037 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402242c", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbbe6fd31d686b2402242b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223e5", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223e5", + "_tpl": "6570241bcfc010a0f50069f5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223e6", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbbe6fd31d686b240223e5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (352) [23032d2e-4e82-4e1d-9604-3f8d561a70d8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 404.712, - "y": 16.195, - "z": 532.637 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402242f", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402242f", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (327) [b944429a-cc56-4067-bcaa-37ba1db60241]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 362.016, + "y": 3.39, + "z": 460.64 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022430", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbbe6fd31d686b2402242f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223e9", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223e9", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223ea", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbbe6fd31d686b240223e9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (355) [0c51658e-3ad3-493b-b268-88884a2d818b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 404.878, - "y": 16.195, - "z": 532.993 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022434", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022434", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (328) [29e87525-6994-4761-9a6f-be34cfff3202]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 363.505, + "y": 2.741, + "z": 462.359 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022435", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6fd31d686b24022434", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223ed", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223ed", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223ee", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6fd31d686b240223ed", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "mix_food_ammo_common (33) [a249d661-606d-468a-a032-ba9b24cc9ae5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -96.556, + "y": 11.201, + "z": -867.602 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022436", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbbe6fd31d686b24022434", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223f1", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223f1", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223f2", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbbe6fd31d686b240223f1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (357) [9a0d2668-1f01-422b-a065-e3e893c12858]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 354.953, - "y": 20.026, - "z": 537.5 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022438", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022438", - "_tpl": "635a758bfefc88a93f021b8a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (331) [1828101d-a7c8-4b88-9ea1-df3d88690339]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 366.633, + "y": 3.322, + "z": 469.014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223f4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223f4", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (359) [161c03cf-4184-4b64-a788-ae2f20f71fec]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 353.074, - "y": 19.942, - "z": 536.975 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402243b", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402243b", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (332) [76263894-a24d-4155-b41b-a272413774a7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 368.693, + "y": 2.276, + "z": 468.62 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402243c", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbbe6fd31d686b2402243b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223f7", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223f7", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223f8", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbbe6fd31d686b240223f7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (36) [5d80bc12-62c6-43d8-a464-63786a04d870]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -134.434, - "y": 13.079, - "z": -817.41 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402243f", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402243f", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (333) [8d7505bc-4e2a-45ec-b5b1-1c9574c6daa0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 313.273, + "y": 2.289, + "z": 483.55 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022440", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbbe6fd31d686b2402243f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223fb", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223fb", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240223fc", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbbe6fd31d686b240223fb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (368) [4eeecce1-198a-450a-82d8-f3e7655e86ce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 372.892, - "y": 16.226, - "z": 560.427 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022443", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022443", - "_tpl": "657024e3c5d7d4cb4d07856a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (334) [a3a9d886-3554-4b78-9269-b2221bdfba3f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 314.867, + "y": 2.937, + "z": 483.312 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022444", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbbe6fd31d686b24022443", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240223ff", + "Items": [ + { + "_id": "66cbbe6fd31d686b240223ff", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022400", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbbe6fd31d686b240223ff", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (369) [217b5111-6262-4f3f-897b-96c7a218c86f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 373.274, - "y": 16.053, - "z": 560.141 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022447", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022447", - "_tpl": "64acea0d03378853630da53b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (335) [b139f247-4bf6-47c6-b672-a484cfc500c8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 320.896, + "y": 2.738, + "z": 483.465 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022448", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbbe6fd31d686b24022447", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022404", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022404", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022405", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6fd31d686b24022404", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6fd31d686b24022406", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6fd31d686b24022404", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (37) [6d8fbb64-5123-4d80-ac97-ac643c65d730]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.802, - "y": 13.079, - "z": -816.418 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402244c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402244c", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (336) [c6f7b379-6f31-47da-9cbd-41e3e7eaa31e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 325.150482, + "y": 2.708, + "z": 488.516174 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402244d", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6fd31d686b2402244c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022409", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022409", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402240a", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbbe6fd31d686b24022409", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "mix_food_ammo_common (337) [4fc7c035-46c2-4418-8822-a95f0d3b2686]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 334.144, + "y": 2.964, + "z": 487.497 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402244e", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbbe6fd31d686b2402244c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402240d", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402240d", + "_tpl": "657023f81419851aef03e6f1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402240e", + "_tpl": "5f0596629e22f464da6bbdd9", + "parentId": "66cbbe6fd31d686b2402240d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (370) [3e4f92c3-fe48-433b-8b69-df07001967c5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 375.011, - "y": 16.26, - "z": 558.929 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022451", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022451", - "_tpl": "657024aebfc87b3a3409322f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (338) [a003cd70-5c77-413b-91a9-eaca599637b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 333.562, + "y": 3.006, + "z": 487.654 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022452", - "_tpl": "5e85a9a6eacf8c039e4e2ac1", - "parentId": "66cbbe6fd31d686b24022451", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022412", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022412", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022413", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6fd31d686b24022412", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6fd31d686b24022414", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6fd31d686b24022412", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (376) [7e39cb24-7b4f-44c2-8148-3077505e2a5f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 412.628, - "y": 15.917, - "z": 542.623 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022455", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022455", - "_tpl": "65702406bfc87b3a34093216", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (341) [9e329771-1365-4422-ab41-378a1c160164]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 324.122, + "y": 2.939, + "z": 486.913 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022456", - "_tpl": "5efb0fc6aeb21837e749c801", - "parentId": "66cbbe6fd31d686b24022455", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022417", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022417", + "_tpl": "657023bebfc87b3a34093207", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022418", + "_tpl": "5fbe3ffdf8b6a877a729ea82", + "parentId": "66cbbe6fd31d686b24022417", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (378) [6a1698a5-783c-4965-941b-5c9e74a71c25]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 378.688, - "y": 15.826, - "z": 569.236 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022458", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022458", - "_tpl": "6389c6463485cf0eeb260715", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (342) [5726061f-d8ef-46c5-90b9-2c4245842a7f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 322.961, + "y": 5.673, + "z": 492.109 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402241b", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402241b", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402241c", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbbe6fd31d686b2402241b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (379) [fb73110f-1065-47e9-b130-321693b7cabf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 379.063, - "y": 15.826, - "z": 570.427 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402245b", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402245b", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (344) [d3cb127a-90e9-412f-bb64-ba9fd734b42b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 387.355, + "y": 1.625, + "z": 442.737 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402245c", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbbe6fd31d686b2402245b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402241f", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402241f", + "_tpl": "64aceaecc4eda9354b0226b6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022420", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbbe6fd31d686b2402241f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (380) [f0884787-417f-4022-bc17-34f83a62d69a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 378.755, - "y": 15.826, - "z": 569.887 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022460", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022460", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (346) [5dc26176-e90e-4e63-bcea-642206bb9174]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 420.36, + "y": 14.174, + "z": 510.461 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022461", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbbe6fd31d686b24022460", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022423", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022423", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022424", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbbe6fd31d686b24022423", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "mix_food_ammo_common (347) [bb1c1f8b-8777-4d4f-838b-c2bf92298a7c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 418.831, + "y": 13.508, + "z": 511.7 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022462", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbbe6fd31d686b24022460", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022427", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022427", + "_tpl": "64898602f09d032aa9399d56", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022428", + "_tpl": "61962b617c6c7b169525f168", + "parentId": "66cbbe6fd31d686b24022427", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (382) [04395d21-953e-438f-80ed-3af46519d94f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.32, - "y": 14.766, - "z": -622.242 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022465", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022465", - "_tpl": "657024b31419851aef03e70f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (348) [de54abbb-f9fa-4b26-b44e-3c6fecb4416c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 404.642, + "y": 16.455, + "z": 529.201 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022466", - "_tpl": "5f647f31b6238e5dd066e196", - "parentId": "66cbbe6fd31d686b24022465", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402242b", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402242b", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402242c", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbbe6fd31d686b2402242b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (385) [c16936a8-1b75-4a09-b85d-56534506b0bd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.901, - "y": 15.256, - "z": -637.82 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022469", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022469", - "_tpl": "6570241bcfc010a0f50069f5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (352) [23032d2e-4e82-4e1d-9604-3f8d561a70d8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 404.712, + "y": 16.195, + "z": 532.637 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402246a", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbbe6fd31d686b24022469", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402242f", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402242f", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022430", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbbe6fd31d686b2402242f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (386) [dc35f4b5-befa-411d-b031-d89ceeaf6c4a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.471, - "y": 14.811, - "z": -626.719 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402246d", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402246d", - "_tpl": "6570251ccfc010a0f5006a13", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (355) [0c51658e-3ad3-493b-b268-88884a2d818b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 404.878, + "y": 16.195, + "z": 532.993 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402246e", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbbe6fd31d686b2402246d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022434", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022434", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022435", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6fd31d686b24022434", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6fd31d686b24022436", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbbe6fd31d686b24022434", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (388) [3d5c5b52-7ab2-4661-9388-f48a6e2f22d1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 52.07, - "y": 15.12, - "z": -626.55 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022470", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022470", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (357) [9a0d2668-1f01-422b-a065-e3e893c12858]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 354.953, + "y": 20.026, + "z": 537.5 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022438", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022438", + "_tpl": "635a758bfefc88a93f021b8a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (389) [993f5025-5b6c-43b7-8f58-e978f968d6ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.5, - "y": 15.12, - "z": -626.694 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022473", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022473", - "_tpl": "6570240a1419851aef03e6f7", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (359) [161c03cf-4184-4b64-a788-ae2f20f71fec]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 353.074, + "y": 19.942, + "z": 536.975 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022474", - "_tpl": "5efb0d4f4bc50b58e81710f3", - "parentId": "66cbbe6fd31d686b24022473", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402243b", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402243b", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402243c", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbbe6fd31d686b2402243b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (39) [292f75e5-fc0f-48d1-8d12-2eb57210a4db]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -177.314, - "y": 5.75, - "z": -741.106 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022478", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022478", - "_tpl": "657024831419851aef03e703", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (36) [5d80bc12-62c6-43d8-a464-63786a04d870]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -134.434, + "y": 13.079, + "z": -817.41 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022479", - "_tpl": "5d6e695fa4b936359b35d852", - "parentId": "66cbbe6fd31d686b24022478", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402243f", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402243f", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022440", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbbe6fd31d686b2402243f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "mix_food_ammo_common (368) [4eeecce1-198a-450a-82d8-f3e7655e86ce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 372.892, + "y": 16.226, + "z": 560.427 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402247a", - "_tpl": "5d6e695fa4b936359b35d852", - "parentId": "66cbbe6fd31d686b24022478", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022443", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022443", + "_tpl": "657024e3c5d7d4cb4d07856a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022444", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbbe6fd31d686b24022443", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (390) [6da723f1-3be8-4255-95ce-708035ae2a21]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 49.839, - "y": 15.157, - "z": -600.53 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402247d", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402247d", - "_tpl": "657025421419851aef03e71e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (369) [217b5111-6262-4f3f-897b-96c7a218c86f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 373.274, + "y": 16.053, + "z": 560.141 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402247e", - "_tpl": "5736026a245977644601dc61", - "parentId": "66cbbe6fd31d686b2402247d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022447", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022447", + "_tpl": "64acea0d03378853630da53b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022448", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbbe6fd31d686b24022447", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (391) [b785390d-6ba0-4567-b58f-10c521439de6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.034, - "y": 15.157, - "z": -599.345 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022480", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022480", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (37) [6d8fbb64-5123-4d80-ac97-ac643c65d730]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.802, + "y": 13.079, + "z": -816.418 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402244c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402244c", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402244d", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6fd31d686b2402244c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6fd31d686b2402244e", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbbe6fd31d686b2402244c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (392) [dca845bf-0834-4a71-a512-90bd64d9df3e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 42.141, - "y": 15.259, - "z": -603.821 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022483", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022483", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (370) [3e4f92c3-fe48-433b-8b69-df07001967c5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 375.011, + "y": 16.26, + "z": 558.929 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022484", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbbe6fd31d686b24022483", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022451", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022451", + "_tpl": "657024aebfc87b3a3409322f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022452", + "_tpl": "5e85a9a6eacf8c039e4e2ac1", + "parentId": "66cbbe6fd31d686b24022451", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (393) [d318f6ac-5b41-4bf5-99dc-3fbec158654e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -117.01, - "y": 5.583, - "z": -753.929 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022487", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022487", - "_tpl": "6489875745f9ca4ba51c4808", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (376) [7e39cb24-7b4f-44c2-8148-3077505e2a5f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 412.628, + "y": 15.917, + "z": 542.623 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022488", - "_tpl": "5a26ac0ec4a28200741e1e18", - "parentId": "66cbbe6fd31d686b24022487", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022455", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022455", + "_tpl": "65702406bfc87b3a34093216", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022456", + "_tpl": "5efb0fc6aeb21837e749c801", + "parentId": "66cbbe6fd31d686b24022455", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (398) [79e7d69d-02a6-4990-9498-e7dfee9c09b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -86.408, - "y": 15.022, - "z": -748.608 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402248b", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402248b", - "_tpl": "5c1262a286f7743f8a69aab2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (378) [6a1698a5-783c-4965-941b-5c9e74a71c25]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 378.688, + "y": 15.826, + "z": 569.236 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402248c", - "_tpl": "5c0d5e4486f77478390952fe", - "parentId": "66cbbe6fd31d686b2402248b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022458", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022458", + "_tpl": "6389c6463485cf0eeb260715", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (40) [7a3935e3-9c44-4cc9-8d5f-2c91afe8741a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -177.676, - "y": 5.75, - "z": -741.361 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402248f", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402248f", - "_tpl": "657025281419851aef03e71b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (379) [fb73110f-1065-47e9-b130-321693b7cabf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 379.063, + "y": 15.826, + "z": 570.427 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022490", - "_tpl": "5cc80f8fe4a949033b0224a2", - "parentId": "66cbbe6fd31d686b2402248f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402245b", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402245b", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402245c", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbbe6fd31d686b2402245b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (400) [f585f4aa-9163-440d-9c71-438cd0589842]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -88.178, - "y": 15.239, - "z": -748.277 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022492", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022492", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (380) [f0884787-417f-4022-bc17-34f83a62d69a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 378.755, + "y": 15.826, + "z": 569.887 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022460", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022460", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022461", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbbe6fd31d686b24022460", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6fd31d686b24022462", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbbe6fd31d686b24022460", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (402) [38590de6-c67f-4d47-af34-229c5ead2aa7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.256, - "y": 5.262, - "z": -643.164 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022495", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022495", - "_tpl": "657024bdc5d7d4cb4d078564", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (382) [04395d21-953e-438f-80ed-3af46519d94f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.32, + "y": 14.766, + "z": -622.242 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022496", - "_tpl": "5e85a9f4add9fe03027d9bf1", - "parentId": "66cbbe6fd31d686b24022495", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022465", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022465", + "_tpl": "657024b31419851aef03e70f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022466", + "_tpl": "5f647f31b6238e5dd066e196", + "parentId": "66cbbe6fd31d686b24022465", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (403) [71fa09b1-3ca0-4ee0-9c8d-6329e68e2802]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.762, - "y": 5.65, - "z": -645.053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022499", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022499", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (385) [c16936a8-1b75-4a09-b85d-56534506b0bd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.901, + "y": 15.256, + "z": -637.82 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402249a", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbbe6fd31d686b24022499", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022469", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022469", + "_tpl": "6570241bcfc010a0f50069f5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402246a", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbbe6fd31d686b24022469", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (404) [7dada56e-766b-422a-9599-2b4ff448d75c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.744, - "y": 5.65, - "z": -645.339 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402249d", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402249d", - "_tpl": "65702420bfc87b3a34093219", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (386) [dc35f4b5-befa-411d-b031-d89ceeaf6c4a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.471, + "y": 14.811, + "z": -626.719 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402249e", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66cbbe6fd31d686b2402249d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402246d", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402246d", + "_tpl": "6570251ccfc010a0f5006a13", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402246e", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbbe6fd31d686b2402246d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (407) [aa9b56d0-f195-42fd-8caa-89fc39b29bc9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -175.33, - "y": 5.593, - "z": -645.1 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224a0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224a0", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 59 + { + "Id": "mix_food_ammo_common (388) [3d5c5b52-7ab2-4661-9388-f48a6e2f22d1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 52.07, + "y": 15.12, + "z": -626.55 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022470", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022470", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (409) [1d9cb466-f670-4d86-83c5-410bef306773]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -177.179, - "y": 5.596, - "z": -645.217 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224a2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224a2", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (389) [993f5025-5b6c-43b7-8f58-e978f968d6ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.5, + "y": 15.12, + "z": -626.694 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022473", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022473", + "_tpl": "6570240a1419851aef03e6f7", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022474", + "_tpl": "5efb0d4f4bc50b58e81710f3", + "parentId": "66cbbe6fd31d686b24022473", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (41) [1f602c4a-6a5d-425d-a8e9-036eba909c9f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -180.443, - "y": 5.819, - "z": -743.411 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224a6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224a6", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (39) [292f75e5-fc0f-48d1-8d12-2eb57210a4db]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -177.314, + "y": 5.75, + "z": -741.106 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224a7", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6fd31d686b240224a6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022478", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022478", + "_tpl": "657024831419851aef03e703", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022479", + "_tpl": "5d6e695fa4b936359b35d852", + "parentId": "66cbbe6fd31d686b24022478", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6fd31d686b2402247a", + "_tpl": "5d6e695fa4b936359b35d852", + "parentId": "66cbbe6fd31d686b24022478", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "mix_food_ammo_common (390) [6da723f1-3be8-4255-95ce-708035ae2a21]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 49.839, + "y": 15.157, + "z": -600.53 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224a8", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6fd31d686b240224a6", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402247d", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402247d", + "_tpl": "657025421419851aef03e71e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402247e", + "_tpl": "5736026a245977644601dc61", + "parentId": "66cbbe6fd31d686b2402247d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (411) [a2d22ed1-e23d-48f4-b381-cc014a3a01cf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -177.868, - "y": 5.429, - "z": -644.229 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224ab", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224ab", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (391) [b785390d-6ba0-4567-b58f-10c521439de6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.034, + "y": 15.157, + "z": -599.345 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224ac", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6fd31d686b240224ab", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022480", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022480", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (412) [6c4a40b9-fbcc-4432-a035-0d20d861f247]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -192.554, - "y": 5.341, - "z": -648.689 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224af", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224af", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (392) [dca845bf-0834-4a71-a512-90bd64d9df3e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 42.141, + "y": 15.259, + "z": -603.821 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224b0", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6fd31d686b240224af", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022483", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022483", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022484", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbbe6fd31d686b24022483", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (413) [1e6aa49b-3997-4921-8a70-06e19cae5788]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -193.339, - "y": 5.341, - "z": -648.873 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224b3", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224b3", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (393) [d318f6ac-5b41-4bf5-99dc-3fbec158654e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -117.01, + "y": 5.583, + "z": -753.929 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224b4", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6fd31d686b240224b3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022487", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022487", + "_tpl": "6489875745f9ca4ba51c4808", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022488", + "_tpl": "5a26ac0ec4a28200741e1e18", + "parentId": "66cbbe6fd31d686b24022487", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (414) [317a057a-db48-4443-8588-5704a66568d8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -192.766, - "y": 5.2457, - "z": -644.99 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224b7", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224b7", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (398) [79e7d69d-02a6-4990-9498-e7dfee9c09b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -86.408, + "y": 15.022, + "z": -748.608 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224b8", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbbe6fd31d686b240224b7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402248b", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402248b", + "_tpl": "5c1262a286f7743f8a69aab2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402248c", + "_tpl": "5c0d5e4486f77478390952fe", + "parentId": "66cbbe6fd31d686b2402248b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (415) [68001259-a3f7-4f57-97eb-321e9ead8477]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -192.699, - "y": 5.2457, - "z": -644.563 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224ba", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224ba", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (40) [7a3935e3-9c44-4cc9-8d5f-2c91afe8741a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -177.676, + "y": 5.75, + "z": -741.361 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402248f", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402248f", + "_tpl": "657025281419851aef03e71b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022490", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "66cbbe6fd31d686b2402248f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (419) [834538c4-6875-4803-a236-85103e2ce2aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 352.225, - "y": 16.969, - "z": 559.298 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224bd", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224bd", - "_tpl": "657025a4bfc87b3a34093250", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (400) [f585f4aa-9163-440d-9c71-438cd0589842]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -88.178, + "y": 15.239, + "z": -748.277 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224be", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "66cbbe6fd31d686b240224bd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022492", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022492", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (422) [bc949922-3d74-4457-9093-6f4ef95897f8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 353.611, - "y": 15.926, - "z": 560.779 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224c1", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224c1", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (402) [38590de6-c67f-4d47-af34-229c5ead2aa7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.256, + "y": 5.262, + "z": -643.164 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224c2", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6fd31d686b240224c1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022495", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022495", + "_tpl": "657024bdc5d7d4cb4d078564", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022496", + "_tpl": "5e85a9f4add9fe03027d9bf1", + "parentId": "66cbbe6fd31d686b24022495", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (427) [73ec84dc-e8b6-4510-baaf-fa1d5341645f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 324.008, - "y": 2.694, - "z": 512.624 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224c5", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224c5", - "_tpl": "65702420bfc87b3a34093219", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (403) [71fa09b1-3ca0-4ee0-9c8d-6329e68e2802]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.762, + "y": 5.65, + "z": -645.053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224c6", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66cbbe6fd31d686b240224c5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022499", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022499", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402249a", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbbe6fd31d686b24022499", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (428) [ee5cf5ca-e792-4fce-98a5-847ec944f8d4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 323.566, - "y": 3.029, - "z": 512.936 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224c8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224c8", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (404) [7dada56e-766b-422a-9599-2b4ff448d75c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.744, + "y": 5.65, + "z": -645.339 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402249d", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402249d", + "_tpl": "65702420bfc87b3a34093219", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402249e", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66cbbe6fd31d686b2402249d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (43) [6181253b-306a-483c-b6a2-27a09574c726]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.259, - "y": 6.468, - "z": 478.068 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224ca", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224ca", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 51 + { + "Id": "mix_food_ammo_common (407) [aa9b56d0-f195-42fd-8caa-89fc39b29bc9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -175.33, + "y": 5.593, + "z": -645.1 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224a0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224a0", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 59 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (44) [2a5e3c83-95e3-4857-97c8-86627c0268e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.489, - "y": 6.468, - "z": 477.354 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224cd", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224cd", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (409) [1d9cb466-f670-4d86-83c5-410bef306773]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -177.179, + "y": 5.596, + "z": -645.217 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224ce", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6fd31d686b240224cd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224a2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224a2", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (49) [673180f0-bc99-4bce-801d-c898d074b71a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -72.365, - "y": 5.623, - "z": -732.151 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224d0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224d0", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (41) [1f602c4a-6a5d-425d-a8e9-036eba909c9f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -180.443, + "y": 5.819, + "z": -743.411 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224a6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224a6", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224a7", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6fd31d686b240224a6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6fd31d686b240224a8", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6fd31d686b240224a6", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (5) [c94419c2-7648-4969-aaea-1eed29bb61bb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.348, - "y": 1.929, - "z": 461.139 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224d2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224d2", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (411) [a2d22ed1-e23d-48f4-b381-cc014a3a01cf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -177.868, + "y": 5.429, + "z": -644.229 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224ab", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224ab", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224ac", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6fd31d686b240224ab", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (53) [2403369a-ca6f-4e0c-bb44-477e42bfce8f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.532, - "y": 5.552, - "z": -729.424 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224d5", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224d5", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (412) [6c4a40b9-fbcc-4432-a035-0d20d861f247]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -192.554, + "y": 5.341, + "z": -648.689 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224d6", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbbe6fd31d686b240224d5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224af", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224af", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224b0", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6fd31d686b240224af", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (54) [e0ae199a-48e4-4c57-b176-5034ff8681bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.41, - "y": 5.552, - "z": -729.199 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224d9", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224d9", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (413) [1e6aa49b-3997-4921-8a70-06e19cae5788]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -193.339, + "y": 5.341, + "z": -648.873 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224da", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbbe6fd31d686b240224d9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224b3", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224b3", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224b4", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6fd31d686b240224b3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (55) [e175cd70-709f-4f67-955c-83b70ff1ff77]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -276.267, - "y": 15.074, - "z": -199.044 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224dd", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224dd", - "_tpl": "657024f9bfc87b3a3409323b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (414) [317a057a-db48-4443-8588-5704a66568d8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -192.766, + "y": 5.2457, + "z": -644.99 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224de", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6fd31d686b240224dd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224b7", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224b7", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224b8", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbbe6fd31d686b240224b7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (58) [68d792cb-791f-4b24-abf1-96908b7dd606]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -250.726, - "y": 15.046, - "z": -209.312 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224e1", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224e1", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (415) [68001259-a3f7-4f57-97eb-321e9ead8477]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -192.699, + "y": 5.2457, + "z": -644.563 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224e2", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbbe6fd31d686b240224e1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224ba", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224ba", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (59) [721b1064-e476-4c03-85bc-b036e85fcb2b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.373, - "y": 2.812, - "z": -573.097 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224e6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224e6", - "_tpl": "6570266bc5d7d4cb4d078594", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (419) [834538c4-6875-4803-a236-85103e2ce2aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 352.225, + "y": 16.969, + "z": 559.298 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224e7", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6fd31d686b240224e6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224bd", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224bd", + "_tpl": "657025a4bfc87b3a34093250", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224be", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "66cbbe6fd31d686b240224bd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "mix_food_ammo_common (422) [bc949922-3d74-4457-9093-6f4ef95897f8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 353.611, + "y": 15.926, + "z": 560.779 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224e8", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6fd31d686b240224e6", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224c1", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224c1", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224c2", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6fd31d686b240224c1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (6) [cd252765-9922-4461-93c1-019b6e7c5b54]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 57.712, - "y": 11.752, - "z": -817.181 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224ea", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224ea", - "_tpl": "5755383e24597772cb798966", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (427) [73ec84dc-e8b6-4510-baaf-fa1d5341645f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 324.008, + "y": 2.694, + "z": 512.624 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224c5", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224c5", + "_tpl": "65702420bfc87b3a34093219", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224c6", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66cbbe6fd31d686b240224c5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (60) [5189020d-98ee-47ba-9a1c-70146de693b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.024, - "y": 2.812, - "z": -573.114 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224ee", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224ee", - "_tpl": "65702426cfc010a0f50069f8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (428) [ee5cf5ca-e792-4fce-98a5-847ec944f8d4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 323.566, + "y": 3.029, + "z": 512.936 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224c8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224c8", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix_food_ammo_common (43) [6181253b-306a-483c-b6a2-27a09574c726]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.259, + "y": 6.468, + "z": 478.068 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224ef", - "_tpl": "5d6e6772a4b936088465b17c", - "parentId": "66cbbe6fd31d686b240224ee", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224ca", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224ca", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 51 + } } + ] + }, + { + "Id": "mix_food_ammo_common (44) [2a5e3c83-95e3-4857-97c8-86627c0268e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.489, + "y": 6.468, + "z": 477.354 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224f0", - "_tpl": "5d6e6772a4b936088465b17c", - "parentId": "66cbbe6fd31d686b240224ee", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224cd", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224cd", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224ce", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6fd31d686b240224cd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (64) [34a300e2-ce38-448a-9463-459c9267dc6c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.938, - "y": 2.633, - "z": -561.244 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224f3", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224f3", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (49) [673180f0-bc99-4bce-801d-c898d074b71a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -72.365, + "y": 5.623, + "z": -732.151 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224f4", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6fd31d686b240224f3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224d0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224d0", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (65) [a871a5e3-e4c7-4d19-b3e8-14333eb95a88]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -96.877, - "y": 2.167, - "z": -519.467 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224f7", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224f7", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (5) [c94419c2-7648-4969-aaea-1eed29bb61bb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.348, + "y": 1.929, + "z": 461.139 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224f8", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbbe6fd31d686b240224f7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224d2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224d2", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (67) [b42f3665-bb27-4a1a-8b90-e2efc08d7a43]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -97.766, - "y": 2.167, - "z": -519.061 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224fb", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224fb", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (53) [2403369a-ca6f-4e0c-bb44-477e42bfce8f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.532, + "y": 5.552, + "z": -729.424 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240224fc", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbbe6fd31d686b240224fb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224d5", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224d5", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224d6", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbbe6fd31d686b240224d5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (68) [67d0a57f-0d38-4e48-9a38-7e0279931c72]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -97.983, - "y": 2.163, - "z": -519.09 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240224ff", - "Items": [ - { - "_id": "66cbbe6fd31d686b240224ff", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (54) [e0ae199a-48e4-4c57-b176-5034ff8681bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.41, + "y": 5.552, + "z": -729.199 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022500", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6fd31d686b240224ff", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224d9", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224d9", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224da", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbbe6fd31d686b240224d9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (70) [1d4aff95-1069-4e3e-badb-627877c89fad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.529, - "y": 5.832, - "z": -530.386 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022503", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022503", - "_tpl": "657023ccbfc87b3a3409320a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (55) [e175cd70-709f-4f67-955c-83b70ff1ff77]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -276.267, + "y": 15.074, + "z": -199.044 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022504", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "66cbbe6fd31d686b24022503", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224dd", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224dd", + "_tpl": "657024f9bfc87b3a3409323b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224de", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6fd31d686b240224dd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (71) [bd7ea0a9-32f7-41d3-b846-5f9af698b0fc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -167.937, - "y": 5.832, - "z": -531.065 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022507", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022507", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (58) [68d792cb-791f-4b24-abf1-96908b7dd606]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -250.726, + "y": 15.046, + "z": -209.312 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022508", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbbe6fd31d686b24022507", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224e1", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224e1", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224e2", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbbe6fd31d686b240224e1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (73) [8eb20507-8887-4d6c-ac40-ef04cd188e93]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.4, - "y": 5.803, - "z": -500.52 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402250b", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402250b", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (59) [721b1064-e476-4c03-85bc-b036e85fcb2b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.373, + "y": 2.812, + "z": -573.097 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402250c", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbbe6fd31d686b2402250b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224e6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224e6", + "_tpl": "6570266bc5d7d4cb4d078594", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224e7", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6fd31d686b240224e6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6fd31d686b240224e8", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6fd31d686b240224e6", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (74) [27184358-4d16-429a-89ff-7934f3dbc271]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -172.013, - "y": 5.921, - "z": -500.185 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022510", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022510", - "_tpl": "65702474bfc87b3a34093226", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (6) [cd252765-9922-4461-93c1-019b6e7c5b54]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 57.712, + "y": 11.752, + "z": -817.181 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022511", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6fd31d686b24022510", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224ea", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224ea", + "_tpl": "5755383e24597772cb798966", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix_food_ammo_common (60) [5189020d-98ee-47ba-9a1c-70146de693b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.024, + "y": 2.812, + "z": -573.114 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022512", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbbe6fd31d686b24022510", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224ee", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224ee", + "_tpl": "65702426cfc010a0f50069f8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224ef", + "_tpl": "5d6e6772a4b936088465b17c", + "parentId": "66cbbe6fd31d686b240224ee", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6fd31d686b240224f0", + "_tpl": "5d6e6772a4b936088465b17c", + "parentId": "66cbbe6fd31d686b240224ee", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (76) [10ba22e0-3d89-4e20-9ce6-7bc8c79766ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.351, - "y": 5.04, - "z": -485.043 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022515", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022515", - "_tpl": "648986bbc827d4637f01791e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (64) [34a300e2-ce38-448a-9463-459c9267dc6c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.938, + "y": 2.633, + "z": -561.244 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022516", - "_tpl": "5cc80f38e4a949001152b560", - "parentId": "66cbbe6fd31d686b24022515", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224f3", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224f3", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224f4", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6fd31d686b240224f3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (77) [be4b6927-27a8-45f0-89cb-db591520e576]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.878, - "y": 6.058, - "z": -484.261 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022519", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022519", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (65) [a871a5e3-e4c7-4d19-b3e8-14333eb95a88]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -96.877, + "y": 2.167, + "z": -519.467 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402251a", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbbe6fd31d686b24022519", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224f7", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224f7", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224f8", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbbe6fd31d686b240224f7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (79) [97408f8c-3a0d-42df-96f2-e20133264126]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -172.116, - "y": 5.286, - "z": -447.106 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402251d", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402251d", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (67) [b42f3665-bb27-4a1a-8b90-e2efc08d7a43]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -97.766, + "y": 2.167, + "z": -519.061 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402251e", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbbe6fd31d686b2402251d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224fb", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224fb", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240224fc", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbbe6fd31d686b240224fb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (8) [a2c3f4a7-e95f-468e-8ed9-c659462f741d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.913, - "y": 11.752, - "z": -815.326 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022520", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022520", - "_tpl": "590c5f0d86f77413997acfab", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (68) [67d0a57f-0d38-4e48-9a38-7e0279931c72]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -97.983, + "y": 2.163, + "z": -519.09 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240224ff", + "Items": [ + { + "_id": "66cbbe6fd31d686b240224ff", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022500", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6fd31d686b240224ff", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (81) [c856dce8-62d4-4621-915d-1d1b789bb201]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.702, - "y": 5.395, - "z": -551.823 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022523", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022523", - "_tpl": "657024b31419851aef03e70f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (70) [1d4aff95-1069-4e3e-badb-627877c89fad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.529, + "y": 5.832, + "z": -530.386 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022524", - "_tpl": "5f647f31b6238e5dd066e196", - "parentId": "66cbbe6fd31d686b24022523", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022503", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022503", + "_tpl": "657023ccbfc87b3a3409320a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022504", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "66cbbe6fd31d686b24022503", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (82) [f09db3d8-b82e-4481-aa29-82595f17c19d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 31.951, - "y": 5.529, - "z": -543.336 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022527", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022527", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (71) [bd7ea0a9-32f7-41d3-b846-5f9af698b0fc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -167.937, + "y": 5.832, + "z": -531.065 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022528", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbbe6fd31d686b24022527", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022507", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022507", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022508", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbbe6fd31d686b24022507", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (83) [a7004876-2bab-49b2-b138-4048659f61ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.384, - "y": 5.529, - "z": -543.673 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402252b", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402252b", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (73) [8eb20507-8887-4d6c-ac40-ef04cd188e93]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.4, + "y": 5.803, + "z": -500.52 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402252c", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbbe6fd31d686b2402252b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402250b", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402250b", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402250c", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbbe6fd31d686b2402250b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (9) [f8149610-84c0-4560-a929-924dc03a8864]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 59.873, - "y": 10.833, - "z": -811.95 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402252f", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402252f", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (74) [27184358-4d16-429a-89ff-7934f3dbc271]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -172.013, + "y": 5.921, + "z": -500.185 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022530", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbbe6fd31d686b2402252f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022510", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022510", + "_tpl": "65702474bfc87b3a34093226", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022511", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6fd31d686b24022510", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbbe6fd31d686b24022512", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbbe6fd31d686b24022510", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (92) [1d7ff537-e113-43b7-8bdb-4406855853f3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.971, - "y": 5.268, - "z": -679.891 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022534", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022534", - "_tpl": "6570266bc5d7d4cb4d078594", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (76) [10ba22e0-3d89-4e20-9ce6-7bc8c79766ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.351, + "y": 5.04, + "z": -485.043 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022535", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6fd31d686b24022534", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022515", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022515", + "_tpl": "648986bbc827d4637f01791e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022516", + "_tpl": "5cc80f38e4a949001152b560", + "parentId": "66cbbe6fd31d686b24022515", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "mix_food_ammo_common (77) [be4b6927-27a8-45f0-89cb-db591520e576]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.878, + "y": 6.058, + "z": -484.261 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022536", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbbe6fd31d686b24022534", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022519", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022519", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402251a", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbbe6fd31d686b24022519", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (97) [d895a739-30be-4cfe-94f1-212741508a12]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 71.395, - "y": 6.032, - "z": -274.007 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022539", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022539", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (79) [97408f8c-3a0d-42df-96f2-e20133264126]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -172.116, + "y": 5.286, + "z": -447.106 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402253a", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbbe6fd31d686b24022539", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402251d", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402251d", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402251e", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbbe6fd31d686b2402251d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (98) [693453f0-f087-43bb-b26d-32552426dd8a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 71.238, - "y": 6.032, - "z": -274.613 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402253d", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402253d", - "_tpl": "6570261dc5d7d4cb4d07858e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (8) [a2c3f4a7-e95f-468e-8ed9-c659462f741d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.913, + "y": 11.752, + "z": -815.326 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402253e", - "_tpl": "57371eb62459776125652ac1", - "parentId": "66cbbe6fd31d686b2402253d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022520", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022520", + "_tpl": "590c5f0d86f77413997acfab", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (99) [70586ad7-4eeb-4ef8-8e0c-d8e0fe21f022]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 108.297, - "y": 0.638, - "z": -163.559 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022540", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022540", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (81) [c856dce8-62d4-4621-915d-1d1b789bb201]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.702, + "y": 5.395, + "z": -551.823 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022523", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022523", + "_tpl": "657024b31419851aef03e70f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022524", + "_tpl": "5f647f31b6238e5dd066e196", + "parentId": "66cbbe6fd31d686b24022523", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common [4e96ec51-2bc7-4d2f-968c-34e266bc23b5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.016, - "y": 1.272, - "z": 458.829 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022543", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022543", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (82) [f09db3d8-b82e-4481-aa29-82595f17c19d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 31.951, + "y": 5.529, + "z": -543.336 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022544", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbbe6fd31d686b24022543", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022527", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022527", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022528", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbbe6fd31d686b24022527", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Mods NATO (14) [0dfcff9f-cc5c-47b3-b5ec-6a403b76fe98]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -171.257, - "y": 5.919, - "z": -497.109 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022546", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022546", - "_tpl": "5b099b7d5acfc400186331e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (83) [a7004876-2bab-49b2-b138-4048659f61ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.384, + "y": 5.529, + "z": -543.673 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402252b", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402252b", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402252c", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbbe6fd31d686b2402252b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Mods NATO (15) [258467d2-7f04-464b-a1e1-ef3bdb67b67e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.071, - "y": 2.557, - "z": -475.847 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022548", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022548", - "_tpl": "5cadd954ae921500103bb3c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (9) [f8149610-84c0-4560-a929-924dc03a8864]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 59.873, + "y": 10.833, + "z": -811.95 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402252f", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402252f", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022530", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbbe6fd31d686b2402252f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Mods NATO (16) [c0abb27d-9c18-4102-a191-e5ccf3487a0f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -86.617, - "y": 19.156, - "z": -70.054 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402254a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402254a", - "_tpl": "6113cc78d3a39d50044c065a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (92) [1d7ff537-e113-43b7-8bdb-4406855853f3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.971, + "y": 5.268, + "z": -679.891 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022534", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022534", + "_tpl": "6570266bc5d7d4cb4d078594", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022535", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6fd31d686b24022534", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbbe6fd31d686b24022536", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbbe6fd31d686b24022534", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "Mods NATO (17) [76261bed-9a53-44e8-9184-c042e00dba70]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 4.226, - "y": 2.557, - "z": -475.685 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402254c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402254c", - "_tpl": "5a789261c5856700186c65d3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (97) [d895a739-30be-4cfe-94f1-212741508a12]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 71.395, + "y": 6.032, + "z": -274.007 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022539", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022539", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402253a", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbbe6fd31d686b24022539", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Mods NATO (19) [4cbb6bec-5d20-4b81-a05a-8dbbf20695ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -85.065, - "y": 18.939, - "z": -64.913 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402254e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402254e", - "_tpl": "6034e3cb0ddce744014cb870", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (98) [693453f0-f087-43bb-b26d-32552426dd8a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 71.238, + "y": 6.032, + "z": -274.613 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402253d", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402253d", + "_tpl": "6570261dc5d7d4cb4d07858e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402253e", + "_tpl": "57371eb62459776125652ac1", + "parentId": "66cbbe6fd31d686b2402253d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Mods NATO (2) [601afdf2-4130-4a8a-9ac2-02a69d0d78f0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -65.839, - "y": 27.71, - "z": 113.894 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022550", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022550", - "_tpl": "5c6d11152e2216000f2003e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (99) [70586ad7-4eeb-4ef8-8e0c-d8e0fe21f022]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 108.297, + "y": 0.638, + "z": -163.559 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022540", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022540", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (20) [6f8cf7fa-42c7-48f6-b841-582b3cada211]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -84.802, - "y": 18.939, - "z": -65.377 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022552", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022552", - "_tpl": "5d02676dd7ad1a049e54f6dc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common [4e96ec51-2bc7-4d2f-968c-34e266bc23b5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.016, + "y": 1.272, + "z": 458.829 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022543", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022543", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022544", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbbe6fd31d686b24022543", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Mods NATO (22) [5026adf5-e781-4839-b3fe-ee5d848c8334]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.615, - "y": 41.937, - "z": 95.693 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022554", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022554", - "_tpl": "5c6165902e22160010261b28", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (14) [0dfcff9f-cc5c-47b3-b5ec-6a403b76fe98]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -171.257, + "y": 5.919, + "z": -497.109 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022546", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022546", + "_tpl": "5b099b7d5acfc400186331e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (22) [d500471a-b24b-464a-88b5-df93e254db15]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -112.9, - "y": 40.519, - "z": 97.156 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022556", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022556", - "_tpl": "655df24fdf80b12750626d0a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (15) [258467d2-7f04-464b-a1e1-ef3bdb67b67e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.071, + "y": 2.557, + "z": -475.847 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022548", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022548", + "_tpl": "5cadd954ae921500103bb3c2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (23) [61883871-e76b-4fcd-9dca-717a91867103]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -132.608, - "y": 41.937, - "z": 95.358 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022558", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022558", - "_tpl": "602e620f9b513876d4338d9a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (16) [c0abb27d-9c18-4102-a191-e5ccf3487a0f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -86.617, + "y": 19.156, + "z": -70.054 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402254a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402254a", + "_tpl": "6113cc78d3a39d50044c065a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (23) [aa8e2225-9f1c-45d3-bc9c-e1d7495f2959]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -112.756, - "y": 40.535, - "z": 96.809 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402255a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402255a", - "_tpl": "5fce16961f152d4312622bc9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (17) [76261bed-9a53-44e8-9184-c042e00dba70]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 4.226, + "y": 2.557, + "z": -475.685 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402254c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402254c", + "_tpl": "5a789261c5856700186c65d3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (24) [25af798b-5bef-41f0-806d-dadc2fca644c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -72.683, - "y": 22.79, - "z": -61.189 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402255c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402255c", - "_tpl": "59db3b0886f77429d72fb895", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (19) [4cbb6bec-5d20-4b81-a05a-8dbbf20695ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -85.065, + "y": 18.939, + "z": -64.913 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402254e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402254e", + "_tpl": "6034e3cb0ddce744014cb870", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (27) [4523366b-5919-43dd-a0aa-ae0689349894]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 13.227, - "y": 2.508, - "z": -549.161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402255e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402255e", - "_tpl": "619666f4af1f5202c57a952d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (2) [601afdf2-4130-4a8a-9ac2-02a69d0d78f0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -65.839, + "y": 27.71, + "z": 113.894 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022550", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022550", + "_tpl": "5c6d11152e2216000f2003e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (27) [717b6784-2ffa-4d9b-b336-8a1e733d90c7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 342.254, - "y": 3.385, - "z": 506.094 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022560", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022560", - "_tpl": "5b363dea5acfc4771e1c5e7e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (20) [6f8cf7fa-42c7-48f6-b841-582b3cada211]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -84.802, + "y": 18.939, + "z": -65.377 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022552", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022552", + "_tpl": "5d02676dd7ad1a049e54f6dc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (28) [cfda8d65-9275-49ac-ac96-7159bb5fc6fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 342.498, - "y": 3.506, - "z": 506.225 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022562", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022562", - "_tpl": "5a702d198dc32e000b452fc3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (22) [5026adf5-e781-4839-b3fe-ee5d848c8334]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.615, + "y": 41.937, + "z": 95.693 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022554", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022554", + "_tpl": "5c6165902e22160010261b28", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (29) [2680635a-318b-4618-844f-d9af0e0666ef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 342.321, - "y": 3.048, - "z": 506.672 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022564", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022564", - "_tpl": "5926f34786f77469195bfe92", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (22) [d500471a-b24b-464a-88b5-df93e254db15]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -112.9, + "y": 40.519, + "z": 97.156 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022556", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022556", + "_tpl": "655df24fdf80b12750626d0a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (30) [c5d598c9-6315-4cec-bc75-d6634e9ab76d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 342.411, - "y": 3.501, - "z": 505.883 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022566", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022566", - "_tpl": "6269545d0e57f218e4548ca2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (23) [61883871-e76b-4fcd-9dca-717a91867103]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -132.608, + "y": 41.937, + "z": 95.358 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022558", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022558", + "_tpl": "602e620f9b513876d4338d9a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (32) [bbaf5516-5260-4d66-8c18-7b08cb0e5532]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 8.514, - "y": 2.817, - "z": -505.525 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022568", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022568", - "_tpl": "5a34fae7c4a2826c6e06d760", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (23) [aa8e2225-9f1c-45d3-bc9c-e1d7495f2959]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -112.756, + "y": 40.535, + "z": 96.809 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402255a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402255a", + "_tpl": "5fce16961f152d4312622bc9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (33) [c0029c79-be7b-4865-a4aa-ab974a4c347b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 14.586, - "y": 2.374, - "z": -477.249 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402256a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402256a", - "_tpl": "6516e9bc5901745209404287", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (24) [25af798b-5bef-41f0-806d-dadc2fca644c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -72.683, + "y": 22.79, + "z": -61.189 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402255c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402255c", + "_tpl": "59db3b0886f77429d72fb895", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (34) [77ed7086-a341-415d-a8d1-f9130e91807e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 14.559, - "y": 2.961, - "z": -475.904 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402256c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402256c", - "_tpl": "618bab21526131765025ab3f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (27) [4523366b-5919-43dd-a0aa-ae0689349894]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 13.227, + "y": 2.508, + "z": -549.161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402255e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402255e", + "_tpl": "619666f4af1f5202c57a952d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (35) [93949d49-7721-47bd-b851-b5de0e2560eb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 14.607, - "y": 2.905, - "z": -476.817 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402256e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402256e", - "_tpl": "5a702d198dc32e000b452fc3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (27) [717b6784-2ffa-4d9b-b336-8a1e733d90c7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 342.254, + "y": 3.385, + "z": 506.094 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022560", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022560", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (38) [5cb5c97d-a3a2-481e-a841-bc6f29b248a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 14.455, - "y": 2.694, - "z": -473.738 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022570", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022570", - "_tpl": "5a6b60158dc32e000a31138b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (28) [cfda8d65-9275-49ac-ac96-7159bb5fc6fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 342.498, + "y": 3.506, + "z": 506.225 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022562", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022562", + "_tpl": "5a702d198dc32e000b452fc3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (39) [c3f8101e-750e-435b-9f66-96f1796aade0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 13.923, - "y": 2.56, - "z": -470.399 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022572", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022572", - "_tpl": "6130c43c67085e45ef1405a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (29) [2680635a-318b-4618-844f-d9af0e0666ef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 342.321, + "y": 3.048, + "z": 506.672 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022564", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022564", + "_tpl": "5926f34786f77469195bfe92", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (4) [620cd4c1-fa99-4aa3-9e6c-9d48116aa62d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -66.652, - "y": 27.437, - "z": 109.608 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022574", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022574", - "_tpl": "5d440b93a4b9364276578d4b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (30) [c5d598c9-6315-4cec-bc75-d6634e9ab76d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 342.411, + "y": 3.501, + "z": 505.883 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022566", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022566", + "_tpl": "6269545d0e57f218e4548ca2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (40) [35f2e46f-f074-4837-941b-145be5b8b988]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 12.869, - "y": 2.482, - "z": -470.246 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022576", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022576", - "_tpl": "61714b2467085e45ef140b2c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (32) [bbaf5516-5260-4d66-8c18-7b08cb0e5532]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 8.514, + "y": 2.817, + "z": -505.525 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022568", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022568", + "_tpl": "5a34fae7c4a2826c6e06d760", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (41) [58633d19-c84c-40fb-b5c2-b989e812a2bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.075, - "y": 5.673, - "z": -452.064 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022578", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022578", - "_tpl": "63f5ed14534b2c3d5479a677", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (33) [c0029c79-be7b-4865-a4aa-ab974a4c347b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 14.586, + "y": 2.374, + "z": -477.249 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402256a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402256a", + "_tpl": "6516e9bc5901745209404287", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (42) [b6e8a057-67fa-4bf7-b736-6773c6663f8b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.722, - "y": 5.673, - "z": -452.897 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402257a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402257a", - "_tpl": "615d8d878004cc50514c3233", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (34) [77ed7086-a341-415d-a8d1-f9130e91807e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 14.559, + "y": 2.961, + "z": -475.904 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402256c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402256c", + "_tpl": "618bab21526131765025ab3f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (44) [72f19194-eb69-417a-b481-bdec714a2a42]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -46.063, - "y": 8.294, - "z": -521.546 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402257c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402257c", - "_tpl": "5d00f63bd7ad1a59283b1c1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (35) [93949d49-7721-47bd-b851-b5de0e2560eb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 14.607, + "y": 2.905, + "z": -476.817 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402256e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402256e", + "_tpl": "5a702d198dc32e000b452fc3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (46) [e54a2503-00a6-4e81-8168-f4ac02312deb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -46.447, - "y": 8.294, - "z": -521.533 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402257e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402257e", - "_tpl": "5a78948ec5856700177b1124", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (38) [5cb5c97d-a3a2-481e-a841-bc6f29b248a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 14.455, + "y": 2.694, + "z": -473.738 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022570", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022570", + "_tpl": "5a6b60158dc32e000a31138b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (47) [340ed6ff-48b0-41c2-a6cf-9b3984ba2884]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -43.846, - "y": 7.563, - "z": -519.322 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022580", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022580", - "_tpl": "5b7d679f5acfc4001a5c4024", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (39) [c3f8101e-750e-435b-9f66-96f1796aade0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 13.923, + "y": 2.56, + "z": -470.399 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022572", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022572", + "_tpl": "6130c43c67085e45ef1405a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (5) [5277e66e-d7fb-471b-a755-58fbe89dcb87]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -66.698, - "y": 27.931, - "z": 109.608 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022582", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022582", - "_tpl": "619624b26db0f2477964e6b0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (4) [620cd4c1-fa99-4aa3-9e6c-9d48116aa62d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -66.652, + "y": 27.437, + "z": 109.608 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022574", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022574", + "_tpl": "5d440b93a4b9364276578d4b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (52) [ca977d32-39c2-42a7-bb6e-1740ab17042d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 321.638, - "y": 5.705, - "z": 495.234 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022584", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022584", - "_tpl": "5b3b99265acfc4704b4a1afb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (40) [35f2e46f-f074-4837-941b-145be5b8b988]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 12.869, + "y": 2.482, + "z": -470.246 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022576", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022576", + "_tpl": "61714b2467085e45ef140b2c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (54) [32a84365-880d-433b-839c-3737aa03b34d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 321.438, - "y": 5.705, - "z": 494.728 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022586", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022586", - "_tpl": "5b07dd285acfc4001754240d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (41) [58633d19-c84c-40fb-b5c2-b989e812a2bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.075, + "y": 5.673, + "z": -452.064 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022578", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022578", + "_tpl": "63f5ed14534b2c3d5479a677", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (55) [199811cd-3fdd-43f2-a5e9-7c9d423fc55d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 321.219, - "y": 5.705, - "z": 495.067 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022588", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022588", - "_tpl": "5addbf175acfc408fb13965b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (42) [b6e8a057-67fa-4bf7-b736-6773c6663f8b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.722, + "y": 5.673, + "z": -452.897 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402257a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402257a", + "_tpl": "615d8d878004cc50514c3233", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (6) [938ea937-1f0f-4f27-a02b-1a5ed1e581b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -75.69, - "y": 27.851, - "z": 109.383 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402258a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402258a", - "_tpl": "577d141e24597739c5255e01", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (44) [72f19194-eb69-417a-b481-bdec714a2a42]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -46.063, + "y": 8.294, + "z": -521.546 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402257c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402257c", + "_tpl": "5d00f63bd7ad1a59283b1c1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO (8) [bc8f7172-4262-4282-9a51-4b31200248b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -101.788, - "y": 33.231, - "z": 100.015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402258c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402258c", - "_tpl": "5d2dc3e548f035404a1a4798", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (46) [e54a2503-00a6-4e81-8168-f4ac02312deb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -46.447, + "y": 8.294, + "z": -521.533 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402257e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402257e", + "_tpl": "5a78948ec5856700177b1124", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (1) [da66fab1-dcf3-4437-9e5d-04a2baf8f15d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.831, - "y": 12.289, - "z": -899.33 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402258e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402258e", - "_tpl": "5c6d710d2e22165df16b81e7", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "mods_all (10) [1b556e7c-fe52-41aa-85e3-8979e068ab72]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.428, - "y": 3.005, - "z": -697.127 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "Mods NATO (47) [340ed6ff-48b0-41c2-a6cf-9b3984ba2884]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -43.846, + "y": 7.563, + "z": -519.322 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022580", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022580", + "_tpl": "5b7d679f5acfc4001a5c4024", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022590", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022590", - "_tpl": "56ea6fafd2720b844b8b4593", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (5) [5277e66e-d7fb-471b-a755-58fbe89dcb87]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -66.698, + "y": 27.931, + "z": 109.608 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022582", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022582", + "_tpl": "619624b26db0f2477964e6b0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (101) [4a038831-8ed6-4d14-8c36-a8ce03d7bb34]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.237, - "y": 15.073, - "z": -729.161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022592", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022592", - "_tpl": "665d5d9e338229cfd6078da1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (52) [ca977d32-39c2-42a7-bb6e-1740ab17042d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 321.638, + "y": 5.705, + "z": 495.234 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022584", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022584", + "_tpl": "5b3b99265acfc4704b4a1afb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (102) [fbfbf12c-8170-4761-88e8-83a81c26387e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.968, - "y": 14.374, - "z": -729.936 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022594", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022594", - "_tpl": "5c6d11152e2216000f2003e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (54) [32a84365-880d-433b-839c-3737aa03b34d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 321.438, + "y": 5.705, + "z": 494.728 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022586", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022586", + "_tpl": "5b07dd285acfc4001754240d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (104) [2245d9f2-1c1a-42cc-ad2f-8b0fad1add10]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.716, - "y": 5.688, - "z": -647.535 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022596", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022596", - "_tpl": "6516e9bc5901745209404287", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (55) [199811cd-3fdd-43f2-a5e9-7c9d423fc55d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 321.219, + "y": 5.705, + "z": 495.067 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022588", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022588", + "_tpl": "5addbf175acfc408fb13965b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (106) [c0b9adeb-8743-44ab-8199-18e54adcace7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -175.806, - "y": 5.712, - "z": -647.526 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022598", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022598", - "_tpl": "65f1b2a5c14a07890801fc70", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (6) [938ea937-1f0f-4f27-a02b-1a5ed1e581b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -75.69, + "y": 27.851, + "z": 109.383 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402258a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402258a", + "_tpl": "577d141e24597739c5255e01", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (107) [bd0ea99d-a8c1-4064-86b0-17c1be85235d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -176.168, - "y": 5.712, - "z": -647.526 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402259a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402259a", - "_tpl": "5addc7ac5acfc400194dbd90", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO (8) [bc8f7172-4262-4282-9a51-4b31200248b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -101.788, + "y": 33.231, + "z": 100.015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402258c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402258c", + "_tpl": "5d2dc3e548f035404a1a4798", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (108) [4acb6d88-0eac-4d18-bd62-989b3f7d1656]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -176.524, - "y": 5.796, - "z": -647.589 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402259c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402259c", - "_tpl": "5a9d56c8a2750c0032157146", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (1) [da66fab1-dcf3-4437-9e5d-04a2baf8f15d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.831, + "y": 12.289, + "z": -899.33 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402258e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402258e", + "_tpl": "5c6d710d2e22165df16b81e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (109) [4c99d5ef-6c67-4ce2-b430-f4181dd6862b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -179.073, - "y": 5.669, - "z": -651.653 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402259e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402259e", - "_tpl": "5c7fb51d2e2216001219ce11", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (10) [1b556e7c-fe52-41aa-85e3-8979e068ab72]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.428, + "y": 3.005, + "z": -697.127 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022590", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022590", + "_tpl": "56ea6fafd2720b844b8b4593", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (11) [eed94aab-3b9a-4b37-84cf-9d19dd86ef3f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.543, - "y": 3.005, - "z": -696.874 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225a0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225a0", - "_tpl": "669fa435803b94fb5d0e3a76", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (101) [4a038831-8ed6-4d14-8c36-a8ce03d7bb34]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.237, + "y": 15.073, + "z": -729.161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022592", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022592", + "_tpl": "665d5d9e338229cfd6078da1", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mods_all (102) [fbfbf12c-8170-4761-88e8-83a81c26387e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.968, + "y": 14.374, + "z": -729.936 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240225a1", - "_tpl": "62330b3ed4dc74626d570b95", - "parentId": "66cbbe6fd31d686b240225a0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022594", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022594", + "_tpl": "5c6d11152e2216000f2003e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (111) [ea6b52a0-c492-4658-b586-8f7df724c5fb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -178.325, - "y": 5.609, - "z": -651.664 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225a3", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225a3", - "_tpl": "59bffc1f86f77435b128b872", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (104) [2245d9f2-1c1a-42cc-ad2f-8b0fad1add10]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.716, + "y": 5.688, + "z": -647.535 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022596", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022596", + "_tpl": "6516e9bc5901745209404287", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (113) [11c40125-4157-47f4-ba88-ccc0a2596898]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -177.281, - "y": 14.905, - "z": -633.796 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225a5", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225a5", - "_tpl": "6386120cd6baa055ad1e201c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (106) [c0b9adeb-8743-44ab-8199-18e54adcace7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -175.806, + "y": 5.712, + "z": -647.526 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022598", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022598", + "_tpl": "65f1b2a5c14a07890801fc70", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (114) [766be59a-6aa6-451b-845f-db8bf130533e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.062, - "y": 14.281, - "z": -635.14 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225a7", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225a7", - "_tpl": "5d120a10d7ad1a4e1026ba85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (107) [bd0ea99d-a8c1-4064-86b0-17c1be85235d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -176.168, + "y": 5.712, + "z": -647.526 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402259a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402259a", + "_tpl": "5addc7ac5acfc400194dbd90", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (117) [b56ceb3b-0b9c-4d43-bf12-8b5b44f4d8d2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -172.867, - "y": 14.549, - "z": -641.301 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225a9", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225a9", - "_tpl": "6698c9e07356874dfe0a0b88", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (108) [4acb6d88-0eac-4d18-bd62-989b3f7d1656]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -176.524, + "y": 5.796, + "z": -647.589 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402259c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402259c", + "_tpl": "5a9d56c8a2750c0032157146", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (118) [ff281403-0bee-4e2f-9f67-7d3bcfe4f9be]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.376, - "y": 14.224, - "z": -642.037 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225ab", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225ab", - "_tpl": "5bfe7fb30db8340018089fed", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (109) [4c99d5ef-6c67-4ce2-b430-f4181dd6862b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -179.073, + "y": 5.669, + "z": -651.653 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402259e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402259e", + "_tpl": "5c7fb51d2e2216001219ce11", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (120) [7b4356df-9712-4fec-964a-d2e59369340c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -187.841, - "y": 14.9, - "z": -642.097 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225ad", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225ad", - "_tpl": "6415d33eda439c6a97048b5b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (11) [eed94aab-3b9a-4b37-84cf-9d19dd86ef3f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.543, + "y": 3.005, + "z": -696.874 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225a0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225a0", + "_tpl": "669fa435803b94fb5d0e3a76", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240225a1", + "_tpl": "62330b3ed4dc74626d570b95", + "parentId": "66cbbe6fd31d686b240225a0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4 + } } - } - ] - }, - { - "Id": "mods_all (121) [f78307fa-cac1-48ff-b329-5f994e1a04ac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -186.007, - "y": 15.175, - "z": -641.492 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225af", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225af", - "_tpl": "5c7fc87d2e221644f31c0298", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (111) [ea6b52a0-c492-4658-b586-8f7df724c5fb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -178.325, + "y": 5.609, + "z": -651.664 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225a3", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225a3", + "_tpl": "59bffc1f86f77435b128b872", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (122) [b95605d3-bd1d-488a-bc03-3ae05056998e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -186.144, - "y": 15.175, - "z": -640.784 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225b1", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225b1", - "_tpl": "5c6165902e22160010261b28", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (113) [11c40125-4157-47f4-ba88-ccc0a2596898]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -177.281, + "y": 14.905, + "z": -633.796 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225a5", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225a5", + "_tpl": "6386120cd6baa055ad1e201c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (125) [4d017c61-da53-4e0b-af2e-34075db48f9a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 382.858, - "y": 15.538, - "z": 569.674 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225b3", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225b3", - "_tpl": "5a7ad4af51dfba0013379717", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (114) [766be59a-6aa6-451b-845f-db8bf130533e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.062, + "y": 14.281, + "z": -635.14 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225a7", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225a7", + "_tpl": "5d120a10d7ad1a4e1026ba85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (126) [13193767-5560-4f84-ba28-33807a29adc5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 354.631, - "y": 16.169, - "z": 546.881 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225b5", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225b5", - "_tpl": "606f263a8900dc2d9a55b68d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (117) [b56ceb3b-0b9c-4d43-bf12-8b5b44f4d8d2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -172.867, + "y": 14.549, + "z": -641.301 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225a9", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225a9", + "_tpl": "6698c9e07356874dfe0a0b88", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (127) [fd7e0f44-a200-48ee-85fa-44242d14ee08]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 354.701, - "y": 16.169, - "z": 547.367 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225b7", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225b7", - "_tpl": "5b3a08b25acfc4001754880c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (118) [ff281403-0bee-4e2f-9f67-7d3bcfe4f9be]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.376, + "y": 14.224, + "z": -642.037 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225ab", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225ab", + "_tpl": "5bfe7fb30db8340018089fed", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (128) [dd2d9061-d3fa-4e02-b1dc-ab4c718eac0d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 354.563, - "y": 16.169, - "z": 547.109 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225b9", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225b9", - "_tpl": "5f3e77f59103d430b93f94c1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (120) [7b4356df-9712-4fec-964a-d2e59369340c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -187.841, + "y": 14.9, + "z": -642.097 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225ad", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225ad", + "_tpl": "6415d33eda439c6a97048b5b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (129) [211c15d0-d37c-4046-bc66-888011d93e97]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 354.508, - "y": 16.169, - "z": 547.413 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225bb", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225bb", - "_tpl": "59fb137a86f7740adb646af1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (121) [f78307fa-cac1-48ff-b329-5f994e1a04ac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -186.007, + "y": 15.175, + "z": -641.492 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225af", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225af", + "_tpl": "5c7fc87d2e221644f31c0298", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (13) [92eb502c-e3d4-4a84-b336-d2d0e886a42f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -146.144, - "y": 9.515, - "z": -708.783 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225bd", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225bd", - "_tpl": "651a8bf3a8520e48047bf708", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (122) [b95605d3-bd1d-488a-bc03-3ae05056998e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -186.144, + "y": 15.175, + "z": -640.784 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225b1", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225b1", + "_tpl": "5c6165902e22160010261b28", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (15) [d8cf40bc-c92d-4407-8606-5747c1d89405]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.965, - "y": 2.595, - "z": -658.123 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225bf", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225bf", - "_tpl": "63d3ce0446bd475bcb50f55f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (125) [4d017c61-da53-4e0b-af2e-34075db48f9a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 382.858, + "y": 15.538, + "z": 569.674 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225b3", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225b3", + "_tpl": "5a7ad4af51dfba0013379717", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (17) [5ea2a68b-2333-4850-9bb0-eae1a810e50c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.374, - "y": 2.595, - "z": -657.06 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225c1", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225c1", - "_tpl": "6183d53f1cb55961fa0fdcda", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (126) [13193767-5560-4f84-ba28-33807a29adc5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 354.631, + "y": 16.169, + "z": 546.881 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225b5", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225b5", + "_tpl": "606f263a8900dc2d9a55b68d", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mods_all (127) [fd7e0f44-a200-48ee-85fa-44242d14ee08]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 354.701, + "y": 16.169, + "z": 547.367 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240225c2", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbbe6fd31d686b240225c1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225b7", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225b7", + "_tpl": "5b3a08b25acfc4001754880c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (18) [fcf6639d-ea72-489f-a3df-535723b22152]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.369, - "y": 2.595, - "z": -657.618 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225c4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225c4", - "_tpl": "628c9ab845c59e5b80768a81", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (128) [dd2d9061-d3fa-4e02-b1dc-ab4c718eac0d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 354.563, + "y": 16.169, + "z": 547.109 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225b9", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225b9", + "_tpl": "5f3e77f59103d430b93f94c1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (19) [733d224a-6c0c-4a75-833f-d158394f5de1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.133, - "y": 2.595, - "z": -657.318 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225c6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225c6", - "_tpl": "6034e3cb0ddce744014cb870", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (129) [211c15d0-d37c-4046-bc66-888011d93e97]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 354.508, + "y": 16.169, + "z": 547.413 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225bb", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225bb", + "_tpl": "59fb137a86f7740adb646af1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (20) [224e9aea-98b9-48f5-9184-d9f935dbe2f6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 80.141, - "y": 1.181, - "z": -94.52 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225c8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225c8", - "_tpl": "56e05a6ed2720bd0748b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (13) [92eb502c-e3d4-4a84-b336-d2d0e886a42f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -146.144, + "y": 9.515, + "z": -708.783 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225bd", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225bd", + "_tpl": "651a8bf3a8520e48047bf708", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (22) [933bce77-7724-4e8b-9dc4-dbfa579b18c1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 79.559, - "y": 0.85, - "z": -94.951 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225ca", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225ca", - "_tpl": "6113d6c3290d254f5e6b27db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (15) [d8cf40bc-c92d-4407-8606-5747c1d89405]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.965, + "y": 2.595, + "z": -658.123 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225bf", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225bf", + "_tpl": "63d3ce0446bd475bcb50f55f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (24) [5856f8b5-829e-4ea4-8941-af80978568a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.474, - "y": 18.861, - "z": -58.149 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225cc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225cc", - "_tpl": "5c4eec9b2e2216398b5aaba2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (17) [5ea2a68b-2333-4850-9bb0-eae1a810e50c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.374, + "y": 2.595, + "z": -657.06 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225c1", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225c1", + "_tpl": "6183d53f1cb55961fa0fdcda", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240225c2", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbbe6fd31d686b240225c1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12 + } } - } - ] - }, - { - "Id": "mods_all (26) [48ff7726-987a-41df-a4fd-ba55111377fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.445, - "y": 19.02, - "z": -57.386 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225ce", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225ce", - "_tpl": "5a800961159bd4315e3a1657", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (18) [fcf6639d-ea72-489f-a3df-535723b22152]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.369, + "y": 2.595, + "z": -657.618 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225c4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225c4", + "_tpl": "628c9ab845c59e5b80768a81", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (27) [e76c18bd-9b58-4cb5-884c-2ec30f1b9b1c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -115.534, - "y": 40.055, - "z": 104.631 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225d0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225d0", - "_tpl": "5947e98b86f774778f1448bc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (19) [733d224a-6c0c-4a75-833f-d158394f5de1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.133, + "y": 2.595, + "z": -657.318 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225c6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225c6", + "_tpl": "6034e3cb0ddce744014cb870", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (29) [49e862ee-a4e8-40cf-8dca-b68979de520b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -115.531, - "y": 40.055, - "z": 105.519 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225d2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225d2", - "_tpl": "615d8f5dd92c473c770212ef", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (20) [224e9aea-98b9-48f5-9184-d9f935dbe2f6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 80.141, + "y": 1.181, + "z": -94.52 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225c8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225c8", + "_tpl": "56e05a6ed2720bd0748b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (30) [91c77908-355b-45c0-a353-8e56592fe20a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 334.155, - "y": 6.03, - "z": 518.325 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225d4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225d4", - "_tpl": "5cf508bfd7f00c056e24104e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (22) [933bce77-7724-4e8b-9dc4-dbfa579b18c1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 79.559, + "y": 0.85, + "z": -94.951 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225ca", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225ca", + "_tpl": "6113d6c3290d254f5e6b27db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (31) [ebcaaf2a-21d4-4dbb-aa58-48f4f9a94793]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 334.17, - "y": 6.247, - "z": 518.084 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225d6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225d6", - "_tpl": "651a8e529829226ceb67c319", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (24) [5856f8b5-829e-4ea4-8941-af80978568a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.474, + "y": 18.861, + "z": -58.149 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225cc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225cc", + "_tpl": "5c4eec9b2e2216398b5aaba2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (32) [93541f03-d3a7-4687-8ef5-61b7b2b37f11]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 334.126, - "y": 5.95, - "z": 518.071 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225d8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225d8", - "_tpl": "5a70366c8dc32e001207fb06", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (26) [48ff7726-987a-41df-a4fd-ba55111377fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.445, + "y": 19.02, + "z": -57.386 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225ce", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225ce", + "_tpl": "5a800961159bd4315e3a1657", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (36) [0a725c7f-91b0-455a-a2c3-0ee0fdc01d48]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 346.825, - "y": 1.134, - "z": 467.545 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225da", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225da", - "_tpl": "5b363dd25acfc4001a598fd2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (27) [e76c18bd-9b58-4cb5-884c-2ec30f1b9b1c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -115.534, + "y": 40.055, + "z": 104.631 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225d0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225d0", + "_tpl": "5947e98b86f774778f1448bc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (37) [f09cc171-ccbd-4da3-9d0a-cb306f8a2160]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 427.811, - "y": 0.737, - "z": 429.027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225dc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225dc", - "_tpl": "626a9cb151cb5849f6002890", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (29) [49e862ee-a4e8-40cf-8dca-b68979de520b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -115.531, + "y": 40.055, + "z": 105.519 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225d2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225d2", + "_tpl": "615d8f5dd92c473c770212ef", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (38) [7ec8f886-ae1f-4ba1-82ed-d768b2299b47]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 427.413, - "y": 0.737, - "z": 428.887 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225de", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225de", - "_tpl": "61695095d92c473c7702147a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (30) [91c77908-355b-45c0-a353-8e56592fe20a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 334.155, + "y": 6.03, + "z": 518.325 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225d4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225d4", + "_tpl": "5cf508bfd7f00c056e24104e", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mods_all (31) [ebcaaf2a-21d4-4dbb-aa58-48f4f9a94793]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 334.17, + "y": 6.247, + "z": 518.084 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240225df", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbbe6fd31d686b240225de", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225d6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225d6", + "_tpl": "651a8e529829226ceb67c319", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mods_all (32) [93541f03-d3a7-4687-8ef5-61b7b2b37f11]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 334.126, + "y": 5.95, + "z": 518.071 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b240225e0", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbbe6fd31d686b240225de", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225d8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225d8", + "_tpl": "5a70366c8dc32e001207fb06", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (39) [f01573aa-459f-47b8-9a3e-c1692e0f66fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 427.022, - "y": 0.71, - "z": 428.823 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225e2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225e2", - "_tpl": "5c07a8770db8340023300450", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (36) [0a725c7f-91b0-455a-a2c3-0ee0fdc01d48]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 346.825, + "y": 1.134, + "z": 467.545 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225da", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225da", + "_tpl": "5b363dd25acfc4001a598fd2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (41) [1ac899f1-c6d3-433c-b892-5d8300420c21]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 402.772, - "y": 18.969, - "z": 530.234 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225e4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225e4", - "_tpl": "5df8e085bb49d91fb446d6a8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (37) [f09cc171-ccbd-4da3-9d0a-cb306f8a2160]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 427.811, + "y": 0.737, + "z": 429.027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225dc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225dc", + "_tpl": "626a9cb151cb5849f6002890", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (42) [a1fdbffe-c605-4cb0-b6f7-f4973e74011e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 403.47, - "y": 18.969, - "z": 530.098 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225e6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225e6", - "_tpl": "5926d33d86f77410de68ebc0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (38) [7ec8f886-ae1f-4ba1-82ed-d768b2299b47]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 427.413, + "y": 0.737, + "z": 428.887 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225de", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225de", + "_tpl": "61695095d92c473c7702147a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b240225df", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbbe6fd31d686b240225de", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbbe6fd31d686b240225e0", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbbe6fd31d686b240225de", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mods_all (44) [e35eecb2-792d-40ed-83ec-a20880f9e261]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 403.425, - "y": 18.969, - "z": 530.5 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225e8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225e8", - "_tpl": "5a9fbb84a2750c00137fa685", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (39) [f01573aa-459f-47b8-9a3e-c1692e0f66fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 427.022, + "y": 0.71, + "z": 428.823 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225e2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225e2", + "_tpl": "5c07a8770db8340023300450", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (45) [a247b72b-d122-4b4b-857f-78f08bc14d1f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 365.639, - "y": 21.867, - "z": 523.508 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225ea", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225ea", - "_tpl": "655cb6b5d680a544f30607fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (41) [1ac899f1-c6d3-433c-b892-5d8300420c21]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 402.772, + "y": 18.969, + "z": 530.234 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225e4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225e4", + "_tpl": "5df8e085bb49d91fb446d6a8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (48) [82ef8284-373f-467b-8535-5df100454976]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 366.168, - "y": 21.867, - "z": 524.237 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225ec", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225ec", - "_tpl": "616554fe50224f204c1da2aa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (42) [a1fdbffe-c605-4cb0-b6f7-f4973e74011e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 403.47, + "y": 18.969, + "z": 530.098 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225e6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225e6", + "_tpl": "5926d33d86f77410de68ebc0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (5) [5ad36a95-0cd6-4e64-8608-61fc7e6c1811]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.38, - "y": 12.136, - "z": -794.583 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225ee", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225ee", - "_tpl": "6492c8bba6e68e06fb0bae87", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (44) [e35eecb2-792d-40ed-83ec-a20880f9e261]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 403.425, + "y": 18.969, + "z": 530.5 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225e8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225e8", + "_tpl": "5a9fbb84a2750c00137fa685", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (52) [3709a11a-76b6-4f03-a8ab-0958d029f4ac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 411.687, - "y": 19.521, - "z": 543.993 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225f0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225f0", - "_tpl": "5c4eecc32e221602b412b440", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (45) [a247b72b-d122-4b4b-857f-78f08bc14d1f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 365.639, + "y": 21.867, + "z": 523.508 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225ea", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225ea", + "_tpl": "655cb6b5d680a544f30607fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (53) [0dc8d8cf-e4a6-4aab-8aa4-019dab954364]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 410.723, - "y": 19.521, - "z": 544.039 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225f2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225f2", - "_tpl": "5a16b93dfcdbcbcae6687261", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (48) [82ef8284-373f-467b-8535-5df100454976]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 366.168, + "y": 21.867, + "z": 524.237 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225ec", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225ec", + "_tpl": "616554fe50224f204c1da2aa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (54) [10a3eeff-1041-4f5d-89c2-0c429f2ab4d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 400.906, - "y": 19.669, - "z": 546.845 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225f4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225f4", - "_tpl": "59e0bdb186f774156f04ce82", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (5) [5ad36a95-0cd6-4e64-8608-61fc7e6c1811]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.38, + "y": 12.136, + "z": -794.583 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225ee", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225ee", + "_tpl": "6492c8bba6e68e06fb0bae87", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (55) [0cb57988-7fd6-4042-a907-962ace200bff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 401.122, - "y": 19.573, - "z": 548.053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225f6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225f6", - "_tpl": "5c7d560b2e22160bc12c6139", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (52) [3709a11a-76b6-4f03-a8ab-0958d029f4ac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 411.687, + "y": 19.521, + "z": 543.993 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225f0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225f0", + "_tpl": "5c4eecc32e221602b412b440", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (58) [997b9dc6-ebce-4b85-b857-3efd853ef15a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 382.537, - "y": 15.538, - "z": 569.864 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225f8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225f8", - "_tpl": "57fd23e32459772d0805bcf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (53) [0dc8d8cf-e4a6-4aab-8aa4-019dab954364]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 410.723, + "y": 19.521, + "z": 544.039 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225f2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225f2", + "_tpl": "5a16b93dfcdbcbcae6687261", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (59) [e0034504-f42c-43c2-98e5-e36f5afcbb1d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 381.79, - "y": 16.169, - "z": 570.018 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225fa", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225fa", - "_tpl": "626673016f1edc06f30cf6d5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (54) [10a3eeff-1041-4f5d-89c2-0c429f2ab4d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 400.906, + "y": 19.669, + "z": 546.845 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225f4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225f4", + "_tpl": "59e0bdb186f774156f04ce82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (61) [87ae0967-846c-4a07-b864-87139abd8498]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 381.22, - "y": 16.157, - "z": 570.245 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225fc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225fc", - "_tpl": "588226d124597767ad33f787", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (55) [0cb57988-7fd6-4042-a907-962ace200bff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 401.122, + "y": 19.573, + "z": 548.053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225f6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225f6", + "_tpl": "5c7d560b2e22160bc12c6139", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (64) [85ee26a3-f774-466f-b78c-26cc4ca15473]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 31.841, - "y": 14.404, - "z": -590.005 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240225fe", - "Items": [ - { - "_id": "66cbbe6fd31d686b240225fe", - "_tpl": "62ff9920fe938a24c90c10d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (58) [997b9dc6-ebce-4b85-b857-3efd853ef15a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 382.537, + "y": 15.538, + "z": 569.864 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225f8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225f8", + "_tpl": "57fd23e32459772d0805bcf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (65) [9c00440a-d90c-438b-a618-a04388fde4cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.424, - "y": 14.404, - "z": -589.916 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022600", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022600", - "_tpl": "5c17664f2e2216398b5a7e3c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (59) [e0034504-f42c-43c2-98e5-e36f5afcbb1d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 381.79, + "y": 16.169, + "z": 570.018 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225fa", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225fa", + "_tpl": "626673016f1edc06f30cf6d5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (67) [d5317317-c1e2-459e-ba19-400680859347]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.838, - "y": 14.871, - "z": -610.536 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022602", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022602", - "_tpl": "5d15cf3bd7ad1a67e71518b2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (61) [87ae0967-846c-4a07-b864-87139abd8498]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 381.22, + "y": 16.157, + "z": 570.245 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225fc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225fc", + "_tpl": "588226d124597767ad33f787", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (68) [8659f57a-c681-4890-bb20-5fc9dd09790c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.324, - "y": 14.871, - "z": -609.918 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022604", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022604", - "_tpl": "5b7d68af5acfc400170e30c3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (64) [85ee26a3-f774-466f-b78c-26cc4ca15473]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 31.841, + "y": 14.404, + "z": -590.005 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240225fe", + "Items": [ + { + "_id": "66cbbe6fd31d686b240225fe", + "_tpl": "62ff9920fe938a24c90c10d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (7) [399b291c-c698-41eb-a031-b3394015d808]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -24.397, - "y": 13.344, - "z": -881.699 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022606", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022606", - "_tpl": "5fbbaa86f9986c4cff3fe5f6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (65) [9c00440a-d90c-438b-a618-a04388fde4cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.424, + "y": 14.404, + "z": -589.916 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022600", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022600", + "_tpl": "5c17664f2e2216398b5a7e3c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (71) [67c30980-7213-4ca6-b170-e767ddfdad0b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.347, - "y": 15.04, - "z": -623.393 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022608", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022608", - "_tpl": "5d19cd96d7ad1a4a992c9f52", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (67) [d5317317-c1e2-459e-ba19-400680859347]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.838, + "y": 14.871, + "z": -610.536 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022602", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022602", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (72) [8db396a8-f565-4e75-b3eb-fc939d95f06a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.669, - "y": 15.04, - "z": -623.553 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402260a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402260a", - "_tpl": "5c0505e00db834001b735073", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (68) [8659f57a-c681-4890-bb20-5fc9dd09790c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.324, + "y": 14.871, + "z": -609.918 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022604", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022604", + "_tpl": "5b7d68af5acfc400170e30c3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (73) [e88d128e-8e77-4cf3-9887-dd3e7a11493d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.452, - "y": 15.04, - "z": -621.895 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402260c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402260c", - "_tpl": "5efaf417aeb21837e749c7f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (7) [399b291c-c698-41eb-a031-b3394015d808]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -24.397, + "y": 13.344, + "z": -881.699 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022606", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022606", + "_tpl": "5fbbaa86f9986c4cff3fe5f6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (74) [6d7e801e-3838-40ce-a632-6c7694ea058d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.466, - "y": 15.04, - "z": -622.72 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402260e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402260e", - "_tpl": "5b7bef5d5acfc43bca7067a3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mods_all (71) [67c30980-7213-4ca6-b170-e767ddfdad0b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.347, + "y": 15.04, + "z": -623.393 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b2402260f", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbbe6fd31d686b2402260e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022608", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022608", + "_tpl": "5d19cd96d7ad1a4a992c9f52", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (75) [05424f4c-6c1c-43a7-b035-1c060be0defc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 37.828, - "y": 14.943, - "z": -653.428 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022611", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022611", - "_tpl": "5df25b6c0b92095fd441e4cf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (72) [8db396a8-f565-4e75-b3eb-fc939d95f06a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.669, + "y": 15.04, + "z": -623.553 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402260a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402260a", + "_tpl": "5c0505e00db834001b735073", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mods_all (73) [e88d128e-8e77-4cf3-9887-dd3e7a11493d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.452, + "y": 15.04, + "z": -621.895 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022612", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbbe6fd31d686b24022611", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402260c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402260c", + "_tpl": "5efaf417aeb21837e749c7f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (76) [708787aa-33cc-42fb-8d19-d02b9a549e6e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 36.658, - "y": 14.943, - "z": -653.366 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022614", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022614", - "_tpl": "5cbda9f4ae9215000e5b9bfc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (74) [6d7e801e-3838-40ce-a632-6c7694ea058d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.466, + "y": 15.04, + "z": -622.72 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402260e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402260e", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b2402260f", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbbe6fd31d686b2402260e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15 + } } - } - ] - }, - { - "Id": "mods_all (77) [e11e3d51-eab1-4d19-80a4-fdc5e2a108ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.691, - "y": 15.252, - "z": -652.837 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022616", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022616", - "_tpl": "628c9ab845c59e5b80768a81", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (75) [05424f4c-6c1c-43a7-b035-1c060be0defc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 37.828, + "y": 14.943, + "z": -653.428 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022611", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022611", + "_tpl": "5df25b6c0b92095fd441e4cf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022612", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbbe6fd31d686b24022611", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mods_all (78) [97caf663-2f34-4013-86fe-3425c4ce065b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 38.742, - "y": 14.676, - "z": -653.158 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022618", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022618", - "_tpl": "59fb257e86f7742981561852", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (76) [708787aa-33cc-42fb-8d19-d02b9a549e6e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 36.658, + "y": 14.943, + "z": -653.366 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022614", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022614", + "_tpl": "5cbda9f4ae9215000e5b9bfc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (79) [6449fd9a-d04e-476c-84c0-410e1dc2ff87]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.587, - "y": 14.912, - "z": -614.766 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402261a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402261a", - "_tpl": "58d2947e86f77447aa070d53", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (77) [e11e3d51-eab1-4d19-80a4-fdc5e2a108ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.691, + "y": 15.252, + "z": -652.837 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022616", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022616", + "_tpl": "628c9ab845c59e5b80768a81", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (80) [7c7369c3-d658-473d-94bd-192019949459]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.257, - "y": 14.988, - "z": -615.199 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402261c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402261c", - "_tpl": "5d00ef6dd7ad1a0940739b16", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (78) [97caf663-2f34-4013-86fe-3425c4ce065b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 38.742, + "y": 14.676, + "z": -653.158 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022618", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022618", + "_tpl": "59fb257e86f7742981561852", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (81) [7cf4bedc-1f5b-4635-b82e-20bf6f922092]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.723, - "y": 14.994, - "z": -615.337 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402261e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402261e", - "_tpl": "5f6339d53ada5942720e2dc3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (79) [6449fd9a-d04e-476c-84c0-410e1dc2ff87]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.587, + "y": 14.912, + "z": -614.766 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402261a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402261a", + "_tpl": "58d2947e86f77447aa070d53", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (82) [423af55e-ada0-4126-947b-73b45dd60e48]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.407, - "y": 6.053, - "z": -756.281 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022620", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022620", - "_tpl": "5d122e7bd7ad1a07102d6d7f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (80) [7c7369c3-d658-473d-94bd-192019949459]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.257, + "y": 14.988, + "z": -615.199 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402261c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402261c", + "_tpl": "5d00ef6dd7ad1a0940739b16", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (83) [97e639a1-4a71-43fa-b9c1-534b3d4e1ae5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.882, - "y": 6.053, - "z": -756.663 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022622", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022622", - "_tpl": "5cf12a15d7f00c05464b293f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mods_all (81) [7cf4bedc-1f5b-4635-b82e-20bf6f922092]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.723, + "y": 14.994, + "z": -615.337 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022623", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbbe6fd31d686b24022622", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402261e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402261e", + "_tpl": "5f6339d53ada5942720e2dc3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (84) [2290cae3-1901-4096-b6ce-6e1cf7ade2e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.809, - "y": 6.053, - "z": -756.381 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022625", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022625", - "_tpl": "5888945a2459774bf43ba385", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (82) [423af55e-ada0-4126-947b-73b45dd60e48]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.407, + "y": 6.053, + "z": -756.281 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022620", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022620", + "_tpl": "5d122e7bd7ad1a07102d6d7f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (86) [0e770d6a-8491-4502-80fb-2f81cead2fd4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -116.145, - "y": 5.295, - "z": -755.077 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022627", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022627", - "_tpl": "5d023784d7ad1a049d4aa7f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (83) [97e639a1-4a71-43fa-b9c1-534b3d4e1ae5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.882, + "y": 6.053, + "z": -756.663 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022622", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022622", + "_tpl": "5cf12a15d7f00c05464b293f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022623", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbbe6fd31d686b24022622", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11 + } } - } - ] - }, - { - "Id": "mods_all (88) [15a74c7d-8322-4f58-bfb7-1f442ba394d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -63.802, - "y": 14.484, - "z": -728.631 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022629", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022629", - "_tpl": "5bffcf7a0db83400232fea79", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (84) [2290cae3-1901-4096-b6ce-6e1cf7ade2e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.809, + "y": 6.053, + "z": -756.381 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022625", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022625", + "_tpl": "5888945a2459774bf43ba385", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (89) [9a383618-6b0a-464d-9edd-1ef47a71f808]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.458, - "y": 14.603, - "z": -735.597 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402262b", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402262b", - "_tpl": "628a66b41d5e41750e314f34", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (86) [0e770d6a-8491-4502-80fb-2f81cead2fd4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -116.145, + "y": 5.295, + "z": -755.077 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022627", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022627", + "_tpl": "5d023784d7ad1a049d4aa7f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (90) [b9185996-21cc-45b7-9278-1ee38d25a000]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.34, - "y": 14.603, - "z": -733.906 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402262d", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402262d", - "_tpl": "57c55f092459772d291a8463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (88) [15a74c7d-8322-4f58-bfb7-1f442ba394d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -63.802, + "y": 14.484, + "z": -728.631 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022629", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022629", + "_tpl": "5bffcf7a0db83400232fea79", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (91) [801725c5-be5b-41ee-a284-738d608ae5c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -65.176, - "y": 14.341, - "z": -734.354 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402262f", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402262f", - "_tpl": "5c010a700db834001d23ef5d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (89) [9a383618-6b0a-464d-9edd-1ef47a71f808]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.458, + "y": 14.603, + "z": -735.597 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402262b", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402262b", + "_tpl": "628a66b41d5e41750e314f34", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (92) [444d3aaf-80c7-464e-aa9b-8cbd73e49029]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -70.511, - "y": 15.056, - "z": -754.954 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022631", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022631", - "_tpl": "5a9d6d21a2750c00137fa649", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (90) [b9185996-21cc-45b7-9278-1ee38d25a000]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.34, + "y": 14.603, + "z": -733.906 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402262d", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402262d", + "_tpl": "57c55f092459772d291a8463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (93) [56e8695f-663b-42cf-ae81-e93fc810faa0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -69.17, - "y": 15.052, - "z": -754.55 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022633", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022633", - "_tpl": "6492ef63cfcf7c89e701abf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (91) [801725c5-be5b-41ee-a284-738d608ae5c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -65.176, + "y": 14.341, + "z": -734.354 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402262f", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402262f", + "_tpl": "5c010a700db834001d23ef5d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (94) [95c4bc8c-d610-49ec-b4de-645a2ad54422]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.484, - "y": 15.13, - "z": -750.537 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022635", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022635", - "_tpl": "5cc6ea85e4a949000e1ea3c3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (92) [444d3aaf-80c7-464e-aa9b-8cbd73e49029]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -70.511, + "y": 15.056, + "z": -754.954 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022631", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022631", + "_tpl": "5a9d6d21a2750c00137fa649", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (95) [7e8d0fc1-c84b-4ccb-9307-3a98a8c445ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -74.154, - "y": 14.641, - "z": -748.452 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022637", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022637", - "_tpl": "5bfea7ad0db834001c38f1ee", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (93) [56e8695f-663b-42cf-ae81-e93fc810faa0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -69.17, + "y": 15.052, + "z": -754.55 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022633", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022633", + "_tpl": "6492ef63cfcf7c89e701abf1", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mods_all (94) [95c4bc8c-d610-49ec-b4de-645a2ad54422]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.484, + "y": 15.13, + "z": -750.537 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbbe6fd31d686b24022638", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbbe6fd31d686b24022637", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022635", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022635", + "_tpl": "5cc6ea85e4a949000e1ea3c3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all (97) [1284222a-e4e1-414f-bc9d-ba60c6df4709]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.54, - "y": 14.641, - "z": -748.401 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402263a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402263a", - "_tpl": "58d268fc86f774111273f8c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (95) [7e8d0fc1-c84b-4ccb-9307-3a98a8c445ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -74.154, + "y": 14.641, + "z": -748.452 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022637", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022637", + "_tpl": "5bfea7ad0db834001c38f1ee", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbbe6fd31d686b24022638", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbbe6fd31d686b24022637", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "mods_all (99) [1825232e-8651-42e3-9199-449a9097f709]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.245, - "y": 14.693, - "z": -753.949 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402263c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402263c", - "_tpl": "5bb20dadd4351e00367faeff", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (97) [1284222a-e4e1-414f-bc9d-ba60c6df4709]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.54, + "y": 14.641, + "z": -748.401 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402263a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402263a", + "_tpl": "58d268fc86f774111273f8c2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_all [889b9213-6ba2-4537-8eb3-84b5f6e51a2e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 31.334, - "y": 12.289, - "z": -899.549 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402263e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402263e", - "_tpl": "5e01e9e273d8eb11426f5bc3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all (99) [1825232e-8651-42e3-9199-449a9097f709]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.245, + "y": 14.693, + "z": -753.949 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402263c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402263c", + "_tpl": "5bb20dadd4351e00367faeff", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (10) [f5810f6e-d889-4224-856d-6010103ead83]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -85.768, - "y": 1.079, - "z": -564.751 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022640", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022640", - "_tpl": "5c5db5f22e2216000e5e47e8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_all [889b9213-6ba2-4537-8eb3-84b5f6e51a2e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 31.334, + "y": 12.289, + "z": -899.549 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402263e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402263e", + "_tpl": "5e01e9e273d8eb11426f5bc3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (11) [7c2e3d27-e4eb-4113-9e3d-858eae763789]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -85.287, - "y": 1.068, - "z": -564.239 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022642", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022642", - "_tpl": "5a70366c8dc32e001207fb06", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (10) [f5810f6e-d889-4224-856d-6010103ead83]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -85.768, + "y": 1.079, + "z": -564.751 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022640", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022640", + "_tpl": "5c5db5f22e2216000e5e47e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (12) [c3e16755-7a20-4f5e-9cca-98fc242df625]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -80.776, - "y": 0.758, - "z": -563.92 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022644", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022644", - "_tpl": "5c6d5d8b2e221644fc630b39", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (11) [7c2e3d27-e4eb-4113-9e3d-858eae763789]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -85.287, + "y": 1.068, + "z": -564.239 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022642", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022642", + "_tpl": "5a70366c8dc32e001207fb06", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (15) [e486dec6-123b-496e-a147-5ccc2a4a12c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -81.551, - "y": 0.704, - "z": -565.075 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022646", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022646", - "_tpl": "5a6f5f078dc32e00094b97dd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (12) [c3e16755-7a20-4f5e-9cca-98fc242df625]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -80.776, + "y": 0.758, + "z": -563.92 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022644", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022644", + "_tpl": "5c6d5d8b2e221644fc630b39", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (17) [264bb3dc-792e-4e76-931a-9d431a66949e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -92.727, - "y": 1.135, - "z": -490.729 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022648", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022648", - "_tpl": "6130c43c67085e45ef1405a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (15) [e486dec6-123b-496e-a147-5ccc2a4a12c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -81.551, + "y": 0.704, + "z": -565.075 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022646", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022646", + "_tpl": "5a6f5f078dc32e00094b97dd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (18) [f8423747-3926-4adb-8c05-fa73557416ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -92.926, - "y": 1.135, - "z": -490.113 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402264a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402264a", - "_tpl": "5c07c5ed0db834001b73571c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (17) [264bb3dc-792e-4e76-931a-9d431a66949e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -92.727, + "y": 1.135, + "z": -490.729 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022648", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022648", + "_tpl": "6130c43c67085e45ef1405a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (2) [637b5308-4ec8-4b22-8cf6-f7d1129003cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -133.829, - "y": 3.97, - "z": -575.723 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402264c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402264c", - "_tpl": "5c7e5f112e221600106f4ede", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (18) [f8423747-3926-4adb-8c05-fa73557416ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -92.926, + "y": 1.135, + "z": -490.113 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402264a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402264a", + "_tpl": "5c07c5ed0db834001b73571c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (20) [2d3166ea-9e13-488f-afb0-043ea2f0a23b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 32.43, - "y": 10.253, - "z": -446.674 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402264e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402264e", - "_tpl": "5bffe7c50db834001d23ece1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (2) [637b5308-4ec8-4b22-8cf6-f7d1129003cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -133.829, + "y": 3.97, + "z": -575.723 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402264c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402264c", + "_tpl": "5c7e5f112e221600106f4ede", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (21) [08623c7a-f245-4730-8b1d-5081f3b38841]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 32.69, - "y": 10.321, - "z": -446.413 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022650", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022650", - "_tpl": "5c18b9192e2216398b5a8104", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (20) [2d3166ea-9e13-488f-afb0-043ea2f0a23b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 32.43, + "y": 10.253, + "z": -446.674 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402264e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402264e", + "_tpl": "5bffe7c50db834001d23ece1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (23) [4be073c9-0caf-46b7-8581-b6e8c250fd1c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 32.486, - "y": 10.321, - "z": -445.269 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022652", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022652", - "_tpl": "5a34fe59c4a282000b1521a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (21) [08623c7a-f245-4730-8b1d-5081f3b38841]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 32.69, + "y": 10.321, + "z": -446.413 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022650", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022650", + "_tpl": "5c18b9192e2216398b5a8104", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (25) [bec1e54f-5eb5-4ff1-9761-176e7d03acbd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 34.145, - "y": 5.81, - "z": -502.764 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022654", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022654", - "_tpl": "5c9a25172e2216000f20314e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (23) [4be073c9-0caf-46b7-8581-b6e8c250fd1c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 32.486, + "y": 10.321, + "z": -445.269 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022652", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022652", + "_tpl": "5a34fe59c4a282000b1521a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (26) [9427111d-8359-40d2-96cc-57dcf41db4a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 33.666, - "y": 5.507, - "z": -503.237 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022656", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022656", - "_tpl": "5addbfe15acfc4001a5fc58b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (25) [bec1e54f-5eb5-4ff1-9761-176e7d03acbd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 34.145, + "y": 5.81, + "z": -502.764 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022654", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022654", + "_tpl": "5c9a25172e2216000f20314e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (4) [795b8d59-7085-4e3b-afcf-281c22d478cd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -110.192, - "y": 1.012, - "z": -545.94 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022658", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022658", - "_tpl": "58c157c886f774032749fb06", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (26) [9427111d-8359-40d2-96cc-57dcf41db4a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 33.666, + "y": 5.507, + "z": -503.237 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022656", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022656", + "_tpl": "5addbfe15acfc4001a5fc58b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (6) [7bd1d14e-652b-440c-9fe9-86708c8e315f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -110.554, - "y": 0.99, - "z": -545.871 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402265a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402265a", - "_tpl": "5c7d55f52e221644f31bff6a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (4) [795b8d59-7085-4e3b-afcf-281c22d478cd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -110.192, + "y": 1.012, + "z": -545.94 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022658", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022658", + "_tpl": "58c157c886f774032749fb06", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (7) [49c11d7c-d6e2-4ef9-a243-2f5cdd7da355]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -101.081, - "y": 0.788, - "z": -567.143 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402265c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402265c", - "_tpl": "55f84c3c4bdc2d5f408b4576", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (6) [7bd1d14e-652b-440c-9fe9-86708c8e315f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -110.554, + "y": 0.99, + "z": -545.871 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402265a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402265a", + "_tpl": "5c7d55f52e221644f31bff6a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato (9) [c1074304-cb6e-4b53-8f73-eb83e560511c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -85.121, - "y": 1.091, - "z": -563.958 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402265e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402265e", - "_tpl": "5fce0cf655375d18a253eff0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (7) [49c11d7c-d6e2-4ef9-a243-2f5cdd7da355]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -101.081, + "y": 0.788, + "z": -567.143 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402265c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402265c", + "_tpl": "55f84c3c4bdc2d5f408b4576", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods_nato [e9252bdd-b4d1-43fe-81a9-2517f94d4a83]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -133.706, - "y": 3.483, - "z": -576.005 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022660", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022660", - "_tpl": "5b7d63de5acfc400170e2f8d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods_nato (9) [c1074304-cb6e-4b53-8f73-eb83e560511c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -85.121, + "y": 1.091, + "z": -563.958 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402265e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402265e", + "_tpl": "5fce0cf655375d18a253eff0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Money_evro_dollar (8) [f21f9440-1783-4bb4-b886-fe4b3dd2601e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -81.46999, - "y": 21.979, - "z": -91.01099 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022662", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022662", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 78 + { + "Id": "mods_nato [e9252bdd-b4d1-43fe-81a9-2517f94d4a83]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -133.706, + "y": 3.483, + "z": -576.005 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022660", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022660", + "_tpl": "5b7d63de5acfc400170e2f8d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_shit [c7712d51-eda0-45c1-a613-6208854ee6c4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -111.373, - "y": 9.207, - "z": -735.676 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022664", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022664", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 51 - } - } - ] - }, - { - "Id": "Pick_12 [a90c69dd-d0a0-46b8-a5c7-cf1fb1a8de9d]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 32.8378448, - "y": 9.1159, - "z": -648.606934 - }, - "Rotation": { - "x": 345.953766, - "y": 271.09375, - "z": 0.8332856 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -174.385773, - "y": 5.67899942, - "z": -652.348145 - }, - "Rotation": { - "x": 353.866119, - "y": 270.056854, - "z": -0.00102742214 - } + { + "Id": "Money_evro_dollar (8) [f21f9440-1783-4bb4-b886-fe4b3dd2601e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -81.46999, + "y": 21.979, + "z": -91.01099 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -119.039886, - "y": 5.08819962, - "z": -732.469238 - }, - "Rotation": { - "x": 349.0679, - "y": 4.65785551, - "z": -1.50541473e-5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022662", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022662", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 78 + } } + ] + }, + { + "Id": "office_shit [c7712d51-eda0-45c1-a613-6208854ee6c4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -111.373, + "y": 9.207, + "z": -735.676 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 32.8378448, - "y": 9.1159, - "z": -648.606934 - }, - "Rotation": { - "x": 345.953766, - "y": 271.09375, - "z": 0.8332856 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022666", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022666", - "_tpl": "64e74a64aac4cd0a7264ecdf", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022664", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022664", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 51 + } } - } - ] - }, - { - "Id": "qlight_military_data [7133eaec-d6a6-4d0c-8ced-50de7d12212f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -115.694664, - "y": 40.7532349, - "z": 88.8879852 - }, - "Rotation": { - "x": 0.5844833, - "y": 48.59865, - "z": 186.611191 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022668", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022668", - "_tpl": "61a00bcb177fb945751bbe6a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Pick_12 [a90c69dd-d0a0-46b8-a5c7-cf1fb1a8de9d]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 32.8378448, + "y": 9.1159, + "z": -648.606934 + }, + "Rotation": { + "x": 345.953766, + "y": 271.09375, + "z": 0.8332856 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -174.385773, + "y": 5.67899942, + "z": -652.348145 + }, + "Rotation": { + "x": 353.866119, + "y": 270.056854, + "z": -0.00102742214 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -119.039886, + "y": 5.08819962, + "z": -732.469238 + }, + "Rotation": { + "x": 349.0679, + "y": 4.65785551, + "z": -1.50541473e-5 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 32.8378448, + "y": 9.1159, + "z": -648.606934 + }, + "Rotation": { + "x": 345.953766, + "y": 271.09375, + "z": 0.8332856 + } } - } - ] - }, - { - "Id": "qlight11_mech1_find_data1 [4ec93227-f506-40a6-9e40-2fa1af8f35aa]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 53.2094955, - "y": 8.74386, - "z": -638.8754 - }, - "Rotation": { - "x": 279.5803, - "y": 32.5999451, - "z": 48.9144936 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402266a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402266a", - "_tpl": "619268ad78f4fa33f173dbe5", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022666", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022666", + "_tpl": "64e74a64aac4cd0a7264ecdf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "qlight11_mech1_find_data2 [7d563d5c-fed7-480b-8409-72c338218cea]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -111.0176, - "y": 9.24679, - "z": -750.147034 - }, - "Rotation": { - "x": 353.295135, - "y": 164.134064, - "z": 4.55723 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402266c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402266c", - "_tpl": "619268de2be33f2604340159", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "qlight_military_data [7133eaec-d6a6-4d0c-8ced-50de7d12212f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -115.694664, + "y": 40.7532349, + "z": 88.8879852 + }, + "Rotation": { + "x": 0.5844833, + "y": 48.59865, + "z": 186.611191 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022668", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022668", + "_tpl": "61a00bcb177fb945751bbe6a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_hunt_note [28156b45-4ab4-47e3-ad6b-7f20c586188f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -248.391052, - "y": 0.134607315, - "z": -328.2831 - }, - "Rotation": { - "x": 355.1893, - "y": 156.3603, - "z": 197.453018 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402266e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402266e", - "_tpl": "61904c9df62c89219a56e034", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "qlight11_mech1_find_data1 [4ec93227-f506-40a6-9e40-2fa1af8f35aa]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 53.2094955, + "y": 8.74386, + "z": -638.8754 + }, + "Rotation": { + "x": 279.5803, + "y": 32.5999451, + "z": 48.9144936 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402266a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402266a", + "_tpl": "619268ad78f4fa33f173dbe5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_qlight4_l1_redcar [fa30b627-5e61-4fa2-9a84-50de58536946]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 139.196289, - "y": 3.39897728, - "z": -129.943909 - }, - "Rotation": { - "x": 270.0, - "y": 179.0013, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022670", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022670", - "_tpl": "619252352be33f26043400a7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "qlight11_mech1_find_data2 [7d563d5c-fed7-480b-8409-72c338218cea]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -111.0176, + "y": 9.24679, + "z": -750.147034 + }, + "Rotation": { + "x": 353.295135, + "y": 164.134064, + "z": 4.55723 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402266c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402266c", + "_tpl": "619268de2be33f2604340159", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_terminal_ssd [29c95cdd-d4c4-4d0f-97fe-5e24730a8dd0]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -106.743088, - "y": 23.0347, - "z": -16.53234 - }, - "Rotation": { - "x": 270.0, - "y": 179.7142, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -106.734535, - "y": 21.7087, - "z": -16.7172 - }, - "Rotation": { - "x": 270, - "y": 228.815063, - "z": 0 + { + "Id": "quest_hunt_note [28156b45-4ab4-47e3-ad6b-7f20c586188f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -248.391052, + "y": 0.134607315, + "z": -328.2831 + }, + "Rotation": { + "x": 355.1893, + "y": 156.3603, + "z": 197.453018 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402266e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402266e", + "_tpl": "61904c9df62c89219a56e034", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "quest_qlight4_l1_redcar [fa30b627-5e61-4fa2-9a84-50de58536946]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 139.196289, + "y": 3.39897728, + "z": -129.943909 + }, + "Rotation": { + "x": 270.0, + "y": 179.0013, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -109.112808, - "y": 20.9484, - "z": -14.3315315 - }, - "Rotation": { - "x": 333.3733, - "y": 59.4042931, - "z": 274.555878 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022670", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022670", + "_tpl": "619252352be33f26043400a7", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "quest_terminal_ssd [29c95cdd-d4c4-4d0f-97fe-5e24730a8dd0]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -106.743088, + "y": 23.0347, + "z": -16.53234 + }, + "Rotation": { + "x": 270.0, + "y": 179.7142, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -111.428963, - "y": 20.9438, - "z": -16.2170086 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -106.734535, + "y": 21.7087, + "z": -16.7172 + }, + "Rotation": { + "x": 270, + "y": 228.815063, + "z": 0 + } }, - "Rotation": { - "x": 270, - "y": 165.583878, - "z": 0 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": -107.020988, - "y": 21.4554, - "z": -13.6701889 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -109.112808, + "y": 20.9484, + "z": -14.3315315 + }, + "Rotation": { + "x": 333.3733, + "y": 59.4042931, + "z": 274.555878 + } }, - "Rotation": { - "x": 279.999969, - "y": 145.5188, - "z": -7.866677e-5 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": -108.558907, - "y": 23.186, - "z": -14.1923666 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -111.428963, + "y": 20.9438, + "z": -16.2170086 + }, + "Rotation": { + "x": 270, + "y": 165.583878, + "z": 0 + } }, - "Rotation": { - "x": 271.9889, - "y": 180, - "z": 180 - } - }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": -110.531944, - "y": 23.1855011, - "z": -17.6485519 + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": -107.020988, + "y": 21.4554, + "z": -13.6701889 + }, + "Rotation": { + "x": 279.999969, + "y": 145.5188, + "z": -7.866677e-5 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": -108.558907, + "y": 23.186, + "z": -14.1923666 + }, + "Rotation": { + "x": 271.9889, + "y": 180, + "z": 180 + } + }, + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": -110.531944, + "y": 23.1855011, + "z": -17.6485519 + }, + "Rotation": { + "x": 270.206543, + "y": 24.6412086, + "z": 0.000233142811 + } }, - "Rotation": { - "x": 270.206543, - "y": 24.6412086, - "z": 0.000233142811 + { + "Name": "groupPoint[7]", + "Weight": 1, + "Position": { + "x": -106.743088, + "y": 23.0347, + "z": -16.53234 + }, + "Rotation": { + "x": 270, + "y": 179.7142, + "z": 0 + } } - }, - { - "Name": "groupPoint[7]", - "Weight": 1, - "Position": { - "x": -106.743088, - "y": 23.0347, - "z": -16.53234 - }, - "Rotation": { - "x": 270, - "y": 179.7142, - "z": 0 + ], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022672", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022672", + "_tpl": "661666458c2aa9cb1602503b", + "upd": { + "StackObjectsCount": 1 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022672", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022672", - "_tpl": "661666458c2aa9cb1602503b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "repair_kit_weapon (1) [4afcf57f-ec50-47f5-92a7-7d6527c386d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -20.513, + "y": 2.68, + "z": -524.748047 + }, + "Rotation": { + "x": 270.0, + "y": 25.9999981, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022674", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022674", + "_tpl": "5910968f86f77425cf569c32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "repair_kit_weapon (1) [4afcf57f-ec50-47f5-92a7-7d6527c386d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -20.513, - "y": 2.68, - "z": -524.748047 - }, - "Rotation": { - "x": 270.0, - "y": 25.9999981, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022674", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022674", - "_tpl": "5910968f86f77425cf569c32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "small_tools_only (20) [33928b56-4ac9-4117-971b-9df7a5deda27]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -206.448, + "y": 12.993, + "z": -205.427 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022676", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022676", + "_tpl": "60391afc25aff57af81f7085", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "small_tools_only (20) [33928b56-4ac9-4117-971b-9df7a5deda27]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -206.448, - "y": 12.993, - "z": -205.427 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022676", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022676", - "_tpl": "60391afc25aff57af81f7085", - "upd": { - "StackObjectsCount": 1 + { + "Id": "small_tools_only (29) [3eaa9a75-640d-47dd-822b-e1d95d9024c1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 347.02, + "y": 3.147, + "z": 470.443 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022678", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022678", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "small_tools_only (29) [3eaa9a75-640d-47dd-822b-e1d95d9024c1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 347.02, - "y": 3.147, - "z": 470.443 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022678", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022678", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "small_tools_only (38) [8402937b-ba9d-4f26-8342-9927ff1c5ecd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.667, + "y": 6.037, + "z": -656.728 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402267a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402267a", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "small_tools_only (38) [8402937b-ba9d-4f26-8342-9927ff1c5ecd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.667, - "y": 6.037, - "z": -656.728 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402267a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402267a", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "small_tools_only (62) [b1954cb7-ff64-4a8d-8f21-3ac3403b7073]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -194.231, + "y": 6.113, + "z": -639.03 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402267c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402267c", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "small_tools_only (62) [b1954cb7-ff64-4a8d-8f21-3ac3403b7073]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -194.231, - "y": 6.113, - "z": -639.03 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402267c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402267c", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "small_tools_only (63) [b983183f-e556-4619-b826-c85abb65597e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -194.231, + "y": 6.113, + "z": -635.63 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402267e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402267e", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "small_tools_only (63) [b983183f-e556-4619-b826-c85abb65597e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -194.231, - "y": 6.113, - "z": -635.63 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402267e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402267e", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "small_tools1 [e2922592-e91f-4333-80e7-dcbc61cd02b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -159.002, + "y": 6.156, + "z": -733.688 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022680", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022680", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "small_tools1 [e2922592-e91f-4333-80e7-dcbc61cd02b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -159.002, - "y": 6.156, - "z": -733.688 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022680", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022680", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sup_electronika&tools (1) [f9554fd6-ce0f-455c-9393-e0985be7ad01]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -64.996, + "y": 5.393, + "z": -747.688 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022682", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022682", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sup_electronika&tools (1) [f9554fd6-ce0f-455c-9393-e0985be7ad01]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -64.996, - "y": 5.393, - "z": -747.688 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022682", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022682", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sup_electronika&tools (26) [380519d6-10fd-487f-bac0-ecbd8656d819]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 56.284, + "y": 8.156, + "z": -620.192 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022684", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022684", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sup_electronika&tools (26) [380519d6-10fd-487f-bac0-ecbd8656d819]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 56.284, - "y": 8.156, - "z": -620.192 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022684", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022684", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sup_electronika&tools (3) [2a1d4fd6-7469-460f-b774-8f84b83b43c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -64.094, + "y": 5.429, + "z": -751.868 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022686", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022686", + "_tpl": "590a3c0a86f774385a33c450", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sup_electronika&tools (3) [2a1d4fd6-7469-460f-b774-8f84b83b43c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -64.094, - "y": 5.429, - "z": -751.868 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022686", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022686", - "_tpl": "590a3c0a86f774385a33c450", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sup_electronika&tools (32) [c8eb30e6-4622-4169-882f-c1274c897e15]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 55.485, + "y": 7.987, + "z": -604.151 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022688", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022688", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sup_electronika&tools (32) [c8eb30e6-4622-4169-882f-c1274c897e15]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 55.485, - "y": 7.987, - "z": -604.151 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022688", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022688", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sup_electronika&tools (35) [076fde87-0ea3-4596-b469-b5d3b9510f1f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 55.362, + "y": 7.987, + "z": -599.296 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402268a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402268a", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sup_electronika&tools (35) [076fde87-0ea3-4596-b469-b5d3b9510f1f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 55.362, - "y": 7.987, - "z": -599.296 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402268a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402268a", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sup_electronika&tools (4) [9b49c308-144d-43e7-938c-ff8d8c05e20b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -64.766, + "y": 5.429, + "z": -751.646 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402268c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402268c", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sup_electronika&tools (4) [9b49c308-144d-43e7-938c-ff8d8c05e20b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -64.766, - "y": 5.429, - "z": -751.646 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402268c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402268c", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sup_electronika&tools (40) [f73e7478-fa1f-402a-b31f-4765b390258b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 55.366, + "y": 5.214, + "z": -605.916 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402268e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402268e", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sup_electronika&tools (40) [f73e7478-fa1f-402a-b31f-4765b390258b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 55.366, - "y": 5.214, - "z": -605.916 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402268e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402268e", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sup_electronika&tools (5) [3162b310-0864-4e1a-89b7-457368cda04d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -65.458, + "y": 5.429, + "z": -751.975 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022690", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022690", + "_tpl": "590a3c0a86f774385a33c450", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sup_electronika&tools (5) [3162b310-0864-4e1a-89b7-457368cda04d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -65.458, - "y": 5.429, - "z": -751.975 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022690", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022690", - "_tpl": "590a3c0a86f774385a33c450", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sup_electronika&tools [04f9466c-9c7a-4328-903a-be24f136f0b5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -103.366, + "y": 11.202, + "z": -794.633 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022692", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022692", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sup_electronika&tools [04f9466c-9c7a-4328-903a-be24f136f0b5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -103.366, - "y": 11.202, - "z": -794.633 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022692", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022692", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "table_loot (2) [c8d896e1-1f03-4fea-aa19-88837d1401fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 35.29, + "y": 12.979, + "z": -845.99 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022694", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022694", + "_tpl": "590c639286f774151567fa95", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "table_loot (2) [c8d896e1-1f03-4fea-aa19-88837d1401fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 35.29, - "y": 12.979, - "z": -845.99 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022694", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022694", - "_tpl": "590c639286f774151567fa95", - "upd": { - "StackObjectsCount": 1 + { + "Id": "technikal_staff (12) [24fd46d0-0509-4c9b-a10c-fefb2c774b83]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -85.412, + "y": 19.512, + "z": -76.446 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022696", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022696", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "technikal_staff (12) [24fd46d0-0509-4c9b-a10c-fefb2c774b83]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -85.412, - "y": 19.512, - "z": -76.446 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] + }, + { + "Id": "technikal_staff (56) [4c8f9c0d-66f9-427d-a485-e1d0a467538f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -116.066, + "y": 18.74, + "z": -13.709 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022698", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022698", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022696", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022696", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "technikal_staff (9) [2c45412d-97d6-46e7-bd58-78398fbaa217]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -108.87, + "y": 18.139, + "z": -31.258 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402269a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402269a", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "technikal_staff (56) [4c8f9c0d-66f9-427d-a485-e1d0a467538f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -116.066, - "y": 18.74, - "z": -13.709 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022698", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022698", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (1) [95e41776-c683-494f-845a-2388be9f3a4a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 124.697, + "y": 0.753, + "z": 70.878 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402269c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402269c", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "technikal_staff (9) [2c45412d-97d6-46e7-bd58-78398fbaa217]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -108.87, - "y": 18.139, - "z": -31.258 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402269a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402269a", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (10) [b8643c35-d1fc-410c-9271-8d5e81258c16]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -267.91, + "y": 15.766, + "z": -190.446 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402269e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402269e", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (1) [95e41776-c683-494f-845a-2388be9f3a4a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 124.697, - "y": 0.753, - "z": 70.878 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402269c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402269c", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (101) [13407621-148b-45da-90ff-1f2a3491971b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -228.559, + "y": 2.06, + "z": -332.661 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226a0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226a0", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (10) [b8643c35-d1fc-410c-9271-8d5e81258c16]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -267.91, - "y": 15.766, - "z": -190.446 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402269e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402269e", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (102) [8498be76-3065-4db7-85d4-abe350a404e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -227.148, + "y": 2.06, + "z": -333.495 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226a2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226a2", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (101) [13407621-148b-45da-90ff-1f2a3491971b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -228.559, - "y": 2.06, - "z": -332.661 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226a0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226a0", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (102) [c4adb5ae-72a7-4244-8c67-1a1550b02854]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 356.667, + "y": 2.837, + "z": 455.453 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226a4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226a4", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (102) [8498be76-3065-4db7-85d4-abe350a404e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -227.148, - "y": 2.06, - "z": -333.495 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226a2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226a2", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (103) [c12d1d50-a7c5-4966-a4cc-254ae2becaa5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -224.47, + "y": 2.06, + "z": -333.4 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226a6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226a6", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (102) [c4adb5ae-72a7-4244-8c67-1a1550b02854]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 356.667, - "y": 2.837, - "z": 455.453 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226a4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226a4", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (105) [5b0b6b64-a0dc-4372-b89d-b4b80a3bb5f7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -201.909, + "y": 3.292, + "z": -346.971 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226a8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226a8", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (103) [c12d1d50-a7c5-4966-a4cc-254ae2becaa5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -224.47, - "y": 2.06, - "z": -333.4 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226a6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226a6", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (107) [2f8f6e9a-b95c-4689-8b92-1a7a8c88755c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -283.924, + "y": 1.155, + "z": -337.638 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226aa", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226aa", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (105) [5b0b6b64-a0dc-4372-b89d-b4b80a3bb5f7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -201.909, - "y": 3.292, - "z": -346.971 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226a8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226a8", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (108) [35eacc6a-53a6-420e-af12-93fafb8c47e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.55, + "y": 14.397, + "z": -742.643 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226ac", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226ac", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (107) [2f8f6e9a-b95c-4689-8b92-1a7a8c88755c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -283.924, - "y": 1.155, - "z": -337.638 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226aa", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226aa", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (109) [522113e1-2b6a-4e5d-babd-fdfd24ca34a2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.348, + "y": 14.397, + "z": -740.611 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226ae", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226ae", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (108) [35eacc6a-53a6-420e-af12-93fafb8c47e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.55, - "y": 14.397, - "z": -742.643 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226ac", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226ac", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (11) [9cbe3118-ed2d-4fdd-bb2e-1718b2809e7f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -260.816, + "y": 14.914, + "z": -209.324 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226b0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226b0", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (109) [522113e1-2b6a-4e5d-babd-fdfd24ca34a2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.348, - "y": 14.397, - "z": -740.611 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226ae", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226ae", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (110) [9df9dce0-722a-40d4-a895-fa70c22ebdde]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.07, + "y": 14.397, + "z": -741.712 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226b2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226b2", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (11) [9cbe3118-ed2d-4fdd-bb2e-1718b2809e7f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -260.816, - "y": 14.914, - "z": -209.324 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226b0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226b0", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (115) [91ff25ab-202c-477e-a16d-9bcaa0602c80]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.603, + "y": 15.229, + "z": -736.992 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226b4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226b4", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (110) [9df9dce0-722a-40d4-a895-fa70c22ebdde]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.07, - "y": 14.397, - "z": -741.712 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226b2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226b2", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (12) [9ba13f9a-8a3c-4578-b6de-71e1eed23569]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -276.293, + "y": 14.484, + "z": -204.233 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226b6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226b6", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (115) [91ff25ab-202c-477e-a16d-9bcaa0602c80]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.603, - "y": 15.229, - "z": -736.992 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226b4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226b4", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (121) [01854067-80c4-4b33-b392-dbbd07590988]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 347.283, + "y": 2.313, + "z": 518.647 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226b8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226b8", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (12) [9ba13f9a-8a3c-4578-b6de-71e1eed23569]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -276.293, - "y": 14.484, - "z": -204.233 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226b6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226b6", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (122) [1e2e3f8d-110c-4812-913c-af198a3826ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 345.66, + "y": 2.98, + "z": 519.96 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226ba", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226ba", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (121) [01854067-80c4-4b33-b392-dbbd07590988]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 347.283, - "y": 2.313, - "z": 518.647 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226b8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226b8", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (13) [d1130cba-7872-4004-8213-634c421f9850]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -270.833, + "y": 14.584, + "z": -192.4 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226bc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226bc", + "_tpl": "56742c2e4bdc2d95058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (122) [1e2e3f8d-110c-4812-913c-af198a3826ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 345.66, - "y": 2.98, - "z": 519.96 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226ba", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226ba", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (16) [b71884f8-ae65-4b52-ac2d-e2c6a059eb83]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.198, + "y": 1.248, + "z": 469.423 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226be", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226be", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (13) [d1130cba-7872-4004-8213-634c421f9850]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -270.833, - "y": 14.584, - "z": -192.4 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226bc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226bc", - "_tpl": "56742c2e4bdc2d95058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (17) [5a7066e2-1a0f-4123-b038-d2c7a1b9cfbb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 99.029, + "y": 1.402, + "z": 455.457 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226c0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226c0", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (16) [b71884f8-ae65-4b52-ac2d-e2c6a059eb83]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.198, - "y": 1.248, - "z": 469.423 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226be", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226be", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (19) [84c37f0f-92b0-449d-8828-805f3ab54780]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -69.809, + "y": 12.583, + "z": 262.215 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226c2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226c2", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (17) [5a7066e2-1a0f-4123-b038-d2c7a1b9cfbb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 99.029, - "y": 1.402, - "z": 455.457 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226c0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226c0", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (2) [a36ae86e-29fa-4aa1-baba-3e0c93299412]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.732, + "y": 7.787, + "z": -183.824 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226c4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226c4", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (19) [84c37f0f-92b0-449d-8828-805f3ab54780]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -69.809, - "y": 12.583, - "z": 262.215 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226c2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226c2", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (21) [457da667-b9fb-49e0-849a-c4c91365bbd0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.040985, + "y": 40.6070023, + "z": 82.10702 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226c6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226c6", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (2) [a36ae86e-29fa-4aa1-baba-3e0c93299412]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.732, - "y": 7.787, - "z": -183.824 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226c4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226c4", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (22) [1eefc897-6ca7-4d13-88ab-c5cded1b5de8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -33.42399, + "y": 13.1260014, + "z": -878.7231 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226c8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226c8", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (21) [457da667-b9fb-49e0-849a-c4c91365bbd0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.040985, - "y": 40.6070023, - "z": 82.10702 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226c6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226c6", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (23) [fadb26ce-3626-42cc-81eb-78ca5b3bb20f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -33.2420273, + "y": 13.2719975, + "z": -877.9791 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226ca", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226ca", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (22) [1eefc897-6ca7-4d13-88ab-c5cded1b5de8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -33.42399, - "y": 13.1260014, - "z": -878.7231 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226c8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226c8", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (24) [25e40cfc-6f20-445b-bc3d-458210625bf0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -178.361, + "y": 11.768, + "z": -239.277 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226cc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226cc", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (23) [fadb26ce-3626-42cc-81eb-78ca5b3bb20f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -33.2420273, - "y": 13.2719975, - "z": -877.9791 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226ca", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226ca", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (24) [8ba80c85-b409-4bd8-9c23-095d8bf82f61]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -32.19999, + "y": 13.2719975, + "z": -877.8301 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226ce", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226ce", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (24) [25e40cfc-6f20-445b-bc3d-458210625bf0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -178.361, - "y": 11.768, - "z": -239.277 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226cc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226cc", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (25) [1ca67260-0c55-42ca-86b1-e67aa3d93f25]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.134, + "y": 11.522, + "z": -807.712 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226d0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226d0", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (24) [8ba80c85-b409-4bd8-9c23-095d8bf82f61]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -32.19999, - "y": 13.2719975, - "z": -877.8301 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226ce", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226ce", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (30) [b006c766-9c98-42af-8785-4ea6b3e15723]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -127.148, + "y": 6.075, + "z": -748.085 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226d2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226d2", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (25) [1ca67260-0c55-42ca-86b1-e67aa3d93f25]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.134, - "y": 11.522, - "z": -807.712 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226d0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226d0", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (31) [af623dcb-29e1-4f77-a53c-d8a7d83c3d8f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -126.777, + "y": 5.73, + "z": -747.954 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226d4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226d4", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (30) [b006c766-9c98-42af-8785-4ea6b3e15723]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -127.148, - "y": 6.075, - "z": -748.085 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226d2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226d2", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (32) [5bbb5841-bbd6-40d1-a2b0-38c90b4ab1aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -106.418, + "y": 6.168, + "z": -755.998 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226d6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226d6", + "_tpl": "60391b0fb847c71012789415", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (31) [af623dcb-29e1-4f77-a53c-d8a7d83c3d8f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -126.777, - "y": 5.73, - "z": -747.954 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226d4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226d4", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (34) [79840974-d227-404c-9e53-ece93a54bb85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 19.377, + "y": 7.361, + "z": -245.561 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226d8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226d8", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (32) [5bbb5841-bbd6-40d1-a2b0-38c90b4ab1aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -106.418, - "y": 6.168, - "z": -755.998 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226d6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226d6", - "_tpl": "60391b0fb847c71012789415", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (38) [4d34208e-cfae-4370-b5dc-529123613376]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.522, + "y": 5.974, + "z": -731.344 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226da", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226da", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (34) [79840974-d227-404c-9e53-ece93a54bb85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 19.377, - "y": 7.361, - "z": -245.561 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226d8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226d8", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (39) [c88c07c9-0b36-4502-95ef-2ca85a865af2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -65.8, + "y": 5.974, + "z": -731.426 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226dc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226dc", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (38) [4d34208e-cfae-4370-b5dc-529123613376]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.522, - "y": 5.974, - "z": -731.344 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226da", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226da", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (43) [5fa82c1a-d6fa-4727-b384-166bd1b75376]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 122.974, + "y": 7.781, + "z": 213.99 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226de", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226de", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (39) [c88c07c9-0b36-4502-95ef-2ca85a865af2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -65.8, - "y": 5.974, - "z": -731.426 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226dc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226dc", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (43) [a96eb3b4-8aa2-472d-be0e-5d3b28bfaa32]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.12, + "y": 5.349, + "z": -756.162 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226e0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226e0", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (43) [5fa82c1a-d6fa-4727-b384-166bd1b75376]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 122.974, - "y": 7.781, - "z": 213.99 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226de", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226de", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (44) [2a624ab5-ddb4-4910-af8f-7224032ca1bd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 122.273, + "y": 8.045, + "z": 213.867 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226e2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226e2", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (43) [a96eb3b4-8aa2-472d-be0e-5d3b28bfaa32]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.12, - "y": 5.349, - "z": -756.162 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226e0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226e0", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (48) [83d4b118-8454-4dfb-9868-ec4d10c7e595]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.31299973, + "y": 7.605, + "z": 481.938 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226e4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226e4", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (44) [2a624ab5-ddb4-4910-af8f-7224032ca1bd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 122.273, - "y": 8.045, - "z": 213.867 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226e2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226e2", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (49) [6e3aeb0f-cac2-40e5-9861-27664526f2e0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.569, + "y": 5.462, + "z": -743.513 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226e6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226e6", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (48) [83d4b118-8454-4dfb-9868-ec4d10c7e595]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.31299973, - "y": 7.605, - "z": 481.938 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226e4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226e4", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (50) [ad8ffe39-f878-4677-814f-aa145704da85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.35, + "y": 5.462, + "z": -743.58 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226e8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226e8", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (49) [6e3aeb0f-cac2-40e5-9861-27664526f2e0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.569, - "y": 5.462, - "z": -743.513 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226e6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226e6", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (53) [255e45a8-3abc-45c8-ae04-471b0d395fad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.471, + "y": 7.605, + "z": 482.751 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226ea", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226ea", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (50) [ad8ffe39-f878-4677-814f-aa145704da85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.35, - "y": 5.462, - "z": -743.58 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226e8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226e8", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (56) [332ca854-d776-4359-af61-1a1db3ead0de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 18.116, + "y": 5.58, + "z": 493.703 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226ec", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226ec", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (53) [255e45a8-3abc-45c8-ae04-471b0d395fad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.471, - "y": 7.605, - "z": 482.751 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226ea", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226ea", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (57) [3ccd53ea-b708-4793-9767-7f7879532e1c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -110.757, + "y": 1.563, + "z": -491.349 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226ee", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226ee", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (56) [332ca854-d776-4359-af61-1a1db3ead0de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 18.116, - "y": 5.58, - "z": 493.703 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226ec", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226ec", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (58) [b99d1316-207c-4a58-b312-b173e829d598]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 17.217, + "y": 5.58, + "z": 493.498 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226f0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226f0", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (57) [3ccd53ea-b708-4793-9767-7f7879532e1c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -110.757, - "y": 1.563, - "z": -491.349 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226ee", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226ee", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (60) [b838f2ff-fd48-4ca8-bfcc-084adc146df7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -98.566, + "y": 0.943, + "z": -512.142 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226f2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226f2", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (58) [b99d1316-207c-4a58-b312-b173e829d598]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 17.217, - "y": 5.58, - "z": 493.498 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226f0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226f0", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (66) [755308b9-45db-43d8-81ac-ed232a90e760]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -95.186, + "y": 0.813, + "z": -503.079 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226f4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226f4", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (60) [b838f2ff-fd48-4ca8-bfcc-084adc146df7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -98.566, - "y": 0.943, - "z": -512.142 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226f2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226f2", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (69) [023f396f-b857-433d-af03-ff4cfed586bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -169.997, + "y": 6.068, + "z": -466.492 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226f6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226f6", + "_tpl": "60391b0fb847c71012789415", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (66) [755308b9-45db-43d8-81ac-ed232a90e760]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -95.186, - "y": 0.813, - "z": -503.079 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226f4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226f4", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (69) [0de23a53-b56a-4571-a91d-09636c632375]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 22.415, + "y": 6.826, + "z": -242.078 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226f8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226f8", + "_tpl": "590c311186f77424d1667482", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (69) [023f396f-b857-433d-af03-ff4cfed586bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -169.997, - "y": 6.068, - "z": -466.492 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226f6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226f6", - "_tpl": "60391b0fb847c71012789415", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (71) [fd17e8f0-d438-4f90-9db6-d93956ae3eb2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -187.66, + "y": 5.536, + "z": -426.952 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226fa", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226fa", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (69) [0de23a53-b56a-4571-a91d-09636c632375]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 22.415, - "y": 6.826, - "z": -242.078 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226f8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226f8", - "_tpl": "590c311186f77424d1667482", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (74) [0e37321b-a43a-474f-8ae8-59774066b40f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 87.261, + "y": 1.248, + "z": 470.713 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226fc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226fc", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (71) [fd17e8f0-d438-4f90-9db6-d93956ae3eb2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -187.66, - "y": 5.536, - "z": -426.952 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226fa", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226fa", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (75) [983acce1-5555-4c55-a1d3-da4a0c3bb367]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 47.518, + "y": 6.126, + "z": -618.742 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240226fe", + "Items": [ + { + "_id": "66cbbe6fd31d686b240226fe", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (74) [0e37321b-a43a-474f-8ae8-59774066b40f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 87.261, - "y": 1.248, - "z": 470.713 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226fc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226fc", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (76) [6d5ea138-cf04-44d0-86bc-1d88bb224383]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 47.932, + "y": 6.126, + "z": -619.472 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022700", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022700", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (75) [983acce1-5555-4c55-a1d3-da4a0c3bb367]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 47.518, - "y": 6.126, - "z": -618.742 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240226fe", - "Items": [ - { - "_id": "66cbbe6fd31d686b240226fe", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (77) [b0ab742f-6981-4395-8207-a7803faf6b8c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.324, + "y": 7.02, + "z": -60.212 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022702", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022702", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (76) [6d5ea138-cf04-44d0-86bc-1d88bb224383]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 47.932, - "y": 6.126, - "z": -619.472 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022700", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022700", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (78) [325911c0-d57b-4c46-87bd-551fa9c58e09]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.591, + "y": 7.02, + "z": -59.128 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022704", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022704", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (77) [b0ab742f-6981-4395-8207-a7803faf6b8c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.324, - "y": 7.02, - "z": -60.212 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022702", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022702", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (79) [8cc22a65-8a09-4ff8-83f5-64fd8d70cfd4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.566, + "y": 41.321, + "z": 81.55 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022706", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022706", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (78) [325911c0-d57b-4c46-87bd-551fa9c58e09]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.591, - "y": 7.02, - "z": -59.128 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022704", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022704", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (8) [3f372280-898d-4b5f-97a1-917f6b023478]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -265.826, + "y": 15.065, + "z": -195.687 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022708", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022708", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (79) [8cc22a65-8a09-4ff8-83f5-64fd8d70cfd4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.566, - "y": 41.321, - "z": 81.55 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022706", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022706", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (80) [b58149fd-ea12-4820-8b72-1bdd974c86a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.129, + "y": 0.094, + "z": -91.254 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402270a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402270a", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (8) [3f372280-898d-4b5f-97a1-917f6b023478]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -265.826, - "y": 15.065, - "z": -195.687 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022708", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022708", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (80) [c61c9d18-00a7-4384-ae20-1b2235aff2a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -245.81, + "y": 6.57, + "z": 412.49 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402270c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402270c", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (80) [b58149fd-ea12-4820-8b72-1bdd974c86a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.129, - "y": 0.094, - "z": -91.254 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402270a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402270a", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (81) [21ffb66d-c199-4da3-9838-9a4eede85d13]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 84.841, + "y": 0.094, + "z": -92.642 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402270e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402270e", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (80) [c61c9d18-00a7-4384-ae20-1b2235aff2a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -245.81, - "y": 6.57, - "z": 412.49 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402270c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402270c", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (88) [4a6a51b3-1962-4352-a987-dc2ed7e6d8af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -175.39, + "y": 6.0, + "z": 425.707 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022710", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022710", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (81) [21ffb66d-c199-4da3-9838-9a4eede85d13]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 84.841, - "y": 0.094, - "z": -92.642 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402270e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402270e", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (94) [c1e7f4ab-174d-4309-89a5-09e043d68f80]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 25.74, + "y": 13.282, + "z": -857.78 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022712", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022712", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (88) [4a6a51b3-1962-4352-a987-dc2ed7e6d8af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -175.39, - "y": 6.0, - "z": 425.707 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022710", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022710", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (97) [eb6f205f-3dc6-4f4a-a4b0-4a50800ce1ca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 12.735, + "y": 12.948, + "z": -855.035 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022714", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022714", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (94) [c1e7f4ab-174d-4309-89a5-09e043d68f80]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 25.74, - "y": 13.282, - "z": -857.78 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022712", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022712", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (98) [25e454f7-7663-4e19-959b-17ccb74cf2b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -304.175, + "y": 0.392, + "z": -325.507 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022716", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022716", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (97) [eb6f205f-3dc6-4f4a-a4b0-4a50800ce1ca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 12.735, - "y": 12.948, - "z": -855.035 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022714", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022714", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_only (10) [ab466c6f-0acb-48fa-92bd-f2a827a81919]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -135.589, + "y": 3.014, + "z": -672.11 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022718", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022718", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (98) [25e454f7-7663-4e19-959b-17ccb74cf2b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -304.175, - "y": 0.392, - "z": -325.507 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022716", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022716", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (100) [672f3dc1-72b1-4a6a-8509-9af1fedbd038]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 339.167, + "y": 2.902, + "z": 482.023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402271a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402271a", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_only (10) [ab466c6f-0acb-48fa-92bd-f2a827a81919]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -135.589, - "y": 3.014, - "z": -672.11 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022718", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022718", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (103) [d413a335-c562-4df7-a510-56b5dd1c0bac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 337.754, + "y": 3.021, + "z": 484.335 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402271c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402271c", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (100) [672f3dc1-72b1-4a6a-8509-9af1fedbd038]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 339.167, - "y": 2.902, - "z": 482.023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402271a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402271a", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (105) [3ef3742e-5b5a-46b7-b321-7d26a27f8989]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 380.969, + "y": 13.873, + "z": 566.863 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402271e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402271e", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (103) [d413a335-c562-4df7-a510-56b5dd1c0bac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 337.754, - "y": 3.021, - "z": 484.335 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402271c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402271c", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (108) [1138891b-0507-44bd-9a79-146c364051ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 381.528, + "y": 13.873, + "z": 567.166 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022720", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022720", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (105) [3ef3742e-5b5a-46b7-b321-7d26a27f8989]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 380.969, - "y": 13.873, - "z": 566.863 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402271e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402271e", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (109) [df17fd5c-a950-4f17-b37c-8d2a825141b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -110.108, + "y": 5.195, + "z": -731.704 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022722", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022722", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (108) [1138891b-0507-44bd-9a79-146c364051ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 381.528, - "y": 13.873, - "z": 567.166 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022720", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022720", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (110) [e7e5e1dc-43b8-4716-a9a7-e425f1ad6751]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -110.108, + "y": 5.569, + "z": -731.268 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022724", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022724", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (109) [df17fd5c-a950-4f17-b37c-8d2a825141b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -110.108, - "y": 5.195, - "z": -731.704 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022722", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022722", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (112) [6fe878ff-fda0-41cc-8bd0-90972962a596]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.206, + "y": 5.925, + "z": -705.586 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022726", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022726", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (110) [e7e5e1dc-43b8-4716-a9a7-e425f1ad6751]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -110.108, - "y": 5.569, - "z": -731.268 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022724", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022724", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (113) [6ce3dfc2-ebe1-4fae-b782-b7f28f50ad07]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.893, + "y": 5.925, + "z": -705.66 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022728", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022728", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (112) [6fe878ff-fda0-41cc-8bd0-90972962a596]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.206, - "y": 5.925, - "z": -705.586 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022726", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022726", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (114) [6802735b-84f7-4679-891e-b51c9c6fe79f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -177.149, + "y": 5.948, + "z": -704.467 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402272a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402272a", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (113) [6ce3dfc2-ebe1-4fae-b782-b7f28f50ad07]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.893, - "y": 5.925, - "z": -705.66 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022728", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022728", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (12) [3d5db15f-3aa9-49cf-9190-ab067fe9750e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.158, + "y": 12.447, + "z": -848.918 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402272c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402272c", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (114) [6802735b-84f7-4679-891e-b51c9c6fe79f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -177.149, - "y": 5.948, - "z": -704.467 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402272a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402272a", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (13) [a27c595d-3e15-45df-8e71-d91c7f73e7d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 48.991, + "y": 12.447, + "z": -848.877 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402272e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402272e", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (12) [3d5db15f-3aa9-49cf-9190-ab067fe9750e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.158, - "y": 12.447, - "z": -848.918 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402272c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402272c", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (14) [4b222dd6-8ac9-4555-84dd-ed282cd732ed]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.671, + "y": 12.358, + "z": -851.662 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022730", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022730", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (13) [a27c595d-3e15-45df-8e71-d91c7f73e7d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 48.991, - "y": 12.447, - "z": -848.877 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402272e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402272e", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (17) [2aa6c492-0850-4ad4-b863-50ccc3a0e591]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.877, + "y": 13.224, + "z": -830.156 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022732", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022732", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (14) [4b222dd6-8ac9-4555-84dd-ed282cd732ed]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.671, - "y": 12.358, - "z": -851.662 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022730", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022730", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (2) [bc2b87f3-7232-4f37-8b8f-8e713c30ace4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.717, + "y": 11.784, + "z": -903.525 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022734", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022734", + "_tpl": "60391b0fb847c71012789415", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (17) [2aa6c492-0850-4ad4-b863-50ccc3a0e591]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.877, - "y": 13.224, - "z": -830.156 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022732", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022732", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (22) [04e3aadc-3497-499a-ae06-336197c2a587]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.981, + "y": 11.505, + "z": -805.582 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022736", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022736", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (2) [bc2b87f3-7232-4f37-8b8f-8e713c30ace4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.717, - "y": 11.784, - "z": -903.525 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022734", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022734", - "_tpl": "60391b0fb847c71012789415", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (23) [7d7feb87-f385-49e7-b374-413712e11fc8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 47.25, + "y": 11.734, + "z": -794.307 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022738", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022738", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (22) [04e3aadc-3497-499a-ae06-336197c2a587]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.981, - "y": 11.505, - "z": -805.582 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022736", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022736", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (30) [7690c18b-3517-4d3f-bc0f-1b854eb4a0aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -159.002, + "y": 6.156, + "z": -733.688 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402273a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402273a", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (23) [7d7feb87-f385-49e7-b374-413712e11fc8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 47.25, - "y": 11.734, - "z": -794.307 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022738", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022738", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (32) [0f59ff93-1d0e-4118-a0d8-42438e19f778]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.978, + "y": 13.21, + "z": -836.939 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402273c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402273c", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (30) [7690c18b-3517-4d3f-bc0f-1b854eb4a0aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -159.002, - "y": 6.156, - "z": -733.688 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402273a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402273a", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (35) [8cdca322-0f35-4c33-83ef-42f3edfdace3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.139, + "y": 12.461, + "z": -859.896 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402273e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402273e", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (32) [0f59ff93-1d0e-4118-a0d8-42438e19f778]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.978, - "y": 13.21, - "z": -836.939 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402273c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402273c", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (36) [3e43b198-0abf-487b-ab01-ec0549d9c34d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.437, + "y": 12.486, + "z": -864.12 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022740", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022740", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (35) [8cdca322-0f35-4c33-83ef-42f3edfdace3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.139, - "y": 12.461, - "z": -859.896 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402273e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402273e", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (49) [bda6015a-ba15-4296-80c9-99d627ba2c5c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -33.294, + "y": 12.998, + "z": -926.057 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022742", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022742", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (36) [3e43b198-0abf-487b-ab01-ec0549d9c34d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.437, - "y": 12.486, - "z": -864.12 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022740", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022740", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (58) [2bcd0654-053f-4193-a808-2d1ec8b633c0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.694, + "y": 12.761, + "z": -860.892 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022744", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022744", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (49) [bda6015a-ba15-4296-80c9-99d627ba2c5c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -33.294, - "y": 12.998, - "z": -926.057 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022742", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022742", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (59) [18fe30a7-2033-4604-9ed2-1edb9a994c4b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -4.429, + "y": 12.775, + "z": -861.132 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022746", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022746", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (58) [2bcd0654-053f-4193-a808-2d1ec8b633c0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.694, - "y": 12.761, - "z": -860.892 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022744", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022744", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (65) [ef68f7ba-b12d-401e-8ddf-97f64a2bfbbc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 165.33, + "y": 0.46, + "z": 226.24 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022748", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022748", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (59) [18fe30a7-2033-4604-9ed2-1edb9a994c4b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -4.429, - "y": 12.775, - "z": -861.132 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022746", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022746", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (7) [e34147bd-8466-4b4b-ab6b-a0620e1e773a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 34.245, + "y": 12.955, + "z": -834.089 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402274a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402274a", + "_tpl": "5b43575a86f77424f443fe62", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (65) [ef68f7ba-b12d-401e-8ddf-97f64a2bfbbc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 165.33, - "y": 0.46, - "z": 226.24 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022748", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022748", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (70) [980222da-152b-4aab-affd-6b5746f80e9f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 143.562, + "y": 0.045, + "z": -80.719 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402274c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402274c", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (7) [e34147bd-8466-4b4b-ab6b-a0620e1e773a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 34.245, - "y": 12.955, - "z": -834.089 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402274a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402274a", - "_tpl": "5b43575a86f77424f443fe62", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (71) [acb5ae81-bc40-4680-b6b7-44aa95371271]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 143.037, + "y": 0.045, + "z": -81.196 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402274e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402274e", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (70) [980222da-152b-4aab-affd-6b5746f80e9f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 143.562, - "y": 0.045, - "z": -80.719 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402274c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402274c", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (79) [66134049-b363-4ee7-a8ad-52f37761c5b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -304.452, + "y": 0.271, + "z": -323.618 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022750", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022750", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (71) [acb5ae81-bc40-4680-b6b7-44aa95371271]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 143.037, - "y": 0.045, - "z": -81.196 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402274e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402274e", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "tools_stuff1 (79) [66134049-b363-4ee7-a8ad-52f37761c5b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -304.452, - "y": 0.271, - "z": -323.618 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "tools_stuff1 (8) [74339657-a739-4019-9dbe-a6b45707b9c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.186, + "y": 13.023, + "z": -833.476 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022752", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022752", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022750", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022750", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (82) [5532a341-e604-4f2f-b311-d0688bc25df9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -272.875, + "y": 0.999, + "z": -308.379 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022754", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022754", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (8) [74339657-a739-4019-9dbe-a6b45707b9c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.186, - "y": 13.023, - "z": -833.476 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022752", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022752", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (84) [00a2b686-088d-4ec3-8f23-49c8b217f77d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -138.649, + "y": 12.689, + "z": -220.628 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022756", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022756", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (82) [5532a341-e604-4f2f-b311-d0688bc25df9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -272.875, - "y": 0.999, - "z": -308.379 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022754", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022754", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (85) [1c348446-10c6-4b70-bb51-8cee6ad7e005]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 351.135, + "y": 3.639, + "z": 454.536 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022758", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022758", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (84) [00a2b686-088d-4ec3-8f23-49c8b217f77d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -138.649, - "y": 12.689, - "z": -220.628 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022756", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022756", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (89) [8e0c7fab-0566-485f-adb3-11051ba8504c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 347.141, + "y": 3.081, + "z": 474.234 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402275a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402275a", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (85) [1c348446-10c6-4b70-bb51-8cee6ad7e005]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 351.135, - "y": 3.639, - "z": 454.536 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022758", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022758", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (92) [cac1919a-ef64-40b6-87a1-22c515a1630b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 337.367, + "y": 2.662, + "z": 479.221 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402275c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402275c", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (89) [8e0c7fab-0566-485f-adb3-11051ba8504c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 347.141, - "y": 3.081, - "z": 474.234 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402275a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402275a", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_stuff1 (98) [abb971f0-7e08-4bb3-b354-7f182d7e6078]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 338.709, + "y": 2.704, + "z": 484.917 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402275e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402275e", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (92) [cac1919a-ef64-40b6-87a1-22c515a1630b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 337.367, - "y": 2.662, - "z": 479.221 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402275c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402275c", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univ_jev_med (1) [c8b2fb49-b9b5-427c-828b-5231008b60d1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -147.267, + "y": 11.926, + "z": -250.240967 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022760", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022760", + "_tpl": "5d0375ff86f774186372f685", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_stuff1 (98) [abb971f0-7e08-4bb3-b354-7f182d7e6078]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 338.709, - "y": 2.704, - "z": 484.917 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402275e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402275e", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univ_jev_med (3) [a7bb0b21-cce5-490c-8a00-b3476ac8597d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 334.775, + "y": 5.572, + "z": 519.169 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022762", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022762", + "_tpl": "5f745ee30acaeb0d490d8c5b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univ_jev_med (1) [c8b2fb49-b9b5-427c-828b-5231008b60d1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -147.267, - "y": 11.926, - "z": -250.240967 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022760", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022760", - "_tpl": "5d0375ff86f774186372f685", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univ_money_jeverly (11) [48305045-cd09-4be3-8225-b4f205ffc7ce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.721, + "y": 4.018, + "z": -135.307983 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022764", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022764", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 722 + } } - } - ] - }, - { - "Id": "univ_jev_med (3) [a7bb0b21-cce5-490c-8a00-b3476ac8597d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 334.775, - "y": 5.572, - "z": 519.169 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022762", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022762", - "_tpl": "5f745ee30acaeb0d490d8c5b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univ_money_jeverly (29) [643781af-a82b-44da-91f3-c993aa511a6e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 11.722, + "y": 2.58, + "z": -546.313965 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022766", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022766", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "univ_money_jeverly (11) [48305045-cd09-4be3-8225-b4f205ffc7ce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.721, - "y": 4.018, - "z": -135.307983 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022764", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022764", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 722 + { + "Id": "univ_money_jeverly (41) [2c296036-d905-4c14-9bc6-8a013b59d72c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -115.579, + "y": 21.91, + "z": -18.8889771 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022768", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022768", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 81 + } } - } - ] - }, - { - "Id": "univ_money_jeverly (29) [643781af-a82b-44da-91f3-c993aa511a6e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 11.722, - "y": 2.58, - "z": -546.313965 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022766", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022766", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 50 + { + "Id": "univer_point (1) [7d6ede06-ff33-4acb-b820-6638c3e36d0d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 45.123, + "y": 7.39, + "z": -447.221 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402276a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402276a", + "_tpl": "5c05308086f7746b2101e90b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univ_money_jeverly (41) [2c296036-d905-4c14-9bc6-8a013b59d72c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -115.579, - "y": 21.91, - "z": -18.8889771 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022768", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022768", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 81 + { + "Id": "univer_point (10) [448dbe84-92b2-4d79-a20d-b51ba7bf1451]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -81.62499, + "y": 22.4309, + "z": -57.62799 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402276c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402276c", + "_tpl": "5e2aee0a86f774755a234b62", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (1) [7d6ede06-ff33-4acb-b820-6638c3e36d0d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 45.123, - "y": 7.39, - "z": -447.221 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402276a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402276a", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (11) [40ddf849-5cee-43e0-ac9e-4621ba94a186]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -81.62847, + "y": 22.3732, + "z": -91.0357056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402276e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402276e", + "_tpl": "5bc9bdb8d4351e003562b8a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (10) [448dbe84-92b2-4d79-a20d-b51ba7bf1451]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -81.62499, - "y": 22.4309, - "z": -57.62799 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402276c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402276c", - "_tpl": "5e2aee0a86f774755a234b62", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (12) [55f0b551-1d00-41f4-aff9-b9d96634bc7f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -255.699, + "y": 0.0420000553, + "z": -388.323975 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022770", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022770", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (11) [40ddf849-5cee-43e0-ac9e-4621ba94a186]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -81.62847, - "y": 22.3732, - "z": -91.0357056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402276e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402276e", - "_tpl": "5bc9bdb8d4351e003562b8a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (14) [521d2dc4-4973-4019-a50b-7c206e3adc21]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -117.898, + "y": 40.867, + "z": 88.9360046 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022772", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022772", + "_tpl": "5bc9bdb8d4351e003562b8a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (12) [55f0b551-1d00-41f4-aff9-b9d96634bc7f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -255.699, - "y": 0.0420000553, - "z": -388.323975 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022770", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022770", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (15) [4af848c4-f861-465c-adb0-65829436175f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -116.736, + "y": 40.723, + "z": 88.40701 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022774", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022774", + "_tpl": "5ed515e03a40a50460332579", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (14) [521d2dc4-4973-4019-a50b-7c206e3adc21]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -117.898, - "y": 40.867, - "z": 88.9360046 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022772", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022772", - "_tpl": "5bc9bdb8d4351e003562b8a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (16) [4ce09bda-ecd7-4270-a2c7-41919cf06201]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -123.02, + "y": 40.157, + "z": 86.76303 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022776", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022776", + "_tpl": "5c1267ee86f77416ec610f72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (15) [4af848c4-f861-465c-adb0-65829436175f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -116.736, - "y": 40.723, - "z": 88.40701 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022774", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022774", - "_tpl": "5ed515e03a40a50460332579", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (19) [e0e20fd9-3cbb-4a27-bc21-772563975aa0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -110.122, + "y": 32.792, + "z": 86.216 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022778", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022778", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 55 + } } - } - ] - }, - { - "Id": "univer_point (16) [4ce09bda-ecd7-4270-a2c7-41919cf06201]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -123.02, - "y": 40.157, - "z": 86.76303 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022776", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022776", - "_tpl": "5c1267ee86f77416ec610f72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (20) [3ab68e89-848c-4aab-9722-9b1982628f41]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -110.722008, + "y": 32.792, + "z": 86.1660156 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402277a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402277a", + "_tpl": "5c05300686f7746dce784e5d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (19) [e0e20fd9-3cbb-4a27-bc21-772563975aa0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -110.122, - "y": 32.792, - "z": 86.216 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022778", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022778", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 55 + { + "Id": "univer_point (22) [f3e6833c-9603-4892-bae4-18a5417a6c5d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -123.405006, + "y": 43.59, + "z": 86.34003 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402277c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402277c", + "_tpl": "66507eabf5ddb0818b085b68", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (20) [3ab68e89-848c-4aab-9722-9b1982628f41]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -110.722008, - "y": 32.792, - "z": 86.1660156 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402277a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402277a", - "_tpl": "5c05300686f7746dce784e5d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (23) [bedf64fa-4b41-475d-aaa7-cc77d53fe98a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -117.148994, + "y": 43.486, + "z": 86.54303 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402277e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402277e", + "_tpl": "5e2aee0a86f774755a234b62", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (22) [f3e6833c-9603-4892-bae4-18a5417a6c5d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -123.405006, - "y": 43.59, - "z": 86.34003 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402277c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402277c", - "_tpl": "66507eabf5ddb0818b085b68", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (24) [8c3a85b0-f3aa-437a-99c6-194318b87c45]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -110.753, + "y": 33.538002, + "z": 105.506012 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022780", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022780", + "_tpl": "5c052f6886f7746b1e3db148", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (23) [bedf64fa-4b41-475d-aaa7-cc77d53fe98a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -117.148994, - "y": 43.486, - "z": 86.54303 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402277e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402277e", - "_tpl": "5e2aee0a86f774755a234b62", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (28) [f98e2c57-6e47-4a4a-bd66-955ee1d18d3a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 6.567993, + "y": 2.02, + "z": -552.0288 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022782", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022782", + "_tpl": "62a091170b9d3c46de5b6cf2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (24) [8c3a85b0-f3aa-437a-99c6-194318b87c45]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -110.753, - "y": 33.538002, - "z": 105.506012 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022780", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022780", - "_tpl": "5c052f6886f7746b1e3db148", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (31) [501fcf02-fb84-4159-a611-d591737f4b61]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -104.728004, + "y": 10.9539995, + "z": -892.929932 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022784", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022784", + "_tpl": "5c052f6886f7746b1e3db148", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (28) [f98e2c57-6e47-4a4a-bd66-955ee1d18d3a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 6.567993, - "y": 2.02, - "z": -552.0288 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022782", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022782", - "_tpl": "62a091170b9d3c46de5b6cf2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (33) [4eb2dd1d-3bae-4fa8-87f1-07051d6b56ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 2.77599716, + "y": 2.007, + "z": -478.175 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022786", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022786", + "_tpl": "5f745ee30acaeb0d490d8c5b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (31) [501fcf02-fb84-4159-a611-d591737f4b61]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -104.728004, - "y": 10.9539995, - "z": -892.929932 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022784", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022784", - "_tpl": "5c052f6886f7746b1e3db148", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (35) [ac836b38-2e50-4d30-a50b-eed6222c03b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -49.1440048, + "y": 7.323, + "z": -523.371948 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022788", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022788", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (33) [4eb2dd1d-3bae-4fa8-87f1-07051d6b56ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 2.77599716, - "y": 2.007, - "z": -478.175 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022786", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022786", - "_tpl": "5f745ee30acaeb0d490d8c5b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (4) [7ce4d786-9b70-421b-b07e-197a86b53103]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 56.282, + "y": 5.107, + "z": -590.845 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402278a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402278a", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (35) [ac836b38-2e50-4d30-a50b-eed6222c03b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -49.1440048, - "y": 7.323, - "z": -523.371948 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022788", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022788", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (41) [1159fa8d-9ea7-434b-ae23-05b18372d702]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 328.867981, + "y": 5.921, + "z": 523.133 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402278c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402278c", + "_tpl": "5d03775b86f774203e7e0c4b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (4) [7ce4d786-9b70-421b-b07e-197a86b53103]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 56.282, - "y": 5.107, - "z": -590.845 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402278a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402278a", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (43) [8c4454ed-ff21-401c-9010-9f79f92593a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 328.261, + "y": 5.949, + "z": 521.292 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402278e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402278e", + "_tpl": "5d235a5986f77443f6329bc6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (41) [1159fa8d-9ea7-434b-ae23-05b18372d702]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 328.867981, - "y": 5.921, - "z": 523.133 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402278c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402278c", - "_tpl": "5d03775b86f774203e7e0c4b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (45) [fcba5080-5887-4469-90ff-f1622bc49995]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 327.073, + "y": 2.944, + "z": 484.236023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022790", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022790", + "_tpl": "5c05308086f7746b2101e90b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (43) [8c4454ed-ff21-401c-9010-9f79f92593a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 328.261, - "y": 5.949, - "z": 521.292 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402278e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402278e", - "_tpl": "5d235a5986f77443f6329bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (49) [b08f2d48-d7a0-41f9-8846-2ed4dfa68d2f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.3, + "y": 5.922, + "z": -639.287964 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022792", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022792", + "_tpl": "637b620db7afa97bfc3d7009", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (45) [fcba5080-5887-4469-90ff-f1622bc49995]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 327.073, - "y": 2.944, - "z": 484.236023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022790", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022790", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (50) [598a5f62-c54a-43ac-a959-cdd742753f93]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.2979965, + "y": 5.922, + "z": -639.835938 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022794", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022794", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (49) [b08f2d48-d7a0-41f9-8846-2ed4dfa68d2f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.3, - "y": 5.922, - "z": -639.287964 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022792", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022792", - "_tpl": "637b620db7afa97bfc3d7009", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (51) [69b4ce2c-e034-4722-ab35-ec2cfc9596d0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 55.843, + "y": 6.117, + "z": -650.953 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022796", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022796", + "_tpl": "5bc9bdb8d4351e003562b8a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (50) [598a5f62-c54a-43ac-a959-cdd742753f93]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.2979965, - "y": 5.922, - "z": -639.835938 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022794", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022794", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (52) [09fc4ce1-e5df-498a-97c2-dca5a929a88d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -111.183006, + "y": 5.943, + "z": -755.0449 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022798", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022798", + "_tpl": "5d03775b86f774203e7e0c4b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (51) [69b4ce2c-e034-4722-ab35-ec2cfc9596d0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 55.843, - "y": 6.117, - "z": -650.953 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022796", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022796", - "_tpl": "5bc9bdb8d4351e003562b8a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (54) [78b1fbba-159d-4dc6-a634-2f005dffaf5d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -97.242, + "y": 14.162, + "z": -742.198 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402279a", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402279a", + "_tpl": "59faf7ca86f7740dbe19f6c2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (52) [09fc4ce1-e5df-498a-97c2-dca5a929a88d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -111.183006, - "y": 5.943, - "z": -755.0449 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022798", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022798", - "_tpl": "5d03775b86f774203e7e0c4b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (55) [4b38c95a-704a-4c0a-aa56-5bc8172a5d08]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -119.576, + "y": 5.13, + "z": -731.276 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402279c", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402279c", + "_tpl": "5bc9bdb8d4351e003562b8a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (54) [78b1fbba-159d-4dc6-a634-2f005dffaf5d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -97.242, - "y": 14.162, - "z": -742.198 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402279a", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402279a", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (56) [8ae007c7-7a5e-4dd7-8678-a38a613d16d8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -118.538, + "y": 5.726, + "z": -731.655 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b2402279e", + "Items": [ + { + "_id": "66cbbe6fd31d686b2402279e", + "_tpl": "5c05308086f7746b2101e90b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (55) [4b38c95a-704a-4c0a-aa56-5bc8172a5d08]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -119.576, - "y": 5.13, - "z": -731.276 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402279c", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402279c", - "_tpl": "5bc9bdb8d4351e003562b8a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (63) [e1c7b5c6-86c2-4396-b301-8f9bc539aec3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 365.695984, + "y": 20.162, + "z": 551.715 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227a0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227a0", + "_tpl": "5c05308086f7746b2101e90b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (56) [8ae007c7-7a5e-4dd7-8678-a38a613d16d8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -118.538, - "y": 5.726, - "z": -731.655 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b2402279e", - "Items": [ - { - "_id": "66cbbe6fd31d686b2402279e", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (65) [e4a4b653-e99e-409a-bd64-938ada172ffd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 355.953, + "y": 20.913, + "z": 554.442 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227a2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227a2", + "_tpl": "5c052f6886f7746b1e3db148", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (63) [e1c7b5c6-86c2-4396-b301-8f9bc539aec3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 365.695984, - "y": 20.162, - "z": 551.715 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227a0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227a0", - "_tpl": "5c05308086f7746b2101e90b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univer_point (9) [cd8ad26f-e752-4741-8522-38664bf83a06]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 91.336, + "y": 8.164, + "z": -130.497009 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227a4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227a4", + "_tpl": "59faf7ca86f7740dbe19f6c2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (65) [e4a4b653-e99e-409a-bd64-938ada172ffd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 355.953, - "y": 20.913, - "z": 554.442 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227a2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227a2", - "_tpl": "5c052f6886f7746b1e3db148", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (102) [5d5527fa-ae20-49b4-96c4-425c12e8a17f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.148, + "y": 7.527, + "z": -143.178 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227a6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227a6", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univer_point (9) [cd8ad26f-e752-4741-8522-38664bf83a06]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 91.336, - "y": 8.164, - "z": -130.497009 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227a4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227a4", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (103) [0a393003-8cd3-4827-9074-fbbb627ce292]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.85, + "y": 7.527, + "z": -143.033 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227a8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227a8", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (102) [5d5527fa-ae20-49b4-96c4-425c12e8a17f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.148, - "y": 7.527, - "z": -143.178 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227a6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227a6", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (104) [ce45351d-df2b-4388-9527-32d43d457fc6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.266, + "y": 8.596, + "z": -143.825 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227aa", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227aa", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (103) [0a393003-8cd3-4827-9074-fbbb627ce292]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.85, - "y": 7.527, - "z": -143.033 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227a8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227a8", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (105) [23c0609f-1c23-44c0-be3a-c65c6999343d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.033, + "y": 8.596, + "z": -143.7 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227ac", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227ac", + "_tpl": "590a391c86f774385a33c404", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (104) [ce45351d-df2b-4388-9527-32d43d457fc6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.266, - "y": 8.596, - "z": -143.825 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227aa", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227aa", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (11) [138d03b8-a7c3-41d9-a5ec-d5b3916c09a3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 121.523, + "y": 7.229, + "z": 211.769 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227ae", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227ae", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (105) [23c0609f-1c23-44c0-be3a-c65c6999343d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.033, - "y": 8.596, - "z": -143.7 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227ac", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227ac", - "_tpl": "590a391c86f774385a33c404", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (110) [6efb48a7-dc43-4cce-b4ec-07db97268ea7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -163.111, + "y": 12.773, + "z": -205.439 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227b0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227b0", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (11) [138d03b8-a7c3-41d9-a5ec-d5b3916c09a3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 121.523, - "y": 7.229, - "z": 211.769 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227ae", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227ae", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (114) [11671e75-3b46-4e85-bbaa-3d3118600223]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 123.568, + "y": 2.138, + "z": 21.913 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227b2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227b2", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (110) [6efb48a7-dc43-4cce-b4ec-07db97268ea7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -163.111, - "y": 12.773, - "z": -205.439 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227b0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227b0", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (114) [a204e461-d3e2-413d-8872-ae449b76975e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -149.874, + "y": 40.341, + "z": 98.762 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227b4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227b4", + "_tpl": "590c2b4386f77425357b6123", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (114) [11671e75-3b46-4e85-bbaa-3d3118600223]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 123.568, - "y": 2.138, - "z": 21.913 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227b2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227b2", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (116) [5571b163-15f1-4584-a23b-bebdf044f73d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -135.599, + "y": 12.062, + "z": -253.851 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227b6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227b6", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (114) [a204e461-d3e2-413d-8872-ae449b76975e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -149.874, - "y": 40.341, - "z": 98.762 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227b4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227b4", - "_tpl": "590c2b4386f77425357b6123", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (117) [c738bcb6-48d6-40b5-a75d-f8302003737b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -135.28, + "y": 12.062, + "z": -254.122 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227b8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227b8", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (116) [5571b163-15f1-4584-a23b-bebdf044f73d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -135.599, - "y": 12.062, - "z": -253.851 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227b6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227b6", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (119) [28b93625-9ba2-4508-ba41-8417f992d2f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -127.278, + "y": 12.278, + "z": -253.332 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227ba", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227ba", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (117) [c738bcb6-48d6-40b5-a75d-f8302003737b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -135.28, - "y": 12.062, - "z": -254.122 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227b8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227b8", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (120) [92d8fd9b-eff0-4c3a-97ac-77ca4ca7a643]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.131, + "y": 11.631, + "z": -255.355 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227bc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227bc", + "_tpl": "590a3d9c86f774385926e510", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (119) [28b93625-9ba2-4508-ba41-8417f992d2f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -127.278, - "y": 12.278, - "z": -253.332 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227ba", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227ba", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (13) [96f5ef4c-1542-4152-b0ab-e2ac7043919c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -33.18652, + "y": 7.668, + "z": 202.662 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227be", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227be", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (120) [92d8fd9b-eff0-4c3a-97ac-77ca4ca7a643]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.131, - "y": 11.631, - "z": -255.355 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227bc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227bc", - "_tpl": "590a3d9c86f774385926e510", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (15) [65aba1de-5b2f-4bb1-b640-fafa24687322]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.633, + "y": 27.948, + "z": 109.603 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227c0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227c0", + "_tpl": "5d63d33b86f7746ea9275524", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (13) [96f5ef4c-1542-4152-b0ab-e2ac7043919c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -33.18652, - "y": 7.668, - "z": 202.662 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227be", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227be", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (16) [d5f4a556-fd57-46cb-8fe6-d85d0af8f910]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.839, + "y": 36.902, + "z": 101.242 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227c2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227c2", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (15) [65aba1de-5b2f-4bb1-b640-fafa24687322]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.633, - "y": 27.948, - "z": 109.603 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227c0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227c0", - "_tpl": "5d63d33b86f7746ea9275524", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (18) [a731dd4b-63f5-4867-80f7-b8222c64d7c3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 135.182, + "y": 2.401, + "z": 288.477 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227c4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227c4", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (16) [d5f4a556-fd57-46cb-8fe6-d85d0af8f910]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.839, - "y": 36.902, - "z": 101.242 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227c2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227c2", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (23) [9bf7b6c1-7fbb-46e6-97e6-927c35a6ad52]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -150.321, + "y": 40.341, + "z": 99.23 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227c6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227c6", + "_tpl": "5c13cef886f774072e618e82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (18) [a731dd4b-63f5-4867-80f7-b8222c64d7c3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 135.182, - "y": 2.401, - "z": 288.477 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227c4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227c4", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (26) [a10cb6c2-449f-4b0b-9f50-c1da5ac5db27]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.226, + "y": 40.588, + "z": 76.391 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227c8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227c8", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (23) [9bf7b6c1-7fbb-46e6-97e6-927c35a6ad52]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -150.321, - "y": 40.341, - "z": 99.23 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227c6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227c6", - "_tpl": "5c13cef886f774072e618e82", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (29) [cacdee1d-d58d-4f9e-bc22-45ae8475650d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -114.816, + "y": 40.197, + "z": 82.782 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227ca", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227ca", + "_tpl": "590a3cd386f77436f20848cb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (26) [a10cb6c2-449f-4b0b-9f50-c1da5ac5db27]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.226, - "y": 40.588, - "z": 76.391 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227c8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227c8", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (3) [0b69f6bd-c444-4c4f-9679-93a2b9546aff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 59.838, + "y": 1.48, + "z": 463.256 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227cc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227cc", + "_tpl": "619cbf476b8a1b37a54eebf8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (29) [cacdee1d-d58d-4f9e-bc22-45ae8475650d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -114.816, - "y": 40.197, - "z": 82.782 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227ca", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227ca", - "_tpl": "590a3cd386f77436f20848cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (30) [b3bb2cda-fc2e-4712-bdff-90b85446f47b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -113.248, + "y": 40.869, + "z": 87.697 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227ce", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227ce", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (3) [0b69f6bd-c444-4c4f-9679-93a2b9546aff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 59.838, - "y": 1.48, - "z": 463.256 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227cc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227cc", - "_tpl": "619cbf476b8a1b37a54eebf8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (32) [51050a60-5ad3-45a7-a09d-ec431f9f213f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -117.255, + "y": 37.692, + "z": 75.125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227d0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227d0", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (30) [b3bb2cda-fc2e-4712-bdff-90b85446f47b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -113.248, - "y": 40.869, - "z": 87.697 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227ce", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227ce", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (38) [7cfd024b-81f8-45e3-9029-37d23a772203]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 91.392, + "y": 2.705, + "z": -62.716 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227d2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227d2", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (32) [51050a60-5ad3-45a7-a09d-ec431f9f213f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -117.255, - "y": 37.692, - "z": 75.125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227d0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227d0", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (41) [5bc89d40-d576-41eb-b3cc-141c9de8fafa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 119.842, + "y": 1.891, + "z": -48.006 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227d4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227d4", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (38) [7cfd024b-81f8-45e3-9029-37d23a772203]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 91.392, - "y": 2.705, - "z": -62.716 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227d2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227d2", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (44) [8355eb1e-2516-411d-8d19-37cb9e3a5be8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -3.826, + "y": 7.076, + "z": -14.8533268 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227d6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227d6", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (41) [5bc89d40-d576-41eb-b3cc-141c9de8fafa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 119.842, - "y": 1.891, - "z": -48.006 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227d4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227d4", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (49) [558feb0a-3ff7-4d19-a204-f2199a309727]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.572, + "y": 6.695, + "z": 39.25 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227d8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227d8", + "_tpl": "590a3cd386f77436f20848cb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (44) [8355eb1e-2516-411d-8d19-37cb9e3a5be8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -3.826, - "y": 7.076, - "z": -14.8533268 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227d6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227d6", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (51) [63647c39-afdf-47ce-8ce5-e92d6e212795]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.805, + "y": 7.295, + "z": 38.342 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227da", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227da", + "_tpl": "59faf98186f774067b6be103", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (49) [558feb0a-3ff7-4d19-a204-f2199a309727]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.572, - "y": 6.695, - "z": 39.25 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227d8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227d8", - "_tpl": "590a3cd386f77436f20848cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (52) [060d7d3a-41c8-4ae4-9019-76c9eaae0759]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.908, + "y": 7.295, + "z": 37.476 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227dc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227dc", + "_tpl": "590a358486f77429692b2790", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (51) [63647c39-afdf-47ce-8ce5-e92d6e212795]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.805, - "y": 7.295, - "z": 38.342 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227da", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227da", - "_tpl": "59faf98186f774067b6be103", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (55) [381db3fa-158a-421f-a7fe-2490d65ec5e7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -224.416, + "y": 9.256, + "z": 423.939 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227de", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227de", + "_tpl": "5d40425986f7743185265461", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (52) [060d7d3a-41c8-4ae4-9019-76c9eaae0759]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.908, - "y": 7.295, - "z": 37.476 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227dc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227dc", - "_tpl": "590a358486f77429692b2790", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (59) [6009a013-056f-4334-91eb-5baae1e91258]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -213.15, + "y": 6.668, + "z": 414.294 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227e0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227e0", + "_tpl": "5c12688486f77426843c7d32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (55) [381db3fa-158a-421f-a7fe-2490d65ec5e7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -224.416, - "y": 9.256, - "z": 423.939 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227de", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227de", - "_tpl": "5d40425986f7743185265461", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (60) [699a43b1-e1b9-469e-be19-072e9a3ce872]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.049, + "y": 7.321, + "z": -121.949 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227e2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227e2", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (59) [6009a013-056f-4334-91eb-5baae1e91258]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -213.15, - "y": 6.668, - "z": 414.294 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227e0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227e0", - "_tpl": "5c12688486f77426843c7d32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (63) [3a114a06-b3ed-4e2a-8630-5243551bf078]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.127, + "y": 7.154, + "z": -156.523 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227e4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227e4", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (60) [699a43b1-e1b9-469e-be19-072e9a3ce872]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.049, - "y": 7.321, - "z": -121.949 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227e2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227e2", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (64) [6c76b967-0a22-4f1e-87d0-eaa0999beb91]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.464, + "y": 6.869, + "z": -159.981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227e6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227e6", + "_tpl": "5c12688486f77426843c7d32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (63) [3a114a06-b3ed-4e2a-8630-5243551bf078]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.127, - "y": 7.154, - "z": -156.523 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227e4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227e4", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (66) [3d4d71e0-2ccd-4e85-b233-7cc734842de1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.114, + "y": 6.558, + "z": -186.476 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227e8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227e8", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (64) [6c76b967-0a22-4f1e-87d0-eaa0999beb91]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.464, - "y": 6.869, - "z": -159.981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227e6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227e6", - "_tpl": "5c12688486f77426843c7d32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (7) [b3784aa8-3b1d-4663-9ad8-f45845b95772]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.151, + "y": 2.071, + "z": 300.832 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227ea", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227ea", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (66) [3d4d71e0-2ccd-4e85-b233-7cc734842de1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.114, - "y": 6.558, - "z": -186.476 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227e8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227e8", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (70) [92aa73ea-e925-4116-8b0e-035c2b4bdf35]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -127.577, + "y": 12.278, + "z": -252.708 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227ec", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227ec", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (7) [b3784aa8-3b1d-4663-9ad8-f45845b95772]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.151, - "y": 2.071, - "z": 300.832 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227ea", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227ea", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (71) [980e77c2-c310-43cb-a414-ea11d1ac1941]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -134.054, + "y": 11.76, + "z": -255.443 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227ee", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227ee", + "_tpl": "590a3cd386f77436f20848cb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (70) [92aa73ea-e925-4116-8b0e-035c2b4bdf35]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -127.577, - "y": 12.278, - "z": -252.708 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227ec", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227ec", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (73) [6dcfd66b-e7aa-4ed3-8f8f-279c559c0a6c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -161.995, + "y": 13.512, + "z": -205.293 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227f0", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227f0", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (71) [980e77c2-c310-43cb-a414-ea11d1ac1941]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -134.054, - "y": 11.76, - "z": -255.443 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227ee", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227ee", - "_tpl": "590a3cd386f77436f20848cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (76) [ee8667f8-0aa5-437e-8c10-89714e7130f2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.623, + "y": 1.56, + "z": 466.127 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227f2", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227f2", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (73) [6dcfd66b-e7aa-4ed3-8f8f-279c559c0a6c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -161.995, - "y": 13.512, - "z": -205.293 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227f0", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227f0", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (79) [91ba8b87-7b76-4439-9043-f2cb61b6971a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 134.997, + "y": 2.401, + "z": 293.274 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227f4", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227f4", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (76) [ee8667f8-0aa5-437e-8c10-89714e7130f2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.623, - "y": 1.56, - "z": 466.127 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227f2", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227f2", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (81) [179ea20a-fc60-4328-9d9b-245df86f8254]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 125.624, + "y": 2.071, + "z": 300.256 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227f6", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227f6", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (79) [91ba8b87-7b76-4439-9043-f2cb61b6971a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 134.997, - "y": 2.401, - "z": 293.274 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227f4", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227f4", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (84) [27c673a2-e1b5-4ed4-afc4-5f9c037997dd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -8.894, + "y": 4.044, + "z": 272.684 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227f8", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227f8", + "_tpl": "5c12688486f77426843c7d32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (81) [179ea20a-fc60-4328-9d9b-245df86f8254]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 125.624, - "y": 2.071, - "z": 300.256 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227f6", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227f6", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (86) [74c5946a-0c45-4b06-8bf6-28cd0783a6fd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -32.794, + "y": 7.668, + "z": 202.662 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227fa", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227fa", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (84) [27c673a2-e1b5-4ed4-afc4-5f9c037997dd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -8.894, - "y": 4.044, - "z": 272.684 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227f8", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227f8", - "_tpl": "5c12688486f77426843c7d32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (87) [510059e4-b62e-4070-bbb9-e7079c3ea42e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.687, + "y": 6.811, + "z": 288.139 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227fc", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227fc", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (86) [74c5946a-0c45-4b06-8bf6-28cd0783a6fd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -32.794, - "y": 7.668, - "z": 202.662 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227fa", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227fa", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (91) [b1c94324-d59e-4a0d-8269-2349924b5af5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -108.137, + "y": 19.098, + "z": -9.253 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b240227fe", + "Items": [ + { + "_id": "66cbbe6fd31d686b240227fe", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (87) [510059e4-b62e-4070-bbb9-e7079c3ea42e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.687, - "y": 6.811, - "z": 288.139 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227fc", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227fc", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (92) [8d3aa439-4d58-4b8f-adcc-3a034396ea8a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 95.48, + "y": 2.175, + "z": -62.735 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022800", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022800", + "_tpl": "590a3d9c86f774385926e510", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (91) [b1c94324-d59e-4a0d-8269-2349924b5af5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -108.137, - "y": 19.098, - "z": -9.253 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b240227fe", - "Items": [ - { - "_id": "66cbbe6fd31d686b240227fe", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (93) [200fceb1-3319-44a4-9e49-3b50feaf9001]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 129.323, + "y": 1.637, + "z": 37.163 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022802", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022802", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (92) [8d3aa439-4d58-4b8f-adcc-3a034396ea8a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 95.48, - "y": 2.175, - "z": -62.735 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022800", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022800", - "_tpl": "590a3d9c86f774385926e510", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (94) [15832ab1-c11b-4418-9914-bd9ba52b55cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -3.77, + "y": 7.246, + "z": -14.835 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022804", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022804", + "_tpl": "59e358a886f7741776641ac3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (93) [200fceb1-3319-44a4-9e49-3b50feaf9001]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 129.323, - "y": 1.637, - "z": 37.163 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022802", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022802", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (95) [777ef0b5-e4fe-406b-a7a6-17712b6afe65]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.655, + "y": 8.082, + "z": 36.091 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022806", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022806", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items (94) [15832ab1-c11b-4418-9914-bd9ba52b55cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -3.77, - "y": 7.246, - "z": -14.835 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022804", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022804", - "_tpl": "59e358a886f7741776641ac3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items (96) [fd6c2535-7d99-4eca-a57f-6effc83dcdc2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.953, + "y": 8.082, + "z": 36.153 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbbe6fd31d686b24022808", + "Items": [ + { + "_id": "66cbbe6fd31d686b24022808", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1 + } } + ] + } + ], + "Banners": [ + { + "id": "5464e0454bdc2d06708b4567", + "pic": { + "path": "CONTENT\/banners\/banner_bear.jpg", + "rcid": "" } - ] - }, - { - "Id": "workshop_Items (95) [777ef0b5-e4fe-406b-a7a6-17712b6afe65]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.655, - "y": 8.082, - "z": 36.091 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022806", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022806", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "5c1b857086f77465f465faa4", + "pic": { + "path": "CONTENT\/banners\/banner_scavraider.jpg", + "rcid": "" } - ] - }, - { - "Id": "workshop_Items (96) [fd6c2535-7d99-4eca-a57f-6effc83dcdc2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.953, - "y": 8.082, - "z": 36.153 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbbe6fd31d686b24022808", - "Items": [ - { - "_id": "66cbbe6fd31d686b24022808", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "64c0acf85174e095610734a0", + "pic": { + "path": "CONTENT\/banners\/banner_sherpa.jpg", + "rcid": "" } - ] - } - ], - "Banners": [ - { - "id": "5464e0454bdc2d06708b4567", - "pic": { - "path": "CONTENT\/banners\/banner_bear.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT\/banners\/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0acf85174e095610734a0", - "pic": { - "path": "CONTENT\/banners\/banner_sherpa.jpg", - "rcid": "" } - } - ] + ] + } } } \ No newline at end of file diff --git a/Fuyu.Platform.Server/embedded/database/locations/rezervbase.json b/Fuyu.Platform.Server/embedded/database/locations/rezervbase.json index 6a1658ab..40537c55 100644 --- a/Fuyu.Platform.Server/embedded/database/locations/rezervbase.json +++ b/Fuyu.Platform.Server/embedded/database/locations/rezervbase.json @@ -1,65826 +1,65829 @@ { - "serverId": "PVE_OFFLINE_659885_26_08_2024_02_02_28", - "serverSettings": { - "TraderServerSettings": { - "TraderServices": { - "ExUsecLoyalty": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ExUsecLoyalty", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966ff54c3ef01b6f3ffad8" + "err": 0, + "data": { + "serverId": "PVE_OFFLINE_659885_26_08_2024_02_02_28", + "serverSettings": { + "TraderServerSettings": { + "TraderServices": { + "ExUsecLoyalty": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ExUsecLoyalty", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966ff54c3ef01b6f3ffad8" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.09 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.09 + }, + "ServiceItemCost": { + "569668774bdc2da2298b4568": { + "Count": 2500 + }, + "61bf7c024770ee6f9c6b8b53": { + "Count": 2 } - } - }, - "ServiceItemCost": { - "569668774bdc2da2298b4568": { - "Count": 2500 }, - "61bf7c024770ee6f9c6b8b53": { - "Count": 2 - } - }, - "UniqueItems": [] - }, - "ZryachiyAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ZryachiyAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "6396701b9113f06a7c3b2379" + "UniqueItems": [] + }, + "ZryachiyAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ZryachiyAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "6396701b9113f06a7c3b2379" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.18 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.18 + }, + "ServiceItemCost": { + "62a0a16d0b9d3c46de5b6e97": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 2000 } - } - }, - "ServiceItemCost": { - "62a0a16d0b9d3c46de5b6e97": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 2000 - } - }, - "UniqueItems": [] - }, - "CultistsAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "CultistsAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966fccac6f8f3c677b9d89" + "UniqueItems": [] + }, + "CultistsAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "CultistsAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966fccac6f8f3c677b9d89" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.03 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.03 + }, + "ServiceItemCost": { + "5c12613b86f7743bbe2c3f76": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 1000 } - } - }, - "ServiceItemCost": { - "5c12613b86f7743bbe2c3f76": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 1000 - } - }, - "UniqueItems": [ - "64d0b40fbe2eed70e254e2d4" - ] - }, - "PlayerTaxi": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "PlayerTaxi", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrBotCover": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrBotCover", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "TransitItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "TransitItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + "UniqueItems": [ + "64d0b40fbe2eed70e254e2d4" + ] + }, + "PlayerTaxi": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "PlayerTaxi", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrBotCover": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrBotCover", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "TransitItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "TransitItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + } } - } - }, - "BTRServerSettings": { - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.77, - "BodySwingIntensity": 0.506, - "ServerMapBTRSettings": { - "Develop": { - "MapID": "develop", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "TarkovStreets": { - "MapID": "TarkovStreets", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "Woods": { - "MapID": "Woods", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 180.0, - "y": 360.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 + "BTRServerSettings": { + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.77, + "BodySwingIntensity": 0.506, + "ServerMapBTRSettings": { + "Develop": { + "MapID": "develop", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "TarkovStreets": { + "MapID": "TarkovStreets", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "Woods": { + "MapID": "Woods", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 180.0, + "y": 360.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + } } } - } - }, - "profile": { - "insuredItems": [] - }, - "locationLoot": { - "Enabled": true, - "EnableCoop": true, - "ForceOnlineRaidInPVE": false, - "Locked": false, - "Insurance": true, - "SafeLocation": false, - "Name": "ReserveBase", - "Description": "The secret Federal State Reserve Agency base that, according to urban legends, contains enough supplies to last for years: food, medications and other resources, enough to survive an all-out nuclear war.", - "Scene": { - "path": "maps\/rezerv_base_preset.bundle", - "rcid": "Rezerv_Base.scenespreset.asset" - }, - "Area": 0.0, - "RequiredPlayerLevelMin": 0, - "RequiredPlayerLevelMax": 100, - "PmcMaxPlayersInGroup": 5, - "ScavMaxPlayersInGroup": 4, - "MinPlayers": 9, - "MaxPlayers": 11, - "MaxCoopGroup": 12, - "exit_count": 1, - "exit_access_time": 50, - "exit_time": 2, - "Preview": { - "path": "", - "rcid": "" - }, - "IconX": 360, - "IconY": 410, - "filter_ex": [], - "waves": [ - { - "number": 1, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 4, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 2, - "time_min": 80, - "time_max": 120, - "slots_min": 2, - "slots_max": 2, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 3, - "time_min": 100, - "time_max": 200, - "slots_min": 1, - "slots_max": 2, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 4, - "time_min": 100, - "time_max": 300, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 5, - "time_min": 260, - "time_max": 400, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 6, - "time_min": 320, - "time_max": 600, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 7, - "time_min": 300, - "time_max": 600, - "slots_min": 2, - "slots_max": 2, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 8, - "time_min": 480, - "time_max": 800, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 9, - "time_min": 500, - "time_max": 1000, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 10, - "time_min": 600, - "time_max": 1000, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 11, - "time_min": 700, - "time_max": 1000, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 12, - "time_min": 900, - "time_max": 1400, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 13, - "time_min": 900, - "time_max": 1600, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 14, - "time_min": 1200, - "time_max": 2400, - "slots_min": 1, - "slots_max": 2, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 15, - "time_min": 1200, - "time_max": 2400, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - } - ], - "limits": [], - "AveragePlayTime": 27, - "AveragePlayerLevel": 35, - "EscapeTimeLimit": 40, - "EscapeTimeLimitPVE": 40, - "EscapeTimeLimitCoop": 30, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 30, - "MaxDistToFreePoint": 200, - "MinDistToFreePoint": 60, - "MaxBotPerZone": 4, - "OpenZones": "ZoneRailStrorage,ZonePTOR1,ZonePTOR2,ZoneBarrack,ZoneBunkerStorage,ZoneSubStorage", - "OcculsionCullingEnabled": false, - "GlobalLootChanceModifier": 0.17, - "GlobalLootChanceModifierPvE": 0.4, - "OldSpawn": true, - "OfflineOldSpawn": true, - "NewSpawn": false, - "OfflineNewSpawn": false, - "BotMax": 28, - "BotMaxPvE": 28, - "BotStart": 20, - "BotStartPlayer": 0, - "BotStop": 1500, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 260, - "BotSpawnTimeOnMax": 320, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOffMax": 30, - "BotMaxPlayer": 0, - "BotEasy": 10, - "BotNormal": 50, - "BotHard": 40, - "BotImpossible": 0, - "BotAssault": 100, - "BotMarksman": 0, - "DisabledScavExits": "", - "MinPlayerLvlAccessKeys": 0, - "AccessKeys": [], - "UnixDateTime": 1706874543, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "sav_summon_seconds": 60, - "matching_min_seconds": 60, - "GenerateLocalLootCache": true, - "PlayersRequestCount": -1, - "NonWaveGroupScenario": { - "MinToBeGroup": 2, - "MaxToBeGroup": 3, - "Chance": 50.0, - "Enabled": false }, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 15, - "GlobalContainerChanceModifier": 1.0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 0.6, - "Scattering": 0.6, - "GainSight": 1.3, - "MarksmanAccuratyCoef": 1.0, - "VisibleDistance": 1.3, - "DistToPersueAxemanCoef": 1.1, - "DistToSleep": 350.0, - "DistToActivate": 330.0, - "KhorovodChance": 0, - "MinExfiltrationTime": 1200.0, - "MaxExfiltrationTime": 1800.0, - "DistToActivatePvE": 330.0, - "DistToSleepPvE": 350.0, - "AdditionalHostilitySettings": [ - { - "BotRole": "pmcBEAR", - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 90 - }, - { - "BotRole": "pmcUSEC", - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 75 - } - ] + "profile": { + "insuredItems": [] }, - "exits": [ - { - "Name": "EXFIL_Train", - "EntryPoints": "Common", - "Chance": 100.0, - "MinTime": 1450, - "MaxTime": 1700, - "PlayersCount": 0, - "ExfiltrationTime": 5.0, - "PassageRequirement": "Train", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "0", - "RequirementTip": "TIP IS HARDCODED", - "Count": 400, - "EventAvailable": false, - "MinTimePVE": 1450, - "MaxTimePVE": 1700, - "ChancePVE": 100.0, - "CountPVE": 400, - "ExfiltrationTimePVE": 5.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Alpinist", - "EntryPoints": "Common", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "Reference", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "Alpinist", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "EXFIL_ScavCooperation", - "EntryPoints": "Common", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "ScavCooperation", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "EXFIL_Cooperate", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "EXFIL_Bunker", - "EntryPoints": "Common", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 18.0, - "PassageRequirement": "WorldEvent", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "EXFIL_BUNKER_POWER", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 18.0, - "PlayersCountPVE": 0 - }, - { - "Name": "EXFIL_vent", - "EntryPoints": "Common", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10.0, - "PassageRequirement": "Empty", - "ExfiltrationType": "Individual", - "RequiredSlot": "Backpack", - "Id": "", - "RequirementTip": "EXFIL_tip_backpack", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 10.0, - "PlayersCountPVE": 0 - }, - { - "Name": "EXFIL_Bunker_D2", - "EntryPoints": "Common", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "WorldEvent", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - } - ], - "DisabledForScav": false, - "BossLocationSpawn": [ - { - "BossName": "bossGluhar", - "BossChance": 25.0, - "BossZone": "ZoneRailStrorage,ZonePTOR2,ZoneBarrack,ZoneSubStorage", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "followerGluharSecurity", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": [ - { - "BossEscortType": "followerGluharAssault", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "2" - }, - { - "BossEscortType": "followerGluharSecurity", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "2" - }, - { - "BossEscortType": "followerGluharScout", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "2" - } - ], - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "BossName": "pmcBot", - "BossChance": 40.0, - "BossZone": "ZoneRailStrorage", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBot", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2,2,2,2,3", - "Time": 1470.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "BossName": "pmcBot", - "BossChance": 25.0, - "BossZone": "ZoneRailStrorage", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBot", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2,2,2,2,3", - "Time": -1.0, - "TriggerId": "autoId_00632_EXFIL", - "TriggerName": "interactObject", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "BossName": "pmcBot", - "BossChance": 25.0, - "BossZone": "ZoneSubCommand", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBot", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2,2,2,2,3", - "Time": -1.0, - "TriggerId": "autoId_00000_D2_LEVER", - "TriggerName": "interactObject", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "BossName": "pmcBot", - "BossChance": 25.0, - "BossZone": "ZoneSubCommand", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBot", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2,2,2,2,3", - "Time": 3.0, - "TriggerId": "raider_simple_patroling", - "TriggerName": "interactObject", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - } - ], - "SpawnPointParams": [ - { - "Id": "00c42177-c407-4f54-9382-2d1044cc5970", - "Position": { - "x": 148.69, - "y": -10.8204985, - "z": 38.0700073 - }, - "Rotation": 201.86, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + "locationLoot": { + "Enabled": true, + "EnableCoop": true, + "ForceOnlineRaidInPVE": false, + "Locked": false, + "Insurance": true, + "SafeLocation": false, + "Name": "ReserveBase", + "Description": "The secret Federal State Reserve Agency base that, according to urban legends, contains enough supplies to last for years: food, medications and other resources, enough to survive an all-out nuclear war.", + "Scene": { + "path": "maps\/rezerv_base_preset.bundle", + "rcid": "Rezerv_Base.scenespreset.asset" + }, + "Area": 0.0, + "RequiredPlayerLevelMin": 0, + "RequiredPlayerLevelMax": 100, + "PmcMaxPlayersInGroup": 5, + "ScavMaxPlayersInGroup": 4, + "MinPlayers": 9, + "MaxPlayers": 11, + "MaxCoopGroup": 12, + "exit_count": 1, + "exit_access_time": 50, + "exit_time": 2, + "Preview": { + "path": "", + "rcid": "" + }, + "IconX": 360, + "IconY": 410, + "filter_ex": [], + "waves": [ + { + "number": 1, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 4, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "00e9c4cb-2222-4ec5-94a6-67f07ecb3b0f", - "Position": { - "x": 141.042, - "y": -6.49700165, - "z": -223.095 - }, - "Rotation": 315.001068, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "number": 2, + "time_min": 80, + "time_max": 120, + "slots_min": 2, + "slots_max": 2, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "019be61d-5fde-4a7c-90de-01a6a0060e43", - "Position": { - "x": -85.138, - "y": -14.5049973, - "z": 36.945 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } + { + "number": 3, + "time_min": 100, + "time_max": 200, + "slots_min": 1, + "slots_max": 2, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "03556c39-e856-420a-877f-fda1ab93af99", - "Position": { - "x": -118.6, - "y": -6.93600464, - "z": -3.04 - }, - "Rotation": 22.0423622, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "number": 4, + "time_min": 100, + "time_max": 300, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "0438fda7-9b94-4052-a234-211b5598ec62", - "Position": { - "x": -115.929993, - "y": -5.47, - "z": -22.95398 - }, - "Rotation": 170.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 5, + "time_min": 260, + "time_max": 400, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "0741db23-e8c9-474a-8c0b-ec7e6f5ebe78", - "Position": { - "x": -45.5930176, - "y": -6.478, - "z": 29.5580139 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "number": 6, + "time_min": 320, + "time_max": 600, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "08f2256d-4fd7-4ece-bf91-6928a0410f95", - "Position": { - "x": -94.91, - "y": -14.75, - "z": 3.42 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } + { + "number": 7, + "time_min": 300, + "time_max": 600, + "slots_min": 2, + "slots_max": 2, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "08f46995-7af7-4f7f-85d2-be46143d1ed0", - "Position": { - "x": 62.28003, - "y": -6.927332, - "z": -174.450012 - }, - "Rotation": 7.00999975, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 8, + "time_min": 480, + "time_max": 800, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "0a530eba-bccb-4cc0-95d5-63287c0a07b2", - "Position": { - "x": 65.83, - "y": -6.774002, - "z": -39.17 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "number": 9, + "time_min": 500, + "time_max": 1000, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZonePTOR2" - }, - { - "Id": "0a5669a9-4221-4e76-b4ac-67ea8c8bfc7e", - "Position": { - "x": 86.823, - "y": -6.77, - "z": -33.8469849 - }, - "Rotation": 254.950012, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 10, + "time_min": 600, + "time_max": 1000, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "0d4507f6-c500-4928-a941-7cd5f2a76f7b", - "Position": { - "x": 60.71997, - "y": -6.70799828, - "z": 63.77002 - }, - "Rotation": 184.72, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 11, + "time_min": 700, + "time_max": 1000, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "0f45c9a8-21a6-4671-9ee9-27ee5508cab7", - "Position": { - "x": 142.890015, - "y": -10.8204985, - "z": 40.539978 - }, - "Rotation": 201.86, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 12, + "time_min": 900, + "time_max": 1400, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "119bf539-a9d7-400e-a69d-f7e36f715193", - "Position": { - "x": -168.593018, - "y": -6.298, - "z": 55.697998 - }, - "Rotation": 117.288177, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "number": 13, + "time_min": 900, + "time_max": 1600, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "14afdaf7-3bc8-4930-a982-a6ee62011177", - "Position": { - "x": 164.5, - "y": -6.817665, - "z": -234.905991 - }, - "Rotation": 28.0800037, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } + { + "number": 14, + "time_min": 1200, + "time_max": 2400, + "slots_min": 1, + "slots_max": 2, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "14b54bc4-64b6-4d9f-b21f-ec4d00ea12c4", - "Position": { - "x": -40.9580078, - "y": -6.471, - "z": 30.5980225 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 + { + "number": 15, + "time_min": 1200, + "time_max": 2400, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] + } + ], + "limits": [], + "AveragePlayTime": 27, + "AveragePlayerLevel": 35, + "EscapeTimeLimit": 40, + "EscapeTimeLimitPVE": 40, + "EscapeTimeLimitCoop": 30, + "Rules": "Normal", + "IsSecret": false, + "doors": [], + "tmp_location_field_remove_me": 0, + "MinDistToExitPoint": 30, + "MaxDistToFreePoint": 200, + "MinDistToFreePoint": 60, + "MaxBotPerZone": 4, + "OpenZones": "ZoneRailStrorage,ZonePTOR1,ZonePTOR2,ZoneBarrack,ZoneBunkerStorage,ZoneSubStorage", + "OcculsionCullingEnabled": false, + "GlobalLootChanceModifier": 0.17, + "GlobalLootChanceModifierPvE": 0.4, + "OldSpawn": true, + "OfflineOldSpawn": true, + "NewSpawn": false, + "OfflineNewSpawn": false, + "BotMax": 28, + "BotMaxPvE": 28, + "BotStart": 20, + "BotStartPlayer": 0, + "BotStop": 1500, + "BotMaxTimePlayer": 0, + "BotSpawnTimeOnMin": 260, + "BotSpawnTimeOnMax": 320, + "BotSpawnTimeOffMin": 20, + "BotSpawnTimeOffMax": 30, + "BotMaxPlayer": 0, + "BotEasy": 10, + "BotNormal": 50, + "BotHard": 40, + "BotImpossible": 0, + "BotAssault": 100, + "BotMarksman": 0, + "DisabledScavExits": "", + "MinPlayerLvlAccessKeys": 0, + "AccessKeys": [], + "UnixDateTime": 1706874543, + "users_gather_seconds": 0, + "users_spawn_seconds_n": 120, + "users_spawn_seconds_n2": 200, + "users_summon_seconds": 0, + "sav_summon_seconds": 60, + "matching_min_seconds": 60, + "GenerateLocalLootCache": true, + "PlayersRequestCount": -1, + "NonWaveGroupScenario": { + "MinToBeGroup": 2, + "MaxToBeGroup": 3, + "Chance": 50.0, + "Enabled": false + }, + "BotSpawnCountStep": 3, + "BotSpawnPeriodCheck": 15, + "GlobalContainerChanceModifier": 1.0, + "MinMaxBots": [], + "BotLocationModifier": { + "AccuracySpeed": 0.6, + "Scattering": 0.6, + "GainSight": 1.3, + "MarksmanAccuratyCoef": 1.0, + "VisibleDistance": 1.3, + "DistToPersueAxemanCoef": 1.1, + "DistToSleep": 350.0, + "DistToActivate": 330.0, + "KhorovodChance": 0, + "MinExfiltrationTime": 1200.0, + "MaxExfiltrationTime": 1800.0, + "DistToActivatePvE": 330.0, + "DistToSleepPvE": 350.0, + "AdditionalHostilitySettings": [ + { + "BotRole": "pmcBEAR", + "AlwaysEnemies": [ + "pmcBot", + "exUsec", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar", + "bossKnight" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcUSEC" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 75, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 90 + }, + { + "BotRole": "pmcUSEC", + "AlwaysEnemies": [ + "pmcBot", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcBEAR" + }, + { + "EnemyChance": 15, + "Role": "exUsec" + }, + { + "EnemyChance": 15, + "Role": "bossKnight" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 90, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 75 } - }, - "BotZoneName": "" + ] }, - { - "Id": "154b9369-bff9-4365-a3d4-484355549dc7", - "Position": { - "x": 213.62, - "y": -6.85, - "z": -112.53 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + "exits": [ + { + "Name": "EXFIL_Train", + "EntryPoints": "Common", + "Chance": 100.0, + "MinTime": 1450, + "MaxTime": 1700, + "PlayersCount": 0, + "ExfiltrationTime": 5.0, + "PassageRequirement": "Train", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "0", + "RequirementTip": "TIP IS HARDCODED", + "Count": 400, + "EventAvailable": false, + "MinTimePVE": 1450, + "MaxTimePVE": 1700, + "ChancePVE": 100.0, + "CountPVE": 400, + "ExfiltrationTimePVE": 5.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "" - }, - { - "Id": "15b6e485-67c8-4d29-837b-c1d5576684a9", - "Position": { - "x": -50.0700073, - "y": -6.48, - "z": 26.5700073 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Name": "Alpinist", + "EntryPoints": "Common", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "Reference", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "Alpinist", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "" - }, - { - "Id": "162cd326-c355-446a-bf62-e2a76e76d743", - "Position": { - "x": -140.161, - "y": -6.963005, - "z": -35.536 - }, - "Rotation": 130.028351, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Name": "EXFIL_ScavCooperation", + "EntryPoints": "Common", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "ScavCooperation", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "EXFIL_Cooperate", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "17a95066-caca-4f93-b4ab-23feeede1153", - "Position": { - "x": 147.06, - "y": -10.8204985, - "z": 34.6499939 - }, - "Rotation": 201.86, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "EXFIL_Bunker", + "EntryPoints": "Common", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 18.0, + "PassageRequirement": "WorldEvent", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "EXFIL_BUNKER_POWER", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 18.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "" - }, - { - "Id": "18381674-3e66-4089-848f-f58600be9689", - "Position": { - "x": -40.8300171, - "y": -6.48, - "z": 26.2000122 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Name": "EXFIL_vent", + "EntryPoints": "Common", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10.0, + "PassageRequirement": "Empty", + "ExfiltrationType": "Individual", + "RequiredSlot": "Backpack", + "Id": "", + "RequirementTip": "EXFIL_tip_backpack", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 10.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "" - }, - { - "Id": "191b8914-96c6-4216-b90c-d3748c9148de", - "Position": { - "x": 148.81, - "y": -10.8204985, - "z": 36.23001 - }, - "Rotation": 201.86, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "EXFIL_Bunker_D2", + "EntryPoints": "Common", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "WorldEvent", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 + } + ], + "DisabledForScav": false, + "BossLocationSpawn": [ + { + "BossName": "bossGluhar", + "BossChance": 25.0, + "BossZone": "ZoneRailStrorage,ZonePTOR2,ZoneBarrack,ZoneSubStorage", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "followerGluharSecurity", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": [ + { + "BossEscortType": "followerGluharAssault", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "2" + }, + { + "BossEscortType": "followerGluharSecurity", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "2" + }, + { + "BossEscortType": "followerGluharScout", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "2" + } + ], + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "1a174d20-8119-4054-9ce1-fcaf015f28bf", - "Position": { - "x": 189.640015, - "y": -6.782763, - "z": -101.459991 - }, - "Rotation": 216.03, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } + { + "BossName": "pmcBot", + "BossChance": 40.0, + "BossZone": "ZoneRailStrorage", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBot", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2,2,2,2,3", + "Time": 1470.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "1ae36267-0f66-4dbe-af1d-60e0e9778805", - "Position": { - "x": 215.52002, - "y": -6.85, - "z": -114.519989 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "BossName": "pmcBot", + "BossChance": 25.0, + "BossZone": "ZoneRailStrorage", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBot", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2,2,2,2,3", + "Time": -1.0, + "TriggerId": "autoId_00632_EXFIL", + "TriggerName": "interactObject", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "1b219f54-e6fd-4299-9e7e-c00ca901ea32", - "Position": { - "x": 217.322, - "y": -6.91000366, - "z": -172.024 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "BossName": "pmcBot", + "BossChance": 25.0, + "BossZone": "ZoneSubCommand", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBot", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2,2,2,2,3", + "Time": -1.0, + "TriggerId": "autoId_00000_D2_LEVER", + "TriggerName": "interactObject", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "1b553fc5-00fb-4973-a94c-1bacec06efdc", - "Position": { - "x": 164.81, - "y": -5.1726656, - "z": -161.37 - }, - "Rotation": 354.619965, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "BossName": "pmcBot", + "BossChance": 25.0, + "BossZone": "ZoneSubCommand", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBot", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2,2,2,2,3", + "Time": 3.0, + "TriggerId": "raider_simple_patroling", + "TriggerName": "interactObject", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "1d4fb8a6-88a1-49d2-b516-6acb50bc95f2", - "Position": { - "x": 219.21, - "y": -6.91000366, - "z": -173.99 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "1e519a90-0481-40d0-90fe-af14c6932a2e", - "Position": { - "x": -99.945, - "y": -14.5070038, - "z": 17.43 - }, - "Rotation": 297.8055, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "1e5d8495-e764-497f-9209-f26bd9911a54", - "Position": { - "x": -167.830017, - "y": -6.303, - "z": 59.125 - }, - "Rotation": 135.641571, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "1fb48b81-e694-45ce-bd44-bca19bc16a35", - "Position": { - "x": -148.19, - "y": -6.9, - "z": 45.6799927 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "" - }, - { - "Id": "2033dbca-f488-464b-948b-52073985318d", - "Position": { - "x": 73.38, - "y": -15.5040054, - "z": -38.34 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneSubStorage" - }, - { - "Id": "206ed703-1a5a-47b5-a354-b34cd6c267d2", - "Position": { - "x": -108.281006, - "y": -10.45, - "z": 73.56604 - }, - "Rotation": 96.94, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 50, - "y": 4, - "z": 50 + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] + } + ], + "SpawnPointParams": [ + { + "Id": "00c42177-c407-4f54-9382-2d1044cc5970", + "Position": { + "x": 148.69, + "y": -10.8204985, + "z": 38.0700073 + }, + "Rotation": 201.86, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - } - }, - "BotZoneName": "" - }, - { - "Id": "2309b6fc-8e22-4101-8989-b43aa37a4e82", - "Position": { - "x": 63.0700073, - "y": -6.8792696, - "z": -171.97 - }, - "Rotation": 7.00999975, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "BotZoneName": "" - }, - { - "Id": "24d23092-ce33-40cd-b1cf-b45c72f68fd9", - "Position": { - "x": -119.008972, - "y": -5.466, - "z": -24.3669739 - }, - "Rotation": 83.81, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "2502dcb2-540d-4577-a635-6cbde07e0e35", - "Position": { - "x": -29.715, - "y": -6.75369263, - "z": -12.45 - }, - "Rotation": 105.6213, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "00e9c4cb-2222-4ec5-94a6-67f07ecb3b0f", + "Position": { + "x": 141.042, + "y": -6.49700165, + "z": -223.095 + }, + "Rotation": 315.001068, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "ZonePTOR1" - }, - { - "Id": "25353616-a83d-476e-b9e1-d30a67314b35", - "Position": { - "x": -160.515991, - "y": -6.293, - "z": 65.64099 - }, - "Rotation": 180.89, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "019be61d-5fde-4a7c-90de-01a6a0060e43", + "Position": { + "x": -85.138, + "y": -14.5049973, + "z": 36.945 + }, + "Rotation": 96.64535, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 15 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "" - }, - { - "Id": "2795dd2d-c233-4acc-835f-d76337b039b9", - "Position": { - "x": -79.0, - "y": 21.26, - "z": 193.82 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "03556c39-e856-420a-877f-fda1ab93af99", + "Position": { + "x": -118.6, + "y": -6.93600464, + "z": -3.04 + }, + "Rotation": 22.0423622, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "" - }, - { - "Id": "2835cac0-f7fa-4910-8e00-7de2fd4d2a2e", - "Position": { - "x": 171.62, - "y": -5.1726656, - "z": -167.66 - }, - "Rotation": 314.09, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "0438fda7-9b94-4052-a234-211b5598ec62", + "Position": { + "x": -115.929993, + "y": -5.47, + "z": -22.95398 + }, + "Rotation": 170.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "289db12e-94af-42ab-ac89-0828b8d58709", - "Position": { - "x": -34.3300171, - "y": -6.45, - "z": 20.0800171 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "0741db23-e8c9-474a-8c0b-ec7e6f5ebe78", + "Position": { + "x": -45.5930176, + "y": -6.478, + "z": 29.5580139 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "2f9b3c37-c5f9-4f27-9d0d-6ff8f904d674", - "Position": { - "x": 58.35, - "y": -12.2260056, - "z": -155.19 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "08f2256d-4fd7-4ece-bf91-6928a0410f95", + "Position": { + "x": -94.91, + "y": -14.75, + "z": 3.42 + }, + "Rotation": 96.64535, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 15 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "ZoneSubStorage" - }, - { - "Id": "311bfd2a-3a32-47f9-bf5b-bcc6f17ab9a9", - "Position": { - "x": 38.57, - "y": -0.5377197, - "z": -184.23 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "08f46995-7af7-4f7f-85d2-be46143d1ed0", + "Position": { + "x": 62.28003, + "y": -6.927332, + "z": -174.450012 + }, + "Rotation": 7.00999975, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "31b28d9e-82c9-40fe-aba4-9199c6a59bc5", - "Position": { - "x": 156.494324, - "y": -6.817665, - "z": -234.905991 - }, - "Rotation": 29.01, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } + { + "Id": "0a530eba-bccb-4cc0-95d5-63287c0a07b2", + "Position": { + "x": 65.83, + "y": -6.774002, + "z": -39.17 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZonePTOR2" }, - "BotZoneName": "" - }, - { - "Id": "320a99cf-bd60-4e05-b751-adabd7a32dbd", - "Position": { - "x": -150.01001, - "y": -6.9, - "z": 47.77002 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "0a5669a9-4221-4e76-b4ac-67ea8c8bfc7e", + "Position": { + "x": 86.823, + "y": -6.77, + "z": -33.8469849 + }, + "Rotation": 254.950012, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "348e573d-a5bf-4488-a64e-3c047677153c", - "Position": { - "x": -162.341, - "y": -6.305, - "z": 62.19403 - }, - "Rotation": 180.89, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "0d4507f6-c500-4928-a941-7cd5f2a76f7b", + "Position": { + "x": 60.71997, + "y": -6.70799828, + "z": 63.77002 + }, + "Rotation": 184.72, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "34cc45f7-8e1a-4fac-b6e2-0c0df2f7e310", - "Position": { - "x": 243.125, - "y": -7.088669, - "z": -88.11 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "0f45c9a8-21a6-4671-9ee9-27ee5508cab7", + "Position": { + "x": 142.890015, + "y": -10.8204985, + "z": 40.539978 + }, + "Rotation": 201.86, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "3537b338-638e-40f1-ad27-b61b30f73319", - "Position": { - "x": 41.44, - "y": -12.2260056, - "z": -110.21 - }, - "Rotation": 79.13992, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "119bf539-a9d7-400e-a69d-f7e36f715193", + "Position": { + "x": -168.593018, + "y": -6.298, + "z": 55.697998 + }, + "Rotation": 117.288177, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneSubStorage" - }, - { - "Id": "360bc6a9-2abe-4a62-8942-e6b9b3310219", - "Position": { - "x": 57.9000244, - "y": -6.70799828, - "z": 64.82001 - }, - "Rotation": 184.72, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "14afdaf7-3bc8-4930-a982-a6ee62011177", + "Position": { + "x": 164.5, + "y": -6.817665, + "z": -234.905991 + }, + "Rotation": 28.0800037, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 52 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "37bc4422-3e90-46c1-bcdb-eed54d5697bd", - "Position": { - "x": 186.799988, - "y": -6.77978849, - "z": -105.0 - }, - "Rotation": 216.03, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } + { + "Id": "14b54bc4-64b6-4d9f-b21f-ec4d00ea12c4", + "Position": { + "x": -40.9580078, + "y": -6.471, + "z": 30.5980225 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "38e6ee1e-0d82-47bc-a1a7-e27f9b9ecb78", - "Position": { - "x": -27.8599854, - "y": 12.61, - "z": 184.18 - }, - "Rotation": 88.80001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "154b9369-bff9-4365-a3d4-484355549dc7", + "Position": { + "x": 213.62, + "y": -6.85, + "z": -112.53 + }, + "Rotation": 283.845032, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "391109fd-2884-42ca-bd43-b3f83505d6e6", - "Position": { - "x": -105.636, - "y": -14.4990005, - "z": 21.839 - }, - "Rotation": 102.590828, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } + { + "Id": "15b6e485-67c8-4d29-837b-c1d5576684a9", + "Position": { + "x": -50.0700073, + "y": -6.48, + "z": 26.5700073 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "3da9ec0e-d86e-4d32-b38c-4737a92ae487", - "Position": { - "x": -145.44, - "y": -6.93600464, - "z": 53.34 - }, - "Rotation": 110.272163, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "162cd326-c355-446a-bf62-e2a76e76d743", + "Position": { + "x": -140.161, + "y": -6.963005, + "z": -35.536 + }, + "Rotation": 130.028351, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "3ff434b8-bb79-4e4f-9d15-9e345ba538d6", - "Position": { - "x": -154.14, - "y": -6.16899872, - "z": -9.22 - }, - "Rotation": 294.580322, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "17a95066-caca-4f93-b4ab-23feeede1153", + "Position": { + "x": 147.06, + "y": -10.8204985, + "z": 34.6499939 + }, + "Rotation": 201.86, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "400cfcd7-5776-467a-b7eb-8b0f9819f7d6", - "Position": { - "x": 23.6300049, - "y": -6.927332, - "z": 8.209991 - }, - "Rotation": 289.35, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "18381674-3e66-4089-848f-f58600be9689", + "Position": { + "x": -40.8300171, + "y": -6.48, + "z": 26.2000122 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "40552058-37f5-4e0e-a316-427a655d7e8c", - "Position": { - "x": -74.085, - "y": -6.816002, - "z": 27.013 - }, - "Rotation": 283.263184, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "191b8914-96c6-4216-b90c-d3748c9148de", + "Position": { + "x": 148.81, + "y": -10.8204985, + "z": 36.23001 + }, + "Rotation": 201.86, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "43ccaa18-724f-4b57-b617-9531a2013c71", - "Position": { - "x": -37.52002, - "y": -6.79093742, - "z": -172.26001 - }, - "Rotation": 1.47, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1a174d20-8119-4054-9ce1-fcaf015f28bf", + "Position": { + "x": 189.640015, + "y": -6.782763, + "z": -101.459991 + }, + "Rotation": 216.03, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 52 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "4485b6e9-e055-40a1-af23-ef9b688a0bf7", - "Position": { - "x": -117.59, - "y": -14.5930023, - "z": 58.736 - }, - "Rotation": 102.590828, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } + { + "Id": "1ae36267-0f66-4dbe-af1d-60e0e9778805", + "Position": { + "x": 215.52002, + "y": -6.85, + "z": -114.519989 + }, + "Rotation": 283.845032, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "45b2a94a-8e53-48d5-ad33-bcafdb0ec179", - "Position": { - "x": 216.200012, - "y": -6.85, - "z": -112.909973 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "1b219f54-e6fd-4299-9e7e-c00ca901ea32", + "Position": { + "x": 217.322, + "y": -6.91000366, + "z": -172.024 + }, + "Rotation": 281.0713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "" - }, - { - "Id": "4705f3a7-01d8-4c9f-bf94-06687b8590f8", - "Position": { - "x": 56.6699829, - "y": -6.70799828, - "z": 66.6500244 - }, - "Rotation": 203.36, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1b553fc5-00fb-4973-a94c-1bacec06efdc", + "Position": { + "x": 164.81, + "y": -5.1726656, + "z": -161.37 + }, + "Rotation": 354.619965, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "4768999a-9854-406d-88ed-501bf86be53f", - "Position": { - "x": -90.439, - "y": -14.5108719, - "z": 14.514 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } + { + "Id": "1d4fb8a6-88a1-49d2-b516-6acb50bc95f2", + "Position": { + "x": 219.21, + "y": -6.91000366, + "z": -173.99 + }, + "Rotation": 281.0713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "487c95ec-a07d-4b83-be98-d254990f8896", - "Position": { - "x": -27.9400024, - "y": 12.61, - "z": 181.580017 - }, - "Rotation": 264.97, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "1e519a90-0481-40d0-90fe-af14c6932a2e", + "Position": { + "x": -99.945, + "y": -14.5070038, + "z": 17.43 + }, + "Rotation": 297.8055, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 15 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "" - }, - { - "Id": "4b04a014-b605-46c4-905e-c5f31f652b77", - "Position": { - "x": -266.77, - "y": -6.24500275, - "z": 23.06 - }, - "Rotation": 84.70626, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } - }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "4b6dfb22-29ec-4631-bf12-c73a45788231", - "Position": { - "x": 32.54, - "y": -6.774002, - "z": -11.45 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "BotZoneName": "ZonePTOR1" - }, - { - "Id": "4ef7931f-d559-4ad2-a850-8c53ff038651", - "Position": { - "x": -35.960022, - "y": -6.45, - "z": 21.8700256 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "1e5d8495-e764-497f-9209-f26bd9911a54", + "Position": { + "x": -167.830017, + "y": -6.303, + "z": 59.125 + }, + "Rotation": 135.641571, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "503cb253-c40e-45ea-a820-37f45a521c98", - "Position": { - "x": 168.448, - "y": -6.817665, - "z": -234.905991 - }, - "Rotation": 15.7700033, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } + { + "Id": "1fb48b81-e694-45ce-bd44-bca19bc16a35", + "Position": { + "x": -148.19, + "y": -6.9, + "z": 45.6799927 + }, + "Rotation": 112.108734, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "50528d5a-c6ee-446f-9d53-d25134ada06f", - "Position": { - "x": 43.05, - "y": -6.786003, - "z": -32.69 - }, - "Rotation": 260.9375, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "2033dbca-f488-464b-948b-52073985318d", + "Position": { + "x": 73.38, + "y": -15.5040054, + "z": -38.34 + }, + "Rotation": 186.0699, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZoneSubStorage" }, - "BotZoneName": "ZonePTOR1" - }, - { - "Id": "5094f5a8-697b-49e8-bcad-568cd43c3887", - "Position": { - "x": -83.86, - "y": -6.816002, - "z": 44.85 - }, - "Rotation": 347.314056, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "206ed703-1a5a-47b5-a354-b34cd6c267d2", + "Position": { + "x": -108.281006, + "y": -10.45, + "z": 73.56604 + }, + "Rotation": 96.94, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnBoxParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Size": { + "x": 50, + "y": 4, + "z": 50 + } + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "52cb538e-3885-4059-91ed-c1219bd835a5", - "Position": { - "x": 126.439987, - "y": -6.771843, - "z": 45.4300079 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "2309b6fc-8e22-4101-8989-b43aa37a4e82", + "Position": { + "x": 63.0700073, + "y": -6.8792696, + "z": -171.97 + }, + "Rotation": 7.00999975, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBunkerStorage" - }, - { - "Id": "5361df43-6ce8-4c33-a400-236f16aeb446", - "Position": { - "x": 160.198, - "y": -5.106186, - "z": -168.052 - }, - "Rotation": 26.43, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "24d23092-ce33-40cd-b1cf-b45c72f68fd9", + "Position": { + "x": -119.008972, + "y": -5.466, + "z": -24.3669739 + }, + "Rotation": 83.81, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "55d82f41-cb58-4bcc-82c0-14a3c3805033", - "Position": { - "x": 138.82, - "y": -6.79600525, - "z": -229.27 - }, - "Rotation": 315.001068, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "2502dcb2-540d-4577-a635-6cbde07e0e35", + "Position": { + "x": -29.715, + "y": -6.75369263, + "z": -12.45 + }, + "Rotation": 105.6213, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZonePTOR1" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "5762e0f4-1b6b-4491-a306-6de962003c48", - "Position": { - "x": 102.747, - "y": -6.9240036, - "z": -5.478 - }, - "Rotation": 109.706451, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "25353616-a83d-476e-b9e1-d30a67314b35", + "Position": { + "x": -160.515991, + "y": -6.293, + "z": 65.64099 + }, + "Rotation": 180.89, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZonePTOR2" - }, - { - "Id": "5b546bd1-83c9-4c97-a0f8-4baab6305dba", - "Position": { - "x": -135.099976, - "y": -6.665001, - "z": -129.98999 - }, - "Rotation": 2.98000026, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2795dd2d-c233-4acc-835f-d76337b039b9", + "Position": { + "x": -79.0, + "y": 21.26, + "z": 193.82 + }, + "Rotation": 154.03, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "5b836fd7-6d36-40ef-a121-84a947effa5e", - "Position": { - "x": 249.138992, - "y": -6.44699669, - "z": -28.2319946 - }, - "Rotation": 297.1585, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "2835cac0-f7fa-4910-8e00-7de2fd4d2a2e", + "Position": { + "x": 171.62, + "y": -5.1726656, + "z": -167.66 + }, + "Rotation": 314.09, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBunkerStorage" - }, - { - "Id": "5bf94615-7ec0-4d85-8e14-95e7d570145a", - "Position": { - "x": 217.539978, - "y": -6.85, - "z": -109.72998 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "289db12e-94af-42ab-ac89-0828b8d58709", + "Position": { + "x": -34.3300171, + "y": -6.45, + "z": 20.0800171 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "5da7b7d0-dbb1-496f-9889-521485c3d71a", - "Position": { - "x": 214.640015, - "y": -6.85, - "z": -109.369995 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "2f9b3c37-c5f9-4f27-9d0d-6ff8f904d674", + "Position": { + "x": 58.35, + "y": -12.2260056, + "z": -155.19 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSubStorage" }, - "BotZoneName": "" - }, - { - "Id": "5ddf18ce-8b04-4a2f-a18c-352505ec1baa", - "Position": { - "x": -121.913025, - "y": -5.454, - "z": -21.6659851 - }, - "Rotation": 126.350006, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "311bfd2a-3a32-47f9-bf5b-bcc6f17ab9a9", + "Position": { + "x": 38.57, + "y": -0.5377197, + "z": -184.23 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "" - }, - { - "Id": "6159ed20-e29b-45f3-8910-b8f20c40fe18", - "Position": { - "x": 25.8599854, - "y": -6.927332, - "z": 7.19000244 - }, - "Rotation": 281.74, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "31b28d9e-82c9-40fe-aba4-9199c6a59bc5", + "Position": { + "x": 156.494324, + "y": -6.817665, + "z": -234.905991 + }, + "Rotation": 29.01, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 52 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "64cc034d-d5b6-4d6b-8f9c-cb50175004de", - "Position": { - "x": -47.5999756, - "y": -6.42, - "z": 20.3200073 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "320a99cf-bd60-4e05-b751-adabd7a32dbd", + "Position": { + "x": -150.01001, + "y": -6.9, + "z": 47.77002 + }, + "Rotation": 112.108734, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "68091dec-b042-4e80-9caf-b6a9e8a43877", - "Position": { - "x": -32.23999, - "y": -6.47, - "z": 13.5900269 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "348e573d-a5bf-4488-a64e-3c047677153c", + "Position": { + "x": -162.341, + "y": -6.305, + "z": 62.19403 + }, + "Rotation": 180.89, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "68e38aa2-a4b7-4d5d-939d-d561e7638f99", - "Position": { - "x": 141.38, - "y": -10.8204985, - "z": 41.1300049 - }, - "Rotation": 201.86, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "34cc45f7-8e1a-4fac-b6e2-0c0df2f7e310", + "Position": { + "x": 243.125, + "y": -7.088669, + "z": -88.11 + }, + "Rotation": 281.0713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "" - }, - { - "Id": "6b9f8c39-0f5a-417c-a94a-0a03831d8872", - "Position": { - "x": -6.03, - "y": -6.96200562, - "z": -182.43 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "3537b338-638e-40f1-ad27-b61b30f73319", + "Position": { + "x": 41.44, + "y": -12.2260056, + "z": -110.21 + }, + "Rotation": 79.13992, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "ZoneSubStorage" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "6dca997c-477d-4029-8f7f-3f9d5060a4f6", - "Position": { - "x": 173.98999, - "y": -5.1726656, - "z": -166.78 - }, - "Rotation": 314.09, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "360bc6a9-2abe-4a62-8942-e6b9b3310219", + "Position": { + "x": 57.9000244, + "y": -6.70799828, + "z": 64.82001 + }, + "Rotation": 184.72, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "6f6a1207-c890-4087-9b83-8d8f975c561a", - "Position": { - "x": 188.81, - "y": -6.84417343, - "z": -106.419983 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } + { + "Id": "37bc4422-3e90-46c1-bcdb-eed54d5697bd", + "Position": { + "x": 186.799988, + "y": -6.77978849, + "z": -105.0 + }, + "Rotation": 216.03, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 52 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "70efb1d6-60a1-47cd-8c08-86dae0389f48", - "Position": { - "x": -50.73999, - "y": -6.49, - "z": 15.7000122 - }, - "Rotation": 12.37, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "38e6ee1e-0d82-47bc-a1a7-e27f9b9ecb78", + "Position": { + "x": -27.8599854, + "y": 12.61, + "z": 184.18 + }, + "Rotation": 88.80001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "71cea4ba-2112-4e0a-b365-c2a51c5fe627", - "Position": { - "x": -82.439, - "y": -14.2580032, - "z": 28.901 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } + { + "Id": "391109fd-2884-42ca-bd43-b3f83505d6e6", + "Position": { + "x": -105.636, + "y": -14.4990005, + "z": 21.839 + }, + "Rotation": 102.590828, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 15 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "736c5c9d-155a-4772-9ca0-3bbc4523b37e", - "Position": { - "x": -137.969971, - "y": -7.050001, - "z": -129.98999 - }, - "Rotation": 2.98000026, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3da9ec0e-d86e-4d32-b38c-4737a92ae487", + "Position": { + "x": -145.44, + "y": -6.93600464, + "z": 53.34 + }, + "Rotation": 110.272163, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "" - }, - { - "Id": "739858a9-4e38-4ea2-ab47-9b15b660b4b1", - "Position": { - "x": 23.48, - "y": -5.10800171, - "z": -128.25 - }, - "Rotation": 110.272163, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "3ff434b8-bb79-4e4f-9d15-9e345ba538d6", + "Position": { + "x": -154.14, + "y": -6.16899872, + "z": -9.22 + }, + "Rotation": 294.580322, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "73cc9203-6243-4b8f-96bf-c61bda3bd80a", - "Position": { - "x": -36.3699951, - "y": -6.98216534, - "z": -166.97998 - }, - "Rotation": 12.24, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "400cfcd7-5776-467a-b7eb-8b0f9819f7d6", + "Position": { + "x": 23.6300049, + "y": -6.927332, + "z": 8.209991 + }, + "Rotation": 289.35, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "741a7272-8fe2-4d4b-a4d6-1f7a34995f88", - "Position": { - "x": 22.6699829, - "y": -6.9191, - "z": 5.17001343 - }, - "Rotation": 289.35, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "40552058-37f5-4e0e-a316-427a655d7e8c", + "Position": { + "x": -74.085, + "y": -6.816002, + "z": 27.013 + }, + "Rotation": 283.263184, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "" - }, - { - "Id": "74e240c1-45b8-4f62-a5a1-aa4cd2729df6", - "Position": { - "x": 23.22998, - "y": -6.8962636, - "z": 6.619995 - }, - "Rotation": 289.35, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "43ccaa18-724f-4b57-b617-9531a2013c71", + "Position": { + "x": -37.52002, + "y": -6.79093742, + "z": -172.26001 + }, + "Rotation": 1.47, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "76888d25-113b-4601-a3d1-7edbaedcba9b", - "Position": { - "x": 189.450012, - "y": -6.80541134, - "z": -96.26001 - }, - "Rotation": 322.68, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } + { + "Id": "4485b6e9-e055-40a1-af23-ef9b688a0bf7", + "Position": { + "x": -117.59, + "y": -14.5930023, + "z": 58.736 + }, + "Rotation": 102.590828, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 15 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "" - }, - { - "Id": "7864de7f-7b35-49f6-9ebd-2af5b13f26d2", - "Position": { - "x": 55.9299927, - "y": -6.70799828, - "z": 65.1099854 - }, - "Rotation": 184.72, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "45b2a94a-8e53-48d5-ad33-bcafdb0ec179", + "Position": { + "x": 216.200012, + "y": -6.85, + "z": -112.909973 + }, + "Rotation": 283.845032, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "7975dfd9-5a16-4157-80fd-5f99a3cde652", - "Position": { - "x": -150.76001, - "y": -6.9, - "z": 45.1300049 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "4705f3a7-01d8-4c9f-bf94-06687b8590f8", + "Position": { + "x": 56.6699829, + "y": -6.70799828, + "z": 66.6500244 + }, + "Rotation": 203.36, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "79d4d786-e171-4910-949e-a055970afde8", - "Position": { - "x": -86.14, - "y": -14.3970032, - "z": 21.38 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 8 - } + { + "Id": "4768999a-9854-406d-88ed-501bf86be53f", + "Position": { + "x": -90.439, + "y": -14.5108719, + "z": 14.514 + }, + "Rotation": 96.64535, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 15 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "7dd58283-cacc-4cfe-b192-1ff712f1a1c4", - "Position": { - "x": -265.47, - "y": -5.54600525, - "z": 13.13 - }, - "Rotation": 84.70626, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } + { + "Id": "487c95ec-a07d-4b83-be98-d254990f8896", + "Position": { + "x": -27.9400024, + "y": 12.61, + "z": 181.580017 + }, + "Rotation": 264.97, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "7df08a3e-3488-4077-8bec-48eac7903934", - "Position": { - "x": -42.0599976, - "y": -6.47, - "z": 23.9200134 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "4b04a014-b605-46c4-905e-c5f31f652b77", + "Position": { + "x": -266.77, + "y": -6.24500275, + "z": 23.06 + }, + "Rotation": 84.70626, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 150 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "" - }, - { - "Id": "7fce3e48-e5eb-4db4-9c45-9f063aea47b7", - "Position": { - "x": -115.359009, - "y": -5.447, - "z": -26.6069946 - }, - "Rotation": 28.36, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4b6dfb22-29ec-4631-bf12-c73a45788231", + "Position": { + "x": 32.54, + "y": -6.774002, + "z": -11.45 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZonePTOR1" }, - "BotZoneName": "" - }, - { - "Id": "821b550f-0576-4806-af7f-cbac8393bf74", - "Position": { - "x": 225.13, - "y": -6.84999847, - "z": -122.95 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "4ef7931f-d559-4ad2-a850-8c53ff038651", + "Position": { + "x": -35.960022, + "y": -6.45, + "z": 21.8700256 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "853a88d5-ecf3-4131-aa49-bfd53a45e627", - "Position": { - "x": -40.5900269, - "y": -6.47, - "z": 20.52002 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "503cb253-c40e-45ea-a820-37f45a521c98", + "Position": { + "x": 168.448, + "y": -6.817665, + "z": -234.905991 + }, + "Rotation": 15.7700033, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 52 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "85485da0-9a38-41c6-b322-d3f18520c484", - "Position": { - "x": 86.15997, - "y": -6.81, - "z": -36.5599976 - }, - "Rotation": 254.950012, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "50528d5a-c6ee-446f-9d53-d25134ada06f", + "Position": { + "x": 43.05, + "y": -6.786003, + "z": -32.69 + }, + "Rotation": 260.9375, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZonePTOR1" }, - "BotZoneName": "" - }, - { - "Id": "854ea99d-9c9a-4155-ba38-a3fb3f42226a", - "Position": { - "x": -43.3599854, - "y": -6.469, - "z": 28.7740173 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "5094f5a8-697b-49e8-bcad-568cd43c3887", + "Position": { + "x": -83.86, + "y": -6.816002, + "z": 44.85 + }, + "Rotation": 347.314056, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "" - }, - { - "Id": "859fbef2-6229-4b0c-9ab5-5788284fbd5f", - "Position": { - "x": -146.94, - "y": -6.9, - "z": 49.8599854 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "52cb538e-3885-4059-91ed-c1219bd835a5", + "Position": { + "x": 126.439987, + "y": -6.771843, + "z": 45.4300079 + }, + "Rotation": 186.0699, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneBunkerStorage" }, - "BotZoneName": "" - }, - { - "Id": "860a4540-4bb3-4976-b5af-221fd60d6e4c", - "Position": { - "x": 63.6900024, - "y": -6.897411, - "z": -168.200012 - }, - "Rotation": 7.00999975, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5361df43-6ce8-4c33-a400-236f16aeb446", + "Position": { + "x": 160.198, + "y": -5.106186, + "z": -168.052 + }, + "Rotation": 26.43, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "86d6130e-b1a9-4f64-9828-fd54c33cdb7a", - "Position": { - "x": -264.5, - "y": -5.21600342, - "z": 11.51 - }, - "Rotation": 84.70626, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } + { + "Id": "55d82f41-cb58-4bcc-82c0-14a3c3805033", + "Position": { + "x": 138.82, + "y": -6.79600525, + "z": -229.27 + }, + "Rotation": 315.001068, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "86d61f12-0b5f-4f3a-b085-c26fc1aeab12", - "Position": { - "x": -71.48999, - "y": 21.43, - "z": 193.75 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5762e0f4-1b6b-4491-a306-6de962003c48", + "Position": { + "x": 102.747, + "y": -6.9240036, + "z": -5.478 + }, + "Rotation": 109.706451, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZonePTOR2" }, - "BotZoneName": "" - }, - { - "Id": "87259d8f-ec8c-4033-a109-7ac91fdade2e", - "Position": { - "x": -62.3, - "y": -7.024811, - "z": 37.87 - }, - "Rotation": 347.314056, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "5b546bd1-83c9-4c97-a0f8-4baab6305dba", + "Position": { + "x": -135.099976, + "y": -6.665001, + "z": -129.98999 + }, + "Rotation": 2.98000026, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "873b34aa-71f2-4547-ad55-d65ae25443b0", - "Position": { - "x": -252.84, - "y": -5.37599945, - "z": -0.72 - }, - "Rotation": 84.70626, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } + { + "Id": "5b836fd7-6d36-40ef-a121-84a947effa5e", + "Position": { + "x": 249.138992, + "y": -6.44699669, + "z": -28.2319946 + }, + "Rotation": 297.1585, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneBunkerStorage" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "8796a598-2a66-442f-aab3-f56b54a67026", - "Position": { - "x": 96.7, - "y": -7.022003, - "z": -16.16 - }, - "Rotation": 109.706451, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "5bf94615-7ec0-4d85-8e14-95e7d570145a", + "Position": { + "x": 217.539978, + "y": -6.85, + "z": -109.72998 + }, + "Rotation": 283.845032, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZonePTOR2" - }, - { - "Id": "89cfb3d1-b3bb-4bbf-8a96-b23a8357cf3e", - "Position": { - "x": -49.289978, - "y": -6.49, - "z": 18.1000061 - }, - "Rotation": 12.37, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "5da7b7d0-dbb1-496f-9889-521485c3d71a", + "Position": { + "x": 214.640015, + "y": -6.85, + "z": -109.369995 + }, + "Rotation": 283.845032, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "8a9c0e57-c784-497c-a215-1c45b6256f8a", - "Position": { - "x": 85.05798, - "y": -6.676, - "z": -37.8710022 - }, - "Rotation": 337.909149, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5ddf18ce-8b04-4a2f-a18c-352505ec1baa", + "Position": { + "x": -121.913025, + "y": -5.454, + "z": -21.6659851 + }, + "Rotation": 126.350006, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "8ae2749b-0955-4d4b-8da6-b6fa0846f773", - "Position": { - "x": -32.8599854, - "y": -6.98216534, - "z": -154.47 - }, - "Rotation": 86.59, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6159ed20-e29b-45f3-8910-b8f20c40fe18", + "Position": { + "x": 25.8599854, + "y": -6.927332, + "z": 7.19000244 + }, + "Rotation": 281.74, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "8b961fc6-835c-430c-822c-733424995c94", - "Position": { - "x": -163.706, - "y": -6.311, - "z": 61.1260376 - }, - "Rotation": 180.89, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "64cc034d-d5b6-4d6b-8f9c-cb50175004de", + "Position": { + "x": -47.5999756, + "y": -6.42, + "z": 20.3200073 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "8ba6cb72-0603-4612-b6b6-1949d61e813b", - "Position": { - "x": 30.671, - "y": -12.2260056, - "z": -153.948 - }, - "Rotation": 79.13992, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "68091dec-b042-4e80-9caf-b6a9e8a43877", + "Position": { + "x": -32.23999, + "y": -6.47, + "z": 13.5900269 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneSubStorage" - }, - { - "Id": "8e2e20fb-73c2-4fb8-914d-03e4fc0b607a", - "Position": { - "x": -148.890015, - "y": -6.9, - "z": 43.8500366 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "68e38aa2-a4b7-4d5d-939d-d561e7638f99", + "Position": { + "x": 141.38, + "y": -10.8204985, + "z": 41.1300049 + }, + "Rotation": 201.86, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "8f95ec4e-cdb4-40f6-8e95-1bc0e90f74dc", - "Position": { - "x": 25.6699829, - "y": -6.927332, - "z": 4.880005 - }, - "Rotation": 289.35, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "6b9f8c39-0f5a-417c-a94a-0a03831d8872", + "Position": { + "x": -6.03, + "y": -6.96200562, + "z": -182.43 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "" - }, - { - "Id": "92dfa172-96a1-42b1-bc6c-c8e4958f811e", - "Position": { - "x": 248.309982, - "y": -6.4659977, - "z": -32.87999 - }, - "Rotation": 248.310242, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "6dca997c-477d-4029-8f7f-3f9d5060a4f6", + "Position": { + "x": 173.98999, + "y": -5.1726656, + "z": -166.78 + }, + "Rotation": 314.09, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBunkerStorage" - }, - { - "Id": "92e15d2b-c690-447e-abe0-a7ab7014dfc5", - "Position": { - "x": -147.5, - "y": -6.9, - "z": 47.73004 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "6f6a1207-c890-4087-9b83-8d8f975c561a", + "Position": { + "x": 188.81, + "y": -6.84417343, + "z": -106.419983 + }, + "Rotation": 154.03, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 52 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "92e47a87-f606-400f-8557-a36a22bf88a8", - "Position": { - "x": 216.840027, - "y": -6.85, - "z": -111.539978 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "70efb1d6-60a1-47cd-8c08-86dae0389f48", + "Position": { + "x": -50.73999, + "y": -6.49, + "z": 15.7000122 + }, + "Rotation": 12.37, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "94806514-6ed7-40ff-bb17-9b76c636c986", - "Position": { - "x": -136.37, - "y": -14.6259995, - "z": 41.582 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 8 - } + { + "Id": "71cea4ba-2112-4e0a-b365-c2a51c5fe627", + "Position": { + "x": -82.439, + "y": -14.2580032, + "z": 28.901 + }, + "Rotation": 96.64535, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 15 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "952876c9-b4a8-41a1-afd4-ccfba67f26c9", - "Position": { - "x": -10.27, - "y": -7.03700256, - "z": -186.01 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "736c5c9d-155a-4772-9ca0-3bbc4523b37e", + "Position": { + "x": -137.969971, + "y": -7.050001, + "z": -129.98999 + }, + "Rotation": 2.98000026, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "9606681f-1eb4-465b-b1b3-0ce363746634", - "Position": { - "x": 192.44, - "y": -6.830794, - "z": -97.51999 - }, - "Rotation": 46.72, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } + { + "Id": "739858a9-4e38-4ea2-ab47-9b15b660b4b1", + "Position": { + "x": 23.48, + "y": -5.10800171, + "z": -128.25 + }, + "Rotation": 110.272163, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "" - }, - { - "Id": "966f9ec5-32c5-4576-8940-430821816f51", - "Position": { - "x": -48.6500244, - "y": -6.43, - "z": 15.1000061 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "73cc9203-6243-4b8f-96bf-c61bda3bd80a", + "Position": { + "x": -36.3699951, + "y": -6.98216534, + "z": -166.97998 + }, + "Rotation": 12.24, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "9674e4bd-0ef3-4cb9-8081-ccc3f88bc9c8", - "Position": { - "x": 230.42, - "y": -6.84999847, - "z": -117.53 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "741a7272-8fe2-4d4b-a4d6-1f7a34995f88", + "Position": { + "x": 22.6699829, + "y": -6.9191, + "z": 5.17001343 + }, + "Rotation": 289.35, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "98af18c5-1581-43f4-b8c9-34356c3754ce", - "Position": { - "x": 248.83, - "y": -6.022997, - "z": -18.0099945 - }, - "Rotation": 248.310242, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "74e240c1-45b8-4f62-a5a1-aa4cd2729df6", + "Position": { + "x": 23.22998, + "y": -6.8962636, + "z": 6.619995 + }, + "Rotation": 289.35, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBunkerStorage" - }, - { - "Id": "996cd4d3-0de0-42b1-bd70-41bb00a25615", - "Position": { - "x": 214.5, - "y": -6.86, - "z": -116.34 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "76888d25-113b-4601-a3d1-7edbaedcba9b", + "Position": { + "x": 189.450012, + "y": -6.80541134, + "z": -96.26001 + }, + "Rotation": 322.68, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 52 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "9c7c218f-2e40-4f4d-9c35-7531fa1cd85e", - "Position": { - "x": -33.71997, - "y": -6.98216534, - "z": -156.91 - }, - "Rotation": 86.59, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7864de7f-7b35-49f6-9ebd-2af5b13f26d2", + "Position": { + "x": 55.9299927, + "y": -6.70799828, + "z": 65.1099854 + }, + "Rotation": 184.72, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "9d5b9214-a40b-4f09-a0c9-33dbac45f36f", - "Position": { - "x": 212.52002, - "y": -6.85, - "z": -115.48999 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "" - }, - { - "Id": "9db1f48a-e761-4036-8c61-aad16ff69c0b", - "Position": { - "x": 104.76, - "y": -7.008003, - "z": 12.853 - }, - "Rotation": 109.706451, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "7975dfd9-5a16-4157-80fd-5f99a3cde652", + "Position": { + "x": -150.76001, + "y": -6.9, + "z": 45.1300049 + }, + "Rotation": 112.108734, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZonePTOR2" - }, - { - "Id": "a42a953a-2ccc-4acd-9427-dbcc85dc9694", - "Position": { - "x": 160.22998, - "y": -6.817665, - "z": -234.905991 - }, - "Rotation": 28.0800018, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } + { + "Id": "79d4d786-e171-4910-949e-a055970afde8", + "Position": { + "x": -86.14, + "y": -14.3970032, + "z": 21.38 + }, + "Rotation": 96.64535, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 8 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "" - }, - { - "Id": "a4484cbe-8a2d-4054-ab7f-38c562254d00", - "Position": { - "x": -34.8699951, - "y": -6.98216534, - "z": -169.22 - }, - "Rotation": 3.630001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7dd58283-cacc-4cfe-b192-1ff712f1a1c4", + "Position": { + "x": -265.47, + "y": -5.54600525, + "z": 13.13 + }, + "Rotation": 84.70626, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 150 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "" - }, - { - "Id": "a45293ef-65c6-4309-9f66-5e591aac01f2", - "Position": { - "x": 213.0, - "y": -6.85, - "z": -114.09 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "7df08a3e-3488-4077-8bec-48eac7903934", + "Position": { + "x": -42.0599976, + "y": -6.47, + "z": 23.9200134 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "a6e8eaf2-6ade-4924-8cdb-5670409ab674", - "Position": { - "x": -5.967, - "y": -6.996002, - "z": -180.038 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "7fce3e48-e5eb-4db4-9c45-9f063aea47b7", + "Position": { + "x": -115.359009, + "y": -5.447, + "z": -26.6069946 + }, + "Rotation": 28.36, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "a7bcdaca-c949-4a09-bd1c-db96d83b6aea", - "Position": { - "x": 1.843, - "y": -6.92733, - "z": -39.999 - }, - "Rotation": 105.6213, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "821b550f-0576-4806-af7f-cbac8393bf74", + "Position": { + "x": 225.13, + "y": -6.84999847, + "z": -122.95 + }, + "Rotation": 281.0713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "ZonePTOR1" - }, - { - "Id": "a90880cc-8231-48d0-bf2f-d3c4d2aad9dc", - "Position": { - "x": -104.219, - "y": -14.4960022, - "z": 33.834 - }, - "Rotation": 102.590828, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } + { + "Id": "853a88d5-ecf3-4131-aa49-bfd53a45e627", + "Position": { + "x": -40.5900269, + "y": -6.47, + "z": 20.52002 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "aa54d668-26e5-4e65-9b84-290b4a4aa610", - "Position": { - "x": -89.81, - "y": -14.4660034, - "z": 17.202 - }, - "Rotation": 12.218833, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } + { + "Id": "85485da0-9a38-41c6-b322-d3f18520c484", + "Position": { + "x": 86.15997, + "y": -6.81, + "z": -36.5599976 + }, + "Rotation": 254.950012, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneSubCommand" - }, - { - "Id": "ab9aab74-6c70-4d2f-88ac-1dfbcc729c13", - "Position": { - "x": -52.99, - "y": -6.816002, - "z": 40.57 - }, - "Rotation": 347.314056, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "854ea99d-9c9a-4155-ba38-a3fb3f42226a", + "Position": { + "x": -43.3599854, + "y": -6.469, + "z": 28.7740173 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "acf4be5a-f177-49d4-8e0e-ba432d202862", - "Position": { - "x": -75.96997, - "y": 21.36, - "z": 194.040039 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "859fbef2-6229-4b0c-9ab5-5788284fbd5f", + "Position": { + "x": -146.94, + "y": -6.9, + "z": 49.8599854 + }, + "Rotation": 112.108734, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "af19e12e-6379-4032-b901-2d99a736e2f3", - "Position": { - "x": -78.65997, - "y": 21.08, - "z": 191.140015 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "860a4540-4bb3-4976-b5af-221fd60d6e4c", + "Position": { + "x": 63.6900024, + "y": -6.897411, + "z": -168.200012 + }, + "Rotation": 7.00999975, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "af2243f9-b799-47d1-80fb-b178b1823eb9", - "Position": { - "x": 62.8400269, - "y": -6.70799828, - "z": 63.1099854 - }, - "Rotation": 216.23, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "86d6130e-b1a9-4f64-9828-fd54c33cdb7a", + "Position": { + "x": -264.5, + "y": -5.21600342, + "z": 11.51 + }, + "Rotation": 84.70626, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 150 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "" - }, - { - "Id": "b07b05e1-99e6-45ff-a046-10fadf79073e", - "Position": { - "x": -163.124, - "y": -6.16899872, - "z": -6.836 - }, - "Rotation": 294.580322, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "86d61f12-0b5f-4f3a-b085-c26fc1aeab12", + "Position": { + "x": -71.48999, + "y": 21.43, + "z": 193.75 + }, + "Rotation": 154.03, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "b0fe3793-dc02-49d6-8f96-6e9d92458b02", - "Position": { - "x": 214.210022, - "y": -6.85, - "z": -110.81 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "87259d8f-ec8c-4033-a109-7ac91fdade2e", + "Position": { + "x": -62.3, + "y": -7.024811, + "z": 37.87 + }, + "Rotation": 347.314056, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "" - }, - { - "Id": "b17e5f88-b45c-449e-9b8a-d7d01f0c5fb0", - "Position": { - "x": 83.169, - "y": -12.2200012, - "z": -123.123 - }, - "Rotation": 271.344574, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "873b34aa-71f2-4547-ad55-d65ae25443b0", + "Position": { + "x": -252.84, + "y": -5.37599945, + "z": -0.72 + }, + "Rotation": 84.70626, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 150 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "ZoneSubStorage" - }, - { - "Id": "b2fa9077-6179-4774-9aa9-fcbd7356f8b9", - "Position": { - "x": -114.937988, - "y": -10.443, - "z": 76.39899 - }, - "Rotation": 96.94, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 50, - "y": 4, - "z": 50 + { + "Id": "8796a598-2a66-442f-aab3-f56b54a67026", + "Position": { + "x": 96.7, + "y": -7.022003, + "z": -16.16 + }, + "Rotation": 109.706451, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } - } + }, + "BotZoneName": "ZonePTOR2" }, - "BotZoneName": "" - }, - { - "Id": "b35f777f-63fa-427a-9528-436a5cf7dcd1", - "Position": { - "x": 45.353, - "y": -0.788002, - "z": -196.341 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "89cfb3d1-b3bb-4bbf-8a96-b23a8357cf3e", + "Position": { + "x": -49.289978, + "y": -6.49, + "z": 18.1000061 + }, + "Rotation": 12.37, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "b425c6d9-ccac-451d-a859-7c0ac171e618", - "Position": { - "x": -44.8309937, - "y": -6.459, - "z": 27.40802 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "8a9c0e57-c784-497c-a215-1c45b6256f8a", + "Position": { + "x": 85.05798, + "y": -6.676, + "z": -37.8710022 + }, + "Rotation": 337.909149, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "b5c0445f-4f81-471c-99bb-5488f14a8f55", - "Position": { - "x": -149.44, - "y": -6.9, - "z": 49.52002 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "8ae2749b-0955-4d4b-8da6-b6fa0846f773", + "Position": { + "x": -32.8599854, + "y": -6.98216534, + "z": -154.47 + }, + "Rotation": 86.59, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "b6f8e7e0-de74-4f7b-95ce-5e058b6e0050", - "Position": { - "x": -48.3200073, - "y": -6.49, - "z": 15.0599976 - }, - "Rotation": 12.37, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "8b961fc6-835c-430c-822c-733424995c94", + "Position": { + "x": -163.706, + "y": -6.311, + "z": 61.1260376 + }, + "Rotation": 180.89, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "b7247acd-a58d-4c8f-887a-c8ac50d94b67", - "Position": { - "x": 170.349976, - "y": -6.817665, - "z": -234.905991 - }, - "Rotation": 28.0800037, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } + { + "Id": "8ba6cb72-0603-4612-b6b6-1949d61e813b", + "Position": { + "x": 30.671, + "y": -12.2260056, + "z": -153.948 + }, + "Rotation": 79.13992, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 + } + }, + "BotZoneName": "ZoneSubStorage" }, - "BotZoneName": "" - }, - { - "Id": "b9725c82-b56b-4399-a5a0-af96fe5be188", - "Position": { - "x": -53.460022, - "y": -6.48, - "z": 33.3099976 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "8e2e20fb-73c2-4fb8-914d-03e4fc0b607a", + "Position": { + "x": -148.890015, + "y": -6.9, + "z": 43.8500366 + }, + "Rotation": 112.108734, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "bc7a9ead-4321-49e6-9015-1a91ed281360", - "Position": { - "x": 197.055008, - "y": -6.329996, - "z": 42.002 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 85 - } + { + "Id": "8f95ec4e-cdb4-40f6-8e95-1bc0e90f74dc", + "Position": { + "x": 25.6699829, + "y": -6.927332, + "z": 4.880005 + }, + "Rotation": 289.35, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBunkerStorage" - }, - { - "Id": "bde50af8-0a4a-466a-93e8-b6049ee28d1e", - "Position": { - "x": 33.367, - "y": -12.2260056, - "z": -142.628 - }, - "Rotation": 79.13992, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "92dfa172-96a1-42b1-bc6c-c8e4958f811e", + "Position": { + "x": 248.309982, + "y": -6.4659977, + "z": -32.87999 + }, + "Rotation": 248.310242, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneBunkerStorage" }, - "BotZoneName": "ZoneSubStorage" - }, - { - "Id": "be80439c-09ae-4a4c-8268-9af3fc87d1ed", - "Position": { - "x": -7.279, - "y": -7.03700256, - "z": -183.433 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "92e15d2b-c690-447e-abe0-a7ab7014dfc5", + "Position": { + "x": -147.5, + "y": -6.9, + "z": 47.73004 + }, + "Rotation": 112.108734, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "bf2409cf-36b1-45f6-a891-711cfc4b8301", - "Position": { - "x": -49.6099854, - "y": -6.42, - "z": 16.6000061 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "92e47a87-f606-400f-8557-a36a22bf88a8", + "Position": { + "x": 216.840027, + "y": -6.85, + "z": -111.539978 + }, + "Rotation": 283.845032, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "bf2420e2-be63-43e9-bd5c-1429fb0985eb", - "Position": { - "x": -35.44, - "y": -7.036995, - "z": -34.11 - }, - "Rotation": 105.6213, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "94806514-6ed7-40ff-bb17-9b76c636c986", + "Position": { + "x": -136.37, + "y": -14.6259995, + "z": 41.582 + }, + "Rotation": 96.64535, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 8 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "ZonePTOR1" - }, - { - "Id": "c1916fa5-33cc-42ae-84f9-0d4bee5820c1", - "Position": { - "x": 61.52002, - "y": -6.927332, - "z": -177.18 - }, - "Rotation": 7.00999975, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "952876c9-b4a8-41a1-afd4-ccfba67f26c9", + "Position": { + "x": -10.27, + "y": -7.03700256, + "z": -186.01 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "" - }, - { - "Id": "c24ae3d6-ca2f-4ff7-97d2-962436e34a6e", - "Position": { - "x": -115.723022, - "y": -5.444, - "z": -19.9519958 - }, - "Rotation": 170.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9606681f-1eb4-465b-b1b3-0ce363746634", + "Position": { + "x": 192.44, + "y": -6.830794, + "z": -97.51999 + }, + "Rotation": 46.72, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 52 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "c2617f1a-b99e-4a99-a863-28b779479b0a", - "Position": { - "x": -112.146973, - "y": -10.4690428, - "z": 75.19202 - }, - "Rotation": 96.94, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 50, - "y": 4, - "z": 50 + { + "Id": "966f9ec5-32c5-4576-8940-430821816f51", + "Position": { + "x": -48.6500244, + "y": -6.43, + "z": 15.1000061 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } - } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "c32bcd20-a6db-4ffd-8888-e688431ea167", - "Position": { - "x": -151.580017, - "y": -6.9, - "z": 42.960022 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "9674e4bd-0ef3-4cb9-8081-ccc3f88bc9c8", + "Position": { + "x": 230.42, + "y": -6.84999847, + "z": -117.53 + }, + "Rotation": 281.0713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "" - }, - { - "Id": "c82f1789-7941-4205-b547-280c23a2ebd5", - "Position": { - "x": -39.9199829, - "y": -6.5, - "z": 22.76001 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "98af18c5-1581-43f4-b8c9-34356c3754ce", + "Position": { + "x": 248.83, + "y": -6.022997, + "z": -18.0099945 + }, + "Rotation": 248.310242, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneBunkerStorage" }, - "BotZoneName": "" - }, - { - "Id": "ca156a0b-c224-402a-a3cb-f0b30d7fd2dd", - "Position": { - "x": 39.721, - "y": -0.206001282, - "z": -188.589 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "996cd4d3-0de0-42b1-bd70-41bb00a25615", + "Position": { + "x": 214.5, + "y": -6.86, + "z": -116.34 + }, + "Rotation": 283.845032, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "ca46288b-86e6-4d08-bc7e-b4042a26a050", - "Position": { - "x": 137.168, - "y": -6.505005, - "z": -231.952 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "9c7c218f-2e40-4f4d-9c35-7531fa1cd85e", + "Position": { + "x": -33.71997, + "y": -6.98216534, + "z": -156.91 + }, + "Rotation": 86.59, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "cad15006-2004-489d-9988-026580c360d5", - "Position": { - "x": 216.719, - "y": -6.86700439, - "z": -176.889 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "9d5b9214-a40b-4f09-a0c9-33dbac45f36f", + "Position": { + "x": 212.52002, + "y": -6.85, + "z": -115.48999 + }, + "Rotation": 283.845032, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "cd1ecd67-b353-41a3-864f-685b27d0cb96", - "Position": { - "x": 87.76599, - "y": -6.758, - "z": -30.5809937 - }, - "Rotation": 254.950012, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "9db1f48a-e761-4036-8c61-aad16ff69c0b", + "Position": { + "x": 104.76, + "y": -7.008003, + "z": 12.853 + }, + "Rotation": 109.706451, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZonePTOR2" }, - "BotZoneName": "" - }, - { - "Id": "d08fec09-6582-4c82-905e-6035256e3645", - "Position": { - "x": 102.418, - "y": -7.008003, - "z": 3.068 - }, - "Rotation": 109.706451, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "a42a953a-2ccc-4acd-9427-dbcc85dc9694", + "Position": { + "x": 160.22998, + "y": -6.817665, + "z": -234.905991 + }, + "Rotation": 28.0800018, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 52 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZonePTOR2" - }, - { - "Id": "d3c5085e-7b35-4d86-9caf-e1ea094ddb3b", - "Position": { - "x": 240.93, - "y": -7.053322, - "z": -94.94 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "a4484cbe-8a2d-4054-ab7f-38c562254d00", + "Position": { + "x": -34.8699951, + "y": -6.98216534, + "z": -169.22 + }, + "Rotation": 3.630001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "d3d395ee-3f4b-479c-8b03-e7d9fe15a467", - "Position": { - "x": -149.914, - "y": -6.18400574, - "z": -10.41 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "a45293ef-65c6-4309-9f66-5e591aac01f2", + "Position": { + "x": 213.0, + "y": -6.85, + "z": -114.09 + }, + "Rotation": 283.845032, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "d74615bb-34d0-4fc5-9ab9-54f7a9634766", - "Position": { - "x": -118.280029, - "y": -10.4800005, - "z": 77.5 - }, - "Rotation": 96.94, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 30, - "y": 4, - "z": 30 + { + "Id": "a6e8eaf2-6ade-4924-8cdb-5670409ab674", + "Position": { + "x": -5.967, + "y": -6.996002, + "z": -180.038 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } - } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "" - }, - { - "Id": "d91a39ba-2c87-4cc0-8203-82f91d607526", - "Position": { - "x": 89.41498, - "y": -6.823, - "z": -24.7189941 - }, - "Rotation": 254.950012, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "a7bcdaca-c949-4a09-bd1c-db96d83b6aea", + "Position": { + "x": 1.843, + "y": -6.92733, + "z": -39.999 + }, + "Rotation": 105.6213, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZonePTOR1" }, - "BotZoneName": "" - }, - { - "Id": "db36d732-053f-48be-b73c-b1a7fbe23514", - "Position": { - "x": -34.5209961, - "y": -6.5, - "z": 14.9630127 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "a90880cc-8231-48d0-bf2f-d3c4d2aad9dc", + "Position": { + "x": -104.219, + "y": -14.4960022, + "z": 33.834 + }, + "Rotation": 102.590828, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 15 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "" - }, - { - "Id": "db67eb64-27c8-498d-9920-1ffc66ecc786", - "Position": { - "x": 35.91, - "y": -0.256004333, - "z": -189.65 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "aa54d668-26e5-4e65-9b84-290b4a4aa610", + "Position": { + "x": -89.81, + "y": -14.4660034, + "z": 17.202 + }, + "Rotation": 12.218833, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 15 + } + }, + "BotZoneName": "ZoneSubCommand" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "dba24d50-6429-4474-9787-ba7fabff23b8", - "Position": { - "x": -74.26001, - "y": 21.37, - "z": 192.0 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "ab9aab74-6c70-4d2f-88ac-1dfbcc729c13", + "Position": { + "x": -52.99, + "y": -6.816002, + "z": 40.57 + }, + "Rotation": 347.314056, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "" - }, - { - "Id": "dcc98552-3235-46e4-bd1f-409af32b50cf", - "Position": { - "x": -38.1400146, - "y": -6.49, - "z": 16.27002 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "acf4be5a-f177-49d4-8e0e-ba432d202862", + "Position": { + "x": -75.96997, + "y": 21.36, + "z": 194.040039 + }, + "Rotation": 154.03, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "dec2098e-2186-417e-8e94-cdcf495cbaf0", - "Position": { - "x": 31.49, - "y": -12.2260056, - "z": -146.815 - }, - "Rotation": 79.13992, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } + { + "Id": "af19e12e-6379-4032-b901-2d99a736e2f3", + "Position": { + "x": -78.65997, + "y": 21.08, + "z": 191.140015 + }, + "Rotation": 154.03, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneSubStorage" - }, - { - "Id": "defa3a38-4449-4268-9527-9c29c6abd095", - "Position": { - "x": 146.036, - "y": -6.84999847, - "z": -230.529 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "af2243f9-b799-47d1-80fb-b178b1823eb9", + "Position": { + "x": 62.8400269, + "y": -6.70799828, + "z": 63.1099854 + }, + "Rotation": 216.23, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneRailStrorage" - }, - { - "Id": "df73552a-de8a-4064-b8ec-d5eaf5d04155", - "Position": { - "x": -6.523, - "y": -6.723999, - "z": -19.157 - }, - "Rotation": 105.6213, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "b07b05e1-99e6-45ff-a046-10fadf79073e", + "Position": { + "x": -163.124, + "y": -6.16899872, + "z": -6.836 + }, + "Rotation": 294.580322, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneBarrack" }, - "BotZoneName": "ZonePTOR1" - }, - { - "Id": "e0048716-f08b-4594-9d5c-340d17b7f2a6", - "Position": { - "x": -43.1099854, - "y": -6.47, - "z": 20.730011 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "b0fe3793-dc02-49d6-8f96-6e9d92458b02", + "Position": { + "x": 214.210022, + "y": -6.85, + "z": -110.81 + }, + "Rotation": 283.845032, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "e01d4b5a-76ef-4447-865f-e5edad0fbd5f", - "Position": { - "x": 67.8499756, - "y": -7.28543139, - "z": -168.15 - }, - "Rotation": 7.00999975, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "b17e5f88-b45c-449e-9b8a-d7d01f0c5fb0", + "Position": { + "x": 83.169, + "y": -12.2200012, + "z": -123.123 + }, + "Rotation": 271.344574, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneSubStorage" }, - "BotZoneName": "" - }, - { - "Id": "e17e24b8-476b-49d0-b420-d9f620a9b9b9", - "Position": { - "x": -28.26001, - "y": 12.61, - "z": 182.93 - }, - "Rotation": 88.80001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "b2fa9077-6179-4774-9aa9-fcbd7356f8b9", + "Position": { + "x": -114.937988, + "y": -10.443, + "z": 76.39899 + }, + "Rotation": 96.94, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnBoxParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Size": { + "x": 50, + "y": 4, + "z": 50 + } + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "e276b0b1-84ca-4731-ad13-fc7a9c91191c", - "Position": { - "x": -47.25, - "y": -6.49, - "z": 18.7000122 - }, - "Rotation": 45.4399948, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "b35f777f-63fa-427a-9528-436a5cf7dcd1", + "Position": { + "x": 45.353, + "y": -0.788002, + "z": -196.341 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "" - }, - { - "Id": "e6a1196e-d800-4701-ac38-5d3d345c8f22", - "Position": { - "x": 47.26, - "y": -12.076004, - "z": -93.33 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "b425c6d9-ccac-451d-a859-7c0ac171e618", + "Position": { + "x": -44.8309937, + "y": -6.459, + "z": 27.40802 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneSubStorage" - }, - { - "Id": "e9aae147-491b-4e56-a383-f63172705b88", - "Position": { - "x": 255.05, - "y": -6.409996, - "z": -42.14 - }, - "Rotation": 248.310242, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b5c0445f-4f81-471c-99bb-5488f14a8f55", + "Position": { + "x": -149.44, + "y": -6.9, + "z": 49.52002 + }, + "Rotation": 112.108734, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBunkerStorage" - }, - { - "Id": "eb080bed-b347-4820-a790-4a04f1ac83c9", - "Position": { - "x": -135.099976, - "y": -6.665001, - "z": -129.98999 - }, - "Rotation": 2.98000026, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b6f8e7e0-de74-4f7b-95ce-5e058b6e0050", + "Position": { + "x": -48.3200073, + "y": -6.49, + "z": 15.0599976 + }, + "Rotation": 12.37, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "eb784bd2-2b96-43f7-981d-152c3598cf93", - "Position": { - "x": -135.539978, - "y": -6.665001, - "z": -129.98999 - }, - "Rotation": 2.98000026, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b7247acd-a58d-4c8f-887a-c8ac50d94b67", + "Position": { + "x": 170.349976, + "y": -6.817665, + "z": -234.905991 + }, + "Rotation": 28.0800037, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 52 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "ece4ff1a-c548-4b1a-ac8f-660fbab649ae", - "Position": { - "x": 226.305008, - "y": -6.829998, - "z": 31.4150085 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b9725c82-b56b-4399-a5a0-af96fe5be188", + "Position": { + "x": -53.460022, + "y": -6.48, + "z": 33.3099976 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "ZoneBunkerStorage" - }, - { - "Id": "ed696df4-0ff8-41d7-b380-631d7b115b97", - "Position": { - "x": -174.14, - "y": -6.87599945, - "z": 1.2 - }, - "Rotation": 294.580322, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "bc7a9ead-4321-49e6-9015-1a91ed281360", + "Position": { + "x": 197.055008, + "y": -6.329996, + "z": 42.002 + }, + "Rotation": 186.0699, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 85 + } + }, + "BotZoneName": "ZoneBunkerStorage" }, - "BotZoneName": "ZoneBarrack" - }, - { - "Id": "ed8b01cb-2827-4707-9d46-a3fb51f4a628", - "Position": { - "x": -120.780029, - "y": -10.459444, - "z": 78.1400146 - }, - "Rotation": 96.94, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 50, - "y": 4, - "z": 50 + { + "Id": "bde50af8-0a4a-466a-93e8-b6049ee28d1e", + "Position": { + "x": 33.367, + "y": -12.2260056, + "z": -142.628 + }, + "Rotation": 79.13992, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } - } + }, + "BotZoneName": "ZoneSubStorage" }, - "BotZoneName": "" - }, - { - "Id": "eef4cc76-2b20-48d3-af56-2e8442aa8b7f", - "Position": { - "x": 173.799988, - "y": -5.1726656, - "z": -169.16 - }, - "Rotation": 314.09, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "be80439c-09ae-4a4c-8268-9af3fc87d1ed", + "Position": { + "x": -7.279, + "y": -7.03700256, + "z": -183.433 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneRailStrorage" }, - "BotZoneName": "" - }, - { - "Id": "f2fdf203-fc09-4a5d-b38b-e226a40d1da4", - "Position": { - "x": -148.650024, - "y": -6.9, - "z": 51.3300171 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "bf2409cf-36b1-45f6-a891-711cfc4b8301", + "Position": { + "x": -49.6099854, + "y": -6.42, + "z": 16.6000061 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "f3fa28cb-eff0-4e05-bafd-0f428b69153d", - "Position": { - "x": -136.01001, - "y": -6.665001, - "z": -129.98999 - }, - "Rotation": 2.98000026, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "bf2420e2-be63-43e9-bd5c-1429fb0985eb", + "Position": { + "x": -35.44, + "y": -7.036995, + "z": -34.11 + }, + "Rotation": 105.6213, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZonePTOR1" }, - "BotZoneName": "" - }, - { - "Id": "f453c38d-5bad-44d7-b71c-7c7bad6b3e70", - "Position": { - "x": -40.7969971, - "y": -6.48, - "z": 17.059021 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "c1916fa5-33cc-42ae-84f9-0d4bee5820c1", + "Position": { + "x": 61.52002, + "y": -6.927332, + "z": -177.18 + }, + "Rotation": 7.00999975, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "f486be10-b81a-4893-aafb-58ebbffda26a", - "Position": { - "x": -149.609985, - "y": -6.9, - "z": 41.77002 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "c24ae3d6-ca2f-4ff7-97d2-962436e34a6e", + "Position": { + "x": -115.723022, + "y": -5.444, + "z": -19.9519958 + }, + "Rotation": 170.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "" }, - "BotZoneName": "" - }, - { - "Id": "f499d5f6-5a76-4825-b4a3-e43997c428d2", - "Position": { - "x": 121.965, - "y": -12.2470016, - "z": -120.284 - }, - "Rotation": 286.266541, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "BotZoneName": "ZoneSubStorage" - }, - { - "Id": "f8165791-4f87-4127-8590-e684659682c5", - "Position": { - "x": -26.8499756, - "y": 12.61, - "z": 182.830017 - }, - "Rotation": 88.80001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "BotZoneName": "" - }, - { - "Id": "f82b1195-b8e3-4087-b5af-8bcc78ac506b", - "Position": { - "x": -47.25, - "y": -6.49, - "z": 14.269989 - }, - "Rotation": 12.37, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "BotZoneName": "" - }, - { - "Id": "fa5ad796-2cff-460c-9162-6b44dbdd0441", - "Position": { - "x": -38.8499756, - "y": -6.49, - "z": 28.8600159 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Common", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "" - }, - { - "Id": "fc214558-4f24-4b2e-bce4-ed097bfb556e", - "Position": { - "x": 176.250992, - "y": -5.93699646, - "z": 40.798996 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "ZoneBunkerStorage" - }, - { - "Id": "fded8e8f-4c7d-48d5-81de-a27dd0d31574", - "Position": { - "x": 60.5, - "y": -6.87000275, - "z": -56.2 - }, - "Rotation": 105.6213, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "ZonePTOR2" - }, - { - "Id": "fe986f48-0619-40e6-b330-228bedb84c96", - "Position": { - "x": 218.029, - "y": -6.91000366, - "z": -175.682 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "BotZoneName": "ZoneRailStrorage" - } - ], - "maxItemCountInLocation": [], - "AirdropParameters": [ - { - "PlaneAirdropStartMin": 300, - "PlaneAirdropStartMax": 900, - "PlaneAirdropEnd": 1500, - "PlaneAirdropChance": 0.1, - "PlaneAirdropMax": 1, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropCooldownMax": 800, - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "UnsuccessfulTryPenalty": 600 - } - ], - "MatchMakerMinPlayersByWaitTime": [ - { - "time": 60, - "minPlayers": 7 - }, - { - "time": 70, - "minPlayers": 6 - }, - { - "time": 120, - "minPlayers": 5 - }, - { - "time": 180, - "minPlayers": 4 - }, - { - "time": 250, - "minPlayers": 3 - }, - { - "time": 330, - "minPlayers": 2 - }, - { - "time": 420, - "minPlayers": 1 - } - ], - "transits": [ - { - "id": 18, - "active": false, - "name": "REZ_TRANSIT_18", - "location": "bigmap", - "description": "REZ_TRANSIT_18_DESC", - "activateAfterSec": 420, - "target": "56f40101d2720b2a4d8b45d6", - "time": 30, - "conditions": "REZ_TRANSIT_18_COND" - }, - { - "id": 19, - "active": false, - "name": "REZ_TRANSIT_19", - "location": "Woods", - "description": "REZ_TRANSIT_19_DESC", - "activateAfterSec": 420, - "target": "5704e3c2d2720bac5b8b4567", - "time": 30, - "conditions": "REZ_TRANSIT_19_COND" - }, - { - "id": 20, - "active": true, - "name": "REZ_TRANSIT_20", - "location": "Lighthouse", - "description": "REZ_TRANSIT_20_DESC", - "activateAfterSec": 420, - "target": "5704e4dad2720bb55b8b4567", - "time": 30, - "conditions": "REZ_TRANSIT_20_COND" - } - ], - "Id": "RezervBase", - "_Id": "5704e5fad2720bc05b8b4567", - "Loot": [ - { - "Id": "container_Reserve_Base_DesignStuff_00925", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05df8a", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05df8a", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c2617f1a-b99e-4a99-a863-28b779479b0a", + "Position": { + "x": -112.146973, + "y": -10.4690428, + "z": 75.19202 + }, + "Rotation": 96.94, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnBoxParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Size": { + "x": 50, + "y": 4, + "z": 50 + } } }, - { - "_id": "66cbb8024fa93c4c4b05df8c", - "_tpl": "5aa2b87de5b5b00016327c25", - "parentId": "66cbb8024fa93c4c4b05df8a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "" + }, + { + "Id": "c32bcd20-a6db-4ffd-8888-e688431ea167", + "Position": { + "x": -151.580017, + "y": -6.9, + "z": 42.960022 + }, + "Rotation": 112.108734, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05df90", - "_tpl": "57372d4c245977685a3da2a1", - "parentId": "66cbb8024fa93c4c4b05df8a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "" + }, + { + "Id": "c82f1789-7941-4205-b547-280c23a2ebd5", + "Position": { + "x": -39.9199829, + "y": -6.5, + "z": 22.76001 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05df91", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8024fa93c4c4b05df90", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "BotZoneName": "" + }, + { + "Id": "ca156a0b-c224-402a-a3cb-f0b30d7fd2dd", + "Position": { + "x": 39.721, + "y": -0.206001282, + "z": -188.589 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb8024fa93c4c4b05df92", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8024fa93c4c4b05df90", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00375", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneRailStrorage" }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05df94", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05df94", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ca46288b-86e6-4d08-bc7e-b4042a26a050", + "Position": { + "x": 137.168, + "y": -6.505005, + "z": -231.952 + }, + "Rotation": 281.0713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb8024fa93c4c4b05df96", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8024fa93c4c4b05df94", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneRailStrorage" + }, + { + "Id": "cad15006-2004-489d-9988-026580c360d5", + "Position": { + "x": 216.719, + "y": -6.86700439, + "z": -176.889 + }, + "Rotation": 281.0713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb8024fa93c4c4b05df98", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbb8024fa93c4c4b05df94", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00305", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneRailStrorage" }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05df9a", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05df9a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "cd1ecd67-b353-41a3-864f-685b27d0cb96", + "Position": { + "x": 87.76599, + "y": -6.758, + "z": -30.5809937 + }, + "Rotation": 254.950012, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 } }, - { - "_id": "66cbb8024fa93c4c4b05df9c", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8024fa93c4c4b05df9a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00150", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05df9e", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05df9e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d08fec09-6582-4c82-905e-6035256e3645", + "Position": { + "x": 102.418, + "y": -7.008003, + "z": 3.068 + }, + "Rotation": 109.706451, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05dfa0", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8024fa93c4c4b05df9e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00149", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZonePTOR2" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfa2", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfa2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d3c5085e-7b35-4d86-9caf-e1ea094ddb3b", + "Position": { + "x": 240.93, + "y": -7.053322, + "z": -94.94 + }, + "Rotation": 281.0713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05dfa4", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbb8024fa93c4c4b05dfa2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00148", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneRailStrorage" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfa6", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfa6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d3d395ee-3f4b-479c-8b03-e7d9fe15a467", + "Position": { + "x": -149.914, + "y": -6.18400574, + "z": -10.41 + }, + "Rotation": 96.64535, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb8024fa93c4c4b05dfa8", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8024fa93c4c4b05dfa6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00147", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBarrack" }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfaa", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfaa", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d74615bb-34d0-4fc5-9ab9-54f7a9634766", + "Position": { + "x": -118.280029, + "y": -10.4800005, + "z": 77.5 + }, + "Rotation": 96.94, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnBoxParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Size": { + "x": 30, + "y": 4, + "z": 30 + } } }, - { - "_id": "66cbb8024fa93c4c4b05dfac", - "_tpl": "62a09e73af34e73a266d932a", - "parentId": "66cbb8024fa93c4c4b05dfaa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfae", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfae", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d91a39ba-2c87-4cc0-8203-82f91d607526", + "Position": { + "x": 89.41498, + "y": -6.823, + "z": -24.7189941 + }, + "Rotation": 254.950012, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 } }, - { - "_id": "66cbb8024fa93c4c4b05dfb0", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8024fa93c4c4b05dfae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 835 + "BotZoneName": "" + }, + { + "Id": "db36d732-053f-48be-b73c-b1a7fbe23514", + "Position": { + "x": -34.5209961, + "y": -6.5, + "z": 14.9630127 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05dfb2", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8024fa93c4c4b05dfae", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 829 + "BotZoneName": "" + }, + { + "Id": "db67eb64-27c8-498d-9920-1ffc66ecc786", + "Position": { + "x": 35.91, + "y": -0.256004333, + "z": -189.65 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb8024fa93c4c4b05dfb4", - "_tpl": "62a09cfe4f842e1bd12da3e4", - "parentId": "66cbb8024fa93c4c4b05dfae", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneRailStrorage" + }, + { + "Id": "dba24d50-6429-4474-9787-ba7fabff23b8", + "Position": { + "x": -74.26001, + "y": 21.37, + "z": 192.0 + }, + "Rotation": 154.03, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb8024fa93c4c4b05dfb6", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8024fa93c4c4b05dfae", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1097 + "BotZoneName": "" + }, + { + "Id": "dcc98552-3235-46e4-bd1f-409af32b50cf", + "Position": { + "x": -38.1400146, + "y": -6.49, + "z": 16.27002 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05dfb8", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8024fa93c4c4b05dfae", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 938 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00102", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfba", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfba", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "dec2098e-2186-417e-8e94-cdcf495cbaf0", + "Position": { + "x": 31.49, + "y": -12.2260056, + "z": -146.815 + }, + "Rotation": 79.13992, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb8024fa93c4c4b05dfbc", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb8024fa93c4c4b05dfba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSubStorage" }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfbe", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfbe", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "defa3a38-4449-4268-9527-9c29c6abd095", + "Position": { + "x": 146.036, + "y": -6.84999847, + "z": -230.529 + }, + "Rotation": 281.0713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb8024fa93c4c4b05dfc0", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb8024fa93c4c4b05dfbe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00100", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneRailStrorage" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfc2", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfc2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "df73552a-de8a-4064-b8ec-d5eaf5d04155", + "Position": { + "x": -6.523, + "y": -6.723999, + "z": -19.157 + }, + "Rotation": 105.6213, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05dfc4", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbb8024fa93c4c4b05dfc2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00099", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZonePTOR1" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfc6", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfc6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e0048716-f08b-4594-9d5c-340d17b7f2a6", + "Position": { + "x": -43.1099854, + "y": -6.47, + "z": 20.730011 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05dfc8", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8024fa93c4c4b05dfc6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00353", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfca", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfca", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e01d4b5a-76ef-4447-865f-e5edad0fbd5f", + "Position": { + "x": 67.8499756, + "y": -7.28543139, + "z": -168.15 + }, + "Rotation": 7.00999975, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 } }, - { - "_id": "66cbb8024fa93c4c4b05dfcb", - "_tpl": "669fa409933e898cce0c2166", - "parentId": "66cbb8024fa93c4c4b05dfca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } + "BotZoneName": "" + }, + { + "Id": "e17e24b8-476b-49d0-b420-d9f620a9b9b9", + "Position": { + "x": -28.26001, + "y": 12.61, + "z": 182.93 + }, + "Rotation": 88.80001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbb8024fa93c4c4b05dfcc", - "_tpl": "669fa4c61bd4416eaa09b3ca", - "parentId": "66cbb8024fa93c4c4b05dfcb", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8024fa93c4c4b05dfcd", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbb8024fa93c4c4b05dfcc", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb8024fa93c4c4b05dfce", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66cbb8024fa93c4c4b05dfcb", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbb8024fa93c4c4b05dfcf", - "_tpl": "669fa5127a09bc295603b499", - "parentId": "66cbb8024fa93c4c4b05dfcb", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8024fa93c4c4b05dfd0", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbb8024fa93c4c4b05dfcf", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8024fa93c4c4b05dfd1", - "_tpl": "669fa435803b94fb5d0e3a76", - "parentId": "66cbb8024fa93c4c4b05dfcb", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8024fa93c4c4b05dfd2", - "_tpl": "62330b3ed4dc74626d570b95", - "parentId": "66cbb8024fa93c4c4b05dfd1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00154", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfd4", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfd4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e276b0b1-84ca-4731-ad13-fc7a9c91191c", + "Position": { + "x": -47.25, + "y": -6.49, + "z": 18.7000122 + }, + "Rotation": 45.4399948, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 } }, - { - "_id": "66cbb8024fa93c4c4b05dfd6", - "_tpl": "5d9f1fa686f774726974a992", - "parentId": "66cbb8024fa93c4c4b05dfd4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00153", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfd8", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfd8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e6a1196e-d800-4701-ac38-5d3d345c8f22", + "Position": { + "x": 47.26, + "y": -12.076004, + "z": -93.33 + }, + "Rotation": 186.0699, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbb8024fa93c4c4b05dfda", - "_tpl": "62a0a124de7ac81993580542", - "parentId": "66cbb8024fa93c4c4b05dfd8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00152", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSubStorage" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfdc", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfdc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e9aae147-491b-4e56-a383-f63172705b88", + "Position": { + "x": 255.05, + "y": -6.409996, + "z": -42.14 + }, + "Rotation": 248.310242, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb8024fa93c4c4b05dfde", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8024fa93c4c4b05dfdc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00151", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBunkerStorage" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfe0", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfe0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "eb080bed-b347-4820-a790-4a04f1ac83c9", + "Position": { + "x": -135.099976, + "y": -6.665001, + "z": -129.98999 + }, + "Rotation": 2.98000026, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb8024fa93c4c4b05dfe2", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8024fa93c4c4b05dfe0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfe4", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfe4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "eb784bd2-2b96-43f7-981d-152c3598cf93", + "Position": { + "x": -135.539978, + "y": -6.665001, + "z": -129.98999 + }, + "Rotation": 2.98000026, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb8024fa93c4c4b05dfe6", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8024fa93c4c4b05dfe4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfe8", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfe8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ece4ff1a-c548-4b1a-ac8f-660fbab649ae", + "Position": { + "x": 226.305008, + "y": -6.829998, + "z": 31.4150085 + }, + "Rotation": 186.0699, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb8024fa93c4c4b05dfea", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8024fa93c4c4b05dfe8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBunkerStorage" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dfec", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dfec", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ed696df4-0ff8-41d7-b380-631d7b115b97", + "Position": { + "x": -174.14, + "y": -6.87599945, + "z": 1.2 + }, + "Rotation": 294.580322, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb8024fa93c4c4b05dfee", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb8024fa93c4c4b05dfec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00019", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBarrack" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dff0", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dff0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ed8b01cb-2827-4707-9d46-a3fb51f4a628", + "Position": { + "x": -120.780029, + "y": -10.459444, + "z": 78.1400146 + }, + "Rotation": 96.94, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnBoxParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Size": { + "x": 50, + "y": 4, + "z": 50 + } } }, - { - "_id": "66cbb8024fa93c4c4b05dff2", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8024fa93c4c4b05dff0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00046", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dff4", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dff4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "eef4cc76-2b20-48d3-af56-2e8442aa8b7f", + "Position": { + "x": 173.799988, + "y": -5.1726656, + "z": -169.16 + }, + "Rotation": 314.09, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 } }, - { - "_id": "66cbb8024fa93c4c4b05dff6", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8024fa93c4c4b05dff4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00045", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dff8", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dff8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f2fdf203-fc09-4a5d-b38b-e226a40d1da4", + "Position": { + "x": -148.650024, + "y": -6.9, + "z": 51.3300171 + }, + "Rotation": 112.108734, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05dffa", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8024fa93c4c4b05dff8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00044", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05dffc", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05dffc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f3fa28cb-eff0-4e05-bafd-0f428b69153d", + "Position": { + "x": -136.01001, + "y": -6.665001, + "z": -129.98999 + }, + "Rotation": 2.98000026, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb8024fa93c4c4b05dffe", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb8024fa93c4c4b05dffc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00043", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e000", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e000", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f453c38d-5bad-44d7-b71c-7c7bad6b3e70", + "Position": { + "x": -40.7969971, + "y": -6.48, + "z": 17.059021 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05e002", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8024fa93c4c4b05e000", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00510", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e004", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e004", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f486be10-b81a-4893-aafb-58ebbffda26a", + "Position": { + "x": -149.609985, + "y": -6.9, + "z": 41.77002 + }, + "Rotation": 112.108734, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05e006", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb8024fa93c4c4b05e004", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "" + }, + { + "Id": "f499d5f6-5a76-4825-b4a3-e43997c428d2", + "Position": { + "x": 121.965, + "y": -12.2470016, + "z": -120.284 + }, + "Rotation": 286.266541, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 20 } }, - { - "_id": "66cbb8024fa93c4c4b05e008", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb8024fa93c4c4b05e004", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00290", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSubStorage" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e00a", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e00a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f8165791-4f87-4127-8590-e684659682c5", + "Position": { + "x": -26.8499756, + "y": 12.61, + "z": 182.830017 + }, + "Rotation": 88.80001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbb8024fa93c4c4b05e00c", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbb8024fa93c4c4b05e00a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 10 + "BotZoneName": "" + }, + { + "Id": "f82b1195-b8e3-4087-b5af-8bcc78ac506b", + "Position": { + "x": -47.25, + "y": -6.49, + "z": 14.269989 + }, + "Rotation": 12.37, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 } }, - { - "_id": "66cbb8024fa93c4c4b05e00d", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66cbb8024fa93c4c4b05e00a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } + "BotZoneName": "" + }, + { + "Id": "fa5ad796-2cff-460c-9162-6b44dbdd0441", + "Position": { + "x": -38.8499756, + "y": -6.49, + "z": 28.8600159 + }, + "Rotation": 28.0800037, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05e00e", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66cbb8024fa93c4c4b05e00d", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8024fa93c4c4b05e012", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb8024fa93c4c4b05e00e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "BotZoneName": "" + }, + { + "Id": "fc214558-4f24-4b2e-bce4-ed097bfb556e", + "Position": { + "x": 176.250992, + "y": -5.93699646, + "z": 40.798996 + }, + "Rotation": 186.0699, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05e00f", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66cbb8024fa93c4c4b05e00d", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8024fa93c4c4b05e010", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66cbb8024fa93c4c4b05e00f", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8024fa93c4c4b05e011", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66cbb8024fa93c4c4b05e00d", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00395", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBunkerStorage" }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e014", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e014", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fded8e8f-4c7d-48d5-81de-a27dd0d31574", + "Position": { + "x": 60.5, + "y": -6.87000275, + "z": -56.2 + }, + "Rotation": 105.6213, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb8024fa93c4c4b05e016", - "_tpl": "62a0a0bb621468534a797ad5", - "parentId": "66cbb8024fa93c4c4b05e014", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZonePTOR2" + }, + { + "Id": "fe986f48-0619-40e6-b330-228bedb84c96", + "Position": { + "x": 218.029, + "y": -6.91000366, + "z": -175.682 + }, + "Rotation": 281.0713, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbb8024fa93c4c4b05e018", - "_tpl": "6389c6463485cf0eeb260715", - "parentId": "66cbb8024fa93c4c4b05e014", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8024fa93c4c4b05e01a", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb8024fa93c4c4b05e014", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00548", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneRailStrorage" + } + ], + "maxItemCountInLocation": [], + "AirdropParameters": [ + { + "PlaneAirdropStartMin": 300, + "PlaneAirdropStartMax": 900, + "PlaneAirdropEnd": 1500, + "PlaneAirdropChance": 0.1, + "PlaneAirdropMax": 1, + "PlaneAirdropCooldownMin": 700, + "PlaneAirdropCooldownMax": 800, + "AirdropPointDeactivateDistance": 50, + "MinPlayersCountToSpawnAirdrop": 6, + "UnsuccessfulTryPenalty": 600 + } + ], + "MatchMakerMinPlayersByWaitTime": [ + { + "time": 60, + "minPlayers": 7 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 70, + "minPlayers": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e01c", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e01c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8024fa93c4c4b05e01e", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8024fa93c4c4b05e01c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8024fa93c4c4b05e020", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb8024fa93c4c4b05e01c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00364", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 120, + "minPlayers": 5 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 180, + "minPlayers": 4 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e022", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e022", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8024fa93c4c4b05e024", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66cbb8024fa93c4c4b05e022", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00754", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 250, + "minPlayers": 3 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 330, + "minPlayers": 2 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e026", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e026", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "time": 420, + "minPlayers": 1 + } + ], + "transits": [ + { + "id": 18, + "active": false, + "name": "REZ_TRANSIT_18", + "location": "bigmap", + "description": "REZ_TRANSIT_18_DESC", + "activateAfterSec": 420, + "target": "56f40101d2720b2a4d8b45d6", + "time": 30, + "conditions": "REZ_TRANSIT_18_COND" + }, + { + "id": 19, + "active": false, + "name": "REZ_TRANSIT_19", + "location": "Woods", + "description": "REZ_TRANSIT_19_DESC", + "activateAfterSec": 420, + "target": "5704e3c2d2720bac5b8b4567", + "time": 30, + "conditions": "REZ_TRANSIT_19_COND" + }, + { + "id": 20, + "active": true, + "name": "REZ_TRANSIT_20", + "location": "Lighthouse", + "description": "REZ_TRANSIT_20_DESC", + "activateAfterSec": 420, + "target": "5704e4dad2720bb55b8b4567", + "time": 30, + "conditions": "REZ_TRANSIT_20_COND" + } + ], + "Id": "RezervBase", + "_Id": "5704e5fad2720bc05b8b4567", + "Loot": [ + { + "Id": "container_Reserve_Base_DesignStuff_00925", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e028", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb8024fa93c4c4b05e026", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05df8a", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05df8a", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05df8c", + "_tpl": "5aa2b87de5b5b00016327c25", + "parentId": "66cbb8024fa93c4c4b05df8a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05df90", + "_tpl": "57372d4c245977685a3da2a1", + "parentId": "66cbb8024fa93c4c4b05df8a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05df91", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8024fa93c4c4b05df90", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05df92", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8024fa93c4c4b05df90", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00375", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e02a", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb8024fa93c4c4b05e026", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05df94", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05df94", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05df96", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8024fa93c4c4b05df94", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05df98", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbb8024fa93c4c4b05df94", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00531", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e02c", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e02c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00305", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e02e", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8024fa93c4c4b05e02c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05df9a", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05df9a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05df9c", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8024fa93c4c4b05df9a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00150", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e030", - "_tpl": "5d4041f086f7743cac3f22a7", - "parentId": "66cbb8024fa93c4c4b05e02c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05df9e", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05df9e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfa0", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8024fa93c4c4b05df9e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00482", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e032", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e032", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00149", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e034", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbb8024fa93c4c4b05e032", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfa2", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfa2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05dfa4", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbb8024fa93c4c4b05dfa2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00148", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e036", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb8024fa93c4c4b05e032", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfa6", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfa6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfa8", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8024fa93c4c4b05dfa6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00351", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e038", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e038", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00147", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e03a", - "_tpl": "6087e2a5232e5a31c233d552", - "parentId": "66cbb8024fa93c4c4b05e038", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfaa", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfaa", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05dfac", + "_tpl": "62a09e73af34e73a266d932a", + "parentId": "66cbb8024fa93c4c4b05dfaa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e03c", - "_tpl": "57adff4f24597737f373b6e6", - "parentId": "66cbb8024fa93c4c4b05e038", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfae", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfae", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfb0", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8024fa93c4c4b05dfae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 835 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfb2", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8024fa93c4c4b05dfae", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 829 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfb4", + "_tpl": "62a09cfe4f842e1bd12da3e4", + "parentId": "66cbb8024fa93c4c4b05dfae", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfb6", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8024fa93c4c4b05dfae", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1097 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfb8", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8024fa93c4c4b05dfae", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 938 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00376", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e03e", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e03e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00102", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e040", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8024fa93c4c4b05e03e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfba", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfba", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05dfbc", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb8024fa93c4c4b05dfba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e042", - "_tpl": "59e366c186f7741778269d85", - "parentId": "66cbb8024fa93c4c4b05e03e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfbe", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfbe", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05dfc0", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb8024fa93c4c4b05dfbe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00100", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e044", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8024fa93c4c4b05e03e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfc2", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfc2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfc4", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbb8024fa93c4c4b05dfc2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e046", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e046", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00099", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e048", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb8024fa93c4c4b05e046", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00309", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e04a", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e04a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e04c", - "_tpl": "57514643245977207f2c2d09", - "parentId": "66cbb8024fa93c4c4b05e04a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfc6", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfc6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfc8", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8024fa93c4c4b05dfc6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00303", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e04e", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e04e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00353", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e050", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8024fa93c4c4b05e04e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1064 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00736", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e052", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e052", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e054", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66cbb8024fa93c4c4b05e052", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfca", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfca", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8024fa93c4c4b05e056", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb8024fa93c4c4b05e052", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8024fa93c4c4b05dfcb", + "_tpl": "669fa409933e898cce0c2166", + "parentId": "66cbb8024fa93c4c4b05dfca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8024fa93c4c4b05e058", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "parentId": "66cbb8024fa93c4c4b05e052", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05dfcc", + "_tpl": "669fa4c61bd4416eaa09b3ca", + "parentId": "66cbb8024fa93c4c4b05dfcb", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8024fa93c4c4b05dfcd", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbb8024fa93c4c4b05dfcc", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8024fa93c4c4b05dfce", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66cbb8024fa93c4c4b05dfcb", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb8024fa93c4c4b05dfcf", + "_tpl": "669fa5127a09bc295603b499", + "parentId": "66cbb8024fa93c4c4b05dfcb", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8024fa93c4c4b05dfd0", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbb8024fa93c4c4b05dfcf", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8024fa93c4c4b05dfd1", + "_tpl": "669fa435803b94fb5d0e3a76", + "parentId": "66cbb8024fa93c4c4b05dfcb", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8024fa93c4c4b05dfd2", + "_tpl": "62330b3ed4dc74626d570b95", + "parentId": "66cbb8024fa93c4c4b05dfd1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00773", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e05a", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e05a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00154", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e05c", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8024fa93c4c4b05e05a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e05e", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb8024fa93c4c4b05e05a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfd4", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfd4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfd6", + "_tpl": "5d9f1fa686f774726974a992", + "parentId": "66cbb8024fa93c4c4b05dfd4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e060", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e060", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00153", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e062", - "_tpl": "590de7e986f7741b096e5f32", - "parentId": "66cbb8024fa93c4c4b05e060", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e064", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbb8024fa93c4c4b05e060", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfd8", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfd8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05dfda", + "_tpl": "62a0a124de7ac81993580542", + "parentId": "66cbb8024fa93c4c4b05dfd8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00152", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e066", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8024fa93c4c4b05e060", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1078 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e068", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "66cbb8024fa93c4c4b05e060", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfdc", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfdc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8024fa93c4c4b05e06a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8024fa93c4c4b05e060", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 709 + { + "_id": "66cbb8024fa93c4c4b05dfde", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8024fa93c4c4b05dfdc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00402", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e06c", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e06c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00151", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e06e", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb8024fa93c4c4b05e06c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00721", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e070", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e070", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e072", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbb8024fa93c4c4b05e070", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfe0", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfe0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05dfe2", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8024fa93c4c4b05dfe0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e074", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8024fa93c4c4b05e070", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e076", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "parentId": "66cbb8024fa93c4c4b05e070", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfe4", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfe4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dfe6", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8024fa93c4c4b05dfe4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00275", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e078", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e078", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e07a", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66cbb8024fa93c4c4b05e078", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00345", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e07c", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e07c", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e07e", - "_tpl": "57ac965c24597706be5f975c", - "parentId": "66cbb8024fa93c4c4b05e07c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfe8", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfe8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05dfea", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8024fa93c4c4b05dfe8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e080", - "_tpl": "5addbfd15acfc40015621bde", - "parentId": "66cbb8024fa93c4c4b05e07c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dfec", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dfec", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05dfee", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb8024fa93c4c4b05dfec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00019", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e082", - "_tpl": "5d2dc3e548f035404a1a4798", - "parentId": "66cbb8024fa93c4c4b05e07c", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dff0", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dff0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05dff2", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8024fa93c4c4b05dff0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00046", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e083", - "_tpl": "5e81c3cbac2bb513793cdc75", - "parentId": "66cbb8024fa93c4c4b05e07c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dff4", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dff4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb8024fa93c4c4b05dff6", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8024fa93c4c4b05dff4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00045", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e084", - "_tpl": "5e81c519cb2b95385c177551", - "parentId": "66cbb8024fa93c4c4b05e083", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e085", - "_tpl": "5e81c6bf763d9f754677beff", - "parentId": "66cbb8024fa93c4c4b05e083", - "slotId": "mod_pistol_grip" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dff8", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dff8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dffa", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8024fa93c4c4b05dff8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00044", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e086", - "_tpl": "5e81edc13397a21db957f6a1", - "parentId": "66cbb8024fa93c4c4b05e083", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e087", - "_tpl": "5e81ee4dcb2b95385c177582", - "parentId": "66cbb8024fa93c4c4b05e086", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8024fa93c4c4b05e088", - "_tpl": "5e81ee213397a21db957f6a6", - "parentId": "66cbb8024fa93c4c4b05e086", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb8024fa93c4c4b05e089", - "_tpl": "5e81c4ca763d9f754677befa", - "parentId": "66cbb8024fa93c4c4b05e083", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8024fa93c4c4b05e08d", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbb8024fa93c4c4b05e089", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05dffc", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05dffc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05dffe", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb8024fa93c4c4b05dffc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb8024fa93c4c4b05e08a", - "_tpl": "5e81c6a2ac2bb513793cdc7f", - "parentId": "66cbb8024fa93c4c4b05e083", - "slotId": "mod_trigger" - }, - { - "_id": "66cbb8024fa93c4c4b05e08b", - "_tpl": "5e81c550763d9f754677befd", - "parentId": "66cbb8024fa93c4c4b05e083", - "slotId": "mod_hammer" - }, - { - "_id": "66cbb8024fa93c4c4b05e08c", - "_tpl": "5e81c539cb2b95385c177553", - "parentId": "66cbb8024fa93c4c4b05e083", - "slotId": "mod_catch" - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00686", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e08f", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e08f", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00043", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e091", - "_tpl": "5c87a07c2e2216001219d4a2", - "parentId": "66cbb8024fa93c4c4b05e08f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e093", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbb8024fa93c4c4b05e08f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e000", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e000", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e002", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8024fa93c4c4b05e000", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00510", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e095", - "_tpl": "648ae3e356c6310a830fc291", - "parentId": "66cbb8024fa93c4c4b05e08f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e097", - "_tpl": "5c87ca002e221600114cb150", - "parentId": "66cbb8024fa93c4c4b05e08f", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e004", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e004", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e006", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb8024fa93c4c4b05e004", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e008", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb8024fa93c4c4b05e004", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00338", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e099", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e099", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00290", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e09b", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb8024fa93c4c4b05e099", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00354", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e09d", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e09d", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e09f", - "_tpl": "5c0919b50db834001b7ce3b9", - "parentId": "66cbb8024fa93c4c4b05e09d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e00a", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e00a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e00c", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbb8024fa93c4c4b05e00a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 10 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e00d", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66cbb8024fa93c4c4b05e00a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb8024fa93c4c4b05e00e", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66cbb8024fa93c4c4b05e00d", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8024fa93c4c4b05e012", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb8024fa93c4c4b05e00e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e00f", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66cbb8024fa93c4c4b05e00d", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8024fa93c4c4b05e010", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66cbb8024fa93c4c4b05e00f", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8024fa93c4c4b05e011", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66cbb8024fa93c4c4b05e00d", + "slotId": "mod_pistolgrip" } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00318", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e0a1", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0a1", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00395", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0a3", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb8024fa93c4c4b05e0a1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00182", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0a5", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0a5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0a7", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8024fa93c4c4b05e0a5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e014", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e014", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e016", + "_tpl": "62a0a0bb621468534a797ad5", + "parentId": "66cbb8024fa93c4c4b05e014", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e018", + "_tpl": "6389c6463485cf0eeb260715", + "parentId": "66cbb8024fa93c4c4b05e014", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e01a", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb8024fa93c4c4b05e014", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00181", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0a9", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0a9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00548", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0ab", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb8024fa93c4c4b05e0a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e01c", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e01c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e01e", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8024fa93c4c4b05e01c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e020", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb8024fa93c4c4b05e01c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00180", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0ad", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0ad", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00364", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0af", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb8024fa93c4c4b05e0ad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e022", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e022", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e024", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66cbb8024fa93c4c4b05e022", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00179", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0b1", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0b1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00754", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0b3", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbb8024fa93c4c4b05e0b1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e026", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e026", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e028", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb8024fa93c4c4b05e026", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e02a", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb8024fa93c4c4b05e026", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00467", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e0b5", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0b5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00531", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0b7", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb8024fa93c4c4b05e0b5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e02c", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e02c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e02e", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8024fa93c4c4b05e02c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e030", + "_tpl": "5d4041f086f7743cac3f22a7", + "parentId": "66cbb8024fa93c4c4b05e02c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00482", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0b9", - "_tpl": "5e2af02c86f7746d420957d4", - "parentId": "66cbb8024fa93c4c4b05e0b5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e032", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e032", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e034", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbb8024fa93c4c4b05e032", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e036", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb8024fa93c4c4b05e032", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00323", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e0bb", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0bb", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00351", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0bd", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8024fa93c4c4b05e0bb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00214", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0bf", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0bf", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0c1", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8024fa93c4c4b05e0bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e038", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e038", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e03a", + "_tpl": "6087e2a5232e5a31c233d552", + "parentId": "66cbb8024fa93c4c4b05e038", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e03c", + "_tpl": "57adff4f24597737f373b6e6", + "parentId": "66cbb8024fa93c4c4b05e038", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00213", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0c3", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0c3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00376", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0c5", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8024fa93c4c4b05e0c3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e03e", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e03e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e040", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8024fa93c4c4b05e03e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e042", + "_tpl": "59e366c186f7741778269d85", + "parentId": "66cbb8024fa93c4c4b05e03e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e044", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8024fa93c4c4b05e03e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00212", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0c7", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0c7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0c9", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8024fa93c4c4b05e0c7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e046", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e046", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e048", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb8024fa93c4c4b05e046", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00211", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0cb", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0cb", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00309", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0cd", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "parentId": "66cbb8024fa93c4c4b05e0cb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e04a", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e04a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e04c", + "_tpl": "57514643245977207f2c2d09", + "parentId": "66cbb8024fa93c4c4b05e04a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00321", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e0cf", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0cf", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00303", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0d1", - "_tpl": "62a5c333ec21e50cad3b5dc6", - "parentId": "66cbb8024fa93c4c4b05e0cf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e04e", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e04e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e050", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8024fa93c4c4b05e04e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1064 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00580", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e0d3", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0d3", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00736", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0d5", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb8024fa93c4c4b05e0d3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e052", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e052", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e054", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66cbb8024fa93c4c4b05e052", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e056", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb8024fa93c4c4b05e052", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e058", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "parentId": "66cbb8024fa93c4c4b05e052", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00330", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e0d7", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0d7", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00773", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0d9", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb8024fa93c4c4b05e0d7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e05a", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e05a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e05c", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8024fa93c4c4b05e05a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e05e", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb8024fa93c4c4b05e05a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Test_for_export_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0db", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66cbb8024fa93c4c4b05e0d7", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e060", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e060", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e062", + "_tpl": "590de7e986f7741b096e5f32", + "parentId": "66cbb8024fa93c4c4b05e060", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e064", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbb8024fa93c4c4b05e060", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e066", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8024fa93c4c4b05e060", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1078 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e068", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "66cbb8024fa93c4c4b05e060", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e06a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8024fa93c4c4b05e060", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 709 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00660", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e0dd", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0dd", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00402", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0df", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66cbb8024fa93c4c4b05e0dd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e06c", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e06c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e06e", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb8024fa93c4c4b05e06c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00721", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0e1", - "_tpl": "5a6b5e468dc32e001207faf5", - "parentId": "66cbb8024fa93c4c4b05e0dd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e070", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e070", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e072", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbb8024fa93c4c4b05e070", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e074", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8024fa93c4c4b05e070", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e076", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "parentId": "66cbb8024fa93c4c4b05e070", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00327", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e0e3", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0e3", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00275", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0e5", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb8024fa93c4c4b05e0e3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e078", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e078", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e07a", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66cbb8024fa93c4c4b05e078", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb8024fa93c4c4b05e0e7", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb8024fa93c4c4b05e0e3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00166", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0e9", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0e9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00345", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0eb", - "_tpl": "5da46e3886f774653b7a83fe", - "parentId": "66cbb8024fa93c4c4b05e0e9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00165", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0ed", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0ed", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0ef", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8024fa93c4c4b05e0ed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e07c", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e07c", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e07e", + "_tpl": "57ac965c24597706be5f975c", + "parentId": "66cbb8024fa93c4c4b05e07c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e080", + "_tpl": "5addbfd15acfc40015621bde", + "parentId": "66cbb8024fa93c4c4b05e07c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e082", + "_tpl": "5d2dc3e548f035404a1a4798", + "parentId": "66cbb8024fa93c4c4b05e07c", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e083", + "_tpl": "5e81c3cbac2bb513793cdc75", + "parentId": "66cbb8024fa93c4c4b05e07c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8024fa93c4c4b05e084", + "_tpl": "5e81c519cb2b95385c177551", + "parentId": "66cbb8024fa93c4c4b05e083", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8024fa93c4c4b05e085", + "_tpl": "5e81c6bf763d9f754677beff", + "parentId": "66cbb8024fa93c4c4b05e083", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8024fa93c4c4b05e086", + "_tpl": "5e81edc13397a21db957f6a1", + "parentId": "66cbb8024fa93c4c4b05e083", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8024fa93c4c4b05e087", + "_tpl": "5e81ee4dcb2b95385c177582", + "parentId": "66cbb8024fa93c4c4b05e086", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8024fa93c4c4b05e088", + "_tpl": "5e81ee213397a21db957f6a6", + "parentId": "66cbb8024fa93c4c4b05e086", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8024fa93c4c4b05e089", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "66cbb8024fa93c4c4b05e083", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8024fa93c4c4b05e08d", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbb8024fa93c4c4b05e089", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2.0 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e08a", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "parentId": "66cbb8024fa93c4c4b05e083", + "slotId": "mod_trigger" + }, + { + "_id": "66cbb8024fa93c4c4b05e08b", + "_tpl": "5e81c550763d9f754677befd", + "parentId": "66cbb8024fa93c4c4b05e083", + "slotId": "mod_hammer" + }, + { + "_id": "66cbb8024fa93c4c4b05e08c", + "_tpl": "5e81c539cb2b95385c177553", + "parentId": "66cbb8024fa93c4c4b05e083", + "slotId": "mod_catch" } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00164", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0f1", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0f1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00686", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0f3", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb8024fa93c4c4b05e0f1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00163", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8024fa93c4c4b05e0f5", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0f5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0f7", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8024fa93c4c4b05e0f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e08f", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e08f", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e091", + "_tpl": "5c87a07c2e2216001219d4a2", + "parentId": "66cbb8024fa93c4c4b05e08f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e093", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbb8024fa93c4c4b05e08f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e095", + "_tpl": "648ae3e356c6310a830fc291", + "parentId": "66cbb8024fa93c4c4b05e08f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e097", + "_tpl": "5c87ca002e221600114cb150", + "parentId": "66cbb8024fa93c4c4b05e08f", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00593", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8024fa93c4c4b05e0f9", - "Items": [ - { - "_id": "66cbb8024fa93c4c4b05e0f9", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00338", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0fb", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66cbb8024fa93c4c4b05e0f9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e099", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e099", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e09b", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb8024fa93c4c4b05e099", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00354", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0fd", - "_tpl": "60b52e5bc7d8103275739d67", - "parentId": "66cbb8024fa93c4c4b05e0f9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e09d", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e09d", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e09f", + "_tpl": "5c0919b50db834001b7ce3b9", + "parentId": "66cbb8024fa93c4c4b05e09d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00318", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8024fa93c4c4b05e0ff", - "_tpl": "5d6e68e6a4b9361c140bcfe0", - "parentId": "66cbb8024fa93c4c4b05e0f9", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e0a1", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0a1", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 8 + { + "_id": "66cbb8024fa93c4c4b05e0a3", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb8024fa93c4c4b05e0a1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00182", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e101", - "_tpl": "5bed625c0db834001c062946", - "parentId": "66cbb8024fa93c4c4b05e0f9", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0a5", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0a5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e0a7", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8024fa93c4c4b05e0a5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00181", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e103", - "_tpl": "5fc0f9cbd6fa9c00c571bb90", - "parentId": "66cbb8024fa93c4c4b05e0f9", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0a9", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0a9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0ab", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb8024fa93c4c4b05e0a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00692", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e105", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e105", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00180", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e107", - "_tpl": "5bb20e70d4351e0035629f8f", - "parentId": "66cbb8034fa93c4c4b05e105", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0ad", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0ad", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e0af", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb8024fa93c4c4b05e0ad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00179", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e109", - "_tpl": "626becf9582c3e319310b837", - "parentId": "66cbb8034fa93c4c4b05e105", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0b1", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0b1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e0b3", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbb8024fa93c4c4b05e0b1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00467", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e10b", - "_tpl": "5d0a3e8cd7ad1a6f6a3d35bd", - "parentId": "66cbb8034fa93c4c4b05e105", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e0b5", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0b5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0b7", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb8024fa93c4c4b05e0b5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e0b9", + "_tpl": "5e2af02c86f7746d420957d4", + "parentId": "66cbb8024fa93c4c4b05e0b5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00323", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e10c", - "_tpl": "5e81c3cbac2bb513793cdc75", - "parentId": "66cbb8034fa93c4c4b05e105", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e0bb", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0bb", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb8024fa93c4c4b05e0bd", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8024fa93c4c4b05e0bb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00214", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e10d", - "_tpl": "5e81c519cb2b95385c177551", - "parentId": "66cbb8034fa93c4c4b05e10c", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05e10e", - "_tpl": "5e81c6bf763d9f754677beff", - "parentId": "66cbb8034fa93c4c4b05e10c", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e10f", - "_tpl": "5e81edc13397a21db957f6a1", - "parentId": "66cbb8034fa93c4c4b05e10c", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0bf", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0bf", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0c1", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8024fa93c4c4b05e0bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00213", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e110", - "_tpl": "5e81ee4dcb2b95385c177582", - "parentId": "66cbb8034fa93c4c4b05e10f", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e111", - "_tpl": "5e81ee213397a21db957f6a6", - "parentId": "66cbb8034fa93c4c4b05e10f", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb8034fa93c4c4b05e112", - "_tpl": "5e81c4ca763d9f754677befa", - "parentId": "66cbb8034fa93c4c4b05e10c", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05e116", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66cbb8034fa93c4c4b05e112", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0c3", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0c3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0c5", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8024fa93c4c4b05e0c3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00212", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e113", - "_tpl": "5e81c6a2ac2bb513793cdc7f", - "parentId": "66cbb8034fa93c4c4b05e10c", - "slotId": "mod_trigger" - }, - { - "_id": "66cbb8034fa93c4c4b05e114", - "_tpl": "5e81c550763d9f754677befd", - "parentId": "66cbb8034fa93c4c4b05e10c", - "slotId": "mod_hammer" - }, - { - "_id": "66cbb8034fa93c4c4b05e115", - "_tpl": "5e81c539cb2b95385c177553", - "parentId": "66cbb8034fa93c4c4b05e10c", - "slotId": "mod_catch" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e118", - "_tpl": "5de8e8dafd6b4e6e2276dc32", - "parentId": "66cbb8034fa93c4c4b05e105", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0c7", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0c7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0c9", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8024fa93c4c4b05e0c7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00535", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e11a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e11a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00211", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e11c", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e11a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00300", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e11e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e11e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e120", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05e11e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0cb", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0cb", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0cd", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "parentId": "66cbb8024fa93c4c4b05e0cb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00518", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e122", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e122", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00321", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e124", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8034fa93c4c4b05e122", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00310", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e126", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e126", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e128", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb8034fa93c4c4b05e126", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e0cf", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0cf", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0d1", + "_tpl": "62a5c333ec21e50cad3b5dc6", + "parentId": "66cbb8024fa93c4c4b05e0cf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00492", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e12a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e12a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00580", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e12c", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbb8034fa93c4c4b05e12a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e12e", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb8034fa93c4c4b05e12a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e0d3", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0d3", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0d5", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb8024fa93c4c4b05e0d3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00820", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e130", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e130", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00330", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e132", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbb8034fa93c4c4b05e130", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e134", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05e130", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e0d7", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0d7", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e136", - "_tpl": "5d63d33b86f7746ea9275524", - "parentId": "66cbb8034fa93c4c4b05e130", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e0d9", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb8024fa93c4c4b05e0d7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0db", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66cbb8024fa93c4c4b05e0d7", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00911", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e138", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e138", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e139", - "_tpl": "59e7711e86f7746cae05fbe1", - "parentId": "66cbb8034fa93c4c4b05e138", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e13a", - "_tpl": "657ba50c23918923cb0df56c", - "parentId": "66cbb8034fa93c4c4b05e139", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb8034fa93c4c4b05e13b", - "_tpl": "657ba5439ba22f103e08139f", - "parentId": "66cbb8034fa93c4c4b05e139", - "slotId": "Helmet_back" + { + "Id": "container_Reserve_Base_DesignStuff_00660", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e13c", - "_tpl": "657ba57af58ba5a62501079e", - "parentId": "66cbb8034fa93c4c4b05e139", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00340", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e13e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e13e", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e140", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbb8034fa93c4c4b05e13e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e0dd", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0dd", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0df", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66cbb8024fa93c4c4b05e0dd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e0e1", + "_tpl": "5a6b5e468dc32e001207faf5", + "parentId": "66cbb8024fa93c4c4b05e0dd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00327", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e142", - "_tpl": "5bd071d786f7747e707b93a3", - "parentId": "66cbb8034fa93c4c4b05e13e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e0e3", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0e3", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0e5", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb8024fa93c4c4b05e0e3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8024fa93c4c4b05e0e7", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb8024fa93c4c4b05e0e3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00166", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e144", - "_tpl": "620109578d82e67e7911abf2", - "parentId": "66cbb8034fa93c4c4b05e13e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0e9", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0e9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0eb", + "_tpl": "5da46e3886f774653b7a83fe", + "parentId": "66cbb8024fa93c4c4b05e0e9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00670", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e146", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e146", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00165", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e147", - "_tpl": "5bf3e0490db83400196199af", - "parentId": "66cbb8034fa93c4c4b05e146", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0ed", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0ed", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Foldable": { - "Folded": false + { + "_id": "66cbb8024fa93c4c4b05e0ef", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8024fa93c4c4b05e0ed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00164", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e148", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb8034fa93c4c4b05e147", - "slotId": "mod_gas_block" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e149", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "66cbb8034fa93c4c4b05e148", - "slotId": "mod_handguard" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0f1", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0f1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0f3", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb8024fa93c4c4b05e0f1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00163", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e14a", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "66cbb8034fa93c4c4b05e147", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e14b", - "_tpl": "57e3dba62459770f0c32322b", - "parentId": "66cbb8034fa93c4c4b05e147", - "slotId": "mod_pistol_grip" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8024fa93c4c4b05e0f5", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0f5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0f7", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8024fa93c4c4b05e0f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00593", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e14c", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "66cbb8034fa93c4c4b05e147", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e14d", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "66cbb8034fa93c4c4b05e147", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05e14e", - "_tpl": "5ab626e4d8ce87272e4c6e43", - "parentId": "66cbb8034fa93c4c4b05e147", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05e14f", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb8034fa93c4c4b05e147", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05e150", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8034fa93c4c4b05e14f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 26.0 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00576", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e152", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e152", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8024fa93c4c4b05e0f9", + "Items": [ + { + "_id": "66cbb8024fa93c4c4b05e0f9", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0fb", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66cbb8024fa93c4c4b05e0f9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0fd", + "_tpl": "60b52e5bc7d8103275739d67", + "parentId": "66cbb8024fa93c4c4b05e0f9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8024fa93c4c4b05e0ff", + "_tpl": "5d6e68e6a4b9361c140bcfe0", + "parentId": "66cbb8024fa93c4c4b05e0f9", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e101", + "_tpl": "5bed625c0db834001c062946", + "parentId": "66cbb8024fa93c4c4b05e0f9", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e103", + "_tpl": "5fc0f9cbd6fa9c00c571bb90", + "parentId": "66cbb8024fa93c4c4b05e0f9", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e154", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e154", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00692", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e156", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb8034fa93c4c4b05e154", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e158", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e158", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e15a", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05e158", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e105", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e105", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e107", + "_tpl": "5bb20e70d4351e0035629f8f", + "parentId": "66cbb8034fa93c4c4b05e105", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e109", + "_tpl": "626becf9582c3e319310b837", + "parentId": "66cbb8034fa93c4c4b05e105", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e10b", + "_tpl": "5d0a3e8cd7ad1a6f6a3d35bd", + "parentId": "66cbb8034fa93c4c4b05e105", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e10c", + "_tpl": "5e81c3cbac2bb513793cdc75", + "parentId": "66cbb8034fa93c4c4b05e105", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05e10d", + "_tpl": "5e81c519cb2b95385c177551", + "parentId": "66cbb8034fa93c4c4b05e10c", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05e10e", + "_tpl": "5e81c6bf763d9f754677beff", + "parentId": "66cbb8034fa93c4c4b05e10c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e10f", + "_tpl": "5e81edc13397a21db957f6a1", + "parentId": "66cbb8034fa93c4c4b05e10c", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e110", + "_tpl": "5e81ee4dcb2b95385c177582", + "parentId": "66cbb8034fa93c4c4b05e10f", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e111", + "_tpl": "5e81ee213397a21db957f6a6", + "parentId": "66cbb8034fa93c4c4b05e10f", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8034fa93c4c4b05e112", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "66cbb8034fa93c4c4b05e10c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e116", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66cbb8034fa93c4c4b05e112", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e113", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "parentId": "66cbb8034fa93c4c4b05e10c", + "slotId": "mod_trigger" + }, + { + "_id": "66cbb8034fa93c4c4b05e114", + "_tpl": "5e81c550763d9f754677befd", + "parentId": "66cbb8034fa93c4c4b05e10c", + "slotId": "mod_hammer" + }, + { + "_id": "66cbb8034fa93c4c4b05e115", + "_tpl": "5e81c539cb2b95385c177553", + "parentId": "66cbb8034fa93c4c4b05e10c", + "slotId": "mod_catch" + }, + { + "_id": "66cbb8034fa93c4c4b05e118", + "_tpl": "5de8e8dafd6b4e6e2276dc32", + "parentId": "66cbb8034fa93c4c4b05e105", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e15c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e15c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00535", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e15e", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e15c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e160", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e160", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e162", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb8034fa93c4c4b05e160", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 77 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e11a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e11a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e11c", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e11a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00278", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e164", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e164", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00300", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e166", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66cbb8034fa93c4c4b05e164", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e168", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbb8034fa93c4c4b05e164", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e11e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e11e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e120", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05e11e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00134", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e16a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e16a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00518", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e16c", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e16a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00133", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e16e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e16e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e170", - "_tpl": "5bc9b9ecd4351e3bac122519", - "parentId": "66cbb8034fa93c4c4b05e16e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e122", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e122", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e124", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8034fa93c4c4b05e122", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00132", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e172", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e172", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00310", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e174", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "66cbb8034fa93c4c4b05e172", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00131", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e176", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e176", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e178", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05e176", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e126", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e126", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e128", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb8034fa93c4c4b05e126", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00760", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e17a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e17a", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00492", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e17c", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb8034fa93c4c4b05e17a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00271", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e17e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e17e", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e180", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e17e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e12a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e12a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e182", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb8034fa93c4c4b05e17e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e12c", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbb8034fa93c4c4b05e12a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e12e", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb8034fa93c4c4b05e12a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00820", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e184", - "_tpl": "57347d90245977448f7b7f65", - "parentId": "66cbb8034fa93c4c4b05e17e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e186", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb8034fa93c4c4b05e17e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e130", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e130", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e132", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbb8034fa93c4c4b05e130", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e134", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05e130", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e136", + "_tpl": "5d63d33b86f7746ea9275524", + "parentId": "66cbb8034fa93c4c4b05e130", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00654", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e188", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e188", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00911", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e18a", - "_tpl": "5c878ebb2e2216001219d48a", - "parentId": "66cbb8034fa93c4c4b05e188", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e18c", - "_tpl": "5a7dbfc1159bd40016548fde", - "parentId": "66cbb8034fa93c4c4b05e188", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e138", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e138", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e18e", - "_tpl": "6272874a6c47bd74f92e2087", - "parentId": "66cbb8034fa93c4c4b05e188", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e139", + "_tpl": "59e7711e86f7746cae05fbe1", + "parentId": "66cbb8034fa93c4c4b05e138", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e13a", + "_tpl": "657ba50c23918923cb0df56c", + "parentId": "66cbb8034fa93c4c4b05e139", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb8034fa93c4c4b05e13b", + "_tpl": "657ba5439ba22f103e08139f", + "parentId": "66cbb8034fa93c4c4b05e139", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb8034fa93c4c4b05e13c", + "_tpl": "657ba57af58ba5a62501079e", + "parentId": "66cbb8034fa93c4c4b05e139", + "slotId": "Helmet_ears" } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00342", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e190", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e190", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00340", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e191", - "_tpl": "644674a13d52156624001fbc", - "parentId": "66cbb8034fa93c4c4b05e190", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e13e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e13e", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66cbb8034fa93c4c4b05e140", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbb8034fa93c4c4b05e13e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e142", + "_tpl": "5bd071d786f7747e707b93a3", + "parentId": "66cbb8034fa93c4c4b05e13e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 }, - "Foldable": { - "Folded": false + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e144", + "_tpl": "620109578d82e67e7911abf2", + "parentId": "66cbb8034fa93c4c4b05e13e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00670", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e192", - "_tpl": "6450ec2e7da7133e5a09ca96", - "parentId": "66cbb8034fa93c4c4b05e191", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e198", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbb8034fa93c4c4b05e192", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 19.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e146", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e146", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e147", + "_tpl": "5bf3e0490db83400196199af", + "parentId": "66cbb8034fa93c4c4b05e146", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05e148", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb8034fa93c4c4b05e147", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05e149", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "66cbb8034fa93c4c4b05e148", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05e14a", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "66cbb8034fa93c4c4b05e147", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05e14b", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "66cbb8034fa93c4c4b05e147", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e14c", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "66cbb8034fa93c4c4b05e147", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e14d", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "66cbb8034fa93c4c4b05e147", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e14e", + "_tpl": "5ab626e4d8ce87272e4c6e43", + "parentId": "66cbb8034fa93c4c4b05e147", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05e14f", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb8034fa93c4c4b05e147", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e150", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8034fa93c4c4b05e14f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 26.0 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00576", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e193", - "_tpl": "6450f21a3d52156624001fcf", - "parentId": "66cbb8034fa93c4c4b05e191", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05e194", - "_tpl": "6451167ad4928d46d30be3fd", - "parentId": "66cbb8034fa93c4c4b05e191", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb8034fa93c4c4b05e195", - "_tpl": "645122f6d4928d46d30be3ff", - "parentId": "66cbb8034fa93c4c4b05e191", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05e196", - "_tpl": "64527a263d52156624001fd7", - "parentId": "66cbb8034fa93c4c4b05e195", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05e197", - "_tpl": "644675573d52156624001fc9", - "parentId": "66cbb8034fa93c4c4b05e195", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e19a", - "_tpl": "5c07a8770db8340023300450", - "parentId": "66cbb8034fa93c4c4b05e190", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e152", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e152", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00566", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e19c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e19c", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e19e", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb8034fa93c4c4b05e19c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1a0", - "_tpl": "5e54f6af86f7742199090bf3", - "parentId": "66cbb8034fa93c4c4b05e19c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e154", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e154", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e156", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb8034fa93c4c4b05e154", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1a2", - "_tpl": "5e54f6af86f7742199090bf3", - "parentId": "66cbb8034fa93c4c4b05e19c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e158", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e158", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e15a", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05e158", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1a4", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb8034fa93c4c4b05e19c", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e15c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e15c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e15e", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e15c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1a6", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbb8034fa93c4c4b05e19c", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e160", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e160", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e162", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb8034fa93c4c4b05e160", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 77 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00278", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1a8", - "_tpl": "60098b1705871270cd5352a1", - "parentId": "66cbb8034fa93c4c4b05e19c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e164", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e164", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e166", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66cbb8034fa93c4c4b05e164", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e168", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbb8034fa93c4c4b05e164", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00134", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1aa", - "_tpl": "57347d692459774491567cf1", - "parentId": "66cbb8034fa93c4c4b05e19c", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e16a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e16a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e16c", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e16a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00133", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1ac", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbb8034fa93c4c4b05e19c", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e16e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e16e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e170", + "_tpl": "5bc9b9ecd4351e3bac122519", + "parentId": "66cbb8034fa93c4c4b05e16e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00463", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e1ae", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1ae", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00132", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1b0", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb8034fa93c4c4b05e1ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e172", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e172", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e174", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "66cbb8034fa93c4c4b05e172", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00131", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1b2", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e1ae", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e176", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e176", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e178", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05e176", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00760", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1b4", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e1ae", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00813", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e1b6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1b6", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1b8", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e1b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e17a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e17a", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e17c", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb8034fa93c4c4b05e17a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00146", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1ba", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1ba", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00271", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1bc", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05e1ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00145", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1be", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1be", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1c0", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb8034fa93c4c4b05e1be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 59 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e17e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e17e", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e180", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e17e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e182", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb8034fa93c4c4b05e17e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e184", + "_tpl": "57347d90245977448f7b7f65", + "parentId": "66cbb8034fa93c4c4b05e17e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e186", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb8034fa93c4c4b05e17e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00144", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1c2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1c2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00654", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1c4", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e1c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00143", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1c6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1c6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1c8", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e1c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e188", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e188", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e18a", + "_tpl": "5c878ebb2e2216001219d48a", + "parentId": "66cbb8034fa93c4c4b05e188", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e18c", + "_tpl": "5a7dbfc1159bd40016548fde", + "parentId": "66cbb8034fa93c4c4b05e188", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e18e", + "_tpl": "6272874a6c47bd74f92e2087", + "parentId": "66cbb8034fa93c4c4b05e188", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00861", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e1ca", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1ca", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00342", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1cc", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05e1ca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00106", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1ce", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1ce", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1d0", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e1ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e190", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e190", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e191", + "_tpl": "644674a13d52156624001fbc", + "parentId": "66cbb8034fa93c4c4b05e190", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05e192", + "_tpl": "6450ec2e7da7133e5a09ca96", + "parentId": "66cbb8034fa93c4c4b05e191", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e198", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbb8034fa93c4c4b05e192", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 19.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e193", + "_tpl": "6450f21a3d52156624001fcf", + "parentId": "66cbb8034fa93c4c4b05e191", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e194", + "_tpl": "6451167ad4928d46d30be3fd", + "parentId": "66cbb8034fa93c4c4b05e191", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb8034fa93c4c4b05e195", + "_tpl": "645122f6d4928d46d30be3ff", + "parentId": "66cbb8034fa93c4c4b05e191", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05e196", + "_tpl": "64527a263d52156624001fd7", + "parentId": "66cbb8034fa93c4c4b05e195", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05e197", + "_tpl": "644675573d52156624001fc9", + "parentId": "66cbb8034fa93c4c4b05e195", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05e19a", + "_tpl": "5c07a8770db8340023300450", + "parentId": "66cbb8034fa93c4c4b05e190", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00105", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1d2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1d2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00566", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1d4", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66cbb8034fa93c4c4b05e1d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00104", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1d6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1d6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1d8", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05e1d6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e19c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e19c", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e19e", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb8034fa93c4c4b05e19c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1a0", + "_tpl": "5e54f6af86f7742199090bf3", + "parentId": "66cbb8034fa93c4c4b05e19c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1a2", + "_tpl": "5e54f6af86f7742199090bf3", + "parentId": "66cbb8034fa93c4c4b05e19c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1a4", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb8034fa93c4c4b05e19c", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1a6", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbb8034fa93c4c4b05e19c", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1a8", + "_tpl": "60098b1705871270cd5352a1", + "parentId": "66cbb8034fa93c4c4b05e19c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1aa", + "_tpl": "57347d692459774491567cf1", + "parentId": "66cbb8034fa93c4c4b05e19c", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1ac", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbb8034fa93c4c4b05e19c", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1da", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1da", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00463", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1dc", - "_tpl": "5bc9c049d4351e44f824d360", - "parentId": "66cbb8034fa93c4c4b05e1da", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00268", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1de", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1de", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1e0", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb8034fa93c4c4b05e1de", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e1ae", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1ae", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e1e2", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbb8034fa93c4c4b05e1de", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e1b0", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb8034fa93c4c4b05e1ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1b2", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e1ae", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e1b4", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e1ae", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00813", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1e4", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb8034fa93c4c4b05e1de", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e1b6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1b6", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e1b8", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e1b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb8034fa93c4c4b05e1e6", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb8034fa93c4c4b05e1de", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00382", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e1e8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1e8", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00146", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1ea", - "_tpl": "59985a6c86f77414ec448d17", - "parentId": "66cbb8034fa93c4c4b05e1e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1ed", - "_tpl": "5649ed104bdc2d3d1c8b458b", - "parentId": "66cbb8034fa93c4c4b05e1e8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1ba", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1ba", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e1bc", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05e1ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00145", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1ee", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb8034fa93c4c4b05e1ed", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1f0", - "_tpl": "5bffcf7a0db83400232fea79", - "parentId": "66cbb8034fa93c4c4b05e1e8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1be", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1be", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1c0", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb8034fa93c4c4b05e1be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 59 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1f2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1f2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00144", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1f4", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05e1f2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00053", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1f6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1f6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1f8", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e1f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1c2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1c2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1c4", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e1c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1fa", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1fa", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00143", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e1fc", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb8034fa93c4c4b05e1fa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00051", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e1fe", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e1fe", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e200", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb8034fa93c4c4b05e1fe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1c6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1c6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1c8", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e1c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00114", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e202", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e202", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00861", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e204", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e202", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00113", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e206", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e206", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e208", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb8034fa93c4c4b05e206", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e1ca", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1ca", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1cc", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05e1ca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00112", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e20a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e20a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00106", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e20c", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb8034fa93c4c4b05e20a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00111", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e20e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e20e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e210", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e20e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1ce", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1ce", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1d0", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e1ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00250", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e212", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e212", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00105", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e214", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05e212", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00249", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e216", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e216", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e218", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05e216", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1d2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1d2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1d4", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66cbb8034fa93c4c4b05e1d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00248", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e21a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e21a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00104", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e21c", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb8034fa93c4c4b05e21a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00247", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e21e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e21e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e220", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05e21e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1d6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1d6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1d8", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05e1d6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00584", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e222", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e222", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e224", - "_tpl": "5c6c2c9c2e2216000f2002e4", - "parentId": "66cbb8034fa93c4c4b05e222", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e226", - "_tpl": "5c066ef40db834001966a595", - "parentId": "66cbb8034fa93c4c4b05e222", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1da", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1da", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e1dc", + "_tpl": "5bc9c049d4351e44f824d360", + "parentId": "66cbb8034fa93c4c4b05e1da", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00268", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e228", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66cbb8034fa93c4c4b05e222", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e22a", - "_tpl": "5c5db6742e2216000f1b2852", - "parentId": "66cbb8034fa93c4c4b05e222", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1de", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1de", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e22c", - "_tpl": "58d268fc86f774111273f8c2", - "parentId": "66cbb8034fa93c4c4b05e222", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e1e0", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb8034fa93c4c4b05e1de", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e22e", - "_tpl": "6076c1b9f2cb2e02a42acedc", - "parentId": "66cbb8034fa93c4c4b05e222", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e1e2", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbb8034fa93c4c4b05e1de", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1e4", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb8034fa93c4c4b05e1de", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1e6", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb8034fa93c4c4b05e1de", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00302", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e230", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e230", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00382", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e232", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e230", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00359", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e234", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e234", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e236", - "_tpl": "5947c73886f7747701588af5", - "parentId": "66cbb8034fa93c4c4b05e234", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e1e8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1e8", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e238", - "_tpl": "591af28e86f77414a27a9e1d", - "parentId": "66cbb8034fa93c4c4b05e234", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e1ea", + "_tpl": "59985a6c86f77414ec448d17", + "parentId": "66cbb8034fa93c4c4b05e1e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e239", - "_tpl": "59e6687d86f77411d949b251", - "parentId": "66cbb8034fa93c4c4b05e234", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e1ed", + "_tpl": "5649ed104bdc2d3d1c8b458b", + "parentId": "66cbb8034fa93c4c4b05e1e8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1ee", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb8034fa93c4c4b05e1ed", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb8034fa93c4c4b05e1f0", + "_tpl": "5bffcf7a0db83400232fea79", + "parentId": "66cbb8034fa93c4c4b05e1e8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e23a", - "_tpl": "59e649f986f77411d949b246", - "parentId": "66cbb8034fa93c4c4b05e239", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb8034fa93c4c4b05e23b", - "_tpl": "59e898ee86f77427614bd225", - "parentId": "66cbb8034fa93c4c4b05e23a", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e23c", - "_tpl": "59e8a00d86f7742ad93b569c", - "parentId": "66cbb8034fa93c4c4b05e239", - "slotId": "mod_muzzle" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1f2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1f2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1f4", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05e1f2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00053", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e23d", - "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "66cbb8034fa93c4c4b05e239", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e23e", - "_tpl": "59e6449086f7746c9f75e822", - "parentId": "66cbb8034fa93c4c4b05e239", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1f6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1f6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1f8", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e1f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e23f", - "_tpl": "59e8977386f77415a553c453", - "parentId": "66cbb8034fa93c4c4b05e239", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e240", - "_tpl": "59e89d0986f77427600d226e", - "parentId": "66cbb8034fa93c4c4b05e239", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1fa", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1fa", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e1fc", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb8034fa93c4c4b05e1fa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00051", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e241", - "_tpl": "5b1fd4e35acfc40018633c39", - "parentId": "66cbb8034fa93c4c4b05e239", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e242", - "_tpl": "59e6542b86f77411dc52a77a", - "parentId": "66cbb8034fa93c4c4b05e241", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e1fe", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e1fe", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e200", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb8034fa93c4c4b05e1fe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00114", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e244", - "_tpl": "63d3ce281fe77d0f2801859e", - "parentId": "66cbb8034fa93c4c4b05e234", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e202", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e202", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e204", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e202", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00113", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e246", - "_tpl": "5bb20df1d4351e00347787d5", - "parentId": "66cbb8034fa93c4c4b05e234", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e206", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e206", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e208", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb8034fa93c4c4b05e206", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00798", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e248", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e248", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00112", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e24a", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb8034fa93c4c4b05e248", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e20a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e20a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e20c", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb8034fa93c4c4b05e20a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00454", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e24c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e24c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00111", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e24e", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb8034fa93c4c4b05e24c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e20e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e20e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e210", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e20e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00250", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e250", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb8034fa93c4c4b05e24c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e212", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e212", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e214", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05e212", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00249", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e252", - "_tpl": "59e35abd86f7741778269d82", - "parentId": "66cbb8034fa93c4c4b05e24c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e216", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e216", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e218", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05e216", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00026", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e254", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e254", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00248", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e256", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb8034fa93c4c4b05e254", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e21a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e21a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e21c", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb8034fa93c4c4b05e21a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00025", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e258", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e258", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00247", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e25a", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05e258", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e21e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e21e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e220", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05e21e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e25c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e25c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00584", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e25e", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb8034fa93c4c4b05e25c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e260", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e260", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e262", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e260", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e222", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e222", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e224", + "_tpl": "5c6c2c9c2e2216000f2002e4", + "parentId": "66cbb8034fa93c4c4b05e222", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e226", + "_tpl": "5c066ef40db834001966a595", + "parentId": "66cbb8034fa93c4c4b05e222", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e228", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66cbb8034fa93c4c4b05e222", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e22a", + "_tpl": "5c5db6742e2216000f1b2852", + "parentId": "66cbb8034fa93c4c4b05e222", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e22c", + "_tpl": "58d268fc86f774111273f8c2", + "parentId": "66cbb8034fa93c4c4b05e222", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e22e", + "_tpl": "6076c1b9f2cb2e02a42acedc", + "parentId": "66cbb8034fa93c4c4b05e222", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00258", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e264", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e264", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00302", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e266", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05e264", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00257", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e268", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e268", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e26a", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05e268", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e230", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e230", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e232", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e230", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00256", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e26c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e26c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00359", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e26e", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb8034fa93c4c4b05e26c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00255", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e270", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e270", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e272", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e270", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e234", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e234", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e236", + "_tpl": "5947c73886f7747701588af5", + "parentId": "66cbb8034fa93c4c4b05e234", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e238", + "_tpl": "591af28e86f77414a27a9e1d", + "parentId": "66cbb8034fa93c4c4b05e234", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e239", + "_tpl": "59e6687d86f77411d949b251", + "parentId": "66cbb8034fa93c4c4b05e234", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05e23a", + "_tpl": "59e649f986f77411d949b246", + "parentId": "66cbb8034fa93c4c4b05e239", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05e23b", + "_tpl": "59e898ee86f77427614bd225", + "parentId": "66cbb8034fa93c4c4b05e23a", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05e23c", + "_tpl": "59e8a00d86f7742ad93b569c", + "parentId": "66cbb8034fa93c4c4b05e239", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05e23d", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "66cbb8034fa93c4c4b05e239", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e23e", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "66cbb8034fa93c4c4b05e239", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e23f", + "_tpl": "59e8977386f77415a553c453", + "parentId": "66cbb8034fa93c4c4b05e239", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e240", + "_tpl": "59e89d0986f77427600d226e", + "parentId": "66cbb8034fa93c4c4b05e239", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05e241", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "66cbb8034fa93c4c4b05e239", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e242", + "_tpl": "59e6542b86f77411dc52a77a", + "parentId": "66cbb8034fa93c4c4b05e241", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e244", + "_tpl": "63d3ce281fe77d0f2801859e", + "parentId": "66cbb8034fa93c4c4b05e234", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e246", + "_tpl": "5bb20df1d4351e00347787d5", + "parentId": "66cbb8034fa93c4c4b05e234", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00042", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e274", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e274", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00798", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e276", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e274", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00041", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e278", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e278", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e27a", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb8034fa93c4c4b05e278", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e248", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e248", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e24a", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb8034fa93c4c4b05e248", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e27c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e27c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00454", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e27e", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb8034fa93c4c4b05e27c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 63 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e24c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e24c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e24e", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb8034fa93c4c4b05e24c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e250", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb8034fa93c4c4b05e24c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e252", + "_tpl": "59e35abd86f7741778269d82", + "parentId": "66cbb8034fa93c4c4b05e24c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e280", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e280", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00026", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e282", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb8034fa93c4c4b05e280", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e254", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e254", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e256", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb8034fa93c4c4b05e254", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00848", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e284", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e284", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00025", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e286", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05e284", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e258", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e258", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e25a", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05e258", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e288", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbb8034fa93c4c4b05e284", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e25c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e25c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e25e", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb8034fa93c4c4b05e25c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00295", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e28a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e28a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e28b", - "_tpl": "5c06c6a80db834001b735491", - "parentId": "66cbb8034fa93c4c4b05e28a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e28c", - "_tpl": "6571199565daf6aa960c9b10", - "parentId": "66cbb8034fa93c4c4b05e28b", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb8034fa93c4c4b05e28d", - "_tpl": "657119d49eb8c145180dbb95", - "parentId": "66cbb8034fa93c4c4b05e28b", - "slotId": "Helmet_back" - }, - { - "_id": "66cbb8034fa93c4c4b05e28e", - "_tpl": "657119fea330b8c9060f7afc", - "parentId": "66cbb8034fa93c4c4b05e28b", - "slotId": "Helmet_ears" - }, - { - "_id": "66cbb8034fa93c4c4b05e290", - "_tpl": "5d6e695fa4b936359b35d852", - "parentId": "66cbb8034fa93c4c4b05e28a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e260", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e260", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 10 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e292", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "66cbb8034fa93c4c4b05e28a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 4 + { + "_id": "66cbb8034fa93c4c4b05e262", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e260", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00384", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e294", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e294", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00258", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e296", - "_tpl": "5cf79389d7f00c10941a0c4d", - "parentId": "66cbb8034fa93c4c4b05e294", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00496", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e298", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e298", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e29a", - "_tpl": "5c12688486f77426843c7d32", - "parentId": "66cbb8034fa93c4c4b05e298", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e264", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e264", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e29c", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb8034fa93c4c4b05e298", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e266", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05e264", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00379", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e29e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e29e", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00257", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2a0", - "_tpl": "5c471c2d2e22164bef5d077f", - "parentId": "66cbb8034fa93c4c4b05e29e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00377", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e2a2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2a2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2a4", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb8034fa93c4c4b05e2a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e268", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e268", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e2a6", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05e2a2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e26a", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05e268", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00504", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e2a8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2a8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00256", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2aa", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e2a8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e2ac", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2ac", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2ae", - "_tpl": "5d947d3886f774447b415893", - "parentId": "66cbb8034fa93c4c4b05e2ac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e26c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e26c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e26e", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb8034fa93c4c4b05e26c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00652", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e2b0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2b0", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00255", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2b2", - "_tpl": "5d440b93a4b9364276578d4b", - "parentId": "66cbb8034fa93c4c4b05e2b0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2b3", - "_tpl": "5d2f0d8048f0356c925bc3b0", - "parentId": "66cbb8034fa93c4c4b05e2b0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e270", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e270", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb8034fa93c4c4b05e272", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e270", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00042", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2b4", - "_tpl": "5d2f213448f0355009199284", - "parentId": "66cbb8034fa93c4c4b05e2b3", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2ba", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb8034fa93c4c4b05e2b4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 19.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e274", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e274", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e276", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e274", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00041", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2b5", - "_tpl": "5d2f261548f03576f500e7b7", - "parentId": "66cbb8034fa93c4c4b05e2b3", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05e2b6", - "_tpl": "5d2f259b48f0355a844acd74", - "parentId": "66cbb8034fa93c4c4b05e2b5", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb8034fa93c4c4b05e2b7", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "66cbb8034fa93c4c4b05e2b5", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05e2b8", - "_tpl": "5d2f25bc48f03502573e5d85", - "parentId": "66cbb8034fa93c4c4b05e2b5", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05e2b9", - "_tpl": "5d2f2d5748f03572ec0c0139", - "parentId": "66cbb8034fa93c4c4b05e2b3", - "slotId": "mod_charge" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2bc", - "_tpl": "5b0800175acfc400153aebd4", - "parentId": "66cbb8034fa93c4c4b05e2b0", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e278", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e278", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e27a", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb8034fa93c4c4b05e278", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2be", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66cbb8034fa93c4c4b05e2b0", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2c0", - "_tpl": "5fb655a72b1b027b1f50bd06", - "parentId": "66cbb8034fa93c4c4b05e2b0", - "slotId": "main", - "location": { - "x": 4, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e27c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e27c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e27e", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb8034fa93c4c4b05e27c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 63 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00313", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e2c2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2c2", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2c4", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e2c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00864", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e2c6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2c6", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2c8", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e2c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e280", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e280", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e2ca", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e2c6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e282", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb8034fa93c4c4b05e280", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00862", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e2cc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2cc", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00848", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2ce", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbb8034fa93c4c4b05e2cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2d0", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb8034fa93c4c4b05e2cc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e284", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e284", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e2d2", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb8034fa93c4c4b05e2cc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e286", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05e284", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e288", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbb8034fa93c4c4b05e284", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00126", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e2d4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2d4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00295", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2d6", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb8034fa93c4c4b05e2d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00125", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e2d8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2d8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2da", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05e2d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e28a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e28a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e28b", + "_tpl": "5c06c6a80db834001b735491", + "parentId": "66cbb8034fa93c4c4b05e28a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e28c", + "_tpl": "6571199565daf6aa960c9b10", + "parentId": "66cbb8034fa93c4c4b05e28b", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb8034fa93c4c4b05e28d", + "_tpl": "657119d49eb8c145180dbb95", + "parentId": "66cbb8034fa93c4c4b05e28b", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb8034fa93c4c4b05e28e", + "_tpl": "657119fea330b8c9060f7afc", + "parentId": "66cbb8034fa93c4c4b05e28b", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbb8034fa93c4c4b05e290", + "_tpl": "5d6e695fa4b936359b35d852", + "parentId": "66cbb8034fa93c4c4b05e28a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 10 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e292", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "66cbb8034fa93c4c4b05e28a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 4 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00124", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e2dc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2dc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00384", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2de", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05e2dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00123", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e2e0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2e0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2e2", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05e2e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e294", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e294", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e296", + "_tpl": "5cf79389d7f00c10941a0c4d", + "parentId": "66cbb8034fa93c4c4b05e294", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00577", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e2e4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2e4", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00496", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2e6", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb8034fa93c4c4b05e2e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2e8", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e2e4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e298", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e298", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e2ea", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e2e4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e29a", + "_tpl": "5c12688486f77426843c7d32", + "parentId": "66cbb8034fa93c4c4b05e298", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e29c", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb8034fa93c4c4b05e298", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00379", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2ec", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbb8034fa93c4c4b05e2e4", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2ee", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb8034fa93c4c4b05e2e4", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e29e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e29e", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2a0", + "_tpl": "5c471c2d2e22164bef5d077f", + "parentId": "66cbb8034fa93c4c4b05e29e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00273", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e2f0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2f0", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00377", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2f2", - "_tpl": "5d4041f086f7743cac3f22a7", - "parentId": "66cbb8034fa93c4c4b05e2f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2f4", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbb8034fa93c4c4b05e2f0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e2a2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2a2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2a4", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb8034fa93c4c4b05e2a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e2a6", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05e2a2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00504", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2f6", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbb8034fa93c4c4b05e2f0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e2a8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2a8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e2aa", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e2a8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2f8", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb8034fa93c4c4b05e2f0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e2ac", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2ac", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2ae", + "_tpl": "5d947d3886f774447b415893", + "parentId": "66cbb8034fa93c4c4b05e2ac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00678", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e2fa", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e2fa", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00652", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2fc", - "_tpl": "6194f41f9fb0c665d5490e75", - "parentId": "66cbb8034fa93c4c4b05e2fa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e2b0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2b0", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2b2", + "_tpl": "5d440b93a4b9364276578d4b", + "parentId": "66cbb8034fa93c4c4b05e2b0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2b3", + "_tpl": "5d2f0d8048f0356c925bc3b0", + "parentId": "66cbb8034fa93c4c4b05e2b0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2b4", + "_tpl": "5d2f213448f0355009199284", + "parentId": "66cbb8034fa93c4c4b05e2b3", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e2ba", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb8034fa93c4c4b05e2b4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 19.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2b5", + "_tpl": "5d2f261548f03576f500e7b7", + "parentId": "66cbb8034fa93c4c4b05e2b3", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e2b6", + "_tpl": "5d2f259b48f0355a844acd74", + "parentId": "66cbb8034fa93c4c4b05e2b5", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05e2b7", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "66cbb8034fa93c4c4b05e2b5", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e2b8", + "_tpl": "5d2f25bc48f03502573e5d85", + "parentId": "66cbb8034fa93c4c4b05e2b5", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05e2b9", + "_tpl": "5d2f2d5748f03572ec0c0139", + "parentId": "66cbb8034fa93c4c4b05e2b3", + "slotId": "mod_charge" + }, + { + "_id": "66cbb8034fa93c4c4b05e2bc", + "_tpl": "5b0800175acfc400153aebd4", + "parentId": "66cbb8034fa93c4c4b05e2b0", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2be", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66cbb8034fa93c4c4b05e2b0", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e2c0", + "_tpl": "5fb655a72b1b027b1f50bd06", + "parentId": "66cbb8034fa93c4c4b05e2b0", + "slotId": "main", + "location": { + "x": 4, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00313", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e2fe", - "_tpl": "5a789261c5856700186c65d3", - "parentId": "66cbb8034fa93c4c4b05e2fa", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e2c2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2c2", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e2c4", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e2c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00864", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e300", - "_tpl": "5addbfd15acfc40015621bde", - "parentId": "66cbb8034fa93c4c4b05e2fa", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e2c6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2c6", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2c8", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e2c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2ca", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e2c6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00753", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e302", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e302", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00862", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e304", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbb8034fa93c4c4b05e302", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e2cc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2cc", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e2ce", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbb8034fa93c4c4b05e2cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2d0", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb8034fa93c4c4b05e2cc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2d2", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb8034fa93c4c4b05e2cc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00126", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e306", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb8034fa93c4c4b05e302", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e308", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e308", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e30a", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05e308", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e30c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e30c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e30e", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05e30c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e2d4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2d4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2d6", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb8034fa93c4c4b05e2d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e310", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e310", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00125", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e312", - "_tpl": "61bf7c024770ee6f9c6b8b53", - "parentId": "66cbb8034fa93c4c4b05e310", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e314", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e314", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e316", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbb8034fa93c4c4b05e314", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e2d8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2d8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2da", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05e2d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00479", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e318", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e318", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00124", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e31a", - "_tpl": "57347ca924597744596b4e71", - "parentId": "66cbb8034fa93c4c4b05e318", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e31c", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e318", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e2dc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2dc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e31e", - "_tpl": "5751487e245977207e26a315", - "parentId": "66cbb8034fa93c4c4b05e318", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e2de", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05e2dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e320", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e320", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00123", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e322", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8034fa93c4c4b05e320", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1116 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00530", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e324", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e324", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e326", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66cbb8034fa93c4c4b05e324", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e2e0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2e0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2e2", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05e2e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00948", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e328", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e328", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00577", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e32a", - "_tpl": "56e05b06d2720bb2668b4586", - "parentId": "66cbb8034fa93c4c4b05e328", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e32c", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb8034fa93c4c4b05e328", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e2e4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2e4", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e32e", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb8034fa93c4c4b05e328", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e2e6", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb8034fa93c4c4b05e2e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2e8", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e2e4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2ea", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e2e4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2ec", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbb8034fa93c4c4b05e2e4", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2ee", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb8034fa93c4c4b05e2e4", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00315", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e330", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e330", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00273", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e332", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8034fa93c4c4b05e330", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 738 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00811", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e334", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e334", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e336", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb8034fa93c4c4b05e334", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e2f0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2f0", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e338", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66cbb8034fa93c4c4b05e334", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e2f2", + "_tpl": "5d4041f086f7743cac3f22a7", + "parentId": "66cbb8034fa93c4c4b05e2f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e33a", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e334", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e2f4", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbb8034fa93c4c4b05e2f0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2f6", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbb8034fa93c4c4b05e2f0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e2f8", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb8034fa93c4c4b05e2f0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00561", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e33c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e33c", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00678", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e33e", - "_tpl": "5448fee04bdc2dbc018b4567", - "parentId": "66cbb8034fa93c4c4b05e33c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e340", - "_tpl": "57347d90245977448f7b7f65", - "parentId": "66cbb8034fa93c4c4b05e33c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e2fa", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e2fa", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e342", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbb8034fa93c4c4b05e33c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e2fc", + "_tpl": "6194f41f9fb0c665d5490e75", + "parentId": "66cbb8034fa93c4c4b05e2fa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e344", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbb8034fa93c4c4b05e33c", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e2fe", + "_tpl": "5a789261c5856700186c65d3", + "parentId": "66cbb8034fa93c4c4b05e2fa", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e300", + "_tpl": "5addbfd15acfc40015621bde", + "parentId": "66cbb8034fa93c4c4b05e2fa", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00753", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e346", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb8034fa93c4c4b05e33c", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e348", - "_tpl": "5673de654bdc2d180f8b456d", - "parentId": "66cbb8034fa93c4c4b05e33c", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e302", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e302", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e34a", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbb8034fa93c4c4b05e33c", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e304", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbb8034fa93c4c4b05e302", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e34c", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e33c", - "slotId": "main", - "location": { - "x": 4, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e306", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb8034fa93c4c4b05e302", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00350", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e34e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e34e", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e350", - "_tpl": "657b28d25f444d6dff0c6c77", - "parentId": "66cbb8034fa93c4c4b05e34e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00094", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e352", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e352", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e354", - "_tpl": "5d8e0e0e86f774321140eb56", - "parentId": "66cbb8034fa93c4c4b05e352", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e308", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e308", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e30a", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05e308", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00093", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e356", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e356", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e358", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb8034fa93c4c4b05e356", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e35a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e35a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e35c", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66cbb8034fa93c4c4b05e35a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e30c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e30c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e30e", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05e30c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00091", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e35e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e35e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e360", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8034fa93c4c4b05e35e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e362", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e362", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e364", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e362", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e310", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e310", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e312", + "_tpl": "61bf7c024770ee6f9c6b8b53", + "parentId": "66cbb8034fa93c4c4b05e310", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00109", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e366", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e366", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e368", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e366", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00108", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e36a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e36a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e36c", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05e36a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e314", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e314", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e316", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbb8034fa93c4c4b05e314", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00107", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e36e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e36e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00479", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e370", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05e36e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00665", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e372", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e372", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e374", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbb8034fa93c4c4b05e372", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e318", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e318", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e376", - "_tpl": "58272d7f2459774f6311ddfd", - "parentId": "66cbb8034fa93c4c4b05e372", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e31a", + "_tpl": "57347ca924597744596b4e71", + "parentId": "66cbb8034fa93c4c4b05e318", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e31c", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e318", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e31e", + "_tpl": "5751487e245977207e26a315", + "parentId": "66cbb8034fa93c4c4b05e318", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00288", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e378", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e378", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e37a", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e378", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e37c", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05e378", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e320", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e320", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e322", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8034fa93c4c4b05e320", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1116 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00530", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e37e", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e378", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e380", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05e378", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e324", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e324", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e326", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66cbb8034fa93c4c4b05e324", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00948", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e382", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb8034fa93c4c4b05e378", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e384", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb8034fa93c4c4b05e378", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e328", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e328", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e32a", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "66cbb8034fa93c4c4b05e328", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e32c", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb8034fa93c4c4b05e328", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e32e", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb8034fa93c4c4b05e328", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00766", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e386", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e386", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00315", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e388", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb8034fa93c4c4b05e386", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00317", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e38a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e38a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e38c", - "_tpl": "5b432b2f5acfc4771e1c6622", - "parentId": "66cbb8034fa93c4c4b05e38a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e330", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e330", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e332", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8034fa93c4c4b05e330", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 738 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00514", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e38e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e38e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00811", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e390", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbb8034fa93c4c4b05e38e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e392", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66cbb8034fa93c4c4b05e38e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e334", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e334", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e394", - "_tpl": "5d40419286f774318526545f", - "parentId": "66cbb8034fa93c4c4b05e38e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e336", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb8034fa93c4c4b05e334", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e338", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66cbb8034fa93c4c4b05e334", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e33a", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e334", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00366", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e396", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e396", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00561", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e398", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbb8034fa93c4c4b05e396", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e39a", - "_tpl": "5ede475b549eed7c6d5c18fb", - "parentId": "66cbb8034fa93c4c4b05e396", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e33c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e33c", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e33e", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "66cbb8034fa93c4c4b05e33c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e340", + "_tpl": "57347d90245977448f7b7f65", + "parentId": "66cbb8034fa93c4c4b05e33c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e342", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbb8034fa93c4c4b05e33c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e344", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbb8034fa93c4c4b05e33c", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e346", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb8034fa93c4c4b05e33c", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e348", + "_tpl": "5673de654bdc2d180f8b456d", + "parentId": "66cbb8034fa93c4c4b05e33c", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e34a", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbb8034fa93c4c4b05e33c", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e34c", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e33c", + "slotId": "main", + "location": { + "x": 4, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00186", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e39c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e39c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00350", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e39e", - "_tpl": "62a0a16d0b9d3c46de5b6e97", - "parentId": "66cbb8034fa93c4c4b05e39c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00185", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e3a0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3a0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3a2", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e3a0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e34e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e34e", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e350", + "_tpl": "657b28d25f444d6dff0c6c77", + "parentId": "66cbb8034fa93c4c4b05e34e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00184", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e3a4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3a4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00094", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3a6", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e3a4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00183", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e3a8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3a8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3aa", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66cbb8034fa93c4c4b05e3a8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e352", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e352", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e354", + "_tpl": "5d8e0e0e86f774321140eb56", + "parentId": "66cbb8034fa93c4c4b05e352", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00383", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3ac", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3ac", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00093", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3ae", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8034fa93c4c4b05e3ac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 27 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00349", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3b0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3b0", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3b2", - "_tpl": "626673016f1edc06f30cf6d5", - "parentId": "66cbb8034fa93c4c4b05e3b0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e356", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e356", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e358", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb8034fa93c4c4b05e356", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3b4", - "_tpl": "6113d6c3290d254f5e6b27db", - "parentId": "66cbb8034fa93c4c4b05e3b0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3b6", - "_tpl": "5d0379a886f77420407aa271", - "parentId": "66cbb8034fa93c4c4b05e3b0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e35a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e35a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e3b8", - "_tpl": "58d2946c86f7744e271174b5", - "parentId": "66cbb8034fa93c4c4b05e3b0", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e35c", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66cbb8034fa93c4c4b05e35a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00857", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3ba", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3ba", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00091", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3bc", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05e3ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3be", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05e3ba", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e35e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e35e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e3c0", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e3ba", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e360", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8034fa93c4c4b05e35e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00270", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e3c2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3c2", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3c4", - "_tpl": "57347d9c245977448b40fa85", - "parentId": "66cbb8034fa93c4c4b05e3c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e362", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e362", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e364", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e362", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00109", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3c6", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e3c2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e366", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e366", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e368", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e366", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00336", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3c8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3c8", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00108", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3ca", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66cbb8034fa93c4c4b05e3c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e36a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e36a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e36c", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05e36a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb8034fa93c4c4b05e3cc", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb8034fa93c4c4b05e3c8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00693", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3ce", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3ce", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00107", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3d0", - "_tpl": "6405ff6bd4578826ec3e377a", - "parentId": "66cbb8034fa93c4c4b05e3ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00895", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3d2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3d2", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3d6", - "_tpl": "57372fc52459776998772ca1", - "parentId": "66cbb8034fa93c4c4b05e3d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e36e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e36e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e370", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05e36e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00665", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3d7", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8034fa93c4c4b05e3d6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3d8", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8034fa93c4c4b05e3d6", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e372", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e372", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e374", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbb8034fa93c4c4b05e372", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e376", + "_tpl": "58272d7f2459774f6311ddfd", + "parentId": "66cbb8034fa93c4c4b05e372", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00687", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3da", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3da", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00288", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3dc", - "_tpl": "59fb375986f7741b681b81a6", - "parentId": "66cbb8034fa93c4c4b05e3da", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3de", - "_tpl": "647dd2b8a12ebf96c3031655", - "parentId": "66cbb8034fa93c4c4b05e3da", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e378", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e378", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e3e0", - "_tpl": "58272b392459774b4c7b3ccd", - "parentId": "66cbb8034fa93c4c4b05e3da", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 + { + "_id": "66cbb8034fa93c4c4b05e37a", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e378", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e3e2", - "_tpl": "5ea034eb5aad6446a939737b", - "parentId": "66cbb8034fa93c4c4b05e3da", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 + { + "_id": "66cbb8034fa93c4c4b05e37c", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05e378", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e3e4", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "66cbb8034fa93c4c4b05e3da", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e37e", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e378", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e380", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05e378", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e382", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb8034fa93c4c4b05e378", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e384", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb8034fa93c4c4b05e378", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00509", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3e6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3e6", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00766", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3e8", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "parentId": "66cbb8034fa93c4c4b05e3e6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3ea", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb8034fa93c4c4b05e3e6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e386", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e386", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e3ec", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66cbb8034fa93c4c4b05e3e6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e388", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb8034fa93c4c4b05e386", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00332", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3ee", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3ee", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00317", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3f0", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66cbb8034fa93c4c4b05e3ee", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3f2", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb8034fa93c4c4b05e3ee", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e38a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e38a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e38c", + "_tpl": "5b432b2f5acfc4771e1c6622", + "parentId": "66cbb8034fa93c4c4b05e38a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00406", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3f4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3f4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00514", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3f6", - "_tpl": "5e54f6af86f7742199090bf3", - "parentId": "66cbb8034fa93c4c4b05e3f4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3f8", - "_tpl": "5e54f6af86f7742199090bf3", - "parentId": "66cbb8034fa93c4c4b05e3f4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e38e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e38e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e3fa", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbb8034fa93c4c4b05e3f4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e390", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbb8034fa93c4c4b05e38e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e392", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66cbb8034fa93c4c4b05e38e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e394", + "_tpl": "5d40419286f774318526545f", + "parentId": "66cbb8034fa93c4c4b05e38e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00401", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e3fc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e3fc", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00366", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e3fe", - "_tpl": "5c12688486f77426843c7d32", - "parentId": "66cbb8034fa93c4c4b05e3fc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e400", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb8034fa93c4c4b05e3fc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e396", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e396", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e398", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbb8034fa93c4c4b05e396", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e39a", + "_tpl": "5ede475b549eed7c6d5c18fb", + "parentId": "66cbb8034fa93c4c4b05e396", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00657", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e402", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e402", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00186", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e404", - "_tpl": "5bfeaa0f0db834001b734927", - "parentId": "66cbb8034fa93c4c4b05e402", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e39c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e39c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e39e", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "parentId": "66cbb8034fa93c4c4b05e39c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00809", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e406", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e406", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00185", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e408", - "_tpl": "5d40425986f7743185265461", - "parentId": "66cbb8034fa93c4c4b05e406", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e3a0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3a0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e3a2", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e3a0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00184", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e40a", - "_tpl": "5d1b39a386f774252339976f", - "parentId": "66cbb8034fa93c4c4b05e406", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e3a4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3a4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e3a6", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e3a4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00183", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e40c", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05e406", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00845", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e40e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e40e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e410", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05e40e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e3a8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3a8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e3aa", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66cbb8034fa93c4c4b05e3a8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00383", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e412", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05e40e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e414", - "_tpl": "5d1b385e86f774252167b98a", - "parentId": "66cbb8034fa93c4c4b05e40e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3ac", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3ac", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3ae", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8034fa93c4c4b05e3ac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 27 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00908", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e416", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e416", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00349", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e418", - "_tpl": "5ab8f85d86f7745cd93a1cf5", - "parentId": "66cbb8034fa93c4c4b05e416", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00539", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e41a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e41a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e41c", - "_tpl": "5d03784a86f774203e7e0c4d", - "parentId": "66cbb8034fa93c4c4b05e41a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3b0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3b0", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e41e", - "_tpl": "59e3647686f774176a362507", - "parentId": "66cbb8034fa93c4c4b05e41a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e3b2", + "_tpl": "626673016f1edc06f30cf6d5", + "parentId": "66cbb8034fa93c4c4b05e3b0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3b4", + "_tpl": "6113d6c3290d254f5e6b27db", + "parentId": "66cbb8034fa93c4c4b05e3b0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3b6", + "_tpl": "5d0379a886f77420407aa271", + "parentId": "66cbb8034fa93c4c4b05e3b0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3b8", + "_tpl": "58d2946c86f7744e271174b5", + "parentId": "66cbb8034fa93c4c4b05e3b0", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00307", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e420", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e420", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00857", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e422", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb8034fa93c4c4b05e420", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00932", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e424", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e424", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e427", - "_tpl": "5649ed104bdc2d3d1c8b458b", - "parentId": "66cbb8034fa93c4c4b05e424", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3ba", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3ba", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e428", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb8034fa93c4c4b05e427", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + { + "_id": "66cbb8034fa93c4c4b05e3bc", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05e3ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3be", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05e3ba", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3c0", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e3ba", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00320", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e42a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e42a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00270", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e42c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8034fa93c4c4b05e42a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 928 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00502", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e42e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e42e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e430", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb8034fa93c4c4b05e42e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e3c2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3c2", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3c4", + "_tpl": "57347d9c245977448b40fa85", + "parentId": "66cbb8034fa93c4c4b05e3c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e3c6", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e3c2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00336", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e432", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb8034fa93c4c4b05e42e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3c8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3c8", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3ca", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66cbb8034fa93c4c4b05e3c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3cc", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb8034fa93c4c4b05e3c8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00696", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e434", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e434", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00693", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e436", - "_tpl": "5f0c892565703e5c461894e9", - "parentId": "66cbb8034fa93c4c4b05e434", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3ce", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3ce", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e3d0", + "_tpl": "6405ff6bd4578826ec3e377a", + "parentId": "66cbb8034fa93c4c4b05e3ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00895", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e438", - "_tpl": "5ede4739e0350d05467f73e8", - "parentId": "66cbb8034fa93c4c4b05e434", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3d2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3d2", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3d6", + "_tpl": "57372fc52459776998772ca1", + "parentId": "66cbb8034fa93c4c4b05e3d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3d7", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8034fa93c4c4b05e3d6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3d8", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8034fa93c4c4b05e3d6", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00973", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e43a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e43a", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00687", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e43c", - "_tpl": "5c9a1c3a2e2216000e69fb6a", - "parentId": "66cbb8034fa93c4c4b05e43a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3da", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3da", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3dc", + "_tpl": "59fb375986f7741b681b81a6", + "parentId": "66cbb8034fa93c4c4b05e3da", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3de", + "_tpl": "647dd2b8a12ebf96c3031655", + "parentId": "66cbb8034fa93c4c4b05e3da", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3e0", + "_tpl": "58272b392459774b4c7b3ccd", + "parentId": "66cbb8034fa93c4c4b05e3da", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3e2", + "_tpl": "5ea034eb5aad6446a939737b", + "parentId": "66cbb8034fa93c4c4b05e3da", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3e4", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "66cbb8034fa93c4c4b05e3da", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00924", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e43e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e43e", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00509", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e43f", - "_tpl": "5a38e6bac4a2826c6e06d79b", - "parentId": "66cbb8034fa93c4c4b05e43e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e440", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "66cbb8034fa93c4c4b05e43f", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05e443", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66cbb8034fa93c4c4b05e440", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3e6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3e6", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3e8", + "_tpl": "59faf7ca86f7740dbe19f6c2", + "parentId": "66cbb8034fa93c4c4b05e3e6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3ea", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb8034fa93c4c4b05e3e6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3ec", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66cbb8034fa93c4c4b05e3e6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00332", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e441", - "_tpl": "5a38ef1fc4a282000b1521f6", - "parentId": "66cbb8034fa93c4c4b05e43f", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05e442", - "_tpl": "5a38eecdc4a282329a73b512", - "parentId": "66cbb8034fa93c4c4b05e441", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e445", - "_tpl": "62e7e7bbe6da9612f743f1e0", - "parentId": "66cbb8034fa93c4c4b05e43e", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3ee", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3ee", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3f0", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66cbb8034fa93c4c4b05e3ee", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3f2", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb8034fa93c4c4b05e3ee", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00058", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e447", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e447", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00406", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e449", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb8034fa93c4c4b05e447", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e44b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e44b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e44d", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb8034fa93c4c4b05e44b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 56 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3f4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3f4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3f6", + "_tpl": "5e54f6af86f7742199090bf3", + "parentId": "66cbb8034fa93c4c4b05e3f4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3f8", + "_tpl": "5e54f6af86f7742199090bf3", + "parentId": "66cbb8034fa93c4c4b05e3f4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3fa", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbb8034fa93c4c4b05e3f4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00056", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e44f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e44f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00401", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e451", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66cbb8034fa93c4c4b05e44f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00055", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e453", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e453", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e455", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05e453", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e3fc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e3fc", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e3fe", + "_tpl": "5c12688486f77426843c7d32", + "parentId": "66cbb8034fa93c4c4b05e3fc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e400", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb8034fa93c4c4b05e3fc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00331", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e457", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e457", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00657", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e459", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb8034fa93c4c4b05e457", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00210", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e45b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e45b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e45d", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb8034fa93c4c4b05e45b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e402", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e402", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e404", + "_tpl": "5bfeaa0f0db834001b734927", + "parentId": "66cbb8034fa93c4c4b05e402", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00209", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e45f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e45f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00809", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e461", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05e45f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00208", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e463", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e463", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e465", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb8034fa93c4c4b05e463", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e406", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e406", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e408", + "_tpl": "5d40425986f7743185265461", + "parentId": "66cbb8034fa93c4c4b05e406", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e40a", + "_tpl": "5d1b39a386f774252339976f", + "parentId": "66cbb8034fa93c4c4b05e406", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e40c", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05e406", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00207", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e467", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e467", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00845", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e469", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05e467", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e40e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e40e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e410", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05e40e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e412", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05e40e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e414", + "_tpl": "5d1b385e86f774252167b98a", + "parentId": "66cbb8034fa93c4c4b05e40e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00373", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e46b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e46b", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00908", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e46d", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb8034fa93c4c4b05e46b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e416", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e416", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e418", + "_tpl": "5ab8f85d86f7745cd93a1cf5", + "parentId": "66cbb8034fa93c4c4b05e416", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00539", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e46f", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbb8034fa93c4c4b05e46b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e41a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e41a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e41c", + "_tpl": "5d03784a86f774203e7e0c4d", + "parentId": "66cbb8034fa93c4c4b05e41a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e41e", + "_tpl": "59e3647686f774176a362507", + "parentId": "66cbb8034fa93c4c4b05e41a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00307", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e471", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbb8034fa93c4c4b05e46b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e420", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e420", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e422", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb8034fa93c4c4b05e420", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00335", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e473", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e473", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00932", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e475", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbb8034fa93c4c4b05e473", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00796", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e477", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e477", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e479", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66cbb8034fa93c4c4b05e477", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e424", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e424", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e427", + "_tpl": "5649ed104bdc2d3d1c8b458b", + "parentId": "66cbb8034fa93c4c4b05e424", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e428", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb8034fa93c4c4b05e427", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00899", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e47b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e47b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00320", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e47d", - "_tpl": "5a0060fc86f7745793204432", - "parentId": "66cbb8034fa93c4c4b05e47b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e47f", - "_tpl": "5cf638cbd7f00c06595bc936", - "parentId": "66cbb8034fa93c4c4b05e47b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e42a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e42a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e42c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8034fa93c4c4b05e42a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 928 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00782", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e481", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e481", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00502", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e483", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb8034fa93c4c4b05e481", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e485", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb8034fa93c4c4b05e481", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e42e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e42e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e487", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb8034fa93c4c4b05e481", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e430", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb8034fa93c4c4b05e42e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e432", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb8034fa93c4c4b05e42e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00301", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e489", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e489", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00696", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e48b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8034fa93c4c4b05e489", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 830 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00691", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e48d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e48d", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e48f", - "_tpl": "5a705e128dc32e000d46d258", - "parentId": "66cbb8034fa93c4c4b05e48d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e434", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e434", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e436", + "_tpl": "5f0c892565703e5c461894e9", + "parentId": "66cbb8034fa93c4c4b05e434", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e438", + "_tpl": "5ede4739e0350d05467f73e8", + "parentId": "66cbb8034fa93c4c4b05e434", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00416", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e491", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e491", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00973", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e493", - "_tpl": "5bc9bdb8d4351e003562b8a1", - "parentId": "66cbb8034fa93c4c4b05e491", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00613", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e495", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e495", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e497", - "_tpl": "5c1cd46f2e22164bef5cfedb", - "parentId": "66cbb8034fa93c4c4b05e495", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e43a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e43a", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e43c", + "_tpl": "5c9a1c3a2e2216000e69fb6a", + "parentId": "66cbb8034fa93c4c4b05e43a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00924", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e499", - "_tpl": "59fafc9386f774067d462453", - "parentId": "66cbb8034fa93c4c4b05e495", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e49b", - "_tpl": "5bb20d92d4351e00853263eb", - "parentId": "66cbb8034fa93c4c4b05e495", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e43e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e43e", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e49d", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbb8034fa93c4c4b05e495", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e43f", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "parentId": "66cbb8034fa93c4c4b05e43e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e49f", - "_tpl": "59e6542b86f77411dc52a77a", - "parentId": "66cbb8034fa93c4c4b05e495", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e440", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "66cbb8034fa93c4c4b05e43f", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 48 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e4a1", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66cbb8034fa93c4c4b05e495", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e443", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66cbb8034fa93c4c4b05e440", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e441", + "_tpl": "5a38ef1fc4a282000b1521f6", + "parentId": "66cbb8034fa93c4c4b05e43f", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05e442", + "_tpl": "5a38eecdc4a282329a73b512", + "parentId": "66cbb8034fa93c4c4b05e441", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e445", + "_tpl": "62e7e7bbe6da9612f743f1e0", + "parentId": "66cbb8034fa93c4c4b05e43e", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00852", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e4a3", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4a3", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00058", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4a5", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05e4a3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00570", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e4a7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4a7", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4a9", - "_tpl": "5734773724597737fd047c14", - "parentId": "66cbb8034fa93c4c4b05e4a7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e447", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e447", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e449", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb8034fa93c4c4b05e447", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4ab", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb8034fa93c4c4b05e4a7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4ad", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbb8034fa93c4c4b05e4a7", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e44b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e44b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e44d", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb8034fa93c4c4b05e44b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 56 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00056", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4af", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb8034fa93c4c4b05e4a7", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4b1", - "_tpl": "57347d90245977448f7b7f65", - "parentId": "66cbb8034fa93c4c4b05e4a7", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e44f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e44f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e451", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66cbb8034fa93c4c4b05e44f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00055", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4b3", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbb8034fa93c4c4b05e4a7", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e453", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e453", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e455", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05e453", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00331", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4b5", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbb8034fa93c4c4b05e4a7", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e457", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e457", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e459", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb8034fa93c4c4b05e457", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb8034fa93c4c4b05e4b7", - "_tpl": "5734773724597737fd047c14", - "parentId": "66cbb8034fa93c4c4b05e4a7", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e4b9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4b9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00210", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4bb", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05e4b9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e4bd", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4bd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4bf", - "_tpl": "5d80cb3886f77440556dbf09", - "parentId": "66cbb8034fa93c4c4b05e4bd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e45b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e45b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e45d", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb8034fa93c4c4b05e45b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e4c1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4c1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00209", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4c3", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e4c1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e4c5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4c5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4c7", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05e4c5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e45f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e45f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e461", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05e45f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00378", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e4c9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4c9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00208", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4cb", - "_tpl": "59e366c186f7741778269d85", - "parentId": "66cbb8034fa93c4c4b05e4c9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4cd", - "_tpl": "5e2af29386f7746d4159f077", - "parentId": "66cbb8034fa93c4c4b05e4c9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e463", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e463", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e4cf", - "_tpl": "66b37f114410565a8f6789e2", - "parentId": "66cbb8034fa93c4c4b05e4c9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e465", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb8034fa93c4c4b05e463", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00902", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e4d1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4d1", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00207", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4d3", - "_tpl": "65f1b1176dbd6c5ba2082eed", - "parentId": "66cbb8034fa93c4c4b05e4d1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4d5", - "_tpl": "5f60e7788adaa7100c3adb49", - "parentId": "66cbb8034fa93c4c4b05e4d1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e467", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e467", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e469", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05e467", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00373", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4d7", - "_tpl": "5d0a3e8cd7ad1a6f6a3d35bd", - "parentId": "66cbb8034fa93c4c4b05e4d1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e46b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e46b", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e46d", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb8034fa93c4c4b05e46b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e46f", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbb8034fa93c4c4b05e46b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e471", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbb8034fa93c4c4b05e46b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00763", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e4d9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4d9", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00335", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4db", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb8034fa93c4c4b05e4d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e473", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e473", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e475", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbb8034fa93c4c4b05e473", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00796", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4dd", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbb8034fa93c4c4b05e4d9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e477", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e477", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e479", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66cbb8034fa93c4c4b05e477", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00899", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4df", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbb8034fa93c4c4b05e4d9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e47b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e47b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e47d", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "66cbb8034fa93c4c4b05e47b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e47f", + "_tpl": "5cf638cbd7f00c06595bc936", + "parentId": "66cbb8034fa93c4c4b05e47b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00308", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e4e1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4e1", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00782", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4e3", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66cbb8034fa93c4c4b05e4e1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e481", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e481", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e483", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb8034fa93c4c4b05e481", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e485", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb8034fa93c4c4b05e481", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e487", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb8034fa93c4c4b05e481", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00333", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e4e5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4e5", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00301", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4e7", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb8034fa93c4c4b05e4e5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e489", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e489", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e48b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8034fa93c4c4b05e489", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 830 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00691", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4e9", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb8034fa93c4c4b05e4e5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e48d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e48d", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e48f", + "_tpl": "5a705e128dc32e000d46d258", + "parentId": "66cbb8034fa93c4c4b05e48d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00158", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e4eb", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4eb", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00416", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4ed", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb8034fa93c4c4b05e4eb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e491", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e491", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e493", + "_tpl": "5bc9bdb8d4351e003562b8a1", + "parentId": "66cbb8034fa93c4c4b05e491", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00157", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e4ef", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4ef", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00613", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4f1", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e4ef", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00156", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e4f3", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4f3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4f5", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05e4f3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e495", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e495", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e497", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "66cbb8034fa93c4c4b05e495", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e499", + "_tpl": "59fafc9386f774067d462453", + "parentId": "66cbb8034fa93c4c4b05e495", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e49b", + "_tpl": "5bb20d92d4351e00853263eb", + "parentId": "66cbb8034fa93c4c4b05e495", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e49d", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbb8034fa93c4c4b05e495", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e49f", + "_tpl": "59e6542b86f77411dc52a77a", + "parentId": "66cbb8034fa93c4c4b05e495", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 48 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4a1", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66cbb8034fa93c4c4b05e495", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00155", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e4f7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4f7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00852", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4f9", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e4f7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00371", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e4fb", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e4fb", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e4fd", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb8034fa93c4c4b05e4fb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e4a3", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4a3", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e4ff", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb8034fa93c4c4b05e4fb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e4a5", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05e4a3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00742", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e501", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e501", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00570", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e503", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05e501", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e505", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66cbb8034fa93c4c4b05e501", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e4a7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4a7", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e507", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05e501", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00669", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e509", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e509", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e50b", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbb8034fa93c4c4b05e509", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e4a9", + "_tpl": "5734773724597737fd047c14", + "parentId": "66cbb8034fa93c4c4b05e4a7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4ab", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb8034fa93c4c4b05e4a7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4ad", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbb8034fa93c4c4b05e4a7", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4af", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb8034fa93c4c4b05e4a7", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4b1", + "_tpl": "57347d90245977448f7b7f65", + "parentId": "66cbb8034fa93c4c4b05e4a7", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4b3", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbb8034fa93c4c4b05e4a7", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4b5", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbb8034fa93c4c4b05e4a7", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4b7", + "_tpl": "5734773724597737fd047c14", + "parentId": "66cbb8034fa93c4c4b05e4a7", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00974", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e50d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e50d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e50f", - "_tpl": "6389f1dfc879ce63f72fc43e", - "parentId": "66cbb8034fa93c4c4b05e50d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e511", - "_tpl": "59eb7ebe86f7740b373438ce", - "parentId": "66cbb8034fa93c4c4b05e50d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e4b9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4b9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e513", - "_tpl": "628c9ab845c59e5b80768a81", - "parentId": "66cbb8034fa93c4c4b05e50d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e4bb", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05e4b9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00390", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e515", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e515", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e517", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05e515", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00490", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e519", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e519", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e51b", - "_tpl": "57513f9324597720a7128161", - "parentId": "66cbb8034fa93c4c4b05e519", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e4bd", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4bd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4bf", + "_tpl": "5d80cb3886f77440556dbf09", + "parentId": "66cbb8034fa93c4c4b05e4bd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00968", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e51d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e51d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e51f", - "_tpl": "618a75f0bd321d49084cd399", - "parentId": "66cbb8034fa93c4c4b05e51d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e521", - "_tpl": "55d48ebc4bdc2d8c2f8b456c", - "parentId": "66cbb8034fa93c4c4b05e51d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e4c1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4c1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e4c3", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e4c1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e524", - "_tpl": "57372e4a24597768553071c2", - "parentId": "66cbb8034fa93c4c4b05e51d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e525", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8034fa93c4c4b05e524", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e4c5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4c5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4c7", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05e4c5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00374", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e527", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e527", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00378", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e529", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb8034fa93c4c4b05e527", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e52b", - "_tpl": "60391afc25aff57af81f7085", - "parentId": "66cbb8034fa93c4c4b05e527", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e4c9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4c9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e52d", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbb8034fa93c4c4b05e527", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e4cb", + "_tpl": "59e366c186f7741778269d85", + "parentId": "66cbb8034fa93c4c4b05e4c9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4cd", + "_tpl": "5e2af29386f7746d4159f077", + "parentId": "66cbb8034fa93c4c4b05e4c9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4cf", + "_tpl": "66b37f114410565a8f6789e2", + "parentId": "66cbb8034fa93c4c4b05e4c9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00267", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e52f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e52f", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00902", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e531", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb8034fa93c4c4b05e52f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e533", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb8034fa93c4c4b05e52f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e4d1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4d1", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4d3", + "_tpl": "65f1b1176dbd6c5ba2082eed", + "parentId": "66cbb8034fa93c4c4b05e4d1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4d5", + "_tpl": "5f60e7788adaa7100c3adb49", + "parentId": "66cbb8034fa93c4c4b05e4d1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4d7", + "_tpl": "5d0a3e8cd7ad1a6f6a3d35bd", + "parentId": "66cbb8034fa93c4c4b05e4d1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00407", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e535", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e535", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00763", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e537", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbb8034fa93c4c4b05e535", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00934", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e539", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e539", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e53a", - "_tpl": "583990e32459771419544dd2", - "parentId": "66cbb8034fa93c4c4b05e539", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e4d9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4d9", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4db", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb8034fa93c4c4b05e4d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Foldable": { - "Folded": false + { + "_id": "66cbb8034fa93c4c4b05e4dd", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbb8034fa93c4c4b05e4d9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4df", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbb8034fa93c4c4b05e4d9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00308", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e53b", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "66cbb8034fa93c4c4b05e53a", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e53c", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "66cbb8034fa93c4c4b05e53a", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e4e1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4e1", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4e3", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66cbb8034fa93c4c4b05e4e1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00333", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e53d", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb8034fa93c4c4b05e53a", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e542", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8034fa93c4c4b05e53d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 26.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e4e5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4e5", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4e7", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb8034fa93c4c4b05e4e5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4e9", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb8034fa93c4c4b05e4e5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00158", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e53e", - "_tpl": "57dc324a24597759501edc20", - "parentId": "66cbb8034fa93c4c4b05e53a", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e53f", - "_tpl": "57dc334d245977597164366f", - "parentId": "66cbb8034fa93c4c4b05e53a", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e4eb", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4eb", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4ed", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb8034fa93c4c4b05e4eb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00157", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e540", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "66cbb8034fa93c4c4b05e53a", - "slotId": "mod_gas_block" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e541", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "66cbb8034fa93c4c4b05e540", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00635", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e544", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e544", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e4ef", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4ef", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4f1", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e4ef", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00156", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e546", - "_tpl": "6113d6c3290d254f5e6b27db", - "parentId": "66cbb8034fa93c4c4b05e544", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e4f3", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4f3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e4f5", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05e4f3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00155", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e548", - "_tpl": "5fd4c4fa16cac650092f6771", - "parentId": "66cbb8034fa93c4c4b05e544", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e4f7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4f7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4f9", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e4f7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00793", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e54a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e54a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00371", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e54c", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb8034fa93c4c4b05e54a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e4fb", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e4fb", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e4fd", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb8034fa93c4c4b05e4fb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e4ff", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb8034fa93c4c4b05e4fb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00742", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e54e", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb8034fa93c4c4b05e54a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e501", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e501", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e503", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05e501", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e505", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66cbb8034fa93c4c4b05e501", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e507", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05e501", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00669", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e550", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbb8034fa93c4c4b05e54a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e509", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e509", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e50b", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbb8034fa93c4c4b05e509", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00465", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e552", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e552", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00974", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e554", - "_tpl": "5c0fa877d174af02a012e1cf", - "parentId": "66cbb8034fa93c4c4b05e552", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e50d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e50d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e50f", + "_tpl": "6389f1dfc879ce63f72fc43e", + "parentId": "66cbb8034fa93c4c4b05e50d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e511", + "_tpl": "59eb7ebe86f7740b373438ce", + "parentId": "66cbb8034fa93c4c4b05e50d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e513", + "_tpl": "628c9ab845c59e5b80768a81", + "parentId": "66cbb8034fa93c4c4b05e50d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00390", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e556", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb8034fa93c4c4b05e552", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00122", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e558", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e558", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e55a", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05e558", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e515", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e515", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e517", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05e515", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00121", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e55c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e55c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00490", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e55e", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb8034fa93c4c4b05e55c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e519", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e519", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e51b", + "_tpl": "57513f9324597720a7128161", + "parentId": "66cbb8034fa93c4c4b05e519", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e560", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e560", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00968", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e562", - "_tpl": "590c37d286f77443be3d7827", - "parentId": "66cbb8034fa93c4c4b05e560", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e51d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e51d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e51f", + "_tpl": "618a75f0bd321d49084cd399", + "parentId": "66cbb8034fa93c4c4b05e51d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e521", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "parentId": "66cbb8034fa93c4c4b05e51d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e524", + "_tpl": "57372e4a24597768553071c2", + "parentId": "66cbb8034fa93c4c4b05e51d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e525", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8034fa93c4c4b05e524", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00119", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e564", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e564", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00374", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e566", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05e564", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e527", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e527", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e529", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb8034fa93c4c4b05e527", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e52b", + "_tpl": "60391afc25aff57af81f7085", + "parentId": "66cbb8034fa93c4c4b05e527", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e52d", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbb8034fa93c4c4b05e527", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00719", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e568", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e568", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00267", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e56a", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb8034fa93c4c4b05e568", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e52f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e52f", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e531", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb8034fa93c4c4b05e52f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e533", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb8034fa93c4c4b05e52f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00779", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e56c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e56c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00407", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e56e", - "_tpl": "5d40419286f774318526545f", - "parentId": "66cbb8034fa93c4c4b05e56c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e535", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e535", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e537", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbb8034fa93c4c4b05e535", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00934", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e570", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66cbb8034fa93c4c4b05e56c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e539", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e539", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e53a", + "_tpl": "583990e32459771419544dd2", + "parentId": "66cbb8034fa93c4c4b05e539", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05e53b", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "66cbb8034fa93c4c4b05e53a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e53c", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "66cbb8034fa93c4c4b05e53a", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05e53d", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb8034fa93c4c4b05e53a", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e542", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8034fa93c4c4b05e53d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 26.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e53e", + "_tpl": "57dc324a24597759501edc20", + "parentId": "66cbb8034fa93c4c4b05e53a", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05e53f", + "_tpl": "57dc334d245977597164366f", + "parentId": "66cbb8034fa93c4c4b05e53a", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e540", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "66cbb8034fa93c4c4b05e53a", + "slotId": "mod_gas_block" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e541", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "66cbb8034fa93c4c4b05e540", + "slotId": "mod_handguard" } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00635", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e572", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05e56c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e544", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e544", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e546", + "_tpl": "6113d6c3290d254f5e6b27db", + "parentId": "66cbb8034fa93c4c4b05e544", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e548", + "_tpl": "5fd4c4fa16cac650092f6771", + "parentId": "66cbb8034fa93c4c4b05e544", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00722", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e574", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e574", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00793", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e576", - "_tpl": "5ede4739e0350d05467f73e8", - "parentId": "66cbb8034fa93c4c4b05e574", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e54a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e54a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e54c", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb8034fa93c4c4b05e54a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e54e", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb8034fa93c4c4b05e54a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e550", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbb8034fa93c4c4b05e54a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00511", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e578", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e578", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00465", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e57a", - "_tpl": "59e3658a86f7741776641ac4", - "parentId": "66cbb8034fa93c4c4b05e578", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e552", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e552", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e554", + "_tpl": "5c0fa877d174af02a012e1cf", + "parentId": "66cbb8034fa93c4c4b05e552", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e556", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb8034fa93c4c4b05e552", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00122", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e57c", - "_tpl": "5b432c305acfc40019478128", - "parentId": "66cbb8034fa93c4c4b05e578", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e558", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e558", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e55a", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05e558", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00491", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e57e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e57e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00121", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e580", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05e57e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e582", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e582", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e584", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05e582", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e55c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e55c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e55e", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb8034fa93c4c4b05e55c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00348", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e586", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e586", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e588", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb8034fa93c4c4b05e586", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e58a", - "_tpl": "6087e663132d4d12c81fd96b", - "parentId": "66cbb8034fa93c4c4b05e586", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e560", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e560", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e562", + "_tpl": "590c37d286f77443be3d7827", + "parentId": "66cbb8034fa93c4c4b05e560", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00713", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e58c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e58c", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00119", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e58e", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbb8034fa93c4c4b05e58c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00404", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e590", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e590", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e592", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb8034fa93c4c4b05e590", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e564", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e564", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e566", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05e564", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00957", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e594", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e594", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00719", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e595", - "_tpl": "5bf3e0490db83400196199af", - "parentId": "66cbb8034fa93c4c4b05e594", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e568", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e568", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Foldable": { - "Folded": false + { + "_id": "66cbb8034fa93c4c4b05e56a", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb8034fa93c4c4b05e568", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00779", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e596", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb8034fa93c4c4b05e595", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb8034fa93c4c4b05e597", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "66cbb8034fa93c4c4b05e596", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb8034fa93c4c4b05e598", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "66cbb8034fa93c4c4b05e595", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05e599", - "_tpl": "57e3dba62459770f0c32322b", - "parentId": "66cbb8034fa93c4c4b05e595", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05e59a", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "66cbb8034fa93c4c4b05e595", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05e59b", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "66cbb8034fa93c4c4b05e595", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05e59c", - "_tpl": "5ab626e4d8ce87272e4c6e43", - "parentId": "66cbb8034fa93c4c4b05e595", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05e59d", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb8034fa93c4c4b05e595", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e59e", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8034fa93c4c4b05e59d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 26.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e56c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e56c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e56e", + "_tpl": "5d40419286f774318526545f", + "parentId": "66cbb8034fa93c4c4b05e56c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e570", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66cbb8034fa93c4c4b05e56c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e572", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05e56c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00468", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e5a0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5a0", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00722", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5a2", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05e5a0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5a4", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb8034fa93c4c4b05e5a0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e574", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e574", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e5a6", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb8034fa93c4c4b05e5a0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e576", + "_tpl": "5ede4739e0350d05467f73e8", + "parentId": "66cbb8034fa93c4c4b05e574", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00634", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e5a8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5a8", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00511", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5aa", - "_tpl": "591af10186f774139d495f0e", - "parentId": "66cbb8034fa93c4c4b05e5a8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e578", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e578", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e57a", + "_tpl": "59e3658a86f7741776641ac4", + "parentId": "66cbb8034fa93c4c4b05e578", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e57c", + "_tpl": "5b432c305acfc40019478128", + "parentId": "66cbb8034fa93c4c4b05e578", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00491", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5ac", - "_tpl": "5c0673fb0db8340023300271", - "parentId": "66cbb8034fa93c4c4b05e5a8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e57e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e57e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e580", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05e57e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5ae", - "_tpl": "56e05b06d2720bb2668b4586", - "parentId": "66cbb8034fa93c4c4b05e5a8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e582", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e582", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e584", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05e582", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00881", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e5b0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5b0", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00348", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5b2", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e5b0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e586", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e586", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e588", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb8034fa93c4c4b05e586", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e58a", + "_tpl": "6087e663132d4d12c81fd96b", + "parentId": "66cbb8034fa93c4c4b05e586", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00713", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5b4", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05e5b0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e58c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e58c", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e58e", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbb8034fa93c4c4b05e58c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00404", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5b6", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb8034fa93c4c4b05e5b0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e590", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e590", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e592", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb8034fa93c4c4b05e590", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00322", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e5b8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5b8", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00957", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5ba", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbb8034fa93c4c4b05e5b8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00346", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e5bc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5bc", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5be", - "_tpl": "5c82342f2e221644f31c060e", - "parentId": "66cbb8034fa93c4c4b05e5bc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e594", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e594", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e595", + "_tpl": "5bf3e0490db83400196199af", + "parentId": "66cbb8034fa93c4c4b05e594", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05e596", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb8034fa93c4c4b05e595", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05e597", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "66cbb8034fa93c4c4b05e596", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05e598", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "66cbb8034fa93c4c4b05e595", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05e599", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "66cbb8034fa93c4c4b05e595", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e59a", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "66cbb8034fa93c4c4b05e595", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e59b", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "66cbb8034fa93c4c4b05e595", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e59c", + "_tpl": "5ab626e4d8ce87272e4c6e43", + "parentId": "66cbb8034fa93c4c4b05e595", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05e59d", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb8034fa93c4c4b05e595", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e59e", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8034fa93c4c4b05e59d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 26.0 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00325", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e5c0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5c0", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00468", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5c2", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb8034fa93c4c4b05e5c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e5c4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5c4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5c6", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb8034fa93c4c4b05e5c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e5a0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5a0", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5a2", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05e5a0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5a4", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb8034fa93c4c4b05e5a0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5a6", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb8034fa93c4c4b05e5a0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e5c8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5c8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00634", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5ca", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05e5c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e5cc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5cc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5ce", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05e5cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e5a8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5a8", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5aa", + "_tpl": "591af10186f774139d495f0e", + "parentId": "66cbb8034fa93c4c4b05e5a8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5ac", + "_tpl": "5c0673fb0db8340023300271", + "parentId": "66cbb8034fa93c4c4b05e5a8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5ae", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "66cbb8034fa93c4c4b05e5a8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00079", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e5d0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5d0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00881", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5d2", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05e5d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00597", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e5d4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5d4", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5d5", - "_tpl": "5ea17ca01412a1425304d1c0", - "parentId": "66cbb8034fa93c4c4b05e5d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e5b0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5b0", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5b2", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e5b0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5b4", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05e5b0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5b6", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb8034fa93c4c4b05e5b0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00322", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5d6", - "_tpl": "657f9a55c6679fefb3051e19", - "parentId": "66cbb8034fa93c4c4b05e5d5", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb8034fa93c4c4b05e5d7", - "_tpl": "657f9a94ada5fadd1f07a589", - "parentId": "66cbb8034fa93c4c4b05e5d5", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5d9", - "_tpl": "5ba26812d4351e003201fef1", - "parentId": "66cbb8034fa93c4c4b05e5d4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e5b8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5b8", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 22 + { + "_id": "66cbb8034fa93c4c4b05e5ba", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbb8034fa93c4c4b05e5b8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00346", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5db", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb8034fa93c4c4b05e5d4", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e5bc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5bc", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 7 + { + "_id": "66cbb8034fa93c4c4b05e5be", + "_tpl": "5c82342f2e221644f31c060e", + "parentId": "66cbb8034fa93c4c4b05e5bc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00325", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5dd", - "_tpl": "5fd4c4fa16cac650092f6771", - "parentId": "66cbb8034fa93c4c4b05e5d4", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e5c0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5c0", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e5c2", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb8034fa93c4c4b05e5c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5df", - "_tpl": "5b30b0dc5acfc400153b7124", - "parentId": "66cbb8034fa93c4c4b05e5d4", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e5c4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5c4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e5c6", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb8034fa93c4c4b05e5c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5e1", - "_tpl": "5a351711c4a282000b1521a4", - "parentId": "66cbb8034fa93c4c4b05e5d4", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e5c8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5c8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e5ca", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05e5c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5e3", - "_tpl": "56ea8180d2720bf2698b456a", - "parentId": "66cbb8034fa93c4c4b05e5d4", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e5cc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5cc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5ce", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05e5cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00906", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e5e5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5e5", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00079", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5e8", - "_tpl": "57372db0245977685d4159b2", - "parentId": "66cbb8034fa93c4c4b05e5e5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e5d0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5d0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e5d2", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05e5d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00597", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5e9", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8034fa93c4c4b05e5e8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00086", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e5eb", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5eb", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5ed", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e5eb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e5d4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5d4", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5d5", + "_tpl": "5ea17ca01412a1425304d1c0", + "parentId": "66cbb8034fa93c4c4b05e5d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5d6", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "66cbb8034fa93c4c4b05e5d5", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb8034fa93c4c4b05e5d7", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "66cbb8034fa93c4c4b05e5d5", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb8034fa93c4c4b05e5d9", + "_tpl": "5ba26812d4351e003201fef1", + "parentId": "66cbb8034fa93c4c4b05e5d4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 22 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5db", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb8034fa93c4c4b05e5d4", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 7 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5dd", + "_tpl": "5fd4c4fa16cac650092f6771", + "parentId": "66cbb8034fa93c4c4b05e5d4", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5df", + "_tpl": "5b30b0dc5acfc400153b7124", + "parentId": "66cbb8034fa93c4c4b05e5d4", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5e1", + "_tpl": "5a351711c4a282000b1521a4", + "parentId": "66cbb8034fa93c4c4b05e5d4", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5e3", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "66cbb8034fa93c4c4b05e5d4", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00085", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e5ef", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5ef", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00906", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5f1", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05e5ef", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e5f3", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5f3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5f5", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e5f3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e5e5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5e5", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5e8", + "_tpl": "57372db0245977685d4159b2", + "parentId": "66cbb8034fa93c4c4b05e5e5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5e9", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8034fa93c4c4b05e5e8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00083", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e5f7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5f7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00086", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5f9", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb8034fa93c4c4b05e5f7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00517", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e5fb", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e5fb", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5fd", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05e5fb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e5eb", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5eb", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e5ed", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e5eb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00085", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e5ff", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66cbb8034fa93c4c4b05e5fb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e601", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbb8034fa93c4c4b05e5fb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e5ef", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5ef", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5f1", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05e5ef", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00230", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e603", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e603", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e605", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e603", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00229", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e607", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e607", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e609", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e607", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e5f3", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5f3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5f5", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e5f3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00228", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e60b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e60b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00083", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e60d", - "_tpl": "62a0a124de7ac81993580542", - "parentId": "66cbb8034fa93c4c4b05e60b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00227", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e60f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e60f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e611", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e60f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e5f7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5f7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5f9", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb8034fa93c4c4b05e5f7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00888", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e613", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e613", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00517", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e615", - "_tpl": "60363c0c92ec1c31037959f5", - "parentId": "66cbb8034fa93c4c4b05e613", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e617", - "_tpl": "5dfcd0e547101c39625f66f9", - "parentId": "66cbb8034fa93c4c4b05e613", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e5fb", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e5fb", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5fd", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05e5fb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e5ff", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66cbb8034fa93c4c4b05e5fb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e601", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbb8034fa93c4c4b05e5fb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00294", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e619", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e619", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00230", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e61b", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb8034fa93c4c4b05e619", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e61d", - "_tpl": "5b44c8ea86f7742d1627baf1", - "parentId": "66cbb8034fa93c4c4b05e619", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e603", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e603", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e605", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e603", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00229", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e61f", - "_tpl": "5751487e245977207e26a315", - "parentId": "66cbb8034fa93c4c4b05e619", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e607", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e607", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e609", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e607", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00228", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e621", - "_tpl": "5a269f97c4a282000b151807", - "parentId": "66cbb8034fa93c4c4b05e619", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 2 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e60b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e60b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e60d", + "_tpl": "62a0a124de7ac81993580542", + "parentId": "66cbb8034fa93c4c4b05e60b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00380", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e623", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e623", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00227", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e625", - "_tpl": "5e023cf8186a883be655e54f", - "parentId": "66cbb8034fa93c4c4b05e623", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e60f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e60f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 29 + { + "_id": "66cbb8034fa93c4c4b05e611", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e60f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00888", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e627", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb8034fa93c4c4b05e623", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e613", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e613", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e615", + "_tpl": "60363c0c92ec1c31037959f5", + "parentId": "66cbb8034fa93c4c4b05e613", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e617", + "_tpl": "5dfcd0e547101c39625f66f9", + "parentId": "66cbb8034fa93c4c4b05e613", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00799", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e629", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e629", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00294", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e62b", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05e629", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e619", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e619", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e61b", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb8034fa93c4c4b05e619", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e61d", + "_tpl": "5b44c8ea86f7742d1627baf1", + "parentId": "66cbb8034fa93c4c4b05e619", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e61f", + "_tpl": "5751487e245977207e26a315", + "parentId": "66cbb8034fa93c4c4b05e619", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e621", + "_tpl": "5a269f97c4a282000b151807", + "parentId": "66cbb8034fa93c4c4b05e619", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 2 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00380", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e62d", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e629", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e623", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e623", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e625", + "_tpl": "5e023cf8186a883be655e54f", + "parentId": "66cbb8034fa93c4c4b05e623", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 29 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e627", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb8034fa93c4c4b05e623", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00714", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e62f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e62f", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00799", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e631", - "_tpl": "5f0c892565703e5c461894e9", - "parentId": "66cbb8034fa93c4c4b05e62f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e629", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e629", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e62b", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05e629", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e62d", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e629", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00714", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e633", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05e62f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e62f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e62f", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e631", + "_tpl": "5f0c892565703e5c461894e9", + "parentId": "66cbb8034fa93c4c4b05e62f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e633", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05e62f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00206", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e635", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e635", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00206", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e637", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb8034fa93c4c4b05e635", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e635", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e635", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e637", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb8034fa93c4c4b05e635", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00205", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e639", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e639", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00205", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e63b", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05e639", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e639", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e639", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e63b", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05e639", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00204", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e63d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e63d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00204", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e63f", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05e63d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e63d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e63d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e63f", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05e63d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00203", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e641", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e641", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00203", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e643", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb8034fa93c4c4b05e641", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e641", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e641", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e643", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb8034fa93c4c4b05e641", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00807", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e645", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e645", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00807", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e647", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05e645", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e645", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e645", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e647", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05e645", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e649", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8034fa93c4c4b05e645", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e64b", + "_tpl": "5d4042a986f7743185265463", + "parentId": "66cbb8034fa93c4c4b05e645", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00242", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e649", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8034fa93c4c4b05e645", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e64d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e64d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e64f", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb8034fa93c4c4b05e64d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00241", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e64b", - "_tpl": "5d4042a986f7743185265463", - "parentId": "66cbb8034fa93c4c4b05e645", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e651", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e651", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e653", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbb8034fa93c4c4b05e651", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00242", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e64d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e64d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00240", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e64f", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb8034fa93c4c4b05e64d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00241", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e651", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e651", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e653", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbb8034fa93c4c4b05e651", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e655", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e655", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e657", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb8034fa93c4c4b05e655", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00240", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e655", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e655", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00239", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e657", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb8034fa93c4c4b05e655", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00239", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e659", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e659", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e65b", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05e659", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e659", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e659", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e65b", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05e659", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00711", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e65d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e65d", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00711", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e65f", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "parentId": "66cbb8034fa93c4c4b05e65d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e661", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66cbb8034fa93c4c4b05e65d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e65d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e65d", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e663", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "parentId": "66cbb8034fa93c4c4b05e65d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e65f", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "parentId": "66cbb8034fa93c4c4b05e65d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e661", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66cbb8034fa93c4c4b05e65d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e663", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "parentId": "66cbb8034fa93c4c4b05e65d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00222", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e665", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e665", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00222", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e667", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05e665", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00221", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e669", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e669", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e66b", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e669", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e665", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e665", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e667", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05e665", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00220", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e66d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e66d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00221", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e66f", - "_tpl": "61a64428a8c6aa1b795f0ba1", - "parentId": "66cbb8034fa93c4c4b05e66d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00219", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e671", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e671", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e673", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e671", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e669", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e669", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e66b", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e669", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00326", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e675", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e675", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00220", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e677", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb8034fa93c4c4b05e675", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00886", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e679", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e679", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e67b", - "_tpl": "5d0379a886f77420407aa271", - "parentId": "66cbb8034fa93c4c4b05e679", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e66d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e66d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e67d", - "_tpl": "5bc5a35cd4351e450201232f", - "parentId": "66cbb8034fa93c4c4b05e679", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e66f", + "_tpl": "61a64428a8c6aa1b795f0ba1", + "parentId": "66cbb8034fa93c4c4b05e66d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00478", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e67f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e67f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00219", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e681", - "_tpl": "573478bc24597738002c6175", - "parentId": "66cbb8034fa93c4c4b05e67f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e683", - "_tpl": "5bc9c377d4351e3bac12251b", - "parentId": "66cbb8034fa93c4c4b05e67f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e671", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e671", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e685", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8034fa93c4c4b05e67f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00381", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e687", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e687", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e689", - "_tpl": "5649ae4a4bdc2d1b2b8b4588", - "parentId": "66cbb8034fa93c4c4b05e687", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e673", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e671", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00913", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e68b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e68b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00326", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e68d", - "_tpl": "5e21ca18e4d47f0da15e77dd", - "parentId": "66cbb8034fa93c4c4b05e68b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e690", - "_tpl": "5737266524597761006c6a8c", - "parentId": "66cbb8034fa93c4c4b05e68b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e675", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e675", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e677", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb8034fa93c4c4b05e675", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00886", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e691", - "_tpl": "57371eb62459776125652ac1", - "parentId": "66cbb8034fa93c4c4b05e690", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e694", - "_tpl": "5737260b24597761224311f2", - "parentId": "66cbb8034fa93c4c4b05e68b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e679", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e679", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e695", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8034fa93c4c4b05e694", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00304", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e697", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e697", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e699", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb8034fa93c4c4b05e697", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e67b", + "_tpl": "5d0379a886f77420407aa271", + "parentId": "66cbb8034fa93c4c4b05e679", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e67d", + "_tpl": "5bc5a35cd4351e450201232f", + "parentId": "66cbb8034fa93c4c4b05e679", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00372", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e69b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e69b", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00478", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e69d", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbb8034fa93c4c4b05e69b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e67f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e67f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e681", + "_tpl": "573478bc24597738002c6175", + "parentId": "66cbb8034fa93c4c4b05e67f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e683", + "_tpl": "5bc9c377d4351e3bac12251b", + "parentId": "66cbb8034fa93c4c4b05e67f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e685", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8034fa93c4c4b05e67f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00381", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e69f", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb8034fa93c4c4b05e69b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e687", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e687", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e689", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "parentId": "66cbb8034fa93c4c4b05e687", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00913", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6a1", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "66cbb8034fa93c4c4b05e69b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e68b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e68b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e68d", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "parentId": "66cbb8034fa93c4c4b05e68b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e690", + "_tpl": "5737266524597761006c6a8c", + "parentId": "66cbb8034fa93c4c4b05e68b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e691", + "_tpl": "57371eb62459776125652ac1", + "parentId": "66cbb8034fa93c4c4b05e690", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e694", + "_tpl": "5737260b24597761224311f2", + "parentId": "66cbb8034fa93c4c4b05e68b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e695", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8034fa93c4c4b05e694", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00284", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e6a3", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6a3", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00304", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6a5", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb8034fa93c4c4b05e6a3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e697", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e697", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e699", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb8034fa93c4c4b05e697", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00372", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6a7", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e6a3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e69b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e69b", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e69d", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbb8034fa93c4c4b05e69b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e69f", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb8034fa93c4c4b05e69b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6a1", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "66cbb8034fa93c4c4b05e69b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00098", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e6a9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6a9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00284", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6ab", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8034fa93c4c4b05e6a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e6a3", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6a3", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6a5", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb8034fa93c4c4b05e6a3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6a7", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e6a3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e6ad", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6ad", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00098", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6af", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e6ad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e6a9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6a9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6ab", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8034fa93c4c4b05e6a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00096", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e6b1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6b1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6b3", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb8034fa93c4c4b05e6b1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 79 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e6ad", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6ad", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6af", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e6ad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00095", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e6b5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6b5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00096", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6b7", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05e6b5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e6b1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6b1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6b3", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb8034fa93c4c4b05e6b1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 79 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00834", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e6b9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6b9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00095", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6bb", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05e6b9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e6b5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6b5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6b7", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05e6b5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00234", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e6bd", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6bd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00834", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6bf", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e6bd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e6b9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6b9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6bb", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05e6b9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00233", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e6c1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6c1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00234", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6c3", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8034fa93c4c4b05e6c1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00232", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e6c5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6c5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6c7", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb8034fa93c4c4b05e6c5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e6bd", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6bd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6bf", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e6bd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00231", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e6c9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6c9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00233", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6cb", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e6c9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00890", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e6cd", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6cd", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6cf", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb8034fa93c4c4b05e6cd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 17 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e6c1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6c1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6c3", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8034fa93c4c4b05e6c1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00846", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e6d1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6d1", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00232", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6d3", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e6d1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6d5", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66cbb8034fa93c4c4b05e6d1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e6c5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6c5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e6d7", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbb8034fa93c4c4b05e6d1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e6c7", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb8034fa93c4c4b05e6c5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00453", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e6d9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6d9", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00231", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6db", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "66cbb8034fa93c4c4b05e6d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6dd", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb8034fa93c4c4b05e6d9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e6c9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6c9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6cb", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e6c9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00540", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e6df", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6df", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00890", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6e1", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb8034fa93c4c4b05e6df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6e3", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05e6df", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e6cd", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6cd", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6cf", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb8034fa93c4c4b05e6cd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 17 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e6e5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6e5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00846", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6e7", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb8034fa93c4c4b05e6e5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6e9", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66cbb8034fa93c4c4b05e6e5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e6d1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6d1", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e6ea", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66cbb8034fa93c4c4b05e6e5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e6d3", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e6d1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6d5", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66cbb8034fa93c4c4b05e6d1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb8034fa93c4c4b05e6d7", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbb8034fa93c4c4b05e6d1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00453", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6eb", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66cbb8034fa93c4c4b05e6ea", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6ef", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb8034fa93c4c4b05e6eb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e6d9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6d9", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6db", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "66cbb8034fa93c4c4b05e6d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6dd", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb8034fa93c4c4b05e6d9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb8034fa93c4c4b05e6ec", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66cbb8034fa93c4c4b05e6ea", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05e6ed", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66cbb8034fa93c4c4b05e6ec", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05e6ee", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66cbb8034fa93c4c4b05e6ea", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00581", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e6f1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6f1", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00540", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6f3", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbb8034fa93c4c4b05e6f1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6f5", - "_tpl": "5448fee04bdc2dbc018b4567", - "parentId": "66cbb8034fa93c4c4b05e6f1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e6df", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6df", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e6f7", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05e6f1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e6e1", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb8034fa93c4c4b05e6df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e6f9", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb8034fa93c4c4b05e6f1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e6e3", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05e6df", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00296", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e6fb", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e6fb", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6fd", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05e6fb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e6ff", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05e6fb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e6e5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6e5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e701", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbb8034fa93c4c4b05e6fb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e6e7", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb8034fa93c4c4b05e6e5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 4 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e703", - "_tpl": "572b7d8524597762b472f9d1", - "parentId": "66cbb8034fa93c4c4b05e6fb", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e6e9", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66cbb8034fa93c4c4b05e6e5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e705", - "_tpl": "59e7715586f7742ee5789605", - "parentId": "66cbb8034fa93c4c4b05e6fb", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e6ea", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66cbb8034fa93c4c4b05e6e5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6eb", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66cbb8034fa93c4c4b05e6ea", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e6ef", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb8034fa93c4c4b05e6eb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6ec", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66cbb8034fa93c4c4b05e6ea", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e6ed", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66cbb8034fa93c4c4b05e6ec", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e6ee", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66cbb8034fa93c4c4b05e6ea", + "slotId": "mod_pistolgrip" } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00618", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e707", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e707", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00581", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e709", - "_tpl": "5947f92f86f77427344a76b1", - "parentId": "66cbb8034fa93c4c4b05e707", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e70a", - "_tpl": "57d14d2524597714373db789", - "parentId": "66cbb8034fa93c4c4b05e707", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e6f1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6f1", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6f3", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbb8034fa93c4c4b05e6f1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6f5", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "66cbb8034fa93c4c4b05e6f1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6f7", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05e6f1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6f9", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb8034fa93c4c4b05e6f1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00296", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e70b", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66cbb8034fa93c4c4b05e70a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05e70c", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbb8034fa93c4c4b05e70a", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e70d", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb8034fa93c4c4b05e70c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 21.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e6fb", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e6fb", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6fd", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05e6fb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e6ff", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05e6fb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e701", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbb8034fa93c4c4b05e6fb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 4 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e703", + "_tpl": "572b7d8524597762b472f9d1", + "parentId": "66cbb8034fa93c4c4b05e6fb", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e705", + "_tpl": "59e7715586f7742ee5789605", + "parentId": "66cbb8034fa93c4c4b05e6fb", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00618", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e70f", - "_tpl": "59e5f5a486f7746c530b3ce2", - "parentId": "66cbb8034fa93c4c4b05e707", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e707", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e707", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e709", + "_tpl": "5947f92f86f77427344a76b1", + "parentId": "66cbb8034fa93c4c4b05e707", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e70a", + "_tpl": "57d14d2524597714373db789", + "parentId": "66cbb8034fa93c4c4b05e707", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e70b", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66cbb8034fa93c4c4b05e70a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e70c", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbb8034fa93c4c4b05e70a", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e70d", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb8034fa93c4c4b05e70c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 21.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e70f", + "_tpl": "59e5f5a486f7746c530b3ce2", + "parentId": "66cbb8034fa93c4c4b05e707", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e711", + "_tpl": "5afd7ded5acfc40017541f5e", + "parentId": "66cbb8034fa93c4c4b05e707", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e713", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbb8034fa93c4c4b05e707", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 6 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e715", + "_tpl": "5b07dd285acfc4001754240d", + "parentId": "66cbb8034fa93c4c4b05e707", + "slotId": "main", + "location": { + "x": 2, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e717", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbb8034fa93c4c4b05e707", + "slotId": "main", + "location": { + "x": 3, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 41 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00432", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e711", - "_tpl": "5afd7ded5acfc40017541f5e", - "parentId": "66cbb8034fa93c4c4b05e707", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e719", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e719", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e71b", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb8034fa93c4c4b05e719", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e71d", + "_tpl": "590c595c86f7747884343ad7", + "parentId": "66cbb8034fa93c4c4b05e719", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00314", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e713", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbb8034fa93c4c4b05e707", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e71f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e71f", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 6 + { + "_id": "66cbb8034fa93c4c4b05e721", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05e71f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00178", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e715", - "_tpl": "5b07dd285acfc4001754240d", - "parentId": "66cbb8034fa93c4c4b05e707", - "slotId": "main", - "location": { - "x": 2, - "y": 3, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e723", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e723", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e725", + "_tpl": "590c639286f774151567fa95", + "parentId": "66cbb8034fa93c4c4b05e723", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00177", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e717", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbb8034fa93c4c4b05e707", - "slotId": "main", - "location": { - "x": 3, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 41 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e727", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e727", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e729", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb8034fa93c4c4b05e727", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00432", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e719", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e719", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00176", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e71b", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb8034fa93c4c4b05e719", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e72b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e72b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e72d", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8034fa93c4c4b05e72b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00175", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e71d", - "_tpl": "590c595c86f7747884343ad7", - "parentId": "66cbb8034fa93c4c4b05e719", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e72f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e72f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e731", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb8034fa93c4c4b05e72f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 41 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00314", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e71f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e71f", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00238", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e721", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05e71f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e733", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e733", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e735", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66cbb8034fa93c4c4b05e733", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00178", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e723", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e723", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00237", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e725", - "_tpl": "590c639286f774151567fa95", - "parentId": "66cbb8034fa93c4c4b05e723", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e737", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e737", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e739", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e737", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00177", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e727", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e727", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00236", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e729", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb8034fa93c4c4b05e727", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e73b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e73b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e73d", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05e73b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00176", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e72b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e72b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00235", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e72d", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8034fa93c4c4b05e72b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00175", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e72f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e72f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e731", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb8034fa93c4c4b05e72f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 41 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e73f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e73f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e741", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb8034fa93c4c4b05e73f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00238", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e733", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e733", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00921", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e735", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66cbb8034fa93c4c4b05e733", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00237", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e737", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e737", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e739", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e737", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e743", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e743", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e745", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "parentId": "66cbb8034fa93c4c4b05e743", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e747", + "_tpl": "615d8f8567085e45ef1409ca", + "parentId": "66cbb8034fa93c4c4b05e743", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e749", + "_tpl": "602a95fe4e02ce1eaa358729", + "parentId": "66cbb8034fa93c4c4b05e743", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00236", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e73b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e73b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00297", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e73d", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05e73b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00235", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e73f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e73f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e741", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb8034fa93c4c4b05e73f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e74b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e74b", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e74d", + "_tpl": "5d0379a886f77420407aa271", + "parentId": "66cbb8034fa93c4c4b05e74b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e74e", + "_tpl": "57d14d2524597714373db789", + "parentId": "66cbb8034fa93c4c4b05e74b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e74f", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66cbb8034fa93c4c4b05e74e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e750", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbb8034fa93c4c4b05e74e", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e751", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb8034fa93c4c4b05e750", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 26.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e753", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbb8034fa93c4c4b05e74b", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e755", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66cbb8034fa93c4c4b05e74b", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e757", + "_tpl": "5f994730c91ed922dd355de3", + "parentId": "66cbb8034fa93c4c4b05e74b", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00921", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e743", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e743", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00858", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e745", - "_tpl": "55d48ebc4bdc2d8c2f8b456c", - "parentId": "66cbb8034fa93c4c4b05e743", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e747", - "_tpl": "615d8f8567085e45ef1409ca", - "parentId": "66cbb8034fa93c4c4b05e743", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e759", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e759", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e749", - "_tpl": "602a95fe4e02ce1eaa358729", - "parentId": "66cbb8034fa93c4c4b05e743", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e75b", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e759", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e75d", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb8034fa93c4c4b05e759", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00297", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e74b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e74b", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00337", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e74d", - "_tpl": "5d0379a886f77420407aa271", - "parentId": "66cbb8034fa93c4c4b05e74b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e75f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e75f", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e761", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb8034fa93c4c4b05e75f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e763", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb8034fa93c4c4b05e75f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00681", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e74e", - "_tpl": "57d14d2524597714373db789", - "parentId": "66cbb8034fa93c4c4b05e74b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e74f", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66cbb8034fa93c4c4b05e74e", - "slotId": "mod_pistol_grip" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e765", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e765", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e767", + "_tpl": "5ea034eb5aad6446a939737b", + "parentId": "66cbb8034fa93c4c4b05e765", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e769", + "_tpl": "5c0673fb0db8340023300271", + "parentId": "66cbb8034fa93c4c4b05e765", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e76b", + "_tpl": "5a9685b1a2750c0032157104", + "parentId": "66cbb8034fa93c4c4b05e765", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00254", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e750", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbb8034fa93c4c4b05e74e", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e751", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb8034fa93c4c4b05e750", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 26.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e76d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e76d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e76f", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05e76d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00253", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e753", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbb8034fa93c4c4b05e74b", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e771", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e771", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e773", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05e771", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00252", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e755", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66cbb8034fa93c4c4b05e74b", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e775", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e775", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e777", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbb8034fa93c4c4b05e775", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00251", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e757", - "_tpl": "5f994730c91ed922dd355de3", - "parentId": "66cbb8034fa93c4c4b05e74b", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e779", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e779", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e77b", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e779", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00858", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e759", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e759", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00552", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e75b", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e759", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e77d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e77d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e77f", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb8034fa93c4c4b05e77d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00174", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e75d", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb8034fa93c4c4b05e759", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00337", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e75f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e75f", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e761", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb8034fa93c4c4b05e75f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e781", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e781", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e763", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb8034fa93c4c4b05e75f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e783", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e781", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00681", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e765", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e765", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00173", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e767", - "_tpl": "5ea034eb5aad6446a939737b", - "parentId": "66cbb8034fa93c4c4b05e765", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e785", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e785", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e787", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05e785", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00172", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e769", - "_tpl": "5c0673fb0db8340023300271", - "parentId": "66cbb8034fa93c4c4b05e765", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e789", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e789", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e78b", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66cbb8034fa93c4c4b05e789", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00171", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e76b", - "_tpl": "5a9685b1a2750c0032157104", - "parentId": "66cbb8034fa93c4c4b05e765", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e78d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e78d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e78f", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05e78d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00254", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e76d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e76d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00118", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e76f", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05e76d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e791", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e791", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e793", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e791", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00253", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e771", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e771", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e773", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05e771", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e795", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e795", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e797", + "_tpl": "61a64428a8c6aa1b795f0ba1", + "parentId": "66cbb8034fa93c4c4b05e795", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00252", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e775", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e775", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00116", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e777", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbb8034fa93c4c4b05e775", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e799", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e799", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e79b", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb8034fa93c4c4b05e799", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 93 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00251", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e779", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e779", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00115", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e77b", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e779", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e79d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e79d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e79f", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb8034fa93c4c4b05e79d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00552", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e77d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e77d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00050", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e77f", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb8034fa93c4c4b05e77d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e7a1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7a1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7a3", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e7a1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00174", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e781", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e781", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e783", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e781", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e7a5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7a5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7a7", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb8034fa93c4c4b05e7a5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00173", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e785", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e785", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e787", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05e785", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e7a9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7a9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7ab", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66cbb8034fa93c4c4b05e7a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00172", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e789", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e789", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00047", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e78b", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66cbb8034fa93c4c4b05e789", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e7ad", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7ad", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7af", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e7ad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00171", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e78d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e78d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00328", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e78f", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05e78d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e7b1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7b1", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7b3", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb8034fa93c4c4b05e7b1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00118", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e791", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e791", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00960", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e793", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e791", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e795", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e795", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e797", - "_tpl": "61a64428a8c6aa1b795f0ba1", - "parentId": "66cbb8034fa93c4c4b05e795", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e7b5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7b5", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7b6", + "_tpl": "59f9cabd86f7743a10721f46", + "parentId": "66cbb8034fa93c4c4b05e7b5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7b7", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb8034fa93c4c4b05e7b6", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e7b8", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb8034fa93c4c4b05e7b6", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05e7b9", + "_tpl": "5998529a86f774647f44f421", + "parentId": "66cbb8034fa93c4c4b05e7b6", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e7bf", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb8034fa93c4c4b05e7b9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7ba", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "66cbb8034fa93c4c4b05e7b6", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05e7bb", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb8034fa93c4c4b05e7b6", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e7bc", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb8034fa93c4c4b05e7b6", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e7bd", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb8034fa93c4c4b05e7b6", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05e7be", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb8034fa93c4c4b05e7bd", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00116", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e799", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e799", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00659", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e79b", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb8034fa93c4c4b05e799", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 93 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00115", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e79d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e79d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e79f", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb8034fa93c4c4b05e79d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e7c1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7c1", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7c3", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "parentId": "66cbb8034fa93c4c4b05e7c1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00050", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e7a1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7a1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00620", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7a3", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e7a1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e7a5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7a5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7a7", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb8034fa93c4c4b05e7a5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e7c5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7c5", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7c7", + "_tpl": "58d2946c86f7744e271174b5", + "parentId": "66cbb8034fa93c4c4b05e7c5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7c9", + "_tpl": "5c1bc5af2e221602b412949b", + "parentId": "66cbb8034fa93c4c4b05e7c5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7cb", + "_tpl": "5ac78eaf5acfc4001926317a", + "parentId": "66cbb8034fa93c4c4b05e7c5", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7cd", + "_tpl": "62e7c98b550c8218d602cbb4", + "parentId": "66cbb8034fa93c4c4b05e7c5", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7cf", + "_tpl": "5c1bc4812e22164bef5cfde7", + "parentId": "66cbb8034fa93c4c4b05e7c5", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7d1", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbb8034fa93c4c4b05e7c5", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7d3", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8034fa93c4c4b05e7c5", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 26 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7d5", + "_tpl": "66866f622a2296a8d9099639", + "parentId": "66cbb8034fa93c4c4b05e7c5", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7d7", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "66cbb8034fa93c4c4b05e7c5", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e7a9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7a9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00936", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7ab", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66cbb8034fa93c4c4b05e7a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00047", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e7ad", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7ad", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7af", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e7ad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e7d9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7d9", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7db", + "_tpl": "5bfd4cd60db834001c38f095", + "parentId": "66cbb8034fa93c4c4b05e7d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7dd", + "_tpl": "57ffb0062459777a045af529", + "parentId": "66cbb8034fa93c4c4b05e7d9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00328", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e7b1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7b1", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00344", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7b3", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb8034fa93c4c4b05e7b1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00960", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e7b5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7b5", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7b6", - "_tpl": "59f9cabd86f7743a10721f46", - "parentId": "66cbb8034fa93c4c4b05e7b5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e7df", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7df", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7e1", + "_tpl": "5f6331e097199b7db2128dc2", + "parentId": "66cbb8034fa93c4c4b05e7df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7e3", + "_tpl": "617151c1d92c473c770214ab", + "parentId": "66cbb8034fa93c4c4b05e7df", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00279", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7b7", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb8034fa93c4c4b05e7b6", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7b8", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb8034fa93c4c4b05e7b6", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e7e5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7e5", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7e7", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66cbb8034fa93c4c4b05e7e5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00299", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7b9", - "_tpl": "5998529a86f774647f44f421", - "parentId": "66cbb8034fa93c4c4b05e7b6", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7bf", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb8034fa93c4c4b05e7b9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e7e9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7e9", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7eb", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05e7e9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7ba", - "_tpl": "5998598e86f7740b3f498a86", - "parentId": "66cbb8034fa93c4c4b05e7b6", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05e7bb", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb8034fa93c4c4b05e7b6", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7bc", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb8034fa93c4c4b05e7b6", - "slotId": "mod_sight_rear" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e7ed", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7ed", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7ef", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbb8034fa93c4c4b05e7ed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7f1", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb8034fa93c4c4b05e7ed", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7f3", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "66cbb8034fa93c4c4b05e7ed", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00363", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7bd", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb8034fa93c4c4b05e7b6", - "slotId": "mod_gas_block" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7be", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb8034fa93c4c4b05e7bd", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00659", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e7c1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7c1", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e7c3", - "_tpl": "55d48a634bdc2d8b2f8b456a", - "parentId": "66cbb8034fa93c4c4b05e7c1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e7f5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e7f5", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7f7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8034fa93c4c4b05e7f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1040 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7f9", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "parentId": "66cbb8034fa93c4c4b05e7f5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7fb", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8034fa93c4c4b05e7f5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 883 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7fd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8034fa93c4c4b05e7f5", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 789 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e7ff", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb8034fa93c4c4b05e7f5", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 93 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00620", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e7c5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7c5", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00870", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7c7", - "_tpl": "58d2946c86f7744e271174b5", - "parentId": "66cbb8034fa93c4c4b05e7c5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7c9", - "_tpl": "5c1bc5af2e221602b412949b", - "parentId": "66cbb8034fa93c4c4b05e7c5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e801", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e801", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e7cb", - "_tpl": "5ac78eaf5acfc4001926317a", - "parentId": "66cbb8034fa93c4c4b05e7c5", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e803", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb8034fa93c4c4b05e801", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e805", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e801", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00298", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7cd", - "_tpl": "62e7c98b550c8218d602cbb4", - "parentId": "66cbb8034fa93c4c4b05e7c5", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7cf", - "_tpl": "5c1bc4812e22164bef5cfde7", - "parentId": "66cbb8034fa93c4c4b05e7c5", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e807", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e807", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e809", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb8034fa93c4c4b05e807", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 846 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00832", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7d1", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbb8034fa93c4c4b05e7c5", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7d3", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8034fa93c4c4b05e7c5", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e80b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e80b", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 26 + { + "_id": "66cbb8034fa93c4c4b05e80d", + "_tpl": "62a0a0bb621468534a797ad5", + "parentId": "66cbb8034fa93c4c4b05e80b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00695", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7d5", - "_tpl": "66866f622a2296a8d9099639", - "parentId": "66cbb8034fa93c4c4b05e7c5", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7d7", - "_tpl": "5d2c770c48f0354b4a07c100", - "parentId": "66cbb8034fa93c4c4b05e7c5", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e80f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e80f", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e811", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05e80f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e813", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb8034fa93c4c4b05e80f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00936", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e7d9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7d9", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00830", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7db", - "_tpl": "5bfd4cd60db834001c38f095", - "parentId": "66cbb8034fa93c4c4b05e7d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7dd", - "_tpl": "57ffb0062459777a045af529", - "parentId": "66cbb8034fa93c4c4b05e7d9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e815", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e815", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e817", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05e815", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00344", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e7df", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7df", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00291", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7e1", - "_tpl": "5f6331e097199b7db2128dc2", - "parentId": "66cbb8034fa93c4c4b05e7df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7e3", - "_tpl": "617151c1d92c473c770214ab", - "parentId": "66cbb8034fa93c4c4b05e7df", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e819", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e819", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e81b", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e819", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e81d", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb8034fa93c4c4b05e819", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00279", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e7e5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7e5", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00277", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7e7", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66cbb8034fa93c4c4b05e7e5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00299", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e7e9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7e9", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7eb", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05e7e9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e81f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e81f", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e821", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb8034fa93c4c4b05e81f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e823", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb8034fa93c4c4b05e81f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e7ed", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7ed", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00198", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7ef", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbb8034fa93c4c4b05e7ed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7f1", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb8034fa93c4c4b05e7ed", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e825", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e825", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e7f3", - "_tpl": "5ab8f39486f7745cd93a1cca", - "parentId": "66cbb8034fa93c4c4b05e7ed", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e827", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb8034fa93c4c4b05e825", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 58 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00363", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e7f5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e7f5", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00197", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7f7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8034fa93c4c4b05e7f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1040 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7f9", - "_tpl": "62a0a16d0b9d3c46de5b6e97", - "parentId": "66cbb8034fa93c4c4b05e7f5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e829", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e829", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e82b", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb8034fa93c4c4b05e829", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00196", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7fb", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8034fa93c4c4b05e7f5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 883 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e7fd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8034fa93c4c4b05e7f5", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e82d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e82d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 789 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e7ff", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb8034fa93c4c4b05e7f5", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 93 + { + "_id": "66cbb8034fa93c4c4b05e82f", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb8034fa93c4c4b05e82d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 95 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00870", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e801", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e801", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e803", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb8034fa93c4c4b05e801", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00195", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e805", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e801", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00298", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e807", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e807", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e809", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb8034fa93c4c4b05e807", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 846 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e831", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e831", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e833", + "_tpl": "5d80cd1a86f77402aa362f42", + "parentId": "66cbb8034fa93c4c4b05e831", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00832", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e80b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e80b", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00280", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e80d", - "_tpl": "62a0a0bb621468534a797ad5", - "parentId": "66cbb8034fa93c4c4b05e80b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00695", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e80f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e80f", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e811", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05e80f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e835", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e835", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e813", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb8034fa93c4c4b05e80f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e837", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb8034fa93c4c4b05e835", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e839", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbb8034fa93c4c4b05e835", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e83b", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb8034fa93c4c4b05e835", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e83d", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66cbb8034fa93c4c4b05e835", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e83f", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbb8034fa93c4c4b05e835", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00830", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e815", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e815", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00715", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e817", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05e815", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00291", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e819", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e819", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e81b", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e819", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e841", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e841", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e81d", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb8034fa93c4c4b05e819", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e843", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb8034fa93c4c4b05e841", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e845", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb8034fa93c4c4b05e841", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e847", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbb8034fa93c4c4b05e841", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00277", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e81f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e81f", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e821", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb8034fa93c4c4b05e81f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e823", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb8034fa93c4c4b05e81f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e849", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e849", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e84b", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb8034fa93c4c4b05e849", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e84d", + "_tpl": "5e8f3423fd7471236e6e3b64", + "parentId": "66cbb8034fa93c4c4b05e849", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e84f", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e849", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00198", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e825", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e825", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00622", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e827", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb8034fa93c4c4b05e825", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 58 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00197", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e829", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e829", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e82b", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb8034fa93c4c4b05e829", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e851", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e851", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e853", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbb8034fa93c4c4b05e851", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e855", + "_tpl": "5bc09a30d4351e00367fb7c8", + "parentId": "66cbb8034fa93c4c4b05e851", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00196", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e82d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e82d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00969", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e82f", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb8034fa93c4c4b05e82d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 95 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00195", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e831", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e831", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e833", - "_tpl": "5d80cd1a86f77402aa362f42", - "parentId": "66cbb8034fa93c4c4b05e831", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e857", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e857", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e859", + "_tpl": "5a0abb6e1526d8000a025282", + "parentId": "66cbb8034fa93c4c4b05e857", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00280", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e835", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e835", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00289", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e837", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb8034fa93c4c4b05e835", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e839", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbb8034fa93c4c4b05e835", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e85b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e85b", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e83b", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb8034fa93c4c4b05e835", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e85d", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb8034fa93c4c4b05e85b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e83d", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66cbb8034fa93c4c4b05e835", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e85f", + "_tpl": "5d40425986f7743185265461", + "parentId": "66cbb8034fa93c4c4b05e85b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e861", + "_tpl": "5733279d245977289b77ec24", + "parentId": "66cbb8034fa93c4c4b05e85b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e863", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbb8034fa93c4c4b05e85b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e865", + "_tpl": "590c2d8786f774245b1f03f3", + "parentId": "66cbb8034fa93c4c4b05e85b", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00549", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e83f", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbb8034fa93c4c4b05e835", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00715", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e841", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e841", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e843", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb8034fa93c4c4b05e841", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e867", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e867", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e869", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e867", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00285", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e845", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb8034fa93c4c4b05e841", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e847", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbb8034fa93c4c4b05e841", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e86b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e86b", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e86d", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb8034fa93c4c4b05e86b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e86f", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e86b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e871", + "_tpl": "5d40419286f774318526545f", + "parentId": "66cbb8034fa93c4c4b05e86b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e873", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e86b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e849", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e849", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00287", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e84b", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb8034fa93c4c4b05e849", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e84d", - "_tpl": "5e8f3423fd7471236e6e3b64", - "parentId": "66cbb8034fa93c4c4b05e849", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e875", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e875", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e84f", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e849", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e877", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e875", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e879", + "_tpl": "5d1b36a186f7742523398433", + "parentId": "66cbb8034fa93c4c4b05e875", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00622", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e851", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e851", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00525", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e853", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbb8034fa93c4c4b05e851", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e855", - "_tpl": "5bc09a30d4351e00367fb7c8", - "parentId": "66cbb8034fa93c4c4b05e851", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e87b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e87b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e87d", + "_tpl": "5d40419286f774318526545f", + "parentId": "66cbb8034fa93c4c4b05e87b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00969", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e857", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e857", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00368", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e859", - "_tpl": "5a0abb6e1526d8000a025282", - "parentId": "66cbb8034fa93c4c4b05e857", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00289", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e85b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e85b", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e85d", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb8034fa93c4c4b05e85b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e87f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e87f", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e85f", - "_tpl": "5d40425986f7743185265461", - "parentId": "66cbb8034fa93c4c4b05e85b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e881", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66cbb8034fa93c4c4b05e87f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e883", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66cbb8034fa93c4c4b05e87f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00884", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e861", - "_tpl": "5733279d245977289b77ec24", - "parentId": "66cbb8034fa93c4c4b05e85b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e863", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbb8034fa93c4c4b05e85b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e885", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e885", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e865", - "_tpl": "590c2d8786f774245b1f03f3", - "parentId": "66cbb8034fa93c4c4b05e85b", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e887", + "_tpl": "5e2192a498a36665e8337386", + "parentId": "66cbb8034fa93c4c4b05e885", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e888", + "_tpl": "5ac66d015acfc400180ae6e4", + "parentId": "66cbb8034fa93c4c4b05e885", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e889", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb8034fa93c4c4b05e888", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05e88a", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb8034fa93c4c4b05e889", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05e88b", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "66cbb8034fa93c4c4b05e888", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05e88c", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb8034fa93c4c4b05e888", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e88d", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb8034fa93c4c4b05e888", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e88e", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb8034fa93c4c4b05e888", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e88f", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb8034fa93c4c4b05e888", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05e890", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66cbb8034fa93c4c4b05e888", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e891", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb8034fa93c4c4b05e890", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 14.0 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00549", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e867", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e867", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00361", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e869", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e867", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00285", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e86b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e86b", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e86d", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb8034fa93c4c4b05e86b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e893", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e893", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e86f", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e86b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e894", + "_tpl": "59984ab886f7743e98271174", + "parentId": "66cbb8034fa93c4c4b05e893", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e871", - "_tpl": "5d40419286f774318526545f", - "parentId": "66cbb8034fa93c4c4b05e86b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e895", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb8034fa93c4c4b05e894", + "slotId": "mod_pistol_grip" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e873", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e86b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e896", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb8034fa93c4c4b05e894", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05e897", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbb8034fa93c4c4b05e894", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e89d", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb8034fa93c4c4b05e897", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 19.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e898", + "_tpl": "5998597786f77414ea6da093", + "parentId": "66cbb8034fa93c4c4b05e894", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05e899", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb8034fa93c4c4b05e894", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e89a", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb8034fa93c4c4b05e894", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e89b", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb8034fa93c4c4b05e894", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05e89c", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb8034fa93c4c4b05e89b", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00287", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e875", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e875", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00324", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e877", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e875", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e879", - "_tpl": "5d1b36a186f7742523398433", - "parentId": "66cbb8034fa93c4c4b05e875", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e89f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e89f", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8a1", + "_tpl": "5d235a5986f77443f6329bc6", + "parentId": "66cbb8034fa93c4c4b05e89f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00525", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e87b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e87b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00901", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e87d", - "_tpl": "5d40419286f774318526545f", - "parentId": "66cbb8034fa93c4c4b05e87b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00368", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e87f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e87f", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e881", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66cbb8034fa93c4c4b05e87f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e8a3", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8a3", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e883", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66cbb8034fa93c4c4b05e87f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e8a6", + "_tpl": "573728f324597765e5728561", + "parentId": "66cbb8034fa93c4c4b05e8a3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8a7", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8034fa93c4c4b05e8a6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00884", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e885", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e885", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00707", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e887", - "_tpl": "5e2192a498a36665e8337386", - "parentId": "66cbb8034fa93c4c4b05e885", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e888", - "_tpl": "5ac66d015acfc400180ae6e4", - "parentId": "66cbb8034fa93c4c4b05e885", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e8a9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8a9", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8ab", + "_tpl": "619256e5f8af2c1a4e1f5d92", + "parentId": "66cbb8034fa93c4c4b05e8a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8ad", + "_tpl": "5ede4739e0350d05467f73e8", + "parentId": "66cbb8034fa93c4c4b05e8a9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00625", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e889", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb8034fa93c4c4b05e888", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb8034fa93c4c4b05e88a", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb8034fa93c4c4b05e889", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb8034fa93c4c4b05e88b", - "_tpl": "5ac72e725acfc400180ae701", - "parentId": "66cbb8034fa93c4c4b05e888", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05e88c", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb8034fa93c4c4b05e888", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05e88d", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb8034fa93c4c4b05e888", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05e88e", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb8034fa93c4c4b05e888", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05e88f", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb8034fa93c4c4b05e888", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05e890", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66cbb8034fa93c4c4b05e888", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e891", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb8034fa93c4c4b05e890", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 14.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e8af", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8af", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8b1", + "_tpl": "5efb0cabfb3e451d70735af5", + "parentId": "66cbb8034fa93c4c4b05e8af", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8b3", + "_tpl": "5e4abc1f86f774069619fbaa", + "parentId": "66cbb8034fa93c4c4b05e8af", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8b5", + "_tpl": "576fd4ec2459777f0b518431", + "parentId": "66cbb8034fa93c4c4b05e8af", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8b7", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "66cbb8034fa93c4c4b05e8af", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8b9", + "_tpl": "6386120cd6baa055ad1e201c", + "parentId": "66cbb8034fa93c4c4b05e8af", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8bb", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "66cbb8034fa93c4c4b05e8af", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00361", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e893", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e893", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e894", - "_tpl": "59984ab886f7743e98271174", - "parentId": "66cbb8034fa93c4c4b05e893", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e895", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb8034fa93c4c4b05e894", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05e896", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb8034fa93c4c4b05e894", - "slotId": "mod_stock" + { + "Id": "container_Reserve_Base_DesignStuff_00170", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e897", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbb8034fa93c4c4b05e894", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e89d", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb8034fa93c4c4b05e897", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 19.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e8bd", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8bd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8bf", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e8bd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb8034fa93c4c4b05e898", - "_tpl": "5998597786f77414ea6da093", - "parentId": "66cbb8034fa93c4c4b05e894", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05e899", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb8034fa93c4c4b05e894", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05e89a", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb8034fa93c4c4b05e894", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05e89b", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb8034fa93c4c4b05e894", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb8034fa93c4c4b05e89c", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb8034fa93c4c4b05e89b", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00324", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e89f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e89f", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00169", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8a1", - "_tpl": "5d235a5986f77443f6329bc6", - "parentId": "66cbb8034fa93c4c4b05e89f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00901", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e8a3", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8a3", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8a6", - "_tpl": "573728f324597765e5728561", - "parentId": "66cbb8034fa93c4c4b05e8a3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e8c1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8c1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e8a7", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8034fa93c4c4b05e8a6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + { + "_id": "66cbb8034fa93c4c4b05e8c3", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66cbb8034fa93c4c4b05e8c1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00707", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e8a9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8a9", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00168", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8ab", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "66cbb8034fa93c4c4b05e8a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8ad", - "_tpl": "5ede4739e0350d05467f73e8", - "parentId": "66cbb8034fa93c4c4b05e8a9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e8c5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8c5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8c7", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb8034fa93c4c4b05e8c5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00625", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e8af", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8af", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00167", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8b1", - "_tpl": "5efb0cabfb3e451d70735af5", - "parentId": "66cbb8034fa93c4c4b05e8af", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8b3", - "_tpl": "5e4abc1f86f774069619fbaa", - "parentId": "66cbb8034fa93c4c4b05e8af", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e8c9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8c9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e8cb", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05e8c9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00871", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8b5", - "_tpl": "576fd4ec2459777f0b518431", - "parentId": "66cbb8034fa93c4c4b05e8af", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8b7", - "_tpl": "57ae0171245977343c27bfcf", - "parentId": "66cbb8034fa93c4c4b05e8af", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e8cd", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8cd", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e8cf", + "_tpl": "59e366c186f7741778269d85", + "parentId": "66cbb8034fa93c4c4b05e8cd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00424", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8b9", - "_tpl": "6386120cd6baa055ad1e201c", - "parentId": "66cbb8034fa93c4c4b05e8af", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8bb", - "_tpl": "570fd6c2d2720bc6458b457f", - "parentId": "66cbb8034fa93c4c4b05e8af", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e8d1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8d1", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8d3", + "_tpl": "590c639286f774151567fa95", + "parentId": "66cbb8034fa93c4c4b05e8d1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8d5", + "_tpl": "5d0376a486f7747d8050965c", + "parentId": "66cbb8034fa93c4c4b05e8d1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8d7", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb8034fa93c4c4b05e8d1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00170", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e8bd", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8bd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00621", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8bf", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e8bd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00169", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e8c1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8c1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8c3", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66cbb8034fa93c4c4b05e8c1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e8d9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8d9", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8db", + "_tpl": "5ede475339ee016e8c534742", + "parentId": "66cbb8034fa93c4c4b05e8d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8dd", + "_tpl": "5aa2b89be5b5b0001569311f", + "parentId": "66cbb8034fa93c4c4b05e8d9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8df", + "_tpl": "5d2c76ed48f03532f2136169", + "parentId": "66cbb8034fa93c4c4b05e8d9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8e1", + "_tpl": "617151c1d92c473c770214ab", + "parentId": "66cbb8034fa93c4c4b05e8d9", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8e3", + "_tpl": "5dfa3cd1b33c0951220c079b", + "parentId": "66cbb8034fa93c4c4b05e8d9", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00168", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e8c5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8c5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00708", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8c7", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb8034fa93c4c4b05e8c5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00167", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e8c9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8c9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8cb", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05e8c9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e8e5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8e5", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8e7", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbb8034fa93c4c4b05e8e5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00871", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e8cd", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8cd", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00356", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8cf", - "_tpl": "59e366c186f7741778269d85", - "parentId": "66cbb8034fa93c4c4b05e8cd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00424", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e8d1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8d1", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8d3", - "_tpl": "590c639286f774151567fa95", - "parentId": "66cbb8034fa93c4c4b05e8d1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e8e9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8e9", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e8d5", - "_tpl": "5d0376a486f7747d8050965c", - "parentId": "66cbb8034fa93c4c4b05e8d1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e8eb", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66cbb8034fa93c4c4b05e8e9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e8d7", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb8034fa93c4c4b05e8d1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e8ed", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "66cbb8034fa93c4c4b05e8e9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8ef", + "_tpl": "5894a51286f77426d13baf02", + "parentId": "66cbb8034fa93c4c4b05e8e9", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8f1", + "_tpl": "59f8a37386f7747af3328f06", + "parentId": "66cbb8034fa93c4c4b05e8e9", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8f3", + "_tpl": "64785e7c19d732620e045e15", + "parentId": "66cbb8034fa93c4c4b05e8e9", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e8f5", + "_tpl": "625ff2eb9f5537057932257d", + "parentId": "66cbb8034fa93c4c4b05e8e9", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00621", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e8d9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8d9", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00162", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8db", - "_tpl": "5ede475339ee016e8c534742", - "parentId": "66cbb8034fa93c4c4b05e8d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8dd", - "_tpl": "5aa2b89be5b5b0001569311f", - "parentId": "66cbb8034fa93c4c4b05e8d9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e8f7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8f7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e8f9", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66cbb8034fa93c4c4b05e8f7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00161", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8df", - "_tpl": "5d2c76ed48f03532f2136169", - "parentId": "66cbb8034fa93c4c4b05e8d9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8e1", - "_tpl": "617151c1d92c473c770214ab", - "parentId": "66cbb8034fa93c4c4b05e8d9", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e8fb", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8fb", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e8e3", - "_tpl": "5dfa3cd1b33c0951220c079b", - "parentId": "66cbb8034fa93c4c4b05e8d9", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e8fd", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e8fb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00708", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e8e5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8e5", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00160", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8e7", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbb8034fa93c4c4b05e8e5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e8ff", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e8ff", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e901", + "_tpl": "5c12620d86f7743f8b198b72", + "parentId": "66cbb8034fa93c4c4b05e8ff", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00356", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e8e9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8e9", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00159", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8eb", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66cbb8034fa93c4c4b05e8e9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e903", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e903", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e905", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05e903", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00507", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8ed", - "_tpl": "5888988e24597752fe43a6fa", - "parentId": "66cbb8034fa93c4c4b05e8e9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e907", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e907", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e909", + "_tpl": "5af0548586f7743a532b7e99", + "parentId": "66cbb8034fa93c4c4b05e907", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e90b", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbb8034fa93c4c4b05e907", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e90d", + "_tpl": "5ab8f4ff86f77431c60d91ba", + "parentId": "66cbb8034fa93c4c4b05e907", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00226", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8ef", - "_tpl": "5894a51286f77426d13baf02", - "parentId": "66cbb8034fa93c4c4b05e8e9", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e90f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e90f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e911", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05e90f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00225", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8f1", - "_tpl": "59f8a37386f7747af3328f06", - "parentId": "66cbb8034fa93c4c4b05e8e9", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e913", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e913", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e915", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb8034fa93c4c4b05e913", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00224", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8f3", - "_tpl": "64785e7c19d732620e045e15", - "parentId": "66cbb8034fa93c4c4b05e8e9", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e917", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e917", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e919", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05e917", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00223", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8f5", - "_tpl": "625ff2eb9f5537057932257d", - "parentId": "66cbb8034fa93c4c4b05e8e9", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00162", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e8f7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8f7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8f9", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66cbb8034fa93c4c4b05e8f7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e91b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e91b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e91d", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66cbb8034fa93c4c4b05e91b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00161", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e8fb", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8fb", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00649", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e8fd", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e8fb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00160", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e8ff", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e8ff", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e901", - "_tpl": "5c12620d86f7743f8b198b72", - "parentId": "66cbb8034fa93c4c4b05e8ff", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e91f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e91f", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e920", + "_tpl": "5ac66d9b5acfc4001633997a", + "parentId": "66cbb8034fa93c4c4b05e91f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e921", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb8034fa93c4c4b05e920", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05e922", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb8034fa93c4c4b05e921", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05e923", + "_tpl": "5ac72e945acfc43f3b691116", + "parentId": "66cbb8034fa93c4c4b05e920", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05e924", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb8034fa93c4c4b05e920", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05e925", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb8034fa93c4c4b05e920", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e926", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb8034fa93c4c4b05e920", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e927", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb8034fa93c4c4b05e920", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05e928", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbb8034fa93c4c4b05e920", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e929", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8034fa93c4c4b05e928", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 24.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e92b", + "_tpl": "576a7c512459771e796e0e17", + "parentId": "66cbb8034fa93c4c4b05e91f", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00159", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e903", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e903", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00423", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e905", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05e903", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00507", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e907", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e907", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e909", - "_tpl": "5af0548586f7743a532b7e99", - "parentId": "66cbb8034fa93c4c4b05e907", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e92d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e92d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e90b", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbb8034fa93c4c4b05e907", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e92f", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb8034fa93c4c4b05e92d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e90d", - "_tpl": "5ab8f4ff86f77431c60d91ba", - "parentId": "66cbb8034fa93c4c4b05e907", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e931", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "66cbb8034fa93c4c4b05e92d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00226", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e90f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e90f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00879", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e911", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05e90f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00225", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e913", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e913", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e915", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb8034fa93c4c4b05e913", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e933", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e933", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e935", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e933", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00224", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e917", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e917", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00738", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e919", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05e917", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00223", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e91b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e91b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e91d", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66cbb8034fa93c4c4b05e91b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e937", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e937", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e939", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb8034fa93c4c4b05e937", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e93b", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbb8034fa93c4c4b05e937", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e93d", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05e937", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00649", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e91f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e91f", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e920", - "_tpl": "5ac66d9b5acfc4001633997a", - "parentId": "66cbb8034fa93c4c4b05e91f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e921", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb8034fa93c4c4b05e920", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb8034fa93c4c4b05e922", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb8034fa93c4c4b05e921", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb8034fa93c4c4b05e923", - "_tpl": "5ac72e945acfc43f3b691116", - "parentId": "66cbb8034fa93c4c4b05e920", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05e924", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb8034fa93c4c4b05e920", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05e925", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb8034fa93c4c4b05e920", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05e926", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb8034fa93c4c4b05e920", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05e927", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb8034fa93c4c4b05e920", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05e928", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbb8034fa93c4c4b05e920", - "slotId": "mod_magazine" + { + "Id": "container_Reserve_Base_DesignStuff_00946", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e929", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8034fa93c4c4b05e928", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 24.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e92b", - "_tpl": "576a7c512459771e796e0e17", - "parentId": "66cbb8034fa93c4c4b05e91f", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e93f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e93f", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e941", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "66cbb8034fa93c4c4b05e93f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00423", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e92d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e92d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00312", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e92f", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb8034fa93c4c4b05e92d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e943", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e943", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e945", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e943", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00724", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e931", - "_tpl": "5d02778e86f774203e7dedbe", - "parentId": "66cbb8034fa93c4c4b05e92d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e947", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e947", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e949", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbb8034fa93c4c4b05e947", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00879", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e933", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e933", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00745", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e935", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e933", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00738", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e937", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e937", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e939", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb8034fa93c4c4b05e937", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e94b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e94b", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e93b", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbb8034fa93c4c4b05e937", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e94d", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05e94b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e93d", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05e937", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e94f", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbb8034fa93c4c4b05e94b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00946", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e93f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e93f", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00640", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e941", - "_tpl": "64afd81707e2cf40e903a316", - "parentId": "66cbb8034fa93c4c4b05e93f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00312", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e943", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e943", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e945", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e943", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e951", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e951", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e953", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66cbb8034fa93c4c4b05e951", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e955", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "66cbb8034fa93c4c4b05e951", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e957", + "_tpl": "5fb655a72b1b027b1f50bd06", + "parentId": "66cbb8034fa93c4c4b05e951", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e959", + "_tpl": "5caf17c9ae92150b30006be1", + "parentId": "66cbb8034fa93c4c4b05e951", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e95b", + "_tpl": "5c0505e00db834001b735073", + "parentId": "66cbb8034fa93c4c4b05e951", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00724", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e947", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e947", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00506", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e949", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbb8034fa93c4c4b05e947", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00745", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e94b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e94b", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e94d", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05e94b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e95d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e95d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e94f", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbb8034fa93c4c4b05e94b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e95f", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "66cbb8034fa93c4c4b05e95d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e961", + "_tpl": "5c0e531d86f7747fa23f4d42", + "parentId": "66cbb8034fa93c4c4b05e95d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e963", + "_tpl": "590c639286f774151567fa95", + "parentId": "66cbb8034fa93c4c4b05e95d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00640", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e951", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e951", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00636", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e953", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66cbb8034fa93c4c4b05e951", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e955", - "_tpl": "56def37dd2720bec348b456a", - "parentId": "66cbb8034fa93c4c4b05e951", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e965", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e965", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e967", + "_tpl": "6087e663132d4d12c81fd96b", + "parentId": "66cbb8034fa93c4c4b05e965", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e969", + "_tpl": "5a9e81fba2750c00164f6b11", + "parentId": "66cbb8034fa93c4c4b05e965", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00262", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e957", - "_tpl": "5fb655a72b1b027b1f50bd06", - "parentId": "66cbb8034fa93c4c4b05e951", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e96b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e96b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e96d", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e96b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00261", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e959", - "_tpl": "5caf17c9ae92150b30006be1", - "parentId": "66cbb8034fa93c4c4b05e951", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e96f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e96f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e971", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e96f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00260", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e95b", - "_tpl": "5c0505e00db834001b735073", - "parentId": "66cbb8034fa93c4c4b05e951", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e973", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e973", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e975", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05e973", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00506", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e95d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e95d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00259", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e95f", - "_tpl": "5d02778e86f774203e7dedbe", - "parentId": "66cbb8034fa93c4c4b05e95d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e977", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e977", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e979", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e977", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00599", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e961", - "_tpl": "5c0e531d86f7747fa23f4d42", - "parentId": "66cbb8034fa93c4c4b05e95d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e97b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e97b", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e97d", + "_tpl": "57235b6f24597759bf5a30f1", + "parentId": "66cbb8034fa93c4c4b05e97b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e97f", + "_tpl": "6086b5731246154cad35d6c7", + "parentId": "66cbb8034fa93c4c4b05e97b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e981", + "_tpl": "5e023d34e8a400319a28ed44", + "parentId": "66cbb8034fa93c4c4b05e97b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 11 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00014", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e963", - "_tpl": "590c639286f774151567fa95", - "parentId": "66cbb8034fa93c4c4b05e95d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e983", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e983", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e985", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "parentId": "66cbb8034fa93c4c4b05e983", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00636", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e965", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e965", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e967", - "_tpl": "6087e663132d4d12c81fd96b", - "parentId": "66cbb8034fa93c4c4b05e965", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e987", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e987", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e989", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb8034fa93c4c4b05e987", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e969", - "_tpl": "5a9e81fba2750c00164f6b11", - "parentId": "66cbb8034fa93c4c4b05e965", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00262", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e96b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e96b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e96d", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e96b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e98b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e98b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e98d", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb8034fa93c4c4b05e98b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00261", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e96f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e96f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e971", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e96f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00260", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e973", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e973", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e975", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05e973", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e98f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e98f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e991", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05e98f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00259", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e977", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e977", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00269", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e979", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e977", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00599", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e97b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e97b", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e97d", - "_tpl": "57235b6f24597759bf5a30f1", - "parentId": "66cbb8034fa93c4c4b05e97b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e993", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e993", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e97f", - "_tpl": "6086b5731246154cad35d6c7", - "parentId": "66cbb8034fa93c4c4b05e97b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e995", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb8034fa93c4c4b05e993", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e981", - "_tpl": "5e023d34e8a400319a28ed44", - "parentId": "66cbb8034fa93c4c4b05e97b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 11 + { + "_id": "66cbb8034fa93c4c4b05e997", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05e993", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e999", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb8034fa93c4c4b05e993", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e99b", + "_tpl": "57347d692459774491567cf1", + "parentId": "66cbb8034fa93c4c4b05e993", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e99d", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb8034fa93c4c4b05e993", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e99f", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbb8034fa93c4c4b05e993", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9a1", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb8034fa93c4c4b05e993", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00014", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e983", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e983", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00794", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e985", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "parentId": "66cbb8034fa93c4c4b05e983", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e987", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e987", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e989", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb8034fa93c4c4b05e987", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e9a3", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9a3", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9a5", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e9a3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e98b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e98b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00854", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e98d", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb8034fa93c4c4b05e98b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e98f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e98f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e991", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05e98f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e9a7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9a7", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9a9", + "_tpl": "5d1b317c86f7742523398392", + "parentId": "66cbb8034fa93c4c4b05e9a7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00269", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e993", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e993", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00293", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e995", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb8034fa93c4c4b05e993", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e997", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05e993", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e9ab", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9ab", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e999", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb8034fa93c4c4b05e993", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05e9ad", + "_tpl": "619cbf476b8a1b37a54eebf8", + "parentId": "66cbb8034fa93c4c4b05e9ab", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9af", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05e9ab", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9b0", + "_tpl": "5b1fa9b25acfc40018633c01", + "parentId": "66cbb8034fa93c4c4b05e9ab", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9b1", + "_tpl": "5b1fa9ea5acfc40018633c0a", + "parentId": "66cbb8034fa93c4c4b05e9b0", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05e9b2", + "_tpl": "5b1faa0f5acfc40dc528aeb5", + "parentId": "66cbb8034fa93c4c4b05e9b0", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05e9b3", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "66cbb8034fa93c4c4b05e9b2", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05e9b4", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "66cbb8034fa93c4c4b05e9b2", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8034fa93c4c4b05e9b5", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "66cbb8034fa93c4c4b05e9b0", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05e9b6", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb8034fa93c4c4b05e9b5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 14.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9b8", + "_tpl": "5c503ac82e221602b21d6e9a", + "parentId": "66cbb8034fa93c4c4b05e9ab", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e9ba", + "_tpl": "5673de654bdc2d180f8b456d", + "parentId": "66cbb8034fa93c4c4b05e9ab", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00362", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e99b", - "_tpl": "57347d692459774491567cf1", - "parentId": "66cbb8034fa93c4c4b05e993", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9bc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9bc", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9be", + "_tpl": "5e4d34ca86f774264f758330", + "parentId": "66cbb8034fa93c4c4b05e9bc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e9c0", + "_tpl": "615d8df08004cc50514c3236", + "parentId": "66cbb8034fa93c4c4b05e9bc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00194", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e99d", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb8034fa93c4c4b05e993", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9c2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9c2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e9c4", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05e9c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00193", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e99f", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbb8034fa93c4c4b05e993", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9c6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9c6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e9c8", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb8034fa93c4c4b05e9c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00192", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9a1", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb8034fa93c4c4b05e993", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9ca", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9ca", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9cc", + "_tpl": "61a64428a8c6aa1b795f0ba1", + "parentId": "66cbb8034fa93c4c4b05e9ca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00794", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e9a3", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9a3", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00191", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9a5", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e9a3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9ce", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9ce", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9d0", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e9ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00854", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e9a7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9a7", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00944", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9a9", - "_tpl": "5d1b317c86f7742523398392", - "parentId": "66cbb8034fa93c4c4b05e9a7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e9d2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9d2", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9d4", + "_tpl": "6389f1dfc879ce63f72fc43e", + "parentId": "66cbb8034fa93c4c4b05e9d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00293", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e9ab", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9ab", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00369", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9ad", - "_tpl": "619cbf476b8a1b37a54eebf8", - "parentId": "66cbb8034fa93c4c4b05e9ab", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05e9d6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9d6", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9d8", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbb8034fa93c4c4b05e9d6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9da", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05e9d6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e9dc", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbb8034fa93c4c4b05e9d6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00283", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9af", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05e9ab", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9de", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9de", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9e0", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05e9de", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05e9e2", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05e9de", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00281", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9b0", - "_tpl": "5b1fa9b25acfc40018633c01", - "parentId": "66cbb8034fa93c4c4b05e9ab", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9e4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9e4", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9e6", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05e9e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9e8", + "_tpl": "5d40425986f7743185265461", + "parentId": "66cbb8034fa93c4c4b05e9e4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9ea", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e9e4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9ec", + "_tpl": "619cbf476b8a1b37a54eebf8", + "parentId": "66cbb8034fa93c4c4b05e9e4", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9ee", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb8034fa93c4c4b05e9e4", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9f0", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05e9e4", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00142", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9b1", - "_tpl": "5b1fa9ea5acfc40018633c0a", - "parentId": "66cbb8034fa93c4c4b05e9b0", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9b2", - "_tpl": "5b1faa0f5acfc40dc528aeb5", - "parentId": "66cbb8034fa93c4c4b05e9b0", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9f2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9f2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9f4", + "_tpl": "5bc9c049d4351e44f824d360", + "parentId": "66cbb8034fa93c4c4b05e9f2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00141", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9b3", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "66cbb8034fa93c4c4b05e9b2", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9b4", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "66cbb8034fa93c4c4b05e9b2", - "slotId": "mod_sight_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9f6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9f6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9f8", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05e9f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00140", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9b5", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "66cbb8034fa93c4c4b05e9b0", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9b6", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb8034fa93c4c4b05e9b5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 14.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9fa", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9fa", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05e9fc", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05e9fa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00139", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9b8", - "_tpl": "5c503ac82e221602b21d6e9a", - "parentId": "66cbb8034fa93c4c4b05e9ab", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05e9fe", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05e9fe", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea00", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb8034fa93c4c4b05e9fe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 84 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00286", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9ba", - "_tpl": "5673de654bdc2d180f8b456d", - "parentId": "66cbb8034fa93c4c4b05e9ab", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea02", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea02", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea04", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05ea02", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea06", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05ea02", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea08", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb8034fa93c4c4b05ea02", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea0a", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66cbb8034fa93c4c4b05ea02", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea0c", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb8034fa93c4c4b05ea02", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00362", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9bc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9bc", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00720", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9be", - "_tpl": "5e4d34ca86f774264f758330", - "parentId": "66cbb8034fa93c4c4b05e9bc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea0e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea0e", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea10", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbb8034fa93c4c4b05ea0e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00306", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9c0", - "_tpl": "615d8df08004cc50514c3236", - "parentId": "66cbb8034fa93c4c4b05e9bc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea12", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea12", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea14", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbb8034fa93c4c4b05ea12", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00194", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9c2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9c2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00771", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9c4", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05e9c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00193", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9c6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9c6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e9c8", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb8034fa93c4c4b05e9c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00192", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9ca", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9ca", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e9cc", - "_tpl": "61a64428a8c6aa1b795f0ba1", - "parentId": "66cbb8034fa93c4c4b05e9ca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00191", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9ce", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9ce", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9d0", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e9ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea16", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea16", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea18", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8034fa93c4c4b05ea16", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00944", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e9d2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9d2", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00739", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9d4", - "_tpl": "6389f1dfc879ce63f72fc43e", - "parentId": "66cbb8034fa93c4c4b05e9d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00369", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05e9d6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9d6", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9d8", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbb8034fa93c4c4b05e9d6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea1a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea1a", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e9da", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05e9d6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ea1c", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb8034fa93c4c4b05ea1a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05e9dc", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbb8034fa93c4c4b05e9d6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea1e", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "66cbb8034fa93c4c4b05ea1a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea20", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66cbb8034fa93c4c4b05ea1a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00283", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9de", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9de", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00062", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9e0", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05e9de", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9e2", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05e9de", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea22", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea22", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea24", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb8034fa93c4c4b05ea22", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00281", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9e4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9e4", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00061", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9e6", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05e9e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9e8", - "_tpl": "5d40425986f7743185265461", - "parentId": "66cbb8034fa93c4c4b05e9e4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea26", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea26", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea28", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05ea26", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00060", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9ea", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e9e4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9ec", - "_tpl": "619cbf476b8a1b37a54eebf8", - "parentId": "66cbb8034fa93c4c4b05e9e4", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea2a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea2a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea2c", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05ea2a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9ee", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb8034fa93c4c4b05e9e4", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9f0", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05e9e4", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea2e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea2e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea30", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb8034fa93c4c4b05ea2e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00142", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9f2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9f2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00555", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9f4", - "_tpl": "5bc9c049d4351e44f824d360", - "parentId": "66cbb8034fa93c4c4b05e9f2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00141", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9f6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9f6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9f8", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05e9f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea32", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea32", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea34", + "_tpl": "60098b1705871270cd5352a1", + "parentId": "66cbb8034fa93c4c4b05ea32", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00140", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9fa", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9fa", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00536", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05e9fc", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05e9fa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00139", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05e9fe", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05e9fe", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea00", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb8034fa93c4c4b05e9fe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 84 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea36", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea36", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea38", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05ea36", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea3a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb8034fa93c4c4b05ea36", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea3c", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbb8034fa93c4c4b05ea36", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00286", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea02", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea02", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00656", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea04", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05ea02", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea06", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05ea02", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea3e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea3e", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea08", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb8034fa93c4c4b05ea02", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ea40", + "_tpl": "5eeb2ff5ea4f8b73c827350b", + "parentId": "66cbb8034fa93c4c4b05ea3e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea0a", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66cbb8034fa93c4c4b05ea02", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ea42", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbb8034fa93c4c4b05ea3e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea44", + "_tpl": "5b07dd285acfc4001754240d", + "parentId": "66cbb8034fa93c4c4b05ea3e", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb8034fa93c4c4b05ea0c", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb8034fa93c4c4b05ea02", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00720", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea0e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea0e", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00352", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea10", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbb8034fa93c4c4b05ea0e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00306", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea12", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea12", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea14", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbb8034fa93c4c4b05ea12", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea46", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea46", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea48", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66cbb8034fa93c4c4b05ea46", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea4a", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb8034fa93c4c4b05ea46", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea4c", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb8034fa93c4c4b05ea46", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea4e", + "_tpl": "62e7c98b550c8218d602cbb4", + "parentId": "66cbb8034fa93c4c4b05ea46", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea50", + "_tpl": "5894a05586f774094708ef75", + "parentId": "66cbb8034fa93c4c4b05ea46", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea52", + "_tpl": "5cf4fb76d7f00c065703d3ac", + "parentId": "66cbb8034fa93c4c4b05ea46", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00771", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea16", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea16", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00600", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea18", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8034fa93c4c4b05ea16", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00739", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea1a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea1a", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea1c", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb8034fa93c4c4b05ea1a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea54", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea54", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea1e", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "66cbb8034fa93c4c4b05ea1a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ea56", + "_tpl": "5a800961159bd4315e3a1657", + "parentId": "66cbb8034fa93c4c4b05ea54", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea20", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66cbb8034fa93c4c4b05ea1a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea58", + "_tpl": "5d2f213448f0355009199284", + "parentId": "66cbb8034fa93c4c4b05ea54", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00062", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea22", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea22", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00603", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea24", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb8034fa93c4c4b05ea22", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00061", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea26", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea26", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea28", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05ea26", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea5a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea5a", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea5c", + "_tpl": "572b7fa124597762b472f9d2", + "parentId": "66cbb8034fa93c4c4b05ea5a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea5e", + "_tpl": "6388c4ac8d895f557a0c6515", + "parentId": "66cbb8034fa93c4c4b05ea5a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea60", + "_tpl": "5bfd4cd60db834001c38f095", + "parentId": "66cbb8034fa93c4c4b05ea5a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00060", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea2a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea2a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00138", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea2c", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05ea2a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea2e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea2e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea30", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb8034fa93c4c4b05ea2e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea62", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea62", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea64", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb8034fa93c4c4b05ea62", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00555", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea32", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea32", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00137", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea34", - "_tpl": "60098b1705871270cd5352a1", - "parentId": "66cbb8034fa93c4c4b05ea32", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00536", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea36", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea36", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea38", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05ea36", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea66", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea66", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea68", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb8034fa93c4c4b05ea66", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 72 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00136", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea3a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb8034fa93c4c4b05ea36", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea3c", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbb8034fa93c4c4b05ea36", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea6a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea6a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea6c", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05ea6a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00656", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea3e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea3e", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00135", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea40", - "_tpl": "5eeb2ff5ea4f8b73c827350b", - "parentId": "66cbb8034fa93c4c4b05ea3e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea42", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbb8034fa93c4c4b05ea3e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea6e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea6e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea44", - "_tpl": "5b07dd285acfc4001754240d", - "parentId": "66cbb8034fa93c4c4b05ea3e", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea70", + "_tpl": "60b0f561c4449e4cb624c1d7", + "parentId": "66cbb8034fa93c4c4b05ea6e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00352", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea46", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea46", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00034", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea48", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66cbb8034fa93c4c4b05ea46", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea4a", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb8034fa93c4c4b05ea46", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea72", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea72", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea74", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05ea72", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00033", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea4c", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb8034fa93c4c4b05ea46", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea4e", - "_tpl": "62e7c98b550c8218d602cbb4", - "parentId": "66cbb8034fa93c4c4b05ea46", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea76", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea76", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea78", + "_tpl": "5d80ca9086f774403a401e40", + "parentId": "66cbb8034fa93c4c4b05ea76", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea50", - "_tpl": "5894a05586f774094708ef75", - "parentId": "66cbb8034fa93c4c4b05ea46", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea52", - "_tpl": "5cf4fb76d7f00c065703d3ac", - "parentId": "66cbb8034fa93c4c4b05ea46", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea7a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea7a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea7c", + "_tpl": "5e2af29386f7746d4159f077", + "parentId": "66cbb8034fa93c4c4b05ea7a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00600", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea54", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea54", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00031", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea56", - "_tpl": "5a800961159bd4315e3a1657", - "parentId": "66cbb8034fa93c4c4b05ea54", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea58", - "_tpl": "5d2f213448f0355009199284", - "parentId": "66cbb8034fa93c4c4b05ea54", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea7e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea7e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea80", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb8034fa93c4c4b05ea7e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00603", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea5a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea5a", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00919", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea5c", - "_tpl": "572b7fa124597762b472f9d2", - "parentId": "66cbb8034fa93c4c4b05ea5a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea82", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea82", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea84", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb8034fa93c4c4b05ea82", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea86", + "_tpl": "64b9cf0ac12b9c38db26923a", + "parentId": "66cbb8034fa93c4c4b05ea82", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea88", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "66cbb8034fa93c4c4b05ea82", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00292", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea5e", - "_tpl": "6388c4ac8d895f557a0c6515", - "parentId": "66cbb8034fa93c4c4b05ea5a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ea8a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea8a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea8c", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb8034fa93c4c4b05ea8a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea8e", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbb8034fa93c4c4b05ea8a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ea90", + "_tpl": "5d0379a886f77420407aa271", + "parentId": "66cbb8034fa93c4c4b05ea8a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00272", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea60", - "_tpl": "5bfd4cd60db834001c38f095", - "parentId": "66cbb8034fa93c4c4b05ea5a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ea92", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ea92", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea94", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb8034fa93c4c4b05ea92", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea96", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbb8034fa93c4c4b05ea92", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea98", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbb8034fa93c4c4b05ea92", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea9a", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb8034fa93c4c4b05ea92", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea9c", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05ea92", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ea9e", + "_tpl": "6389c6463485cf0eeb260715", + "parentId": "66cbb8034fa93c4c4b05ea92", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaa0", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb8034fa93c4c4b05ea92", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00138", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea62", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea62", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00078", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea64", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb8034fa93c4c4b05ea62", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eaa2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eaa2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaa4", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8034fa93c4c4b05eaa2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00137", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea66", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea66", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea68", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb8034fa93c4c4b05ea66", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 72 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eaa6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eaa6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaa8", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05eaa6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00136", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea6a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea6a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea6c", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05ea6a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eaaa", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eaaa", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaac", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbb8034fa93c4c4b05eaaa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00135", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea6e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea6e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00075", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea70", - "_tpl": "60b0f561c4449e4cb624c1d7", - "parentId": "66cbb8034fa93c4c4b05ea6e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eaae", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eaae", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eab0", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb8034fa93c4c4b05eaae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00034", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea72", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea72", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00837", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea74", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05ea72", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eab2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eab2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eab4", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb8034fa93c4c4b05eab2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00033", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea76", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea76", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00358", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea78", - "_tpl": "5d80ca9086f774403a401e40", - "parentId": "66cbb8034fa93c4c4b05ea76", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eab6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eab6", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eab8", + "_tpl": "615d8dbd290d254f5e6b2ed6", + "parentId": "66cbb8034fa93c4c4b05eab6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea7a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea7a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea7c", - "_tpl": "5e2af29386f7746d4159f077", - "parentId": "66cbb8034fa93c4c4b05ea7a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00031", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea7e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea7e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00562", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea80", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb8034fa93c4c4b05ea7e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00919", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea82", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea82", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea84", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb8034fa93c4c4b05ea82", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eaba", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eaba", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea86", - "_tpl": "64b9cf0ac12b9c38db26923a", - "parentId": "66cbb8034fa93c4c4b05ea82", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05eabc", + "_tpl": "5734773724597737fd047c14", + "parentId": "66cbb8034fa93c4c4b05eaba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea88", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "66cbb8034fa93c4c4b05ea82", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eabe", + "_tpl": "57347d692459774491567cf1", + "parentId": "66cbb8034fa93c4c4b05eaba", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eac0", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66cbb8034fa93c4c4b05eaba", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eac2", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbb8034fa93c4c4b05eaba", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eac4", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbb8034fa93c4c4b05eaba", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00292", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ea8a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea8a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00679", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea8c", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb8034fa93c4c4b05ea8a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea8e", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbb8034fa93c4c4b05ea8a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eac6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eac6", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea90", - "_tpl": "5d0379a886f77420407aa271", - "parentId": "66cbb8034fa93c4c4b05ea8a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eac8", + "_tpl": "6194eff92d2c397d6600348b", + "parentId": "66cbb8034fa93c4c4b05eac6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00272", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ea92", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ea92", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00347", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea94", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb8034fa93c4c4b05ea92", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea96", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbb8034fa93c4c4b05ea92", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eaca", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eaca", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea98", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbb8034fa93c4c4b05ea92", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05eacc", + "_tpl": "544fb3f34bdc2d03748b456a", + "parentId": "66cbb8034fa93c4c4b05eaca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ea9a", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb8034fa93c4c4b05ea92", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05eace", + "_tpl": "5fb651b52b1b027b1f50bcff", + "parentId": "66cbb8034fa93c4c4b05eaca", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ead0", + "_tpl": "612e0e3c290d254f5e6b291d", + "parentId": "66cbb8034fa93c4c4b05eaca", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea9c", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05ea92", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ea9e", - "_tpl": "6389c6463485cf0eeb260715", - "parentId": "66cbb8034fa93c4c4b05ea92", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ead2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ead2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eaa0", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb8034fa93c4c4b05ea92", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ead4", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66cbb8034fa93c4c4b05ead2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00078", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eaa2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eaa2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eaa4", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8034fa93c4c4b05eaa2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eaa6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eaa6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eaa8", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05eaa6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ead6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ead6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ead8", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05ead6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eaaa", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eaaa", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eaac", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbb8034fa93c4c4b05eaaa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00075", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eaae", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eaae", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eab0", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb8034fa93c4c4b05eaae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eada", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eada", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eadc", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05eada", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00837", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eab2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eab2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eab4", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb8034fa93c4c4b05eab2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00358", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eab6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eab6", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eab8", - "_tpl": "615d8dbd290d254f5e6b2ed6", - "parentId": "66cbb8034fa93c4c4b05eab6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eade", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eade", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eae0", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05eade", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00562", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eaba", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eaba", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00709", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eabc", - "_tpl": "5734773724597737fd047c14", - "parentId": "66cbb8034fa93c4c4b05eaba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eabe", - "_tpl": "57347d692459774491567cf1", - "parentId": "66cbb8034fa93c4c4b05eaba", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eae2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eae2", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eae4", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66cbb8034fa93c4c4b05eae2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00316", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eac0", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66cbb8034fa93c4c4b05eaba", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eac2", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbb8034fa93c4c4b05eaba", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eae6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eae6", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eae8", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05eae6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00586", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eac4", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbb8034fa93c4c4b05eaba", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00679", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eac6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eac6", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eac8", - "_tpl": "6194eff92d2c397d6600348b", - "parentId": "66cbb8034fa93c4c4b05eac6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eaea", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eaea", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaec", + "_tpl": "5a7ad74e51dfba0015068f45", + "parentId": "66cbb8034fa93c4c4b05eaea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaee", + "_tpl": "5fb655a72b1b027b1f50bd06", + "parentId": "66cbb8034fa93c4c4b05eaea", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaf0", + "_tpl": "5dff772da3651922b360bf91", + "parentId": "66cbb8034fa93c4c4b05eaea", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaf2", + "_tpl": "5c0517910db83400232ffee5", + "parentId": "66cbb8034fa93c4c4b05eaea", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaf4", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66cbb8034fa93c4c4b05eaea", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaf6", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66cbb8034fa93c4c4b05eaea", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eaf8", + "_tpl": "5ef366938cef260c0642acad", + "parentId": "66cbb8034fa93c4c4b05eaea", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eafa", + "_tpl": "5b4327aa5acfc400175496e0", + "parentId": "66cbb8034fa93c4c4b05eaea", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00347", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eaca", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eaca", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eacc", - "_tpl": "544fb3f34bdc2d03748b456a", - "parentId": "66cbb8034fa93c4c4b05eaca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eace", - "_tpl": "5fb651b52b1b027b1f50bcff", - "parentId": "66cbb8034fa93c4c4b05eaca", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eafc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eafc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ead0", - "_tpl": "612e0e3c290d254f5e6b291d", - "parentId": "66cbb8034fa93c4c4b05eaca", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eafe", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05eafc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ead2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ead2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ead4", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66cbb8034fa93c4c4b05ead2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ead6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ead6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ead8", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05ead6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eb00", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb00", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb02", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb8034fa93c4c4b05eb00", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eada", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eada", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eadc", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05eada", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eade", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eade", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eae0", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05eade", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eb04", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb04", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb06", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05eb04", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00709", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eae2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eae2", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00067", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eae4", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66cbb8034fa93c4c4b05eae2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00316", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eae6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eae6", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eae8", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05eae6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eb08", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb08", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb0a", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb8034fa93c4c4b05eb08", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00586", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eaea", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eaea", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00488", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eaec", - "_tpl": "5a7ad74e51dfba0015068f45", - "parentId": "66cbb8034fa93c4c4b05eaea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eaee", - "_tpl": "5fb655a72b1b027b1f50bd06", - "parentId": "66cbb8034fa93c4c4b05eaea", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb0c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb0c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eaf0", - "_tpl": "5dff772da3651922b360bf91", - "parentId": "66cbb8034fa93c4c4b05eaea", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + { + "_id": "66cbb8034fa93c4c4b05eb0e", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbb8034fa93c4c4b05eb0c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eaf2", - "_tpl": "5c0517910db83400232ffee5", - "parentId": "66cbb8034fa93c4c4b05eaea", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05eb10", + "_tpl": "5d6fc87386f77449db3db94e", + "parentId": "66cbb8034fa93c4c4b05eb0c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb12", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb8034fa93c4c4b05eb0c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00385", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eaf4", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66cbb8034fa93c4c4b05eaea", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eaf6", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66cbb8034fa93c4c4b05eaea", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb14", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb14", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eaf8", - "_tpl": "5ef366938cef260c0642acad", - "parentId": "66cbb8034fa93c4c4b05eaea", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05eb16", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "66cbb8034fa93c4c4b05eb14", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eafa", - "_tpl": "5b4327aa5acfc400175496e0", - "parentId": "66cbb8034fa93c4c4b05eaea", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eafc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eafc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eafe", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05eafc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb18", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb8034fa93c4c4b05eb14", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb1a", + "_tpl": "59e0bdb186f774156f04ce82", + "parentId": "66cbb8034fa93c4c4b05eb14", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eb00", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb00", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00343", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb02", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb8034fa93c4c4b05eb00", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eb04", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb04", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb06", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05eb04", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eb1c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb1c", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb1e", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "66cbb8034fa93c4c4b05eb1c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb20", + "_tpl": "5c791e872e2216001219c40a", + "parentId": "66cbb8034fa93c4c4b05eb1c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb22", + "_tpl": "59e7708286f7742cbd762753", + "parentId": "66cbb8034fa93c4c4b05eb1c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb24", + "_tpl": "5cc700ede4a949033c734315", + "parentId": "66cbb8034fa93c4c4b05eb1c", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb26", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "66cbb8034fa93c4c4b05eb1c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb27", + "_tpl": "66b5f65ca7f72d197e70bcd6", + "parentId": "66cbb8034fa93c4c4b05eb1c", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb28", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "66cbb8034fa93c4c4b05eb27", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb8034fa93c4c4b05eb29", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "66cbb8034fa93c4c4b05eb27", + "slotId": "Helmet_back" } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00067", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eb08", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb08", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00367", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb0a", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb8034fa93c4c4b05eb08", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00488", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb0c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb0c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb0e", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbb8034fa93c4c4b05eb0c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb2b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb2b", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb2d", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "parentId": "66cbb8034fa93c4c4b05eb2b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00704", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb10", - "_tpl": "5d6fc87386f77449db3db94e", - "parentId": "66cbb8034fa93c4c4b05eb0c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb12", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb8034fa93c4c4b05eb0c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb2f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb2f", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb31", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "parentId": "66cbb8034fa93c4c4b05eb2f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb33", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb8034fa93c4c4b05eb2f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00385", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb14", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb14", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00311", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb16", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "66cbb8034fa93c4c4b05eb14", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb18", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb8034fa93c4c4b05eb14", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb35", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb35", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb37", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05eb35", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00550", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb1a", - "_tpl": "59e0bdb186f774156f04ce82", - "parentId": "66cbb8034fa93c4c4b05eb14", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb39", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb39", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb3b", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb8034fa93c4c4b05eb39", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00343", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eb1c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb1c", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00590", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb1e", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "66cbb8034fa93c4c4b05eb1c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb3d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb3d", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb3f", + "_tpl": "64b8f7b5389d7ffd620ccba2", + "parentId": "66cbb8034fa93c4c4b05eb3d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 21 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb41", + "_tpl": "656fafe3498d1b7e3e071da4", + "parentId": "66cbb8034fa93c4c4b05eb3d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb43", + "_tpl": "5b3f7bf05acfc433000ecf6b", + "parentId": "66cbb8034fa93c4c4b05eb3d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb45", + "_tpl": "6415c694da439c6a97048b56", + "parentId": "66cbb8034fa93c4c4b05eb3d", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb47", + "_tpl": "63d3ce0446bd475bcb50f55f", + "parentId": "66cbb8034fa93c4c4b05eb3d", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb49", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "66cbb8034fa93c4c4b05eb3d", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb4a", + "_tpl": "56d59856d2720bd8418b456a", + "parentId": "66cbb8034fa93c4c4b05eb3d", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb4b", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "66cbb8034fa93c4c4b05eb4a", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05eb4c", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "66cbb8034fa93c4c4b05eb4a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05eb4d", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "66cbb8034fa93c4c4b05eb4a", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05eb4e", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "66cbb8034fa93c4c4b05eb4d", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05eb4f", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "66cbb8034fa93c4c4b05eb4d", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8034fa93c4c4b05eb50", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "66cbb8034fa93c4c4b05eb4a", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05eb51", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb8034fa93c4c4b05eb50", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb53", + "_tpl": "5d6fc78386f77449d825f9dc", + "parentId": "66cbb8034fa93c4c4b05eb3d", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00596", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb20", - "_tpl": "5c791e872e2216001219c40a", - "parentId": "66cbb8034fa93c4c4b05eb1c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb55", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb55", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb57", + "_tpl": "62e7e7bbe6da9612f743f1e0", + "parentId": "66cbb8034fa93c4c4b05eb55", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb59", + "_tpl": "5fd4c4fa16cac650092f6771", + "parentId": "66cbb8034fa93c4c4b05eb55", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb5b", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbb8034fa93c4c4b05eb55", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 2 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00515", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb22", - "_tpl": "59e7708286f7742cbd762753", - "parentId": "66cbb8034fa93c4c4b05eb1c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb5d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb5d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb5f", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66cbb8034fa93c4c4b05eb5d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00357", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb24", - "_tpl": "5cc700ede4a949033c734315", - "parentId": "66cbb8034fa93c4c4b05eb1c", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eb61", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb61", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb63", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66cbb8034fa93c4c4b05eb61", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb65", + "_tpl": "5fc4b97bab884124df0cd5e3", + "parentId": "66cbb8034fa93c4c4b05eb61", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00731", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb26", - "_tpl": "5b3a337e5acfc4704b4a19a0", - "parentId": "66cbb8034fa93c4c4b05eb1c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb67", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb67", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb69", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbb8034fa93c4c4b05eb67", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb6b", + "_tpl": "618a431df1eb8e24b8741deb", + "parentId": "66cbb8034fa93c4c4b05eb67", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00949", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb27", - "_tpl": "66b5f65ca7f72d197e70bcd6", - "parentId": "66cbb8034fa93c4c4b05eb1c", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb6d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb6d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb6f", + "_tpl": "623c3c1f37b4b31470357737", + "parentId": "66cbb8034fa93c4c4b05eb6d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00623", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb28", - "_tpl": "66b61cfae98be930d701c029", - "parentId": "66cbb8034fa93c4c4b05eb27", - "slotId": "Helmet_top" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb29", - "_tpl": "66b61ce0c5d72b027748867e", - "parentId": "66cbb8034fa93c4c4b05eb27", - "slotId": "Helmet_back" - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00367", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb2b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb2b", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eb2d", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "parentId": "66cbb8034fa93c4c4b05eb2b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb71", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb71", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb73", + "_tpl": "5cf79389d7f00c10941a0c4d", + "parentId": "66cbb8034fa93c4c4b05eb71", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb75", + "_tpl": "57ffa9f4245977728561e844", + "parentId": "66cbb8034fa93c4c4b05eb71", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb77", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "parentId": "66cbb8034fa93c4c4b05eb71", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb78", + "_tpl": "59984ab886f7743e98271174", + "parentId": "66cbb8034fa93c4c4b05eb71", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb79", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb8034fa93c4c4b05eb78", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05eb7a", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb8034fa93c4c4b05eb78", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05eb7b", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbb8034fa93c4c4b05eb78", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05eb81", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb8034fa93c4c4b05eb7b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb7c", + "_tpl": "5998597786f77414ea6da093", + "parentId": "66cbb8034fa93c4c4b05eb78", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05eb7d", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb8034fa93c4c4b05eb78", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05eb7e", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb8034fa93c4c4b05eb78", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05eb7f", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb8034fa93c4c4b05eb78", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05eb80", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb8034fa93c4c4b05eb7f", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05eb83", + "_tpl": "668031ffe3e7eb26e8004cdd", + "parentId": "66cbb8034fa93c4c4b05eb71", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00704", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb2f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb2f", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00578", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb31", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "parentId": "66cbb8034fa93c4c4b05eb2f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb33", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb8034fa93c4c4b05eb2f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb85", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb85", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb87", + "_tpl": "5751487e245977207e26a315", + "parentId": "66cbb8034fa93c4c4b05eb85", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb89", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb8034fa93c4c4b05eb85", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00311", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb35", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb35", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00276", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb37", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05eb35", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00550", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb39", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb39", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb3b", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb8034fa93c4c4b05eb39", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eb8b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb8b", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb8d", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbb8034fa93c4c4b05eb8b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb8f", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb8034fa93c4c4b05eb8b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00590", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb3d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb3d", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00916", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb3f", - "_tpl": "64b8f7b5389d7ffd620ccba2", - "parentId": "66cbb8034fa93c4c4b05eb3d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 21 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb41", - "_tpl": "656fafe3498d1b7e3e071da4", - "parentId": "66cbb8034fa93c4c4b05eb3d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eb91", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb91", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb93", + "_tpl": "5cf638cbd7f00c06595bc936", + "parentId": "66cbb8034fa93c4c4b05eb91", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00202", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb43", - "_tpl": "5b3f7bf05acfc433000ecf6b", - "parentId": "66cbb8034fa93c4c4b05eb3d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb45", - "_tpl": "6415c694da439c6a97048b56", - "parentId": "66cbb8034fa93c4c4b05eb3d", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eb95", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb95", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eb97", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05eb95", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00201", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb47", - "_tpl": "63d3ce0446bd475bcb50f55f", - "parentId": "66cbb8034fa93c4c4b05eb3d", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb49", - "_tpl": "570fd79bd2720bc7458b4583", - "parentId": "66cbb8034fa93c4c4b05eb3d", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eb99", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb99", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eb4a", - "_tpl": "56d59856d2720bd8418b456a", - "parentId": "66cbb8034fa93c4c4b05eb3d", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 1 + { + "_id": "66cbb8034fa93c4c4b05eb9b", + "_tpl": "5d80c78786f774403a401e3e", + "parentId": "66cbb8034fa93c4c4b05eb99", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00200", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb4b", - "_tpl": "56d5a1f7d2720bb3418b456a", - "parentId": "66cbb8034fa93c4c4b05eb4a", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05eb4c", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "66cbb8034fa93c4c4b05eb4a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05eb4d", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "66cbb8034fa93c4c4b05eb4a", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05eb4e", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "66cbb8034fa93c4c4b05eb4d", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05eb4f", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "66cbb8034fa93c4c4b05eb4d", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb8034fa93c4c4b05eb50", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "66cbb8034fa93c4c4b05eb4a", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb51", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb8034fa93c4c4b05eb50", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eb9d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eb9d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eb9f", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb8034fa93c4c4b05eb9d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00199", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb53", - "_tpl": "5d6fc78386f77449d825f9dc", - "parentId": "66cbb8034fa93c4c4b05eb3d", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eba1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eba1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eba3", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb8034fa93c4c4b05eba1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00596", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb55", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb55", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00878", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb57", - "_tpl": "62e7e7bbe6da9612f743f1e0", - "parentId": "66cbb8034fa93c4c4b05eb55", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eba5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eba5", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eba7", + "_tpl": "66b37f114410565a8f6789e2", + "parentId": "66cbb8034fa93c4c4b05eba5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eba9", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb8034fa93c4c4b05eba5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Test_for_export_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb59", - "_tpl": "5fd4c4fa16cac650092f6771", - "parentId": "66cbb8034fa93c4c4b05eb55", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebab", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebab", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ebad", + "_tpl": "5b432b6c5acfc4001a599bf0", + "parentId": "66cbb8034fa93c4c4b05ebab", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00341", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb5b", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbb8034fa93c4c4b05eb55", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 2 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ebaf", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebaf", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebb1", + "_tpl": "5ab8f04f86f774585f4237d8", + "parentId": "66cbb8034fa93c4c4b05ebaf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00515", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb5d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb5d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00954", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb5f", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66cbb8034fa93c4c4b05eb5d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00357", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eb61", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb61", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb63", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66cbb8034fa93c4c4b05eb61", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebb3", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebb3", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eb65", - "_tpl": "5fc4b97bab884124df0cd5e3", - "parentId": "66cbb8034fa93c4c4b05eb61", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ebb4", + "_tpl": "5de652c31b7e3716273428be", + "parentId": "66cbb8034fa93c4c4b05ebb3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebb5", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "parentId": "66cbb8034fa93c4c4b05ebb4", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05ebba", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "66cbb8034fa93c4c4b05ebb5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebb6", + "_tpl": "5de655be4a9f347bc92edb88", + "parentId": "66cbb8034fa93c4c4b05ebb4", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05ebb7", + "_tpl": "5de65547883dde217541644b", + "parentId": "66cbb8034fa93c4c4b05ebb4", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05ebb8", + "_tpl": "5de6556a205ddc616a6bc4f7", + "parentId": "66cbb8034fa93c4c4b05ebb7", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05ebb9", + "_tpl": "5de6558e9f98ac2bc65950fc", + "parentId": "66cbb8034fa93c4c4b05ebb4", + "slotId": "mod_mount" + }, + { + "_id": "66cbb8034fa93c4c4b05ebbc", + "_tpl": "590c639286f774151567fa95", + "parentId": "66cbb8034fa93c4c4b05ebb3", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00731", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb67", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb67", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00933", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb69", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbb8034fa93c4c4b05eb67", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb6b", - "_tpl": "618a431df1eb8e24b8741deb", - "parentId": "66cbb8034fa93c4c4b05eb67", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebbe", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebbe", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebc0", + "_tpl": "638de3603a1a4031d8260b8c", + "parentId": "66cbb8034fa93c4c4b05ebbe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebc2", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "66cbb8034fa93c4c4b05ebbe", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00949", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb6d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb6d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00370", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb6f", - "_tpl": "623c3c1f37b4b31470357737", - "parentId": "66cbb8034fa93c4c4b05eb6d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00623", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb71", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb71", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb73", - "_tpl": "5cf79389d7f00c10941a0c4d", - "parentId": "66cbb8034fa93c4c4b05eb71", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebc4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebc4", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ebc6", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbb8034fa93c4c4b05ebc4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00319", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb75", - "_tpl": "57ffa9f4245977728561e844", - "parentId": "66cbb8034fa93c4c4b05eb71", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb77", - "_tpl": "5bb20e0ed4351e3bac1212dc", - "parentId": "66cbb8034fa93c4c4b05eb71", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebc8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebc8", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eb78", - "_tpl": "59984ab886f7743e98271174", - "parentId": "66cbb8034fa93c4c4b05eb71", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ebca", + "_tpl": "62a5c2c98ec41a51b34739c0", + "parentId": "66cbb8034fa93c4c4b05ebc8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00937", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb79", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb8034fa93c4c4b05eb78", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05eb7a", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb8034fa93c4c4b05eb78", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05eb7b", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbb8034fa93c4c4b05eb78", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb81", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb8034fa93c4c4b05eb7b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebcc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebcc", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebce", + "_tpl": "609a63b6e2ff132951242d09", + "parentId": "66cbb8034fa93c4c4b05ebcc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebcf", + "_tpl": "56e0598dd2720bb5668b45a6", + "parentId": "66cbb8034fa93c4c4b05ebcc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebd0", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66cbb8034fa93c4c4b05ebcf", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05ebd3", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb8034fa93c4c4b05ebd0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebd1", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "66cbb8034fa93c4c4b05ebcf", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05ebd2", + "_tpl": "56e05a6ed2720bd0748b4567", + "parentId": "66cbb8034fa93c4c4b05ebcf", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb8034fa93c4c4b05ebd5", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8034fa93c4c4b05ebcc", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 35 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00759", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb7c", - "_tpl": "5998597786f77414ea6da093", - "parentId": "66cbb8034fa93c4c4b05eb78", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05eb7d", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb8034fa93c4c4b05eb78", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05eb7e", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb8034fa93c4c4b05eb78", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05eb7f", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb8034fa93c4c4b05eb78", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb8034fa93c4c4b05eb80", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb8034fa93c4c4b05eb7f", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb83", - "_tpl": "668031ffe3e7eb26e8004cdd", - "parentId": "66cbb8034fa93c4c4b05eb71", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebd7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebd7", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebd9", + "_tpl": "60098af40accd37ef2175f27", + "parentId": "66cbb8034fa93c4c4b05ebd7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebdb", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb8034fa93c4c4b05ebd7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00578", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb85", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb85", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00849", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb87", - "_tpl": "5751487e245977207e26a315", - "parentId": "66cbb8034fa93c4c4b05eb85", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb89", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb8034fa93c4c4b05eb85", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebdd", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebdd", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebdf", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbb8034fa93c4c4b05ebdd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebe1", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb8034fa93c4c4b05ebdd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebe3", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb8034fa93c4c4b05ebdd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00276", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eb8b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb8b", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00583", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb8d", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbb8034fa93c4c4b05eb8b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebe5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebe5", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebe7", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8034fa93c4c4b05ebe5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 22 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebe9", + "_tpl": "5c0009510db834001966907f", + "parentId": "66cbb8034fa93c4c4b05ebe5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebeb", + "_tpl": "6193d3149fb0c665d5490e32", + "parentId": "66cbb8034fa93c4c4b05ebe5", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebed", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8034fa93c4c4b05ebe5", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 25 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebef", + "_tpl": "5d2f213448f0355009199284", + "parentId": "66cbb8034fa93c4c4b05ebe5", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebf1", + "_tpl": "55d482194bdc2d1d4e8b456b", + "parentId": "66cbb8034fa93c4c4b05ebe5", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebf3", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "parentId": "66cbb8034fa93c4c4b05ebe5", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ebf5", + "_tpl": "5d133067d7ad1a33013f95b4", + "parentId": "66cbb8034fa93c4c4b05ebe5", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00523", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb8f", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb8034fa93c4c4b05eb8b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00916", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eb91", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb91", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb93", - "_tpl": "5cf638cbd7f00c06595bc936", - "parentId": "66cbb8034fa93c4c4b05eb91", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebf7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebf7", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebf9", + "_tpl": "5e2af02c86f7746d420957d4", + "parentId": "66cbb8034fa93c4c4b05ebf7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebfb", + "_tpl": "5bc9bc53d4351e00367fbcee", + "parentId": "66cbb8034fa93c4c4b05ebf7", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00202", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eb95", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb95", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00615", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb97", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05eb95", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ebfd", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ebfd", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ebff", + "_tpl": "5a16badafcdbcb001865f72d", + "parentId": "66cbb8034fa93c4c4b05ebfd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec01", + "_tpl": "6567e7681265c8a131069b0f", + "parentId": "66cbb8034fa93c4c4b05ebfd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00201", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eb99", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb99", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00274", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb9b", - "_tpl": "5d80c78786f774403a401e3e", - "parentId": "66cbb8034fa93c4c4b05eb99", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec03", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec03", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec05", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb8034fa93c4c4b05ec03", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec07", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb8034fa93c4c4b05ec03", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec09", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb8034fa93c4c4b05ec03", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec0b", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbb8034fa93c4c4b05ec03", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec0d", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb8034fa93c4c4b05ec03", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec0f", + "_tpl": "5c0e530286f7747fa1419862", + "parentId": "66cbb8034fa93c4c4b05ec03", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00200", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eb9d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eb9d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00480", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eb9f", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb8034fa93c4c4b05eb9d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ec11", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec11", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec13", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05ec11", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec15", + "_tpl": "5755383e24597772cb798966", + "parentId": "66cbb8034fa93c4c4b05ec11", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec17", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66cbb8034fa93c4c4b05ec11", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00199", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eba1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eba1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00074", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eba3", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb8034fa93c4c4b05eba1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec19", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec19", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec1b", + "_tpl": "62a0a16d0b9d3c46de5b6e97", + "parentId": "66cbb8034fa93c4c4b05ec19", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00878", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eba5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eba5", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00073", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eba7", - "_tpl": "66b37f114410565a8f6789e2", - "parentId": "66cbb8034fa93c4c4b05eba5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec1d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec1d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec1f", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb8034fa93c4c4b05ec1d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eba9", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb8034fa93c4c4b05eba5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec21", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec21", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec23", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05ec21", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebab", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebab", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebad", - "_tpl": "5b432b6c5acfc4001a599bf0", - "parentId": "66cbb8034fa93c4c4b05ebab", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec25", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec25", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec27", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb8034fa93c4c4b05ec25", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00341", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ebaf", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebaf", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00190", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebb1", - "_tpl": "5ab8f04f86f774585f4237d8", - "parentId": "66cbb8034fa93c4c4b05ebaf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec29", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec29", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec2b", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb8034fa93c4c4b05ec29", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00954", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebb3", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebb3", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00189", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebb4", - "_tpl": "5de652c31b7e3716273428be", - "parentId": "66cbb8034fa93c4c4b05ebb3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec2d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec2d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb8034fa93c4c4b05ec2f", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb8034fa93c4c4b05ec2d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00188", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebb5", - "_tpl": "5de653abf76fdc1ce94a5a2a", - "parentId": "66cbb8034fa93c4c4b05ebb4", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebba", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "66cbb8034fa93c4c4b05ebb5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec31", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec31", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec33", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb8034fa93c4c4b05ec31", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00187", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebb6", - "_tpl": "5de655be4a9f347bc92edb88", - "parentId": "66cbb8034fa93c4c4b05ebb4", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebb7", - "_tpl": "5de65547883dde217541644b", - "parentId": "66cbb8034fa93c4c4b05ebb4", - "slotId": "mod_barrel" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec35", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec35", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec37", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05ec35", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00604", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebb8", - "_tpl": "5de6556a205ddc616a6bc4f7", - "parentId": "66cbb8034fa93c4c4b05ebb7", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebb9", - "_tpl": "5de6558e9f98ac2bc65950fc", - "parentId": "66cbb8034fa93c4c4b05ebb4", - "slotId": "mod_mount" - }, - { - "_id": "66cbb8034fa93c4c4b05ebbc", - "_tpl": "590c639286f774151567fa95", - "parentId": "66cbb8034fa93c4c4b05ebb3", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ec39", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec39", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec3b", + "_tpl": "59d625f086f774661516605d", + "parentId": "66cbb8034fa93c4c4b05ec39", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00933", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebbe", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebbe", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00780", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebc0", - "_tpl": "638de3603a1a4031d8260b8c", - "parentId": "66cbb8034fa93c4c4b05ebbe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebc2", - "_tpl": "5a16b8a9fcdbcb00165aa6ca", - "parentId": "66cbb8034fa93c4c4b05ebbe", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ec3d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec3d", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec3f", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05ec3d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec41", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05ec3d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00370", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebc4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebc4", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebc6", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbb8034fa93c4c4b05ebc4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00319", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebc8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebc8", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebca", - "_tpl": "62a5c2c98ec41a51b34739c0", - "parentId": "66cbb8034fa93c4c4b05ebc8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec43", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec43", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec45", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05ec43", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00937", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebcc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebcc", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebce", - "_tpl": "609a63b6e2ff132951242d09", - "parentId": "66cbb8034fa93c4c4b05ebcc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebcf", - "_tpl": "56e0598dd2720bb5668b45a6", - "parentId": "66cbb8034fa93c4c4b05ebcc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec47", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec47", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb8034fa93c4c4b05ec49", + "_tpl": "5d80c88d86f77440556dbf07", + "parentId": "66cbb8034fa93c4c4b05ec47", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebd0", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66cbb8034fa93c4c4b05ebcf", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebd3", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb8034fa93c4c4b05ebd0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec4b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec4b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec4d", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05ec4b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebd1", - "_tpl": "56e05b06d2720bb2668b4586", - "parentId": "66cbb8034fa93c4c4b05ebcf", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05ebd2", - "_tpl": "56e05a6ed2720bd0748b4567", - "parentId": "66cbb8034fa93c4c4b05ebcf", - "slotId": "mod_pistolgrip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebd5", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8034fa93c4c4b05ebcc", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 35 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec4f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec4f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec51", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05ec4f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00759", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebd7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebd7", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00458", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebd9", - "_tpl": "60098af40accd37ef2175f27", - "parentId": "66cbb8034fa93c4c4b05ebd7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebdb", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb8034fa93c4c4b05ebd7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ec53", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec53", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec55", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66cbb8034fa93c4c4b05ec53", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec57", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb8034fa93c4c4b05ec53", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec59", + "_tpl": "62a0a0bb621468534a797ad5", + "parentId": "66cbb8034fa93c4c4b05ec53", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00849", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebdd", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebdd", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00689", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebdf", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbb8034fa93c4c4b05ebdd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebe1", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb8034fa93c4c4b05ebdd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ec5b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec5b", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ebe3", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb8034fa93c4c4b05ebdd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec5c", + "_tpl": "5ac66d015acfc400180ae6e4", + "parentId": "66cbb8034fa93c4c4b05ec5b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec5d", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb8034fa93c4c4b05ec5c", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05ec5e", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb8034fa93c4c4b05ec5d", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05ec5f", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "66cbb8034fa93c4c4b05ec5c", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05ec60", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb8034fa93c4c4b05ec5c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05ec61", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb8034fa93c4c4b05ec5c", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05ec62", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb8034fa93c4c4b05ec5c", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05ec63", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb8034fa93c4c4b05ec5c", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05ec64", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66cbb8034fa93c4c4b05ec5c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05ec65", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb8034fa93c4c4b05ec64", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 14.0 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00583", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebe5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebe5", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00699", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebe7", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8034fa93c4c4b05ebe5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 22 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebe9", - "_tpl": "5c0009510db834001966907f", - "parentId": "66cbb8034fa93c4c4b05ebe5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ec67", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec67", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec69", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb8034fa93c4c4b05ec67", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00218", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebeb", - "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "66cbb8034fa93c4c4b05ebe5", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebed", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8034fa93c4c4b05ebe5", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec6b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec6b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 25 + { + "_id": "66cbb8034fa93c4c4b05ec6d", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05ec6b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00217", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebef", - "_tpl": "5d2f213448f0355009199284", - "parentId": "66cbb8034fa93c4c4b05ebe5", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec6f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec6f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec71", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05ec6f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00216", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebf1", - "_tpl": "55d482194bdc2d1d4e8b456b", - "parentId": "66cbb8034fa93c4c4b05ebe5", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec73", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec73", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec75", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05ec73", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00215", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebf3", - "_tpl": "5c6bf4aa2e2216001219b0ae", - "parentId": "66cbb8034fa93c4c4b05ebe5", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec77", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec77", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec79", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05ec77", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb8034fa93c4c4b05ebf5", - "_tpl": "5d133067d7ad1a33013f95b4", - "parentId": "66cbb8034fa93c4c4b05ebe5", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00523", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebf7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebf7", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00066", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebf9", - "_tpl": "5e2af02c86f7746d420957d4", - "parentId": "66cbb8034fa93c4c4b05ebf7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec7b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec7b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec7d", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb8034fa93c4c4b05ec7b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00065", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebfb", - "_tpl": "5bc9bc53d4351e00367fbcee", - "parentId": "66cbb8034fa93c4c4b05ebf7", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec7f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec7f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec81", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05ec7f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00615", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ebfd", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ebfd", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ebff", - "_tpl": "5a16badafcdbcb001865f72d", - "parentId": "66cbb8034fa93c4c4b05ebfd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec83", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec83", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec85", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb8034fa93c4c4b05ec83", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec01", - "_tpl": "6567e7681265c8a131069b0f", - "parentId": "66cbb8034fa93c4c4b05ebfd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec87", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec87", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec89", + "_tpl": "590c621186f774138d11ea29", + "parentId": "66cbb8034fa93c4c4b05ec87", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00274", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec03", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec03", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00339", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec05", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb8034fa93c4c4b05ec03", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ec8b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec8b", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec8d", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb8034fa93c4c4b05ec8b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00365", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec07", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb8034fa93c4c4b05ec03", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ec8f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec8f", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec91", + "_tpl": "5ede4739e0350d05467f73e8", + "parentId": "66cbb8034fa93c4c4b05ec8f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec93", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbb8034fa93c4c4b05ec8f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00360", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec09", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb8034fa93c4c4b05ec03", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ec95", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec95", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec97", + "_tpl": "5c9a1c422e221600106f69f0", + "parentId": "66cbb8034fa93c4c4b05ec95", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec99", + "_tpl": "5b30bc165acfc40016387293", + "parentId": "66cbb8034fa93c4c4b05ec95", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ec9b", + "_tpl": "64807a29e5ffe165600abc97", + "parentId": "66cbb8034fa93c4c4b05ec95", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ec9d", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "66cbb8034fa93c4c4b05ec95", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00497", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec0b", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbb8034fa93c4c4b05ec03", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ec9f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ec9f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eca1", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbb8034fa93c4c4b05ec9f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eca3", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66cbb8034fa93c4c4b05ec9f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05eca5", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb8034fa93c4c4b05ec9f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00282", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec0d", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb8034fa93c4c4b05ec03", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eca7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eca7", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eca9", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05eca7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecab", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05eca7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecad", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbb8034fa93c4c4b05eca7", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ecaf", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb8034fa93c4c4b05eca7", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00246", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec0f", - "_tpl": "5c0e530286f7747fa1419862", - "parentId": "66cbb8034fa93c4c4b05ec03", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ecb1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecb1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecb3", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05ecb1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00480", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ec11", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec11", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00245", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec13", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05ec11", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ecb5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecb5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ecb7", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbb8034fa93c4c4b05ecb5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00244", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec15", - "_tpl": "5755383e24597772cb798966", - "parentId": "66cbb8034fa93c4c4b05ec11", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ecb9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecb9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ecbb", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb8034fa93c4c4b05ecb9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00243", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec17", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66cbb8034fa93c4c4b05ec11", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ecbd", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecbd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecbf", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb8034fa93c4c4b05ecbd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00074", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec19", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec19", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00835", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec1b", - "_tpl": "62a0a16d0b9d3c46de5b6e97", - "parentId": "66cbb8034fa93c4c4b05ec19", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ecc1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecc1", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecc3", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05ecc1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecc5", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb8034fa93c4c4b05ecc1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00073", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec1d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec1d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00428", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec1f", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb8034fa93c4c4b05ec1d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ecc7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecc7", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecc9", + "_tpl": "57347d90245977448f7b7f65", + "parentId": "66cbb8034fa93c4c4b05ecc7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eccb", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbb8034fa93c4c4b05ecc7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec21", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec21", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00329", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec23", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05ec21", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eccd", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eccd", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eccf", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb8034fa93c4c4b05eccd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec25", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec25", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00786", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec27", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb8034fa93c4c4b05ec25", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ecd1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecd1", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecd3", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05ecd1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecd5", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66cbb8034fa93c4c4b05ecd1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecd7", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb8034fa93c4c4b05ecd1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00190", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec29", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec29", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00334", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec2b", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb8034fa93c4c4b05ec29", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ecd9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecd9", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecdb", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb8034fa93c4c4b05ecd9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecdd", + "_tpl": "57347baf24597738002c6178", + "parentId": "66cbb8034fa93c4c4b05ecd9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00189", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec2d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec2d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00661", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec2f", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb8034fa93c4c4b05ec2d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ecdf", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecdf", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ece1", + "_tpl": "657b28d25f444d6dff0c6c77", + "parentId": "66cbb8034fa93c4c4b05ecdf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ece3", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66cbb8034fa93c4c4b05ecdf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ece5", + "_tpl": "5aaf8a0be5b5b00015693243", + "parentId": "66cbb8034fa93c4c4b05ecdf", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00188", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec31", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec31", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00637", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec33", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb8034fa93c4c4b05ec31", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ece7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ece7", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ece9", + "_tpl": "5b363e1b5acfc4771e1c5e80", + "parentId": "66cbb8034fa93c4c4b05ece7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eceb", + "_tpl": "615d8dbd290d254f5e6b2ed6", + "parentId": "66cbb8034fa93c4c4b05ece7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00187", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec35", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec35", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00355", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec37", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05ec35", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eced", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eced", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecef", + "_tpl": "5df25b6c0b92095fd441e4cf", + "parentId": "66cbb8034fa93c4c4b05eced", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecf1", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "parentId": "66cbb8034fa93c4c4b05eced", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecf3", + "_tpl": "5dfe6104585a0c3e995c7b82", + "parentId": "66cbb8034fa93c4c4b05eced", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecf5", + "_tpl": "62a5c333ec21e50cad3b5dc6", + "parentId": "66cbb8034fa93c4c4b05eced", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00604", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ec39", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec39", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00822", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec3b", - "_tpl": "59d625f086f774661516605d", - "parentId": "66cbb8034fa93c4c4b05ec39", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ecf7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecf7", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecf9", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb8034fa93c4c4b05ecf7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ecfb", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb8034fa93c4c4b05ecf7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00780", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ec3d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec3d", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00030", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec3f", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05ec3d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ecfd", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ecfd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ecff", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbb8034fa93c4c4b05ecfd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00029", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec41", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05ec3d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed01", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed01", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed03", + "_tpl": "5e2af37686f774755a234b65", + "parentId": "66cbb8034fa93c4c4b05ed01", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec43", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec43", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec45", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05ec43", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed05", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed05", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed07", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05ed05", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec47", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec47", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec49", - "_tpl": "5d80c88d86f77440556dbf07", - "parentId": "66cbb8034fa93c4c4b05ec47", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed09", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed09", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed0b", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb8034fa93c4c4b05ed09", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec4b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec4b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00646", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec4d", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05ec4b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ed0d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed0d", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed0f", + "_tpl": "66012788c752a02bbe05e68e", + "parentId": "66cbb8034fa93c4c4b05ed0d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed11", + "_tpl": "5cf13123d7f00c1085616a50", + "parentId": "66cbb8034fa93c4c4b05ed0d", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed13", + "_tpl": "6386120cd6baa055ad1e201c", + "parentId": "66cbb8034fa93c4c4b05ed0d", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed15", + "_tpl": "5a9548c9159bd400133e97b3", + "parentId": "66cbb8034fa93c4c4b05ed0d", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec4f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec4f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00769", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec51", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05ec4f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ed17", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed17", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed19", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb8034fa93c4c4b05ed17", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00458", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ec53", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec53", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00486", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec55", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66cbb8034fa93c4c4b05ec53", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ed1b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed1b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed1c", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66cbb8034fa93c4c4b05ed1b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed1d", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66cbb8034fa93c4c4b05ed1c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05ed21", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb8034fa93c4c4b05ed1d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed1e", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66cbb8034fa93c4c4b05ed1c", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05ed1f", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66cbb8034fa93c4c4b05ed1e", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05ed20", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66cbb8034fa93c4c4b05ed1c", + "slotId": "mod_pistolgrip" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ed23", + "_tpl": "5673de654bdc2d180f8b456d", + "parentId": "66cbb8034fa93c4c4b05ed1b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00865", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec57", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb8034fa93c4c4b05ec53", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ed25", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed25", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed27", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb8034fa93c4c4b05ed25", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed29", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb8034fa93c4c4b05ed25", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ed2b", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb8034fa93c4c4b05ed25", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00524", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec59", - "_tpl": "62a0a0bb621468534a797ad5", - "parentId": "66cbb8034fa93c4c4b05ec53", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ed2d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed2d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed2f", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb8034fa93c4c4b05ed2d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed31", + "_tpl": "5d1b31ce86f7742523398394", + "parentId": "66cbb8034fa93c4c4b05ed2d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00689", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ec5b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec5b", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00575", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec5c", - "_tpl": "5ac66d015acfc400180ae6e4", - "parentId": "66cbb8034fa93c4c4b05ec5b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec5d", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb8034fa93c4c4b05ec5c", - "slotId": "mod_gas_block" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed33", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed33", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00090", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec5e", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb8034fa93c4c4b05ec5d", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec5f", - "_tpl": "5ac72e725acfc400180ae701", - "parentId": "66cbb8034fa93c4c4b05ec5c", - "slotId": "mod_muzzle" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed35", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed35", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed37", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb8034fa93c4c4b05ed35", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec60", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb8034fa93c4c4b05ec5c", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec61", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb8034fa93c4c4b05ec5c", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed39", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed39", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed3b", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb8034fa93c4c4b05ed39", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00088", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec62", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb8034fa93c4c4b05ec5c", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec63", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb8034fa93c4c4b05ec5c", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed3d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed3d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed3f", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb8034fa93c4c4b05ed3d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Reserve_Base_DesignStuff_00087", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec64", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66cbb8034fa93c4c4b05ec5c", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec65", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb8034fa93c4c4b05ec64", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 14.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed41", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed41", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed43", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb8034fa93c4c4b05ed41", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00699", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ec67", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec67", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00130", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec69", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb8034fa93c4c4b05ec67", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed45", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed45", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed47", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb8034fa93c4c4b05ed45", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00218", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec6b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec6b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00129", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec6d", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05ec6b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed49", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed49", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed4b", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb8034fa93c4c4b05ed49", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00217", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec6f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec6f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ec71", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05ec6f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00216", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec73", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec73", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00128", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec75", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05ec73", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00215", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec77", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec77", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec79", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05ec77", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed4d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed4d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed4f", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66cbb8034fa93c4c4b05ed4d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00066", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec7b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec7b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00127", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec7d", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb8034fa93c4c4b05ec7b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00065", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec7f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec7f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec81", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05ec7f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed51", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed51", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed53", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb8034fa93c4c4b05ed51", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec83", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec83", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00266", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec85", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb8034fa93c4c4b05ec83", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec87", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec87", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec89", - "_tpl": "590c621186f774138d11ea29", - "parentId": "66cbb8034fa93c4c4b05ec87", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed55", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed55", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed57", + "_tpl": "60b0f561c4449e4cb624c1d7", + "parentId": "66cbb8034fa93c4c4b05ed55", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00339", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ec8b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec8b", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00265", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec8d", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb8034fa93c4c4b05ec8b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00365", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ec8f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec8f", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec91", - "_tpl": "5ede4739e0350d05467f73e8", - "parentId": "66cbb8034fa93c4c4b05ec8f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed59", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed59", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ec93", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbb8034fa93c4c4b05ec8f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ed5b", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb8034fa93c4c4b05ed59", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00360", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ec95", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec95", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ec97", - "_tpl": "5c9a1c422e221600106f69f0", - "parentId": "66cbb8034fa93c4c4b05ec95", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00264", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec99", - "_tpl": "5b30bc165acfc40016387293", - "parentId": "66cbb8034fa93c4c4b05ec95", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ec9b", - "_tpl": "64807a29e5ffe165600abc97", - "parentId": "66cbb8034fa93c4c4b05ec95", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed5d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed5d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ec9d", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "66cbb8034fa93c4c4b05ec95", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ed5f", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66cbb8034fa93c4c4b05ed5d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00497", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ec9f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ec9f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00263", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eca1", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbb8034fa93c4c4b05ec9f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05eca3", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66cbb8034fa93c4c4b05ec9f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed61", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed61", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eca5", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb8034fa93c4c4b05ec9f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ed63", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb8034fa93c4c4b05ed61", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00282", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eca7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eca7", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eca9", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05eca7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00543", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ecab", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05eca7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ecad", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbb8034fa93c4c4b05eca7", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ed65", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed65", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecaf", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb8034fa93c4c4b05eca7", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ed67", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbb8034fa93c4c4b05ed65", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00246", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ecb1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecb1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Reserve_Base_DesignStuff_00730", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ecb3", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05ecb1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00245", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ecb5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecb5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ecb7", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbb8034fa93c4c4b05ecb5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05ed69", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed69", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed6b", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb8034fa93c4c4b05ed69", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00244", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ecb9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecb9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_04", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ecbb", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb8034fa93c4c4b05ecb9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00243", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ecbd", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecbd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecbf", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb8034fa93c4c4b05ecbd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00835", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ecc1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecc1", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ecc3", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05ecc1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ed6c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ed6c", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecc5", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb8034fa93c4c4b05ecc1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00428", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ecc7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecc7", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecc9", - "_tpl": "57347d90245977448f7b7f65", - "parentId": "66cbb8034fa93c4c4b05ecc7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed6d", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbb8034fa93c4c4b05ed6c", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eccb", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbb8034fa93c4c4b05ecc7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00329", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eccd", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eccd", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eccf", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb8034fa93c4c4b05eccd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00786", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ecd1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecd1", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecd3", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05ecd1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed6e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecd5", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66cbb8034fa93c4c4b05ecd1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed6f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 1 }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecd7", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb8034fa93c4c4b05ecd1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00334", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ecd9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecd9", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecdb", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb8034fa93c4c4b05ecd9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed70", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecdd", - "_tpl": "57347baf24597738002c6178", - "parentId": "66cbb8034fa93c4c4b05ecd9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00661", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ecdf", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecdf", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ece1", - "_tpl": "657b28d25f444d6dff0c6c77", - "parentId": "66cbb8034fa93c4c4b05ecdf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed71", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 3 }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ece3", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66cbb8034fa93c4c4b05ecdf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed72", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ece5", - "_tpl": "5aaf8a0be5b5b00015693243", - "parentId": "66cbb8034fa93c4c4b05ecdf", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00637", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ece7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ece7", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ece9", - "_tpl": "5b363e1b5acfc4771e1c5e80", - "parentId": "66cbb8034fa93c4c4b05ece7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed73", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 5 }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eceb", - "_tpl": "615d8dbd290d254f5e6b2ed6", - "parentId": "66cbb8034fa93c4c4b05ece7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00355", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eced", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eced", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecef", - "_tpl": "5df25b6c0b92095fd441e4cf", - "parentId": "66cbb8034fa93c4c4b05eced", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed74", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecf1", - "_tpl": "5ba26ae8d4351e00367f9bdb", - "parentId": "66cbb8034fa93c4c4b05eced", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed75", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 7 }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecf3", - "_tpl": "5dfe6104585a0c3e995c7b82", - "parentId": "66cbb8034fa93c4c4b05eced", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed76", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecf5", - "_tpl": "62a5c333ec21e50cad3b5dc6", - "parentId": "66cbb8034fa93c4c4b05eced", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00822", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ecf7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecf7", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecf9", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb8034fa93c4c4b05ecf7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed77", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 9 }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecfb", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb8034fa93c4c4b05ecf7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00030", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ecfd", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ecfd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ecff", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbb8034fa93c4c4b05ecfd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00029", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed01", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed01", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed03", - "_tpl": "5e2af37686f774755a234b65", - "parentId": "66cbb8034fa93c4c4b05ed01", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed05", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed05", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed07", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05ed05", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed09", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed09", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed0b", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb8034fa93c4c4b05ed09", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00646", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ed0d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed0d", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed0f", - "_tpl": "66012788c752a02bbe05e68e", - "parentId": "66cbb8034fa93c4c4b05ed0d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed78", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed11", - "_tpl": "5cf13123d7f00c1085616a50", - "parentId": "66cbb8034fa93c4c4b05ed0d", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed79", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 11 }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed13", - "_tpl": "6386120cd6baa055ad1e201c", - "parentId": "66cbb8034fa93c4c4b05ed0d", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed7a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed15", - "_tpl": "5a9548c9159bd400133e97b3", - "parentId": "66cbb8034fa93c4c4b05ed0d", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00769", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ed17", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed17", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed19", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb8034fa93c4c4b05ed17", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00486", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ed1b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed1b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed1c", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66cbb8034fa93c4c4b05ed1b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed7b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 13 }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbb8034fa93c4c4b05ed7c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 } - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed1d", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66cbb8034fa93c4c4b05ed1c", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05ed21", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb8034fa93c4c4b05ed1d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed1e", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66cbb8034fa93c4c4b05ed1c", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05ed1f", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66cbb8034fa93c4c4b05ed1e", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05ed20", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66cbb8034fa93c4c4b05ed1c", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbb8034fa93c4c4b05ed23", - "_tpl": "5673de654bdc2d180f8b456d", - "parentId": "66cbb8034fa93c4c4b05ed1b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00865", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ed25", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed25", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed27", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb8034fa93c4c4b05ed25", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed29", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb8034fa93c4c4b05ed25", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed7d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 15 }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed2b", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb8034fa93c4c4b05ed25", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00524", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ed2d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed2d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed2f", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb8034fa93c4c4b05ed2d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb8034fa93c4c4b05ed7e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed31", - "_tpl": "5d1b31ce86f7742523398394", - "parentId": "66cbb8034fa93c4c4b05ed2d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00575", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed33", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed33", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00090", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed35", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed35", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed37", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb8034fa93c4c4b05ed35", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed39", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed39", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed3b", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb8034fa93c4c4b05ed39", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00088", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed3d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed3d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed3f", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb8034fa93c4c4b05ed3d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00087", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed41", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed41", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed43", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb8034fa93c4c4b05ed41", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00130", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed45", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed45", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed47", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb8034fa93c4c4b05ed45", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00129", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed49", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed49", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed4b", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb8034fa93c4c4b05ed49", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb8034fa93c4c4b05ed7f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb8034fa93c4c4b05ed80", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed81", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb8034fa93c4c4b05ed82", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed83", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb8034fa93c4c4b05ed84", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed85", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb8034fa93c4c4b05ed86", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed87", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb8034fa93c4c4b05ed88", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed89", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb8034fa93c4c4b05ed8a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed8b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb8034fa93c4c4b05ed8c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed8d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb8034fa93c4c4b05ed8e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed8f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb8034fa93c4c4b05ed90", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed91", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb8034fa93c4c4b05ed92", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed93", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb8034fa93c4c4b05ed94", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed95", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb8034fa93c4c4b05ed96", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed97", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb8034fa93c4c4b05ed98", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed99", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb8034fa93c4c4b05ed9a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed9b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb8034fa93c4c4b05ed9c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed9d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb8034fa93c4c4b05ed9e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ed9f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ed6d", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00128", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed4d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed4d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "AGS_03", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ed4f", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66cbb8034fa93c4c4b05ed4d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00127", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed51", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed51", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05ed53", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb8034fa93c4c4b05ed51", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00266", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed55", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed55", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed57", - "_tpl": "60b0f561c4449e4cb624c1d7", - "parentId": "66cbb8034fa93c4c4b05ed55", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00265", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed59", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed59", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed5b", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb8034fa93c4c4b05ed59", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00264", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed5d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed5d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed5f", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66cbb8034fa93c4c4b05ed5d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00263", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed61", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed61", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed63", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb8034fa93c4c4b05ed61", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00543", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ed65", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed65", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed67", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbb8034fa93c4c4b05ed65", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Reserve_Base_DesignStuff_00730", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05ed69", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed69", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed6b", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb8034fa93c4c4b05ed69", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Utes_04", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ed6c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ed6c", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed6d", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbb8034fa93c4c4b05ed6c", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05ed6e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed6f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb8034fa93c4c4b05ed70", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed71", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb8034fa93c4c4b05ed72", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed73", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb8034fa93c4c4b05ed74", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed75", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb8034fa93c4c4b05ed76", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed77", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb8034fa93c4c4b05ed78", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed79", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb8034fa93c4c4b05ed7a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed7b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb8034fa93c4c4b05ed7c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed7d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb8034fa93c4c4b05ed7e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed7f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb8034fa93c4c4b05ed80", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed81", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb8034fa93c4c4b05ed82", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed83", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb8034fa93c4c4b05ed84", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed85", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb8034fa93c4c4b05ed86", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed87", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb8034fa93c4c4b05ed88", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed89", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb8034fa93c4c4b05ed8a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed8b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb8034fa93c4c4b05ed8c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed8d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb8034fa93c4c4b05ed8e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed8f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb8034fa93c4c4b05ed90", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed91", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb8034fa93c4c4b05ed92", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed93", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb8034fa93c4c4b05ed94", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed95", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb8034fa93c4c4b05ed96", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed97", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb8034fa93c4c4b05ed98", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed99", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb8034fa93c4c4b05ed9a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed9b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb8034fa93c4c4b05ed9c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed9d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb8034fa93c4c4b05ed9e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ed9f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ed6d", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "AGS_03", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eda0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eda0", - "_tpl": "5d52cc5ba4b9367408500062", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eda0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eda0", + "_tpl": "5d52cc5ba4b9367408500062", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } } + }, + { + "_id": "66cbb8034fa93c4c4b05eda1", + "_tpl": "5d52d479a4b936793d58c76b", + "parentId": "66cbb8034fa93c4c4b05eda0", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05eda2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges" + }, + { + "_id": "66cbb8034fa93c4c4b05eda3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb8034fa93c4c4b05eda4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 2 + }, + { + "_id": "66cbb8034fa93c4c4b05eda5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb8034fa93c4c4b05eda6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 4 + }, + { + "_id": "66cbb8034fa93c4c4b05eda7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb8034fa93c4c4b05eda8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 6 + }, + { + "_id": "66cbb8034fa93c4c4b05eda9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb8034fa93c4c4b05edaa", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 8 + }, + { + "_id": "66cbb8034fa93c4c4b05edab", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb8034fa93c4c4b05edac", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 10 + }, + { + "_id": "66cbb8034fa93c4c4b05edad", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb8034fa93c4c4b05edae", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 12 + }, + { + "_id": "66cbb8034fa93c4c4b05edaf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb8034fa93c4c4b05edb0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 14 + }, + { + "_id": "66cbb8034fa93c4c4b05edb1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb8034fa93c4c4b05edb2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 16 + }, + { + "_id": "66cbb8034fa93c4c4b05edb3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb8034fa93c4c4b05edb4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 18 + }, + { + "_id": "66cbb8034fa93c4c4b05edb5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb8034fa93c4c4b05edb6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 20 + }, + { + "_id": "66cbb8034fa93c4c4b05edb7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb8034fa93c4c4b05edb8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 22 + }, + { + "_id": "66cbb8034fa93c4c4b05edb9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb8034fa93c4c4b05edba", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 24 + }, + { + "_id": "66cbb8034fa93c4c4b05edbb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb8034fa93c4c4b05edbc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 26 + }, + { + "_id": "66cbb8034fa93c4c4b05edbd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb8034fa93c4c4b05edbe", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 28 + }, + { + "_id": "66cbb8034fa93c4c4b05edbf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb8034fa93c4c4b05edc0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 30 + }, + { + "_id": "66cbb8034fa93c4c4b05edc1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb8034fa93c4c4b05edc2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 32 + }, + { + "_id": "66cbb8034fa93c4c4b05edc3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb8034fa93c4c4b05edc4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 34 + }, + { + "_id": "66cbb8034fa93c4c4b05edc5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb8034fa93c4c4b05edc6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 36 + }, + { + "_id": "66cbb8034fa93c4c4b05edc7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb8034fa93c4c4b05edc8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 38 + }, + { + "_id": "66cbb8034fa93c4c4b05edc9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb8034fa93c4c4b05edca", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 40 + }, + { + "_id": "66cbb8034fa93c4c4b05edcb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb8034fa93c4c4b05edcc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 42 + }, + { + "_id": "66cbb8034fa93c4c4b05edcd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb8034fa93c4c4b05edce", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 44 + }, + { + "_id": "66cbb8034fa93c4c4b05edcf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb8034fa93c4c4b05edd0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 46 + }, + { + "_id": "66cbb8034fa93c4c4b05edd1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb8034fa93c4c4b05edd2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 48 + }, + { + "_id": "66cbb8034fa93c4c4b05edd3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 49 + }, + { + "_id": "66cbb8034fa93c4c4b05edd4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 50 + }, + { + "_id": "66cbb8034fa93c4c4b05edd5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 51 + }, + { + "_id": "66cbb8034fa93c4c4b05edd6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 52 + }, + { + "_id": "66cbb8034fa93c4c4b05edd7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 53 + }, + { + "_id": "66cbb8034fa93c4c4b05edd8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 54 + }, + { + "_id": "66cbb8034fa93c4c4b05edd9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 55 + }, + { + "_id": "66cbb8034fa93c4c4b05edda", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 56 + }, + { + "_id": "66cbb8034fa93c4c4b05eddb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 57 + }, + { + "_id": "66cbb8034fa93c4c4b05eddc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 58 + }, + { + "_id": "66cbb8034fa93c4c4b05eddd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 59 + }, + { + "_id": "66cbb8034fa93c4c4b05edde", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 60 + }, + { + "_id": "66cbb8034fa93c4c4b05eddf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 61 + }, + { + "_id": "66cbb8034fa93c4c4b05ede0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 62 + }, + { + "_id": "66cbb8034fa93c4c4b05ede1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 63 + }, + { + "_id": "66cbb8034fa93c4c4b05ede2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 64 + }, + { + "_id": "66cbb8034fa93c4c4b05ede3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 65 + }, + { + "_id": "66cbb8034fa93c4c4b05ede4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 66 + }, + { + "_id": "66cbb8034fa93c4c4b05ede5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 67 + }, + { + "_id": "66cbb8034fa93c4c4b05ede6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 68 + }, + { + "_id": "66cbb8034fa93c4c4b05ede7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 69 + }, + { + "_id": "66cbb8034fa93c4c4b05ede8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 70 + }, + { + "_id": "66cbb8034fa93c4c4b05ede9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 71 + }, + { + "_id": "66cbb8034fa93c4c4b05edea", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 72 + }, + { + "_id": "66cbb8034fa93c4c4b05edeb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 73 + }, + { + "_id": "66cbb8034fa93c4c4b05edec", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 74 + }, + { + "_id": "66cbb8034fa93c4c4b05eded", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 75 + }, + { + "_id": "66cbb8034fa93c4c4b05edee", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 76 + }, + { + "_id": "66cbb8034fa93c4c4b05edef", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 77 + }, + { + "_id": "66cbb8034fa93c4c4b05edf0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 78 + }, + { + "_id": "66cbb8034fa93c4c4b05edf1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 79 + }, + { + "_id": "66cbb8034fa93c4c4b05edf2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 80 + }, + { + "_id": "66cbb8034fa93c4c4b05edf3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 81 + }, + { + "_id": "66cbb8034fa93c4c4b05edf4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 82 + }, + { + "_id": "66cbb8034fa93c4c4b05edf5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 83 + }, + { + "_id": "66cbb8034fa93c4c4b05edf6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 84 + }, + { + "_id": "66cbb8034fa93c4c4b05edf7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 85 + }, + { + "_id": "66cbb8034fa93c4c4b05edf8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 86 + }, + { + "_id": "66cbb8034fa93c4c4b05edf9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 87 + }, + { + "_id": "66cbb8034fa93c4c4b05edfa", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 88 + }, + { + "_id": "66cbb8034fa93c4c4b05edfb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 89 + }, + { + "_id": "66cbb8034fa93c4c4b05edfc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 90 + }, + { + "_id": "66cbb8034fa93c4c4b05edfd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 91 + }, + { + "_id": "66cbb8034fa93c4c4b05edfe", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 92 + }, + { + "_id": "66cbb8034fa93c4c4b05edff", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 93 + }, + { + "_id": "66cbb8034fa93c4c4b05ee00", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 94 + }, + { + "_id": "66cbb8034fa93c4c4b05ee01", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 95 + }, + { + "_id": "66cbb8034fa93c4c4b05ee02", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 96 + }, + { + "_id": "66cbb8034fa93c4c4b05ee03", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 97 + }, + { + "_id": "66cbb8034fa93c4c4b05ee04", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05eda1", + "slotId": "cartridges", + "location": 98 + }, + { + "_id": "66cbb8034fa93c4c4b05ee05", + "_tpl": "5d53f4b7a4b936793d58c780", + "parentId": "66cbb8034fa93c4c4b05eda0", + "slotId": "mod_scope" } - }, - { - "_id": "66cbb8034fa93c4c4b05eda1", - "_tpl": "5d52d479a4b936793d58c76b", - "parentId": "66cbb8034fa93c4c4b05eda0", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05eda2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges" - }, - { - "_id": "66cbb8034fa93c4c4b05eda3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb8034fa93c4c4b05eda4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 2 - }, - { - "_id": "66cbb8034fa93c4c4b05eda5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb8034fa93c4c4b05eda6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 4 - }, - { - "_id": "66cbb8034fa93c4c4b05eda7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb8034fa93c4c4b05eda8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 6 - }, - { - "_id": "66cbb8034fa93c4c4b05eda9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb8034fa93c4c4b05edaa", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 8 - }, - { - "_id": "66cbb8034fa93c4c4b05edab", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb8034fa93c4c4b05edac", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 10 - }, - { - "_id": "66cbb8034fa93c4c4b05edad", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb8034fa93c4c4b05edae", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 12 - }, - { - "_id": "66cbb8034fa93c4c4b05edaf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb8034fa93c4c4b05edb0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 14 - }, - { - "_id": "66cbb8034fa93c4c4b05edb1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb8034fa93c4c4b05edb2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 16 - }, - { - "_id": "66cbb8034fa93c4c4b05edb3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb8034fa93c4c4b05edb4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 18 - }, - { - "_id": "66cbb8034fa93c4c4b05edb5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb8034fa93c4c4b05edb6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 20 - }, - { - "_id": "66cbb8034fa93c4c4b05edb7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb8034fa93c4c4b05edb8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 22 - }, - { - "_id": "66cbb8034fa93c4c4b05edb9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb8034fa93c4c4b05edba", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 24 - }, - { - "_id": "66cbb8034fa93c4c4b05edbb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb8034fa93c4c4b05edbc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 26 - }, - { - "_id": "66cbb8034fa93c4c4b05edbd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb8034fa93c4c4b05edbe", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 28 - }, - { - "_id": "66cbb8034fa93c4c4b05edbf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb8034fa93c4c4b05edc0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 30 - }, - { - "_id": "66cbb8034fa93c4c4b05edc1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb8034fa93c4c4b05edc2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 32 - }, - { - "_id": "66cbb8034fa93c4c4b05edc3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb8034fa93c4c4b05edc4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 34 - }, - { - "_id": "66cbb8034fa93c4c4b05edc5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb8034fa93c4c4b05edc6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 36 - }, - { - "_id": "66cbb8034fa93c4c4b05edc7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb8034fa93c4c4b05edc8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 38 - }, - { - "_id": "66cbb8034fa93c4c4b05edc9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb8034fa93c4c4b05edca", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 40 - }, - { - "_id": "66cbb8034fa93c4c4b05edcb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb8034fa93c4c4b05edcc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 42 - }, - { - "_id": "66cbb8034fa93c4c4b05edcd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb8034fa93c4c4b05edce", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 44 - }, - { - "_id": "66cbb8034fa93c4c4b05edcf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb8034fa93c4c4b05edd0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 46 - }, - { - "_id": "66cbb8034fa93c4c4b05edd1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb8034fa93c4c4b05edd2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 48 - }, - { - "_id": "66cbb8034fa93c4c4b05edd3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 49 - }, - { - "_id": "66cbb8034fa93c4c4b05edd4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 50 - }, - { - "_id": "66cbb8034fa93c4c4b05edd5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 51 - }, - { - "_id": "66cbb8034fa93c4c4b05edd6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 52 - }, - { - "_id": "66cbb8034fa93c4c4b05edd7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 53 - }, - { - "_id": "66cbb8034fa93c4c4b05edd8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 54 - }, - { - "_id": "66cbb8034fa93c4c4b05edd9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 55 - }, - { - "_id": "66cbb8034fa93c4c4b05edda", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 56 - }, - { - "_id": "66cbb8034fa93c4c4b05eddb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 57 - }, - { - "_id": "66cbb8034fa93c4c4b05eddc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 58 - }, - { - "_id": "66cbb8034fa93c4c4b05eddd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 59 - }, - { - "_id": "66cbb8034fa93c4c4b05edde", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 60 - }, - { - "_id": "66cbb8034fa93c4c4b05eddf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 61 - }, - { - "_id": "66cbb8034fa93c4c4b05ede0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 62 - }, - { - "_id": "66cbb8034fa93c4c4b05ede1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 63 - }, - { - "_id": "66cbb8034fa93c4c4b05ede2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 64 - }, - { - "_id": "66cbb8034fa93c4c4b05ede3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 65 - }, - { - "_id": "66cbb8034fa93c4c4b05ede4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 66 - }, - { - "_id": "66cbb8034fa93c4c4b05ede5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 67 - }, - { - "_id": "66cbb8034fa93c4c4b05ede6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 68 - }, - { - "_id": "66cbb8034fa93c4c4b05ede7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 69 - }, - { - "_id": "66cbb8034fa93c4c4b05ede8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 70 - }, - { - "_id": "66cbb8034fa93c4c4b05ede9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 71 - }, - { - "_id": "66cbb8034fa93c4c4b05edea", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 72 - }, - { - "_id": "66cbb8034fa93c4c4b05edeb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 73 - }, - { - "_id": "66cbb8034fa93c4c4b05edec", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 74 - }, - { - "_id": "66cbb8034fa93c4c4b05eded", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 75 - }, - { - "_id": "66cbb8034fa93c4c4b05edee", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 76 - }, - { - "_id": "66cbb8034fa93c4c4b05edef", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 77 - }, - { - "_id": "66cbb8034fa93c4c4b05edf0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 78 - }, - { - "_id": "66cbb8034fa93c4c4b05edf1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 79 - }, - { - "_id": "66cbb8034fa93c4c4b05edf2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 80 - }, - { - "_id": "66cbb8034fa93c4c4b05edf3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 81 - }, - { - "_id": "66cbb8034fa93c4c4b05edf4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 82 - }, - { - "_id": "66cbb8034fa93c4c4b05edf5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 83 - }, - { - "_id": "66cbb8034fa93c4c4b05edf6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 84 - }, - { - "_id": "66cbb8034fa93c4c4b05edf7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 85 - }, - { - "_id": "66cbb8034fa93c4c4b05edf8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 86 - }, - { - "_id": "66cbb8034fa93c4c4b05edf9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 87 - }, - { - "_id": "66cbb8034fa93c4c4b05edfa", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 88 - }, - { - "_id": "66cbb8034fa93c4c4b05edfb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 89 - }, - { - "_id": "66cbb8034fa93c4c4b05edfc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 90 - }, - { - "_id": "66cbb8034fa93c4c4b05edfd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 91 - }, - { - "_id": "66cbb8034fa93c4c4b05edfe", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 92 - }, - { - "_id": "66cbb8034fa93c4c4b05edff", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 93 - }, - { - "_id": "66cbb8034fa93c4c4b05ee00", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 94 - }, - { - "_id": "66cbb8034fa93c4c4b05ee01", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 95 - }, - { - "_id": "66cbb8034fa93c4c4b05ee02", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 96 - }, - { - "_id": "66cbb8034fa93c4c4b05ee03", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 97 - }, - { - "_id": "66cbb8034fa93c4c4b05ee04", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05eda1", - "slotId": "cartridges", - "location": 98 - }, - { - "_id": "66cbb8034fa93c4c4b05ee05", - "_tpl": "5d53f4b7a4b936793d58c780", - "parentId": "66cbb8034fa93c4c4b05eda0", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "AGS_02", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ee06", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ee06", - "_tpl": "5d52cc5ba4b9367408500062", - "upd": { - "FireMode": { - "FireMode": "fullauto" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee07", - "_tpl": "5d52d479a4b936793d58c76b", - "parentId": "66cbb8034fa93c4c4b05ee06", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05ee08", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges" - }, - { - "_id": "66cbb8034fa93c4c4b05ee09", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb8034fa93c4c4b05ee0a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 2 - }, - { - "_id": "66cbb8034fa93c4c4b05ee0b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb8034fa93c4c4b05ee0c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 4 - }, - { - "_id": "66cbb8034fa93c4c4b05ee0d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb8034fa93c4c4b05ee0e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 6 - }, - { - "_id": "66cbb8034fa93c4c4b05ee0f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb8034fa93c4c4b05ee10", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 8 - }, - { - "_id": "66cbb8034fa93c4c4b05ee11", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb8034fa93c4c4b05ee12", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 10 - }, - { - "_id": "66cbb8034fa93c4c4b05ee13", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb8034fa93c4c4b05ee14", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 12 - }, - { - "_id": "66cbb8034fa93c4c4b05ee15", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb8034fa93c4c4b05ee16", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 14 - }, - { - "_id": "66cbb8034fa93c4c4b05ee17", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb8034fa93c4c4b05ee18", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 16 - }, - { - "_id": "66cbb8034fa93c4c4b05ee19", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb8034fa93c4c4b05ee1a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 18 - }, - { - "_id": "66cbb8034fa93c4c4b05ee1b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb8034fa93c4c4b05ee1c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 20 - }, - { - "_id": "66cbb8034fa93c4c4b05ee1d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb8034fa93c4c4b05ee1e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 22 - }, - { - "_id": "66cbb8034fa93c4c4b05ee1f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb8034fa93c4c4b05ee20", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 24 - }, - { - "_id": "66cbb8034fa93c4c4b05ee21", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb8034fa93c4c4b05ee22", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 26 - }, - { - "_id": "66cbb8034fa93c4c4b05ee23", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb8034fa93c4c4b05ee24", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 28 - }, - { - "_id": "66cbb8034fa93c4c4b05ee25", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb8034fa93c4c4b05ee26", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 30 - }, - { - "_id": "66cbb8034fa93c4c4b05ee27", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb8034fa93c4c4b05ee28", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 32 - }, - { - "_id": "66cbb8034fa93c4c4b05ee29", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb8034fa93c4c4b05ee2a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 34 - }, - { - "_id": "66cbb8034fa93c4c4b05ee2b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb8034fa93c4c4b05ee2c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 36 - }, - { - "_id": "66cbb8034fa93c4c4b05ee2d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb8034fa93c4c4b05ee2e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 38 - }, - { - "_id": "66cbb8034fa93c4c4b05ee2f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb8034fa93c4c4b05ee30", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 40 - }, - { - "_id": "66cbb8034fa93c4c4b05ee31", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb8034fa93c4c4b05ee32", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 42 - }, - { - "_id": "66cbb8034fa93c4c4b05ee33", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb8034fa93c4c4b05ee34", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 44 - }, - { - "_id": "66cbb8034fa93c4c4b05ee35", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb8034fa93c4c4b05ee36", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 46 - }, - { - "_id": "66cbb8034fa93c4c4b05ee37", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb8034fa93c4c4b05ee38", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 48 - }, - { - "_id": "66cbb8034fa93c4c4b05ee39", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 49 - }, - { - "_id": "66cbb8034fa93c4c4b05ee3a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 50 - }, - { - "_id": "66cbb8034fa93c4c4b05ee3b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 51 - }, - { - "_id": "66cbb8034fa93c4c4b05ee3c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 52 - }, - { - "_id": "66cbb8034fa93c4c4b05ee3d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 53 - }, - { - "_id": "66cbb8034fa93c4c4b05ee3e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 54 - }, - { - "_id": "66cbb8034fa93c4c4b05ee3f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 55 - }, - { - "_id": "66cbb8034fa93c4c4b05ee40", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 56 - }, - { - "_id": "66cbb8034fa93c4c4b05ee41", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 57 - }, - { - "_id": "66cbb8034fa93c4c4b05ee42", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 58 - }, - { - "_id": "66cbb8034fa93c4c4b05ee43", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 59 - }, - { - "_id": "66cbb8034fa93c4c4b05ee44", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 60 - }, - { - "_id": "66cbb8034fa93c4c4b05ee45", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 61 - }, - { - "_id": "66cbb8034fa93c4c4b05ee46", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 62 - }, - { - "_id": "66cbb8034fa93c4c4b05ee47", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 63 - }, - { - "_id": "66cbb8034fa93c4c4b05ee48", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 64 - }, - { - "_id": "66cbb8034fa93c4c4b05ee49", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 65 - }, - { - "_id": "66cbb8034fa93c4c4b05ee4a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 66 - }, - { - "_id": "66cbb8034fa93c4c4b05ee4b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 67 - }, - { - "_id": "66cbb8034fa93c4c4b05ee4c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 68 - }, - { - "_id": "66cbb8034fa93c4c4b05ee4d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 69 - }, - { - "_id": "66cbb8034fa93c4c4b05ee4e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 70 - }, - { - "_id": "66cbb8034fa93c4c4b05ee4f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 71 - }, - { - "_id": "66cbb8034fa93c4c4b05ee50", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 72 - }, - { - "_id": "66cbb8034fa93c4c4b05ee51", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 73 - }, - { - "_id": "66cbb8034fa93c4c4b05ee52", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 74 - }, - { - "_id": "66cbb8034fa93c4c4b05ee53", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 75 - }, - { - "_id": "66cbb8034fa93c4c4b05ee54", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 76 - }, - { - "_id": "66cbb8034fa93c4c4b05ee55", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 77 - }, - { - "_id": "66cbb8034fa93c4c4b05ee56", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 78 - }, - { - "_id": "66cbb8034fa93c4c4b05ee57", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 79 - }, - { - "_id": "66cbb8034fa93c4c4b05ee58", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 80 - }, - { - "_id": "66cbb8034fa93c4c4b05ee59", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 81 - }, - { - "_id": "66cbb8034fa93c4c4b05ee5a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 82 - }, - { - "_id": "66cbb8034fa93c4c4b05ee5b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 83 - }, - { - "_id": "66cbb8034fa93c4c4b05ee5c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 84 - }, - { - "_id": "66cbb8034fa93c4c4b05ee5d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 85 - }, - { - "_id": "66cbb8034fa93c4c4b05ee5e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 86 - }, - { - "_id": "66cbb8034fa93c4c4b05ee5f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 87 - }, - { - "_id": "66cbb8034fa93c4c4b05ee60", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 88 - }, - { - "_id": "66cbb8034fa93c4c4b05ee61", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 89 - }, - { - "_id": "66cbb8034fa93c4c4b05ee62", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 90 - }, - { - "_id": "66cbb8034fa93c4c4b05ee63", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 91 - }, - { - "_id": "66cbb8034fa93c4c4b05ee64", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 92 - }, - { - "_id": "66cbb8034fa93c4c4b05ee65", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 93 - }, - { - "_id": "66cbb8034fa93c4c4b05ee66", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 94 - }, - { - "_id": "66cbb8034fa93c4c4b05ee67", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 95 - }, - { - "_id": "66cbb8034fa93c4c4b05ee68", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 96 - }, - { - "_id": "66cbb8034fa93c4c4b05ee69", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 97 - }, - { - "_id": "66cbb8034fa93c4c4b05ee6a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ee07", - "slotId": "cartridges", - "location": 98 - }, - { - "_id": "66cbb8034fa93c4c4b05ee6b", - "_tpl": "5d53f4b7a4b936793d58c780", - "parentId": "66cbb8034fa93c4c4b05ee06", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "Utes_00", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ee6c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ee6c", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee6d", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbb8034fa93c4c4b05ee6c", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05ee6e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee6f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb8034fa93c4c4b05ee70", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee71", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb8034fa93c4c4b05ee72", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee73", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb8034fa93c4c4b05ee74", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee75", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb8034fa93c4c4b05ee76", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee77", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb8034fa93c4c4b05ee78", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee79", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb8034fa93c4c4b05ee7a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee7b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb8034fa93c4c4b05ee7c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee7d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb8034fa93c4c4b05ee7e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee7f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb8034fa93c4c4b05ee80", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee81", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb8034fa93c4c4b05ee82", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee83", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb8034fa93c4c4b05ee84", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee85", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb8034fa93c4c4b05ee86", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee87", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb8034fa93c4c4b05ee88", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee89", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb8034fa93c4c4b05ee8a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee8b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb8034fa93c4c4b05ee8c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee8d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb8034fa93c4c4b05ee8e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee8f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb8034fa93c4c4b05ee90", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee91", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb8034fa93c4c4b05ee92", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee93", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb8034fa93c4c4b05ee94", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee95", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb8034fa93c4c4b05ee96", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee97", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb8034fa93c4c4b05ee98", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee99", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb8034fa93c4c4b05ee9a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee9b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb8034fa93c4c4b05ee9c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee9d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb8034fa93c4c4b05ee9e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ee9f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ee6d", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "Utes_02", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eea0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eea0", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05eea1", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbb8034fa93c4c4b05eea0", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05eea2", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eea3", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb8034fa93c4c4b05eea4", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eea5", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb8034fa93c4c4b05eea6", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eea7", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb8034fa93c4c4b05eea8", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eea9", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb8034fa93c4c4b05eeaa", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeab", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb8034fa93c4c4b05eeac", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eead", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb8034fa93c4c4b05eeae", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeaf", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb8034fa93c4c4b05eeb0", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeb1", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb8034fa93c4c4b05eeb2", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeb3", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb8034fa93c4c4b05eeb4", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeb5", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb8034fa93c4c4b05eeb6", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeb7", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb8034fa93c4c4b05eeb8", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeb9", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb8034fa93c4c4b05eeba", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eebb", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb8034fa93c4c4b05eebc", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eebd", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb8034fa93c4c4b05eebe", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eebf", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb8034fa93c4c4b05eec0", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eec1", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb8034fa93c4c4b05eec2", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eec3", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb8034fa93c4c4b05eec4", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eec5", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb8034fa93c4c4b05eec6", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eec7", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb8034fa93c4c4b05eec8", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eec9", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb8034fa93c4c4b05eeca", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eecb", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb8034fa93c4c4b05eecc", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eecd", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb8034fa93c4c4b05eece", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eecf", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb8034fa93c4c4b05eed0", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eed1", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb8034fa93c4c4b05eed2", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eed3", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eea1", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "Utes_05", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05eed4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eed4", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05eed5", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbb8034fa93c4c4b05eed4", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05eed6", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eed7", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb8034fa93c4c4b05eed8", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eed9", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb8034fa93c4c4b05eeda", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eedb", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb8034fa93c4c4b05eedc", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eedd", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb8034fa93c4c4b05eede", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eedf", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb8034fa93c4c4b05eee0", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eee1", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb8034fa93c4c4b05eee2", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eee3", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb8034fa93c4c4b05eee4", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eee5", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb8034fa93c4c4b05eee6", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eee7", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb8034fa93c4c4b05eee8", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eee9", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb8034fa93c4c4b05eeea", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeeb", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb8034fa93c4c4b05eeec", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeed", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb8034fa93c4c4b05eeee", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeef", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb8034fa93c4c4b05eef0", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eef1", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb8034fa93c4c4b05eef2", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eef3", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb8034fa93c4c4b05eef4", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eef5", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb8034fa93c4c4b05eef6", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eef7", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb8034fa93c4c4b05eef8", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eef9", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb8034fa93c4c4b05eefa", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eefb", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb8034fa93c4c4b05eefc", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eefd", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb8034fa93c4c4b05eefe", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05eeff", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb8034fa93c4c4b05ef00", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef01", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb8034fa93c4c4b05ef02", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef03", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb8034fa93c4c4b05ef04", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef05", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb8034fa93c4c4b05ef06", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef07", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05eed5", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "AGS_01", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ef08", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ef08", - "_tpl": "5d52cc5ba4b9367408500062", - "upd": { - "FireMode": { - "FireMode": "fullauto" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef09", - "_tpl": "5d52d479a4b936793d58c76b", - "parentId": "66cbb8034fa93c4c4b05ef08", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05ef0a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges" - }, - { - "_id": "66cbb8034fa93c4c4b05ef0b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb8034fa93c4c4b05ef0c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 2 - }, - { - "_id": "66cbb8034fa93c4c4b05ef0d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb8034fa93c4c4b05ef0e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 4 - }, - { - "_id": "66cbb8034fa93c4c4b05ef0f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb8034fa93c4c4b05ef10", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 6 - }, - { - "_id": "66cbb8034fa93c4c4b05ef11", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb8034fa93c4c4b05ef12", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 8 - }, - { - "_id": "66cbb8034fa93c4c4b05ef13", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb8034fa93c4c4b05ef14", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 10 - }, - { - "_id": "66cbb8034fa93c4c4b05ef15", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb8034fa93c4c4b05ef16", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 12 - }, - { - "_id": "66cbb8034fa93c4c4b05ef17", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb8034fa93c4c4b05ef18", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 14 - }, - { - "_id": "66cbb8034fa93c4c4b05ef19", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb8034fa93c4c4b05ef1a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 16 - }, - { - "_id": "66cbb8034fa93c4c4b05ef1b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb8034fa93c4c4b05ef1c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 18 - }, - { - "_id": "66cbb8034fa93c4c4b05ef1d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb8034fa93c4c4b05ef1e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 20 - }, - { - "_id": "66cbb8034fa93c4c4b05ef1f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb8034fa93c4c4b05ef20", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 22 - }, - { - "_id": "66cbb8034fa93c4c4b05ef21", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb8034fa93c4c4b05ef22", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 24 - }, - { - "_id": "66cbb8034fa93c4c4b05ef23", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb8034fa93c4c4b05ef24", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 26 - }, - { - "_id": "66cbb8034fa93c4c4b05ef25", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb8034fa93c4c4b05ef26", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 28 - }, - { - "_id": "66cbb8034fa93c4c4b05ef27", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb8034fa93c4c4b05ef28", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 30 - }, - { - "_id": "66cbb8034fa93c4c4b05ef29", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb8034fa93c4c4b05ef2a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 32 - }, - { - "_id": "66cbb8034fa93c4c4b05ef2b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb8034fa93c4c4b05ef2c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 34 - }, - { - "_id": "66cbb8034fa93c4c4b05ef2d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb8034fa93c4c4b05ef2e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 36 - }, - { - "_id": "66cbb8034fa93c4c4b05ef2f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb8034fa93c4c4b05ef30", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 38 - }, - { - "_id": "66cbb8034fa93c4c4b05ef31", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb8034fa93c4c4b05ef32", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 40 - }, - { - "_id": "66cbb8034fa93c4c4b05ef33", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb8034fa93c4c4b05ef34", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 42 - }, - { - "_id": "66cbb8034fa93c4c4b05ef35", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb8034fa93c4c4b05ef36", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 44 - }, - { - "_id": "66cbb8034fa93c4c4b05ef37", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb8034fa93c4c4b05ef38", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 46 - }, - { - "_id": "66cbb8034fa93c4c4b05ef39", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb8034fa93c4c4b05ef3a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 48 - }, - { - "_id": "66cbb8034fa93c4c4b05ef3b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 49 - }, - { - "_id": "66cbb8034fa93c4c4b05ef3c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 50 - }, - { - "_id": "66cbb8034fa93c4c4b05ef3d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 51 - }, - { - "_id": "66cbb8034fa93c4c4b05ef3e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 52 - }, - { - "_id": "66cbb8034fa93c4c4b05ef3f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 53 - }, - { - "_id": "66cbb8034fa93c4c4b05ef40", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 54 - }, - { - "_id": "66cbb8034fa93c4c4b05ef41", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 55 - }, - { - "_id": "66cbb8034fa93c4c4b05ef42", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 56 - }, - { - "_id": "66cbb8034fa93c4c4b05ef43", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 57 - }, - { - "_id": "66cbb8034fa93c4c4b05ef44", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 58 - }, - { - "_id": "66cbb8034fa93c4c4b05ef45", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 59 - }, - { - "_id": "66cbb8034fa93c4c4b05ef46", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 60 - }, - { - "_id": "66cbb8034fa93c4c4b05ef47", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 61 - }, - { - "_id": "66cbb8034fa93c4c4b05ef48", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 62 - }, - { - "_id": "66cbb8034fa93c4c4b05ef49", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 63 - }, - { - "_id": "66cbb8034fa93c4c4b05ef4a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 64 - }, - { - "_id": "66cbb8034fa93c4c4b05ef4b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 65 - }, - { - "_id": "66cbb8034fa93c4c4b05ef4c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 66 - }, - { - "_id": "66cbb8034fa93c4c4b05ef4d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 67 - }, - { - "_id": "66cbb8034fa93c4c4b05ef4e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 68 - }, - { - "_id": "66cbb8034fa93c4c4b05ef4f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 69 - }, - { - "_id": "66cbb8034fa93c4c4b05ef50", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 70 - }, - { - "_id": "66cbb8034fa93c4c4b05ef51", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 71 - }, - { - "_id": "66cbb8034fa93c4c4b05ef52", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 72 - }, - { - "_id": "66cbb8034fa93c4c4b05ef53", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 73 - }, - { - "_id": "66cbb8034fa93c4c4b05ef54", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 74 - }, - { - "_id": "66cbb8034fa93c4c4b05ef55", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 75 - }, - { - "_id": "66cbb8034fa93c4c4b05ef56", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 76 - }, - { - "_id": "66cbb8034fa93c4c4b05ef57", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 77 - }, - { - "_id": "66cbb8034fa93c4c4b05ef58", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 78 - }, - { - "_id": "66cbb8034fa93c4c4b05ef59", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 79 - }, - { - "_id": "66cbb8034fa93c4c4b05ef5a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 80 - }, - { - "_id": "66cbb8034fa93c4c4b05ef5b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 81 - }, - { - "_id": "66cbb8034fa93c4c4b05ef5c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 82 - }, - { - "_id": "66cbb8034fa93c4c4b05ef5d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 83 - }, - { - "_id": "66cbb8034fa93c4c4b05ef5e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 84 - }, - { - "_id": "66cbb8034fa93c4c4b05ef5f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 85 - }, - { - "_id": "66cbb8034fa93c4c4b05ef60", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 86 - }, - { - "_id": "66cbb8034fa93c4c4b05ef61", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 87 - }, - { - "_id": "66cbb8034fa93c4c4b05ef62", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 88 - }, - { - "_id": "66cbb8034fa93c4c4b05ef63", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 89 - }, - { - "_id": "66cbb8034fa93c4c4b05ef64", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 90 - }, - { - "_id": "66cbb8034fa93c4c4b05ef65", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 91 - }, - { - "_id": "66cbb8034fa93c4c4b05ef66", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 92 - }, - { - "_id": "66cbb8034fa93c4c4b05ef67", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 93 - }, - { - "_id": "66cbb8034fa93c4c4b05ef68", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 94 - }, - { - "_id": "66cbb8034fa93c4c4b05ef69", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 95 - }, - { - "_id": "66cbb8034fa93c4c4b05ef6a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 96 - }, - { - "_id": "66cbb8034fa93c4c4b05ef6b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 97 - }, - { - "_id": "66cbb8034fa93c4c4b05ef6c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbb8034fa93c4c4b05ef09", - "slotId": "cartridges", - "location": 98 - }, - { - "_id": "66cbb8034fa93c4c4b05ef6d", - "_tpl": "5d53f4b7a4b936793d58c780", - "parentId": "66cbb8034fa93c4c4b05ef08", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "Utes_01", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb8034fa93c4c4b05ef6e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05ef6e", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef6f", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66cbb8034fa93c4c4b05ef6e", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05ef70", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef71", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbb8034fa93c4c4b05ef72", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef73", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66cbb8034fa93c4c4b05ef74", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef75", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66cbb8034fa93c4c4b05ef76", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef77", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66cbb8034fa93c4c4b05ef78", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef79", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66cbb8034fa93c4c4b05ef7a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef7b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66cbb8034fa93c4c4b05ef7c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef7d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66cbb8034fa93c4c4b05ef7e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef7f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66cbb8034fa93c4c4b05ef80", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef81", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66cbb8034fa93c4c4b05ef82", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef83", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66cbb8034fa93c4c4b05ef84", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef85", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbb8034fa93c4c4b05ef86", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef87", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbb8034fa93c4c4b05ef88", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef89", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66cbb8034fa93c4c4b05ef8a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef8b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66cbb8034fa93c4c4b05ef8c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef8d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66cbb8034fa93c4c4b05ef8e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef8f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66cbb8034fa93c4c4b05ef90", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef91", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66cbb8034fa93c4c4b05ef92", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef93", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66cbb8034fa93c4c4b05ef94", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef95", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66cbb8034fa93c4c4b05ef96", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef97", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66cbb8034fa93c4c4b05ef98", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef99", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66cbb8034fa93c4c4b05ef9a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef9b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbb8034fa93c4c4b05ef9c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef9d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbb8034fa93c4c4b05ef9e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05ef9f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbb8034fa93c4c4b05efa0", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66cbb8034fa93c4c4b05efa1", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66cbb8034fa93c4c4b05ef6f", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "cult_Loot 135 (12) [81c8e05a-0f67-4112-a3b6-3fd5d619a50a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.094849, - "y": -14.3445759, - "z": 28.3623047 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efa2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efa2", - "_tpl": "669fa39b48fc9f8db6035a0c", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05efa3", - "_tpl": "669fa47da0bab4e8510d9526", - "parentId": "66cbb8034fa93c4c4b05efa2", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05efa4", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbb8034fa93c4c4b05efa3", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb8034fa93c4c4b05efa5", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66cbb8034fa93c4c4b05efa2", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbb8034fa93c4c4b05efa6", - "_tpl": "669fa4d97a09bc295603b496", - "parentId": "66cbb8034fa93c4c4b05efa2", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05efa7", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbb8034fa93c4c4b05efa6", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05efa8", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbb8034fa93c4c4b05efa2", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05efa9", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66cbb8034fa93c4c4b05efa8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 - } - } - ] - }, - { - "Id": "cult_Loot 135 (13) [420a365c-3f78-4ce0-a847-7ccf42cd7f67]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -121.750854, - "y": -14.3445759, - "z": 27.8703 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efab", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efab", - "_tpl": "617fd91e5539a84ec44ce155", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "GunrackSpawn 4(Clone) [cd8c76d8-c75a-4596-816a-41902611fd6a]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 8.733276, - "y": -3.93956757, - "z": -1.00091553 - }, - "Rotation": { - "x": 271.320557, - "y": 84.233284, - "z": 21.7712975 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efac", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efac", - "_tpl": "583990e32459771419544dd2", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05efad", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "66cbb8034fa93c4c4b05efac", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05efae", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "66cbb8034fa93c4c4b05efac", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05efaf", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb8034fa93c4c4b05efac", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05efb4", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8034fa93c4c4b05efaf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11.0 - } - }, - { - "_id": "66cbb8034fa93c4c4b05efb0", - "_tpl": "57dc324a24597759501edc20", - "parentId": "66cbb8034fa93c4c4b05efac", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05efb1", - "_tpl": "57dc334d245977597164366f", - "parentId": "66cbb8034fa93c4c4b05efac", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05efb2", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "66cbb8034fa93c4c4b05efac", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb8034fa93c4c4b05efb3", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "66cbb8034fa93c4c4b05efb2", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "GunsafeSpawn 1 (1)(Clone) [21f935a9-a45a-4dea-af27-cfa6221ee24c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -39.5440674, - "y": 18.749094, - "z": 169.4809 - }, - "Rotation": { - "x": 270.0, - "y": 272.058075, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efb6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efb6", - "_tpl": "57616a9e2459773c7a400234", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "GunsafeSpawn 1 (3)(Clone) [02675176-2603-4a6e-8ebf-33637f71b839]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -39.61194, - "y": 19.4410934, - "z": 169.486328 - }, - "Rotation": { - "x": 270.0, - "y": 322.159943, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efb8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efb8", - "_tpl": "5888988e24597752fe43a6fa", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05efb9", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbb8034fa93c4c4b05efb8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 - } - } - ] - }, - { - "Id": "GunsafeSpawn 1 (3)(Clone) [d4921cad-c4bb-45f4-b080-8b2c3c98da22]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -39.5938721, - "y": 19.4179955, - "z": 181.763672 - }, - "Rotation": { - "x": 270.0, - "y": 322.159943, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efbb", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efbb", - "_tpl": "5888988e24597752fe43a6fa", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05efbc", - "_tpl": "5efb0c1bd79ff02a1f5e68d9", - "parentId": "66cbb8034fa93c4c4b05efbb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "item_quest_keeper2_kompr_true [405e1751-84e0-4fbf-83e6-47c332f7ace4]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 102.242981, - "y": -6.813, - "z": 65.56604 - }, - "Rotation": { - "x": 5.56767035, - "y": 208.625565, - "z": 278.150818 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efbe", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efbe", - "_tpl": "6398a072e301557ae24cec92", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "jora_tool (82) [855be50f-08cb-4b55-859d-c2c4b5f921b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.5139771, - "y": -3.955, - "z": -125.228973 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efc0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efc0", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 135 (10) [c643b1b4-1b1b-4568-b83d-d1fb249a2aa2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 191.0122, - "y": -5.863, - "z": -225.847687 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 134.652985, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efc1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efc1", - "_tpl": "588892092459774ac91d4b11" - }, - { - "_id": "66cbb8034fa93c4c4b05efc2", - "_tpl": "5888988e24597752fe43a6fa", - "parentId": "66cbb8034fa93c4c4b05efc1", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05efc8", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbb8034fa93c4c4b05efc2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 - } - }, - { - "_id": "66cbb8034fa93c4c4b05efc3", - "_tpl": "5888956924597752983e182d", - "parentId": "66cbb8034fa93c4c4b05efc1", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05efc4", - "_tpl": "5888996c24597754281f9419", - "parentId": "66cbb8034fa93c4c4b05efc3", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05efc5", - "_tpl": "5888976c24597754281f93f5", - "parentId": "66cbb8034fa93c4c4b05efc3", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb8034fa93c4c4b05efc6", - "_tpl": "57c55f172459772d27602381", - "parentId": "66cbb8034fa93c4c4b05efc1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05efc7", - "_tpl": "58889d0c2459775bc215d981", - "parentId": "66cbb8034fa93c4c4b05efc1", - "slotId": "mod_stock" - } - ] - }, - { - "Id": "Loot 135 (11) [4d454522-fb0f-4529-b7ae-93848341edc4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 192.121155, - "y": -5.863, - "z": -225.716675 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efc9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efc9", - "_tpl": "65290f395ae2ae97b80fdf2d", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05efca", - "_tpl": "652911675ae2ae97b80fdf3c", - "parentId": "66cbb8034fa93c4c4b05efc9", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05efcb", - "_tpl": "65293c38fc460e50a509cb25", - "parentId": "66cbb8034fa93c4c4b05efc9", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05efd8", - "_tpl": "6529302b8c26af6326029fb7", - "parentId": "66cbb8034fa93c4c4b05efcb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20.0 - } - }, - { - "_id": "66cbb8034fa93c4c4b05efcc", - "_tpl": "6529119424cbe3c74a05e5bb", - "parentId": "66cbb8034fa93c4c4b05efc9", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05efcd", - "_tpl": "6567e751a715f85433025998", - "parentId": "66cbb8034fa93c4c4b05efcc", - "slotId": "mod_scope" - }, - { - "_id": "66cbb8034fa93c4c4b05efce", - "_tpl": "6567e7681265c8a131069b0f", - "parentId": "66cbb8034fa93c4c4b05efcd", - "slotId": "mod_scope" - }, - { - "_id": "66cbb8034fa93c4c4b05efcf", - "_tpl": "652910565ae2ae97b80fdf35", - "parentId": "66cbb8034fa93c4c4b05efcc", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05efd0", - "_tpl": "6529113b5ae2ae97b80fdf39", - "parentId": "66cbb8034fa93c4c4b05efcf", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05efd1", - "_tpl": "652911e650dc782999054b9d", - "parentId": "66cbb8034fa93c4c4b05efd0", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05efd2", - "_tpl": "652910bc24cbe3c74a05e5b9", - "parentId": "66cbb8034fa93c4c4b05efcf", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb8034fa93c4c4b05efd3", - "_tpl": "652910ef50dc782999054b97", - "parentId": "66cbb8034fa93c4c4b05efcc", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb8034fa93c4c4b05efd4", - "_tpl": "6529348224cbe3c74a05e5c4", - "parentId": "66cbb8034fa93c4c4b05efc9", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb8034fa93c4c4b05efd5", - "_tpl": "6529366450dc782999054ba0", - "parentId": "66cbb8034fa93c4c4b05efd4", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05efd6", - "_tpl": "6529370c405a5f51dd023db8", - "parentId": "66cbb8034fa93c4c4b05efd5", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb8034fa93c4c4b05efd7", - "_tpl": "6529109524cbe3c74a05e5b7", - "parentId": "66cbb8034fa93c4c4b05efc9", - "slotId": "mod_charge" - } - ] - }, - { - "Id": "Loot 135 (11) [515d00d4-a870-49c6-a6a3-fe2bc3cb3ebf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -154.448853, - "y": -8.923576, - "z": 75.2272949 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efd9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efd9", - "_tpl": "5fc3f2d5900b1d5091531e57", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05efda", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "66cbb8034fa93c4c4b05efd9", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05efe3", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb8034fa93c4c4b05efda", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 - } - }, - { - "_id": "66cbb8034fa93c4c4b05efdb", - "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "66cbb8034fa93c4c4b05efd9", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb8034fa93c4c4b05efdc", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "66cbb8034fa93c4c4b05efd9", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05efdd", - "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "66cbb8034fa93c4c4b05efd9", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05efde", - "_tpl": "5fbbc366ca32ed67276c1557", - "parentId": "66cbb8034fa93c4c4b05efd9", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05efdf", - "_tpl": "5fbbc34106bde7524f03cbe9", - "parentId": "66cbb8034fa93c4c4b05efde", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05efe0", - "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "66cbb8034fa93c4c4b05efd9", - "slotId": "mod_mount" - }, - { - "_id": "66cbb8034fa93c4c4b05efe1", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "66cbb8034fa93c4c4b05efd9", - "slotId": "mod_mount_001" - }, - { - "_id": "66cbb8034fa93c4c4b05efe2", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "66cbb8034fa93c4c4b05efd9", - "slotId": "mod_mount_002" - } - ] - }, - { - "Id": "Loot 135 (12) [473ac088-4b8b-42e9-a385-e9847c5c2751]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 190.62616, - "y": -5.863, - "z": -225.4827 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 134.652985, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05efe4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05efe4", - "_tpl": "5df8ce05b11454561e39243b", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05efe5", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "66cbb8034fa93c4c4b05efe4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05efe6", - "_tpl": "5df8f541c41b2312ea3335e3", - "parentId": "66cbb8034fa93c4c4b05efe4", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05eff1", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbb8034fa93c4c4b05efe6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10.0 - } - }, - { - "_id": "66cbb8034fa93c4c4b05efe7", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "66cbb8034fa93c4c4b05efe4", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05efe8", - "_tpl": "5ae30c9a5acfc408fb139a03", - "parentId": "66cbb8034fa93c4c4b05efe7", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb8034fa93c4c4b05efe9", - "_tpl": "5df8e4080b92095fd441e594", - "parentId": "66cbb8034fa93c4c4b05efe4", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05efea", - "_tpl": "5df917564a9f347bc92edca3", - "parentId": "66cbb8034fa93c4c4b05efe9", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05efeb", - "_tpl": "5dfa3cd1b33c0951220c079b", - "parentId": "66cbb8034fa93c4c4b05efea", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05efec", - "_tpl": "5dfa3d45dfc58d14537c20b0", - "parentId": "66cbb8034fa93c4c4b05efea", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb8034fa93c4c4b05efed", - "_tpl": "5df916dfbb49d91fb446d6b9", - "parentId": "66cbb8034fa93c4c4b05efe9", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb8034fa93c4c4b05efee", - "_tpl": "5dfa3d950dee1b22f862eae0", - "parentId": "66cbb8034fa93c4c4b05efed", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb8034fa93c4c4b05efef", - "_tpl": "5dfa3d7ac41b2312ea33362a", - "parentId": "66cbb8034fa93c4c4b05efe9", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05eff0", - "_tpl": "5df8e053bb49d91fb446d6a6", - "parentId": "66cbb8034fa93c4c4b05efe4", - "slotId": "mod_charge" - } - ] - }, - { - "Id": "Loot 135 (12) [4be723ec-fcab-4a70-9e21-fb4c06a36078]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -154.833862, - "y": -8.923576, - "z": 72.6022949 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05eff2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05eff2", - "_tpl": "668fe5a998b5ad715703ddd6", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05eff3", - "_tpl": "668fe5f62a0f85eea407cc18", - "parentId": "66cbb8034fa93c4c4b05eff2", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05eff4", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbb8034fa93c4c4b05eff3", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb8034fa93c4c4b05eff5", - "_tpl": "668fe5d42a0f85eea407cc16", - "parentId": "66cbb8034fa93c4c4b05eff2", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbb8034fa93c4c4b05eff6", - "_tpl": "668fe60b56984d93550462c6", - "parentId": "66cbb8034fa93c4c4b05eff2", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05eff7", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbb8034fa93c4c4b05eff6", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05eff8", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbb8034fa93c4c4b05eff2", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05eff9", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66cbb8034fa93c4c4b05eff8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 - } - } - ] - }, - { - "Id": "Loot 135 (13) [73278017-d3fa-45c7-ab04-cf3ad9dca16f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -155.993835, - "y": -9.049577, - "z": 71.97034 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05effa", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05effa", - "_tpl": "65290f395ae2ae97b80fdf2d", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05effb", - "_tpl": "652911675ae2ae97b80fdf3c", - "parentId": "66cbb8034fa93c4c4b05effa", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb8034fa93c4c4b05effc", - "_tpl": "65293c38fc460e50a509cb25", - "parentId": "66cbb8034fa93c4c4b05effa", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05f009", - "_tpl": "6529302b8c26af6326029fb7", - "parentId": "66cbb8034fa93c4c4b05effc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 - } - }, - { - "_id": "66cbb8034fa93c4c4b05effd", - "_tpl": "6529119424cbe3c74a05e5bb", - "parentId": "66cbb8034fa93c4c4b05effa", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05effe", - "_tpl": "6567e751a715f85433025998", - "parentId": "66cbb8034fa93c4c4b05effd", - "slotId": "mod_scope" - }, - { - "_id": "66cbb8034fa93c4c4b05efff", - "_tpl": "6567e7681265c8a131069b0f", - "parentId": "66cbb8034fa93c4c4b05effe", - "slotId": "mod_scope" - }, - { - "_id": "66cbb8034fa93c4c4b05f000", - "_tpl": "652910565ae2ae97b80fdf35", - "parentId": "66cbb8034fa93c4c4b05effd", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05f001", - "_tpl": "6529113b5ae2ae97b80fdf39", - "parentId": "66cbb8034fa93c4c4b05f000", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05f002", - "_tpl": "652911e650dc782999054b9d", - "parentId": "66cbb8034fa93c4c4b05f001", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05f003", - "_tpl": "652910bc24cbe3c74a05e5b9", - "parentId": "66cbb8034fa93c4c4b05f000", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb8034fa93c4c4b05f004", - "_tpl": "652910ef50dc782999054b97", - "parentId": "66cbb8034fa93c4c4b05effd", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb8034fa93c4c4b05f005", - "_tpl": "6529348224cbe3c74a05e5c4", - "parentId": "66cbb8034fa93c4c4b05effa", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb8034fa93c4c4b05f006", - "_tpl": "6529366450dc782999054ba0", - "parentId": "66cbb8034fa93c4c4b05f005", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05f007", - "_tpl": "6529370c405a5f51dd023db8", - "parentId": "66cbb8034fa93c4c4b05f006", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbb8034fa93c4c4b05f008", - "_tpl": "6529109524cbe3c74a05e5b7", - "parentId": "66cbb8034fa93c4c4b05effa", - "slotId": "mod_charge" - } - ] - }, - { - "Id": "Loot 135 (13) [a1defdc6-9fc9-4781-a8c7-9a036ce651e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 191.214172, - "y": -6.44857645, - "z": -226.880676 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f00b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f00b", - "_tpl": "619cbf7d23893217ec30b689", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 135 (14) [d8e3c979-241b-4328-a8df-b7c1a1d12c97]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 190.114136, - "y": -6.44857645, - "z": -226.0427 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f00c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f00c", - "_tpl": "669fa39b48fc9f8db6035a0c", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "66cbb8034fa93c4c4b05f00d", - "_tpl": "669fa47da0bab4e8510d9526", - "parentId": "66cbb8034fa93c4c4b05f00c", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05f00e", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbb8034fa93c4c4b05f00d", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb8034fa93c4c4b05f00f", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66cbb8034fa93c4c4b05f00c", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbb8034fa93c4c4b05f010", - "_tpl": "669fa4d97a09bc295603b496", - "parentId": "66cbb8034fa93c4c4b05f00c", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb8034fa93c4c4b05f011", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbb8034fa93c4c4b05f010", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05f012", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbb8034fa93c4c4b05f00c", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05f013", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66cbb8034fa93c4c4b05f012", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 - } - } - ] - }, - { - "Id": "Loot 135 (3) [d6a0296e-7ff0-4ce5-b14f-cae48dde0abf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 191.813171, - "y": -5.863, - "z": -226.7807 - }, - "Rotation": { - "x": 0.0, - "y": 252.0725, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f015", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f015", - "_tpl": "56dff026d2720bb8668b4567", - "upd": { - "StackObjectsCount": 24 - } - } - ] - }, - { - "Id": "Loot 135 (9) [7f904259-a124-465e-ac91-1240ce74ffaa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -153.961853, - "y": -8.923576, - "z": 74.3963 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f017", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f017", - "_tpl": "60b0f6c058e0b0481a09ad11", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_ammo_common (1) [fddc601e-f811-4217-bca5-dd4fe2d3b293]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.23297, - "y": -3.777, - "z": -112.416992 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f01a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f01a", - "_tpl": "64aceaecc4eda9354b0226b6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f01b", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbb8034fa93c4c4b05f01a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "loot_ammo_common (100) [96215a71-5bec-4825-9be7-afd068e2dba7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -105.541016, - "y": -6.737, - "z": -67.7379761 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f01e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f01e", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f01f", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb8034fa93c4c4b05f01e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "loot_ammo_common (101) [9c125c7c-1067-465d-9fb5-28d4534a7575]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -105.163025, - "y": -6.655, - "z": -67.405 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f022", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f022", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f023", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbb8034fa93c4c4b05f022", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "loot_ammo_common (102) [449a23a7-9b62-4517-a716-c444438a32c5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -146.968018, - "y": -10.081, - "z": 42.64099 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f026", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f026", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f027", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8034fa93c4c4b05f026", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "loot_ammo_common (103) [56a001e1-bfbd-4d27-8f0a-481f584c4d98]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -146.788025, - "y": -9.886, - "z": 43.25702 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f02a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f02a", - "_tpl": "6570253ec5d7d4cb4d078573", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f02b", - "_tpl": "5735fdcd2459776445391d61", - "parentId": "66cbb8034fa93c4c4b05f02a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 - } - } - ] - }, - { - "Id": "loot_ammo_common (104) [e96d99fb-74be-490c-b100-f555c2bf4acd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -146.500977, - "y": -9.984, - "z": 44.48004 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f02f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f02f", - "_tpl": "657024361419851aef03e6fa", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f030", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "66cbb8034fa93c4c4b05f02f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f031", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "66cbb8034fa93c4c4b05f02f", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "loot_ammo_common (105) [8167f2bc-59d3-4aee-bfe2-06a193d4219b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -139.107, - "y": -11.456, - "z": 72.06299 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f034", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f034", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f035", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbb8034fa93c4c4b05f034", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "loot_ammo_common (106) [de2b9f1c-541b-4f82-9e9d-61a39cb768f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -139.229, - "y": -11.456, - "z": 71.47504 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f038", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f038", - "_tpl": "657024b31419851aef03e70f", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f039", - "_tpl": "5f647f31b6238e5dd066e196", - "parentId": "66cbb8034fa93c4c4b05f038", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "loot_ammo_common (108) [7a38344a-3a67-46be-8b96-44c1db2e1c37]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -102.51001, - "y": -14.348, - "z": 40.00403 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f03d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f03d", - "_tpl": "65702479c5d7d4cb4d07855e", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f03e", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66cbb8034fa93c4c4b05f03d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f03f", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66cbb8034fa93c4c4b05f03d", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "loot_ammo_common (15) [97b559f8-0ef7-44e4-83a0-de887156e388]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 75.284, - "y": -4.676, - "z": -115.599976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f042", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f042", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f043", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbb8034fa93c4c4b05f042", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "loot_ammo_common (16) [b146e125-a0ef-43e2-8d7a-7c62502ea14c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 74.57599, - "y": -4.676, - "z": -115.274994 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f046", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f046", - "_tpl": "657025bbcfc010a0f5006a35", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f047", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbb8034fa93c4c4b05f046", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "loot_ammo_common (18) [f1ce3537-01d1-4da9-b5a1-feebbec09cc1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 237.04895, - "y": -1.757, - "z": -101.659 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f04b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f04b", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f04c", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8034fa93c4c4b05f04b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f04d", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8034fa93c4c4b05f04b", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "loot_ammo_common (22) [d388bfd7-cbfd-43b1-aefe-2c6a4c8d2235]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -13.4210205, - "y": -4.052, - "z": -98.9419861 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f051", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f051", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f052", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbb8034fa93c4c4b05f051", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f053", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbb8034fa93c4c4b05f051", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "loot_ammo_common (25) [12a41153-550b-45c9-b0a8-4c230cdd1ea8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -13.4849854, - "y": -4.603, - "z": -98.17499 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f056", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f056", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f057", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbb8034fa93c4c4b05f056", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "loot_ammo_common (28) [c65be3a9-54b8-4f4a-8bd8-6e452a4a73ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 36.0709839, - "y": -3.459, - "z": -118.781982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f05a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f05a", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f05b", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8034fa93c4c4b05f05a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "loot_ammo_common (30) [b2a8cb90-953a-4566-909b-4a9157e6d792]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.422, - "y": -0.095, - "z": -165.556976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f05e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f05e", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f05f", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8034fa93c4c4b05f05e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "loot_ammo_common (37) [af200c49-a845-4d56-adf4-9a9a78de2df0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -20.3480225, - "y": -5.35, - "z": -161.512 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f062", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f062", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f063", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8034fa93c4c4b05f062", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "loot_ammo_common (38) [bdfc8326-7e1a-4607-bf75-385c0cb8018a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -19.8889771, - "y": -5.35, - "z": -161.47 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f067", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f067", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f068", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8034fa93c4c4b05f067", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f069", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8034fa93c4c4b05f067", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "loot_ammo_common (4) [2c655a25-5958-4e47-a23b-f0e20f99795f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.23602, - "y": -3.777, - "z": -112.929993 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f06d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f06d", - "_tpl": "65702479c5d7d4cb4d07855e", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f06e", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66cbb8034fa93c4c4b05f06d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f06f", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66cbb8034fa93c4c4b05f06d", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "loot_ammo_common (41) [ffdc2dec-fd45-4fb9-b2f2-9579431a5f09]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -19.8870239, - "y": -5.35, - "z": -162.29599 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f072", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f072", - "_tpl": "64aceaecc4eda9354b0226b6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f073", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbb8034fa93c4c4b05f072", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "loot_ammo_common (42) [497fc1b0-4157-47f4-ba7e-2ed77b4d406e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -19.8150024, - "y": -5.35, - "z": -162.659973 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f076", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f076", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f077", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbb8034fa93c4c4b05f076", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "loot_ammo_common (44) [4eb52ae8-c1d6-4fb6-a99a-0233fb95c44b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.611023, - "y": -6.721, - "z": 105.552 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f07a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f07a", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f07b", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8034fa93c4c4b05f07a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "loot_ammo_common (45) [4583687d-b53a-4fff-aedc-690a82dfdbdf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.185, - "y": -6.721, - "z": 105.028015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f07f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f07f", - "_tpl": "65702474bfc87b3a34093226", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f080", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbb8034fa93c4c4b05f07f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f081", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbb8034fa93c4c4b05f07f", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "loot_ammo_common (46) [107baae3-045e-4a36-89ec-8c1beec85015]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 168.823, - "y": -4.067, - "z": -131.318 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f085", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f085", - "_tpl": "6570266bc5d7d4cb4d078594", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f086", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb8034fa93c4c4b05f085", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f087", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb8034fa93c4c4b05f085", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "loot_ammo_common (46) [5cc764a9-004a-4677-b3ef-5d28d7598e69]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 9.14856, - "y": -3.684081, - "z": -15.4205627 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f08a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f08a", - "_tpl": "6570259bc5d7d4cb4d07857f", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f08b", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbb8034fa93c4c4b05f08a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "loot_ammo_common (47) [2e6fe3fe-1abd-47ce-99fb-b85e228baf07]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 169.07, - "y": -4.067, - "z": -131.48999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f08e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f08e", - "_tpl": "657025d4c5d7d4cb4d078585", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f08f", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbb8034fa93c4c4b05f08e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "loot_ammo_common (48) [ac00017f-727d-4e43-bf26-187dfeb3fda1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 169.401978, - "y": -4.067, - "z": -131.677 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f092", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f092", - "_tpl": "64aceaecc4eda9354b0226b6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f093", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbb8034fa93c4c4b05f092", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "loot_ammo_common (48) [ac8de4d9-45e3-4d3c-8559-fe18e54b7406]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 9.312561, - "y": -3.684081, - "z": -14.6165771 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f096", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f096", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f097", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbb8034fa93c4c4b05f096", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "loot_ammo_common (53) [5bd3fdef-24e1-42cf-a59c-ac017079bcc5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 176.375, - "y": -0.424, - "z": -166.844 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f09b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f09b", - "_tpl": "65702652cfc010a0f5006a53", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f09c", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbb8034fa93c4c4b05f09b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f09d", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbb8034fa93c4c4b05f09b", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "loot_ammo_common (56) [5957fb11-178c-496e-82e3-a7a64c4178df]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 272.610962, - "y": 2.407, - "z": 20.0480042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0a0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0a0", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f0a1", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbb8034fa93c4c4b05f0a0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "loot_ammo_common (6) [b03d2546-ecef-4f78-b1b7-8739106ebdb8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 71.34497, - "y": -4.08, - "z": -113.286987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0a5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0a5", - "_tpl": "65702432bfc87b3a3409321c", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f0a6", - "_tpl": "5d6e67fba4b9361bc73bc779", - "parentId": "66cbb8034fa93c4c4b05f0a5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f0a7", - "_tpl": "5d6e67fba4b9361bc73bc779", - "parentId": "66cbb8034fa93c4c4b05f0a5", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "loot_ammo_common (60) [e12f09fb-37cc-4a80-84a9-c0134f24c52a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 150.76001, - "y": -1.256, - "z": 58.2030029 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0aa", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0aa", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f0ab", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbb8034fa93c4c4b05f0aa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "loot_ammo_common (63) [af126774-76c1-4d28-8b5c-22e8eb4fc8b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.463989, - "y": -6.184, - "z": -124.530975 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0ae", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0ae", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f0af", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbb8034fa93c4c4b05f0ae", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "loot_ammo_common (64) [a930ac29-f090-495a-97f5-82477da26847]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.103027, - "y": -6.184, - "z": -122.708984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0b2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0b2", - "_tpl": "65702558cfc010a0f5006a25", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f0b3", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbb8034fa93c4c4b05f0b2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "loot_ammo_common (66) [ba2fc6f7-0ccd-48ba-9bc3-883d209a01fb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.682983, - "y": -6.39, - "z": -123.634979 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0b6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0b6", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "AGS_02", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0b7", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbb8034fa93c4c4b05f0b6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "loot_ammo_common (68) [7b30975d-5b54-450c-9156-e033993bcfa3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -138.379028, - "y": -3.594, - "z": -138.374 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0ba", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0ba", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0bb", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8034fa93c4c4b05f0ba", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ee06", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ee06", + "_tpl": "5d52cc5ba4b9367408500062", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee07", + "_tpl": "5d52d479a4b936793d58c76b", + "parentId": "66cbb8034fa93c4c4b05ee06", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05ee08", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges" + }, + { + "_id": "66cbb8034fa93c4c4b05ee09", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb8034fa93c4c4b05ee0a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 2 + }, + { + "_id": "66cbb8034fa93c4c4b05ee0b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb8034fa93c4c4b05ee0c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 4 + }, + { + "_id": "66cbb8034fa93c4c4b05ee0d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb8034fa93c4c4b05ee0e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 6 + }, + { + "_id": "66cbb8034fa93c4c4b05ee0f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb8034fa93c4c4b05ee10", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 8 + }, + { + "_id": "66cbb8034fa93c4c4b05ee11", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb8034fa93c4c4b05ee12", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 10 + }, + { + "_id": "66cbb8034fa93c4c4b05ee13", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb8034fa93c4c4b05ee14", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 12 + }, + { + "_id": "66cbb8034fa93c4c4b05ee15", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb8034fa93c4c4b05ee16", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 14 + }, + { + "_id": "66cbb8034fa93c4c4b05ee17", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb8034fa93c4c4b05ee18", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 16 + }, + { + "_id": "66cbb8034fa93c4c4b05ee19", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb8034fa93c4c4b05ee1a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 18 + }, + { + "_id": "66cbb8034fa93c4c4b05ee1b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb8034fa93c4c4b05ee1c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 20 + }, + { + "_id": "66cbb8034fa93c4c4b05ee1d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb8034fa93c4c4b05ee1e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 22 + }, + { + "_id": "66cbb8034fa93c4c4b05ee1f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb8034fa93c4c4b05ee20", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 24 + }, + { + "_id": "66cbb8034fa93c4c4b05ee21", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb8034fa93c4c4b05ee22", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 26 + }, + { + "_id": "66cbb8034fa93c4c4b05ee23", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb8034fa93c4c4b05ee24", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 28 + }, + { + "_id": "66cbb8034fa93c4c4b05ee25", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb8034fa93c4c4b05ee26", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 30 + }, + { + "_id": "66cbb8034fa93c4c4b05ee27", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb8034fa93c4c4b05ee28", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 32 + }, + { + "_id": "66cbb8034fa93c4c4b05ee29", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb8034fa93c4c4b05ee2a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 34 + }, + { + "_id": "66cbb8034fa93c4c4b05ee2b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb8034fa93c4c4b05ee2c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 36 + }, + { + "_id": "66cbb8034fa93c4c4b05ee2d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb8034fa93c4c4b05ee2e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 38 + }, + { + "_id": "66cbb8034fa93c4c4b05ee2f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb8034fa93c4c4b05ee30", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 40 + }, + { + "_id": "66cbb8034fa93c4c4b05ee31", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb8034fa93c4c4b05ee32", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 42 + }, + { + "_id": "66cbb8034fa93c4c4b05ee33", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb8034fa93c4c4b05ee34", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 44 + }, + { + "_id": "66cbb8034fa93c4c4b05ee35", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb8034fa93c4c4b05ee36", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 46 + }, + { + "_id": "66cbb8034fa93c4c4b05ee37", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb8034fa93c4c4b05ee38", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 48 + }, + { + "_id": "66cbb8034fa93c4c4b05ee39", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 49 + }, + { + "_id": "66cbb8034fa93c4c4b05ee3a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 50 + }, + { + "_id": "66cbb8034fa93c4c4b05ee3b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 51 + }, + { + "_id": "66cbb8034fa93c4c4b05ee3c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 52 + }, + { + "_id": "66cbb8034fa93c4c4b05ee3d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 53 + }, + { + "_id": "66cbb8034fa93c4c4b05ee3e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 54 + }, + { + "_id": "66cbb8034fa93c4c4b05ee3f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 55 + }, + { + "_id": "66cbb8034fa93c4c4b05ee40", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 56 + }, + { + "_id": "66cbb8034fa93c4c4b05ee41", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 57 + }, + { + "_id": "66cbb8034fa93c4c4b05ee42", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 58 + }, + { + "_id": "66cbb8034fa93c4c4b05ee43", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 59 + }, + { + "_id": "66cbb8034fa93c4c4b05ee44", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 60 + }, + { + "_id": "66cbb8034fa93c4c4b05ee45", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 61 + }, + { + "_id": "66cbb8034fa93c4c4b05ee46", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 62 + }, + { + "_id": "66cbb8034fa93c4c4b05ee47", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 63 + }, + { + "_id": "66cbb8034fa93c4c4b05ee48", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 64 + }, + { + "_id": "66cbb8034fa93c4c4b05ee49", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 65 + }, + { + "_id": "66cbb8034fa93c4c4b05ee4a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 66 + }, + { + "_id": "66cbb8034fa93c4c4b05ee4b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 67 + }, + { + "_id": "66cbb8034fa93c4c4b05ee4c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 68 + }, + { + "_id": "66cbb8034fa93c4c4b05ee4d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 69 + }, + { + "_id": "66cbb8034fa93c4c4b05ee4e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 70 + }, + { + "_id": "66cbb8034fa93c4c4b05ee4f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 71 + }, + { + "_id": "66cbb8034fa93c4c4b05ee50", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 72 + }, + { + "_id": "66cbb8034fa93c4c4b05ee51", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 73 + }, + { + "_id": "66cbb8034fa93c4c4b05ee52", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 74 + }, + { + "_id": "66cbb8034fa93c4c4b05ee53", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 75 + }, + { + "_id": "66cbb8034fa93c4c4b05ee54", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 76 + }, + { + "_id": "66cbb8034fa93c4c4b05ee55", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 77 + }, + { + "_id": "66cbb8034fa93c4c4b05ee56", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 78 + }, + { + "_id": "66cbb8034fa93c4c4b05ee57", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 79 + }, + { + "_id": "66cbb8034fa93c4c4b05ee58", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 80 + }, + { + "_id": "66cbb8034fa93c4c4b05ee59", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 81 + }, + { + "_id": "66cbb8034fa93c4c4b05ee5a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 82 + }, + { + "_id": "66cbb8034fa93c4c4b05ee5b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 83 + }, + { + "_id": "66cbb8034fa93c4c4b05ee5c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 84 + }, + { + "_id": "66cbb8034fa93c4c4b05ee5d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 85 + }, + { + "_id": "66cbb8034fa93c4c4b05ee5e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 86 + }, + { + "_id": "66cbb8034fa93c4c4b05ee5f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 87 + }, + { + "_id": "66cbb8034fa93c4c4b05ee60", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 88 + }, + { + "_id": "66cbb8034fa93c4c4b05ee61", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 89 + }, + { + "_id": "66cbb8034fa93c4c4b05ee62", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 90 + }, + { + "_id": "66cbb8034fa93c4c4b05ee63", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 91 + }, + { + "_id": "66cbb8034fa93c4c4b05ee64", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 92 + }, + { + "_id": "66cbb8034fa93c4c4b05ee65", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 93 + }, + { + "_id": "66cbb8034fa93c4c4b05ee66", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 94 + }, + { + "_id": "66cbb8034fa93c4c4b05ee67", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 95 + }, + { + "_id": "66cbb8034fa93c4c4b05ee68", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 96 + }, + { + "_id": "66cbb8034fa93c4c4b05ee69", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 97 + }, + { + "_id": "66cbb8034fa93c4c4b05ee6a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ee07", + "slotId": "cartridges", + "location": 98 + }, + { + "_id": "66cbb8034fa93c4c4b05ee6b", + "_tpl": "5d53f4b7a4b936793d58c780", + "parentId": "66cbb8034fa93c4c4b05ee06", + "slotId": "mod_scope" } - } - ] - }, - { - "Id": "loot_ammo_common (69) [6ca7ce5f-c05c-4dcf-845f-2093151d896d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -138.216, - "y": -3.594, - "z": -137.918 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0be", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0be", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_00", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0bf", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8034fa93c4c4b05f0be", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "loot_ammo_common (72) [6a3aecbb-6db0-4ab7-b688-1ac7f0e31cbe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.37, - "y": -2.77, - "z": -123.211975 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0c2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0c2", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0c3", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8034fa93c4c4b05f0c2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ee6c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ee6c", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee6d", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbb8034fa93c4c4b05ee6c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05ee6e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee6f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb8034fa93c4c4b05ee70", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee71", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb8034fa93c4c4b05ee72", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee73", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb8034fa93c4c4b05ee74", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee75", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb8034fa93c4c4b05ee76", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee77", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb8034fa93c4c4b05ee78", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee79", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb8034fa93c4c4b05ee7a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee7b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb8034fa93c4c4b05ee7c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee7d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb8034fa93c4c4b05ee7e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee7f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb8034fa93c4c4b05ee80", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee81", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb8034fa93c4c4b05ee82", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee83", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb8034fa93c4c4b05ee84", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee85", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb8034fa93c4c4b05ee86", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee87", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb8034fa93c4c4b05ee88", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee89", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb8034fa93c4c4b05ee8a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee8b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb8034fa93c4c4b05ee8c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee8d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb8034fa93c4c4b05ee8e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee8f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb8034fa93c4c4b05ee90", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee91", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb8034fa93c4c4b05ee92", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee93", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb8034fa93c4c4b05ee94", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee95", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb8034fa93c4c4b05ee96", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee97", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb8034fa93c4c4b05ee98", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee99", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb8034fa93c4c4b05ee9a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee9b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb8034fa93c4c4b05ee9c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee9d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb8034fa93c4c4b05ee9e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ee9f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ee6d", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "loot_ammo_common (74) [f50f0565-0866-4928-b09f-2439c77c202a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 37.211, - "y": -6.058, - "z": -156.176 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0c7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0c7", - "_tpl": "6570266bc5d7d4cb4d078594", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f0c8", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb8034fa93c4c4b05f0c7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + { + "Id": "Utes_02", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0c9", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb8034fa93c4c4b05f0c7", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "loot_ammo_common (78) [68b37b79-2e8a-4832-9c87-10efd2ef6ad1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -115.086975, - "y": 3.067, - "z": -151.741 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0cc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0cc", - "_tpl": "65702561cfc010a0f5006a28", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0cd", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbb8034fa93c4c4b05f0cc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eea0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eea0", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05eea1", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbb8034fa93c4c4b05eea0", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05eea2", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eea3", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb8034fa93c4c4b05eea4", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eea5", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb8034fa93c4c4b05eea6", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eea7", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb8034fa93c4c4b05eea8", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eea9", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb8034fa93c4c4b05eeaa", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeab", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb8034fa93c4c4b05eeac", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eead", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb8034fa93c4c4b05eeae", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeaf", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb8034fa93c4c4b05eeb0", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeb1", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb8034fa93c4c4b05eeb2", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeb3", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb8034fa93c4c4b05eeb4", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeb5", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb8034fa93c4c4b05eeb6", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeb7", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb8034fa93c4c4b05eeb8", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeb9", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb8034fa93c4c4b05eeba", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eebb", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb8034fa93c4c4b05eebc", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eebd", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb8034fa93c4c4b05eebe", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eebf", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb8034fa93c4c4b05eec0", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eec1", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb8034fa93c4c4b05eec2", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eec3", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb8034fa93c4c4b05eec4", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eec5", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb8034fa93c4c4b05eec6", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eec7", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb8034fa93c4c4b05eec8", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eec9", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb8034fa93c4c4b05eeca", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eecb", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb8034fa93c4c4b05eecc", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eecd", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb8034fa93c4c4b05eece", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eecf", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb8034fa93c4c4b05eed0", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eed1", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb8034fa93c4c4b05eed2", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eed3", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eea1", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "loot_ammo_common (79) [9aa8dae6-9912-45d9-a4d6-84d8ba95002e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -114.432983, - "y": 3.067, - "z": -152.513 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0d0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0d0", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_05", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0d1", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbb8034fa93c4c4b05f0d0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "loot_ammo_common (8) [ad207bee-04ee-42e1-8aa2-1d43042035e5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 71.172, - "y": -4.08, - "z": -113.448975 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0d4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0d4", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0d5", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66cbb8034fa93c4c4b05f0d4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05eed4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eed4", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05eed5", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbb8034fa93c4c4b05eed4", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05eed6", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eed7", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb8034fa93c4c4b05eed8", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eed9", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb8034fa93c4c4b05eeda", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eedb", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb8034fa93c4c4b05eedc", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eedd", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb8034fa93c4c4b05eede", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eedf", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb8034fa93c4c4b05eee0", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eee1", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb8034fa93c4c4b05eee2", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eee3", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb8034fa93c4c4b05eee4", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eee5", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb8034fa93c4c4b05eee6", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eee7", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb8034fa93c4c4b05eee8", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eee9", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb8034fa93c4c4b05eeea", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeeb", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb8034fa93c4c4b05eeec", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeed", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb8034fa93c4c4b05eeee", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeef", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb8034fa93c4c4b05eef0", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eef1", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb8034fa93c4c4b05eef2", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eef3", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb8034fa93c4c4b05eef4", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eef5", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb8034fa93c4c4b05eef6", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eef7", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb8034fa93c4c4b05eef8", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eef9", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb8034fa93c4c4b05eefa", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eefb", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb8034fa93c4c4b05eefc", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eefd", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb8034fa93c4c4b05eefe", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05eeff", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb8034fa93c4c4b05ef00", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef01", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb8034fa93c4c4b05ef02", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef03", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb8034fa93c4c4b05ef04", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef05", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb8034fa93c4c4b05ef06", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef07", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05eed5", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "loot_ammo_common (84) [ecc1f63b-c4a0-4a52-811d-270cfdc3b805]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 41.664978, - "y": -4.309, - "z": -77.7479858 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0d8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0d8", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "AGS_01", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0d9", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8034fa93c4c4b05f0d8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "loot_ammo_common (85) [46c0e1ba-5642-4067-a139-4b63f6eafb88]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 42.7160034, - "y": -4.524, - "z": -77.181 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0dc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0dc", - "_tpl": "657024bdc5d7d4cb4d078564", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0dd", - "_tpl": "5e85a9f4add9fe03027d9bf1", - "parentId": "66cbb8034fa93c4c4b05f0dc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ef08", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ef08", + "_tpl": "5d52cc5ba4b9367408500062", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef09", + "_tpl": "5d52d479a4b936793d58c76b", + "parentId": "66cbb8034fa93c4c4b05ef08", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05ef0a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges" + }, + { + "_id": "66cbb8034fa93c4c4b05ef0b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb8034fa93c4c4b05ef0c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 2 + }, + { + "_id": "66cbb8034fa93c4c4b05ef0d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb8034fa93c4c4b05ef0e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 4 + }, + { + "_id": "66cbb8034fa93c4c4b05ef0f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb8034fa93c4c4b05ef10", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 6 + }, + { + "_id": "66cbb8034fa93c4c4b05ef11", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb8034fa93c4c4b05ef12", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 8 + }, + { + "_id": "66cbb8034fa93c4c4b05ef13", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb8034fa93c4c4b05ef14", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 10 + }, + { + "_id": "66cbb8034fa93c4c4b05ef15", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb8034fa93c4c4b05ef16", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 12 + }, + { + "_id": "66cbb8034fa93c4c4b05ef17", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb8034fa93c4c4b05ef18", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 14 + }, + { + "_id": "66cbb8034fa93c4c4b05ef19", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb8034fa93c4c4b05ef1a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 16 + }, + { + "_id": "66cbb8034fa93c4c4b05ef1b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb8034fa93c4c4b05ef1c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 18 + }, + { + "_id": "66cbb8034fa93c4c4b05ef1d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb8034fa93c4c4b05ef1e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 20 + }, + { + "_id": "66cbb8034fa93c4c4b05ef1f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb8034fa93c4c4b05ef20", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 22 + }, + { + "_id": "66cbb8034fa93c4c4b05ef21", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb8034fa93c4c4b05ef22", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 24 + }, + { + "_id": "66cbb8034fa93c4c4b05ef23", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb8034fa93c4c4b05ef24", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 26 + }, + { + "_id": "66cbb8034fa93c4c4b05ef25", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb8034fa93c4c4b05ef26", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 28 + }, + { + "_id": "66cbb8034fa93c4c4b05ef27", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb8034fa93c4c4b05ef28", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 30 + }, + { + "_id": "66cbb8034fa93c4c4b05ef29", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb8034fa93c4c4b05ef2a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 32 + }, + { + "_id": "66cbb8034fa93c4c4b05ef2b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb8034fa93c4c4b05ef2c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 34 + }, + { + "_id": "66cbb8034fa93c4c4b05ef2d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb8034fa93c4c4b05ef2e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 36 + }, + { + "_id": "66cbb8034fa93c4c4b05ef2f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb8034fa93c4c4b05ef30", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 38 + }, + { + "_id": "66cbb8034fa93c4c4b05ef31", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb8034fa93c4c4b05ef32", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 40 + }, + { + "_id": "66cbb8034fa93c4c4b05ef33", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb8034fa93c4c4b05ef34", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 42 + }, + { + "_id": "66cbb8034fa93c4c4b05ef35", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb8034fa93c4c4b05ef36", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 44 + }, + { + "_id": "66cbb8034fa93c4c4b05ef37", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb8034fa93c4c4b05ef38", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 46 + }, + { + "_id": "66cbb8034fa93c4c4b05ef39", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb8034fa93c4c4b05ef3a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 48 + }, + { + "_id": "66cbb8034fa93c4c4b05ef3b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 49 + }, + { + "_id": "66cbb8034fa93c4c4b05ef3c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 50 + }, + { + "_id": "66cbb8034fa93c4c4b05ef3d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 51 + }, + { + "_id": "66cbb8034fa93c4c4b05ef3e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 52 + }, + { + "_id": "66cbb8034fa93c4c4b05ef3f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 53 + }, + { + "_id": "66cbb8034fa93c4c4b05ef40", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 54 + }, + { + "_id": "66cbb8034fa93c4c4b05ef41", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 55 + }, + { + "_id": "66cbb8034fa93c4c4b05ef42", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 56 + }, + { + "_id": "66cbb8034fa93c4c4b05ef43", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 57 + }, + { + "_id": "66cbb8034fa93c4c4b05ef44", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 58 + }, + { + "_id": "66cbb8034fa93c4c4b05ef45", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 59 + }, + { + "_id": "66cbb8034fa93c4c4b05ef46", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 60 + }, + { + "_id": "66cbb8034fa93c4c4b05ef47", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 61 + }, + { + "_id": "66cbb8034fa93c4c4b05ef48", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 62 + }, + { + "_id": "66cbb8034fa93c4c4b05ef49", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 63 + }, + { + "_id": "66cbb8034fa93c4c4b05ef4a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 64 + }, + { + "_id": "66cbb8034fa93c4c4b05ef4b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 65 + }, + { + "_id": "66cbb8034fa93c4c4b05ef4c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 66 + }, + { + "_id": "66cbb8034fa93c4c4b05ef4d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 67 + }, + { + "_id": "66cbb8034fa93c4c4b05ef4e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 68 + }, + { + "_id": "66cbb8034fa93c4c4b05ef4f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 69 + }, + { + "_id": "66cbb8034fa93c4c4b05ef50", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 70 + }, + { + "_id": "66cbb8034fa93c4c4b05ef51", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 71 + }, + { + "_id": "66cbb8034fa93c4c4b05ef52", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 72 + }, + { + "_id": "66cbb8034fa93c4c4b05ef53", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 73 + }, + { + "_id": "66cbb8034fa93c4c4b05ef54", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 74 + }, + { + "_id": "66cbb8034fa93c4c4b05ef55", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 75 + }, + { + "_id": "66cbb8034fa93c4c4b05ef56", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 76 + }, + { + "_id": "66cbb8034fa93c4c4b05ef57", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 77 + }, + { + "_id": "66cbb8034fa93c4c4b05ef58", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 78 + }, + { + "_id": "66cbb8034fa93c4c4b05ef59", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 79 + }, + { + "_id": "66cbb8034fa93c4c4b05ef5a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 80 + }, + { + "_id": "66cbb8034fa93c4c4b05ef5b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 81 + }, + { + "_id": "66cbb8034fa93c4c4b05ef5c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 82 + }, + { + "_id": "66cbb8034fa93c4c4b05ef5d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 83 + }, + { + "_id": "66cbb8034fa93c4c4b05ef5e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 84 + }, + { + "_id": "66cbb8034fa93c4c4b05ef5f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 85 + }, + { + "_id": "66cbb8034fa93c4c4b05ef60", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 86 + }, + { + "_id": "66cbb8034fa93c4c4b05ef61", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 87 + }, + { + "_id": "66cbb8034fa93c4c4b05ef62", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 88 + }, + { + "_id": "66cbb8034fa93c4c4b05ef63", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 89 + }, + { + "_id": "66cbb8034fa93c4c4b05ef64", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 90 + }, + { + "_id": "66cbb8034fa93c4c4b05ef65", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 91 + }, + { + "_id": "66cbb8034fa93c4c4b05ef66", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 92 + }, + { + "_id": "66cbb8034fa93c4c4b05ef67", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 93 + }, + { + "_id": "66cbb8034fa93c4c4b05ef68", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 94 + }, + { + "_id": "66cbb8034fa93c4c4b05ef69", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 95 + }, + { + "_id": "66cbb8034fa93c4c4b05ef6a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 96 + }, + { + "_id": "66cbb8034fa93c4c4b05ef6b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 97 + }, + { + "_id": "66cbb8034fa93c4c4b05ef6c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbb8034fa93c4c4b05ef09", + "slotId": "cartridges", + "location": 98 + }, + { + "_id": "66cbb8034fa93c4c4b05ef6d", + "_tpl": "5d53f4b7a4b936793d58c780", + "parentId": "66cbb8034fa93c4c4b05ef08", + "slotId": "mod_scope" } - } - ] - }, - { - "Id": "loot_ammo_common (86) [8d19095f-02ae-421a-a26d-4a882bdbbb4a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 42.70398, - "y": -4.524, - "z": -76.76898 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0e1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0e1", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_01", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0e2", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb8034fa93c4c4b05f0e1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0e3", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb8034fa93c4c4b05f0e1", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb8034fa93c4c4b05ef6e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05ef6e", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef6f", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66cbb8034fa93c4c4b05ef6e", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05ef70", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef71", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbb8034fa93c4c4b05ef72", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef73", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbb8034fa93c4c4b05ef74", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef75", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbb8034fa93c4c4b05ef76", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef77", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbb8034fa93c4c4b05ef78", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef79", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbb8034fa93c4c4b05ef7a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef7b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbb8034fa93c4c4b05ef7c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef7d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbb8034fa93c4c4b05ef7e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef7f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbb8034fa93c4c4b05ef80", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef81", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbb8034fa93c4c4b05ef82", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef83", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbb8034fa93c4c4b05ef84", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef85", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbb8034fa93c4c4b05ef86", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef87", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbb8034fa93c4c4b05ef88", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef89", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbb8034fa93c4c4b05ef8a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef8b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbb8034fa93c4c4b05ef8c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef8d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbb8034fa93c4c4b05ef8e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef8f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbb8034fa93c4c4b05ef90", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef91", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbb8034fa93c4c4b05ef92", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef93", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbb8034fa93c4c4b05ef94", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef95", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbb8034fa93c4c4b05ef96", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef97", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbb8034fa93c4c4b05ef98", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef99", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbb8034fa93c4c4b05ef9a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef9b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbb8034fa93c4c4b05ef9c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef9d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbb8034fa93c4c4b05ef9e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05ef9f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbb8034fa93c4c4b05efa0", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66cbb8034fa93c4c4b05efa1", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66cbb8034fa93c4c4b05ef6f", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "loot_ammo_common (90) [968b2fa1-cc59-4abd-a1d8-d2a0a724d336]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.4910278, - "y": -4.448, - "z": -80.453 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0e6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0e6", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "cult_Loot 135 (12) [81c8e05a-0f67-4112-a3b6-3fd5d619a50a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.094849, + "y": -14.3445759, + "z": 28.3623047 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0e7", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbb8034fa93c4c4b05f0e6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efa2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efa2", + "_tpl": "669fa39b48fc9f8db6035a0c", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05efa3", + "_tpl": "669fa47da0bab4e8510d9526", + "parentId": "66cbb8034fa93c4c4b05efa2", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05efa4", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbb8034fa93c4c4b05efa3", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8034fa93c4c4b05efa5", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66cbb8034fa93c4c4b05efa2", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb8034fa93c4c4b05efa6", + "_tpl": "669fa4d97a09bc295603b496", + "parentId": "66cbb8034fa93c4c4b05efa2", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05efa7", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbb8034fa93c4c4b05efa6", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05efa8", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbb8034fa93c4c4b05efa2", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05efa9", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66cbb8034fa93c4c4b05efa8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } } - } - ] - }, - { - "Id": "loot_ammo_common (91) [b1aa597e-b1c8-49f9-902c-6262a4dc2cef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.927002, - "y": -4.448, - "z": -80.65799 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0ea", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0ea", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "cult_Loot 135 (13) [420a365c-3f78-4ce0-a847-7ccf42cd7f67]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -121.750854, + "y": -14.3445759, + "z": 27.8703 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0eb", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbb8034fa93c4c4b05f0ea", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efab", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efab", + "_tpl": "617fd91e5539a84ec44ce155", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common (92) [370da89f-6ecf-4ee0-b981-9f6f842fa906]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -227.63501, - "y": -6.103, - "z": -11.9079895 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0ee", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0ee", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f0ef", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb8034fa93c4c4b05f0ee", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + { + "Id": "GunrackSpawn 4(Clone) [cd8c76d8-c75a-4596-816a-41902611fd6a]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 8.733276, + "y": -3.93956757, + "z": -1.00091553 + }, + "Rotation": { + "x": 271.320557, + "y": 84.233284, + "z": 21.7712975 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efac", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efac", + "_tpl": "583990e32459771419544dd2", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05efad", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "66cbb8034fa93c4c4b05efac", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05efae", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "66cbb8034fa93c4c4b05efac", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05efaf", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb8034fa93c4c4b05efac", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05efb4", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8034fa93c4c4b05efaf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05efb0", + "_tpl": "57dc324a24597759501edc20", + "parentId": "66cbb8034fa93c4c4b05efac", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05efb1", + "_tpl": "57dc334d245977597164366f", + "parentId": "66cbb8034fa93c4c4b05efac", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05efb2", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "66cbb8034fa93c4c4b05efac", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05efb3", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "66cbb8034fa93c4c4b05efb2", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "loot_ammo_common (93) [48377bb7-fb7c-4f84-8366-c344fb59483f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -228.06897, - "y": -6.199, - "z": -11.6029968 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0f2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0f2", - "_tpl": "65702629cfc010a0f5006a47", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "GunsafeSpawn 1 (1)(Clone) [21f935a9-a45a-4dea-af27-cfa6221ee24c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -39.5440674, + "y": 18.749094, + "z": 169.4809 + }, + "Rotation": { + "x": 270.0, + "y": 272.058075, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0f3", - "_tpl": "57371f8d24597761006c6a81", - "parentId": "66cbb8034fa93c4c4b05f0f2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efb6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efb6", + "_tpl": "57616a9e2459773c7a400234", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common (96) [cafedcbf-14f3-49b4-8eea-7ec59c380847]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -6.45599365, - "y": -4.01, - "z": -107.806 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0f6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0f6", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "GunsafeSpawn 1 (3)(Clone) [02675176-2603-4a6e-8ebf-33637f71b839]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -39.61194, + "y": 19.4410934, + "z": 169.486328 + }, + "Rotation": { + "x": 270.0, + "y": 322.159943, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0f7", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8034fa93c4c4b05f0f6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efb8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efb8", + "_tpl": "5888988e24597752fe43a6fa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05efb9", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbb8034fa93c4c4b05efb8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "loot_ammo_common (97) [d6a754bc-1722-4e31-a7dc-1fc328c5b0b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -6.48699951, - "y": -4.01, - "z": -107.53 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0fa", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0fa", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "GunsafeSpawn 1 (3)(Clone) [d4921cad-c4bb-45f4-b080-8b2c3c98da22]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -39.5938721, + "y": 19.4179955, + "z": 181.763672 + }, + "Rotation": { + "x": 270.0, + "y": 322.159943, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f0fb", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8034fa93c4c4b05f0fa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efbb", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efbb", + "_tpl": "5888988e24597752fe43a6fa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05efbc", + "_tpl": "5efb0c1bd79ff02a1f5e68d9", + "parentId": "66cbb8034fa93c4c4b05efbb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common (98) [e7421ebc-710c-424f-9b76-2de2caac1b64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -108.586, - "y": -6.698, - "z": -69.35599 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f0fe", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f0fe", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f0ff", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbb8034fa93c4c4b05f0fe", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + { + "Id": "item_quest_keeper2_kompr_true [405e1751-84e0-4fbf-83e6-47c332f7ace4]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 102.242981, + "y": -6.813, + "z": 65.56604 + }, + "Rotation": { + "x": 5.56767035, + "y": 208.625565, + "z": 278.150818 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efbe", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efbe", + "_tpl": "6398a072e301557ae24cec92", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_common (99) [a2912819-6dee-4340-8175-e8a000aef02e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -108.684021, - "y": -6.698, - "z": -69.638 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f103", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f103", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f104", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb8034fa93c4c4b05f103", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + { + "Id": "jora_tool (82) [855be50f-08cb-4b55-859d-c2c4b5f921b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.5139771, + "y": -3.955, + "z": -125.228973 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f105", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb8034fa93c4c4b05f103", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efc0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efc0", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_regular (1) [93f13994-118b-4821-afeb-bc5a0ef56c2b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.2810059, - "y": 0.3789978, - "z": -36.1169739 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f107", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f107", - "_tpl": "6086b5731246154cad35d6c7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (10) [c643b1b4-1b1b-4568-b83d-d1fb249a2aa2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 191.0122, + "y": -5.863, + "z": -225.847687 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 134.652985, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efc1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efc1", + "_tpl": "588892092459774ac91d4b11" + }, + { + "_id": "66cbb8034fa93c4c4b05efc2", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "66cbb8034fa93c4c4b05efc1", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05efc8", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbb8034fa93c4c4b05efc2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05efc3", + "_tpl": "5888956924597752983e182d", + "parentId": "66cbb8034fa93c4c4b05efc1", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05efc4", + "_tpl": "5888996c24597754281f9419", + "parentId": "66cbb8034fa93c4c4b05efc3", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05efc5", + "_tpl": "5888976c24597754281f93f5", + "parentId": "66cbb8034fa93c4c4b05efc3", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05efc6", + "_tpl": "57c55f172459772d27602381", + "parentId": "66cbb8034fa93c4c4b05efc1", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05efc7", + "_tpl": "58889d0c2459775bc215d981", + "parentId": "66cbb8034fa93c4c4b05efc1", + "slotId": "mod_stock" } - } - ] - }, - { - "Id": "loot_ammo_regular (10) [f0e0f1fb-fc6f-4f93-8ead-bc83148050a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.20599, - "y": 3.58100128, - "z": -18.7909851 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f109", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f109", - "_tpl": "6415c694da439c6a97048b56", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (11) [4d454522-fb0f-4529-b7ae-93848341edc4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 192.121155, + "y": -5.863, + "z": -225.716675 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efc9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efc9", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05efca", + "_tpl": "652911675ae2ae97b80fdf3c", + "parentId": "66cbb8034fa93c4c4b05efc9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05efcb", + "_tpl": "65293c38fc460e50a509cb25", + "parentId": "66cbb8034fa93c4c4b05efc9", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05efd8", + "_tpl": "6529302b8c26af6326029fb7", + "parentId": "66cbb8034fa93c4c4b05efcb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05efcc", + "_tpl": "6529119424cbe3c74a05e5bb", + "parentId": "66cbb8034fa93c4c4b05efc9", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05efcd", + "_tpl": "6567e751a715f85433025998", + "parentId": "66cbb8034fa93c4c4b05efcc", + "slotId": "mod_scope" + }, + { + "_id": "66cbb8034fa93c4c4b05efce", + "_tpl": "6567e7681265c8a131069b0f", + "parentId": "66cbb8034fa93c4c4b05efcd", + "slotId": "mod_scope" + }, + { + "_id": "66cbb8034fa93c4c4b05efcf", + "_tpl": "652910565ae2ae97b80fdf35", + "parentId": "66cbb8034fa93c4c4b05efcc", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05efd0", + "_tpl": "6529113b5ae2ae97b80fdf39", + "parentId": "66cbb8034fa93c4c4b05efcf", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05efd1", + "_tpl": "652911e650dc782999054b9d", + "parentId": "66cbb8034fa93c4c4b05efd0", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05efd2", + "_tpl": "652910bc24cbe3c74a05e5b9", + "parentId": "66cbb8034fa93c4c4b05efcf", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05efd3", + "_tpl": "652910ef50dc782999054b97", + "parentId": "66cbb8034fa93c4c4b05efcc", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05efd4", + "_tpl": "6529348224cbe3c74a05e5c4", + "parentId": "66cbb8034fa93c4c4b05efc9", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb8034fa93c4c4b05efd5", + "_tpl": "6529366450dc782999054ba0", + "parentId": "66cbb8034fa93c4c4b05efd4", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05efd6", + "_tpl": "6529370c405a5f51dd023db8", + "parentId": "66cbb8034fa93c4c4b05efd5", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb8034fa93c4c4b05efd7", + "_tpl": "6529109524cbe3c74a05e5b7", + "parentId": "66cbb8034fa93c4c4b05efc9", + "slotId": "mod_charge" } - } - ] - }, - { - "Id": "loot_ammo_regular (11) [206d6f3c-f670-404b-bf5a-01f43656f598]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.75403, - "y": 3.58100128, - "z": -18.83899 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f10b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f10b", - "_tpl": "617130016c780c1e710c9a24", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (11) [515d00d4-a870-49c6-a6a3-fe2bc3cb3ebf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -154.448853, + "y": -8.923576, + "z": 75.2272949 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efd9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efd9", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05efda", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "66cbb8034fa93c4c4b05efd9", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05efe3", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb8034fa93c4c4b05efda", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05efdb", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "66cbb8034fa93c4c4b05efd9", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8034fa93c4c4b05efdc", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "66cbb8034fa93c4c4b05efd9", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05efdd", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "66cbb8034fa93c4c4b05efd9", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05efde", + "_tpl": "5fbbc366ca32ed67276c1557", + "parentId": "66cbb8034fa93c4c4b05efd9", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05efdf", + "_tpl": "5fbbc34106bde7524f03cbe9", + "parentId": "66cbb8034fa93c4c4b05efde", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05efe0", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "66cbb8034fa93c4c4b05efd9", + "slotId": "mod_mount" + }, + { + "_id": "66cbb8034fa93c4c4b05efe1", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "66cbb8034fa93c4c4b05efd9", + "slotId": "mod_mount_001" + }, + { + "_id": "66cbb8034fa93c4c4b05efe2", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "66cbb8034fa93c4c4b05efd9", + "slotId": "mod_mount_002" } - } - ] - }, - { - "Id": "loot_ammo_regular (12) [da94dde4-fb66-4b1a-85a4-e66228e3e810]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.0310059, - "y": 3.58100128, - "z": -18.7059937 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f10d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f10d", - "_tpl": "599860ac86f77436b225ed1a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 135 (12) [473ac088-4b8b-42e9-a385-e9847c5c2751]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 190.62616, + "y": -5.863, + "z": -225.4827 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 134.652985, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f10e", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb8034fa93c4c4b05f10d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05efe4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05efe4", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05efe5", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "66cbb8034fa93c4c4b05efe4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05efe6", + "_tpl": "5df8f541c41b2312ea3335e3", + "parentId": "66cbb8034fa93c4c4b05efe4", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05eff1", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbb8034fa93c4c4b05efe6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05efe7", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "66cbb8034fa93c4c4b05efe4", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05efe8", + "_tpl": "5ae30c9a5acfc408fb139a03", + "parentId": "66cbb8034fa93c4c4b05efe7", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb8034fa93c4c4b05efe9", + "_tpl": "5df8e4080b92095fd441e594", + "parentId": "66cbb8034fa93c4c4b05efe4", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05efea", + "_tpl": "5df917564a9f347bc92edca3", + "parentId": "66cbb8034fa93c4c4b05efe9", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05efeb", + "_tpl": "5dfa3cd1b33c0951220c079b", + "parentId": "66cbb8034fa93c4c4b05efea", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05efec", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "parentId": "66cbb8034fa93c4c4b05efea", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05efed", + "_tpl": "5df916dfbb49d91fb446d6b9", + "parentId": "66cbb8034fa93c4c4b05efe9", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05efee", + "_tpl": "5dfa3d950dee1b22f862eae0", + "parentId": "66cbb8034fa93c4c4b05efed", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8034fa93c4c4b05efef", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "parentId": "66cbb8034fa93c4c4b05efe9", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05eff0", + "_tpl": "5df8e053bb49d91fb446d6a6", + "parentId": "66cbb8034fa93c4c4b05efe4", + "slotId": "mod_charge" } + ] + }, + { + "Id": "Loot 135 (12) [4be723ec-fcab-4a70-9e21-fb4c06a36078]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -154.833862, + "y": -8.923576, + "z": 72.6022949 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f10f", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb8034fa93c4c4b05f10d", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05eff2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05eff2", + "_tpl": "668fe5a998b5ad715703ddd6", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05eff3", + "_tpl": "668fe5f62a0f85eea407cc18", + "parentId": "66cbb8034fa93c4c4b05eff2", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05eff4", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbb8034fa93c4c4b05eff3", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8034fa93c4c4b05eff5", + "_tpl": "668fe5d42a0f85eea407cc16", + "parentId": "66cbb8034fa93c4c4b05eff2", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb8034fa93c4c4b05eff6", + "_tpl": "668fe60b56984d93550462c6", + "parentId": "66cbb8034fa93c4c4b05eff2", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05eff7", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbb8034fa93c4c4b05eff6", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05eff8", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbb8034fa93c4c4b05eff2", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05eff9", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66cbb8034fa93c4c4b05eff8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } } - } - ] - }, - { - "Id": "loot_ammo_regular (13) [94ea6b90-be0b-4e35-bd6e-a9e44ef9b001]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 81.88074, - "y": 0.08874512, - "z": -17.6547546 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f111", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f111", - "_tpl": "5bfd36ad0db834001c38ef66", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (13) [73278017-d3fa-45c7-ab04-cf3ad9dca16f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -155.993835, + "y": -9.049577, + "z": 71.97034 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05effa", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05effa", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05effb", + "_tpl": "652911675ae2ae97b80fdf3c", + "parentId": "66cbb8034fa93c4c4b05effa", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb8034fa93c4c4b05effc", + "_tpl": "65293c38fc460e50a509cb25", + "parentId": "66cbb8034fa93c4c4b05effa", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05f009", + "_tpl": "6529302b8c26af6326029fb7", + "parentId": "66cbb8034fa93c4c4b05effc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05effd", + "_tpl": "6529119424cbe3c74a05e5bb", + "parentId": "66cbb8034fa93c4c4b05effa", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05effe", + "_tpl": "6567e751a715f85433025998", + "parentId": "66cbb8034fa93c4c4b05effd", + "slotId": "mod_scope" + }, + { + "_id": "66cbb8034fa93c4c4b05efff", + "_tpl": "6567e7681265c8a131069b0f", + "parentId": "66cbb8034fa93c4c4b05effe", + "slotId": "mod_scope" + }, + { + "_id": "66cbb8034fa93c4c4b05f000", + "_tpl": "652910565ae2ae97b80fdf35", + "parentId": "66cbb8034fa93c4c4b05effd", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05f001", + "_tpl": "6529113b5ae2ae97b80fdf39", + "parentId": "66cbb8034fa93c4c4b05f000", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05f002", + "_tpl": "652911e650dc782999054b9d", + "parentId": "66cbb8034fa93c4c4b05f001", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05f003", + "_tpl": "652910bc24cbe3c74a05e5b9", + "parentId": "66cbb8034fa93c4c4b05f000", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb8034fa93c4c4b05f004", + "_tpl": "652910ef50dc782999054b97", + "parentId": "66cbb8034fa93c4c4b05effd", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05f005", + "_tpl": "6529348224cbe3c74a05e5c4", + "parentId": "66cbb8034fa93c4c4b05effa", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb8034fa93c4c4b05f006", + "_tpl": "6529366450dc782999054ba0", + "parentId": "66cbb8034fa93c4c4b05f005", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05f007", + "_tpl": "6529370c405a5f51dd023db8", + "parentId": "66cbb8034fa93c4c4b05f006", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbb8034fa93c4c4b05f008", + "_tpl": "6529109524cbe3c74a05e5b7", + "parentId": "66cbb8034fa93c4c4b05effa", + "slotId": "mod_charge" } - } - ] - }, - { - "Id": "loot_ammo_regular (14) [f67b5122-b7ea-4d71-829e-64cc060cb817]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 82.13873, - "y": 0.09574509, - "z": -17.3117371 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f113", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f113", - "_tpl": "6513f0a194c72326990a3868", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb8034fa93c4c4b05f114", - "_tpl": "59e0d99486f7744a32234762", - "parentId": "66cbb8034fa93c4c4b05f113", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + { + "Id": "Loot 135 (13) [a1defdc6-9fc9-4781-a8c7-9a036ce651e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 191.214172, + "y": -6.44857645, + "z": -226.880676 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f115", - "_tpl": "59e0d99486f7744a32234762", - "parentId": "66cbb8034fa93c4c4b05f113", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 28 - } - } - ] - }, - { - "Id": "loot_ammo_regular (15) [487bf350-afdb-46cd-82fb-ccf355f03af9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 82.42676, - "y": 0.0227451324, - "z": -16.6097412 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f117", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f117", - "_tpl": "619624b26db0f2477964e6b0", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f00b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f00b", + "_tpl": "619cbf7d23893217ec30b689", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_regular (19) [d4990c99-6c5d-44fb-83a2-7f0268579a26]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 89.25873, - "y": -2.99825478, - "z": -20.0557556 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f119", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f119", - "_tpl": "617131a4568c120fdd29482d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 135 (14) [d8e3c979-241b-4328-a8df-b7c1a1d12c97]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 190.114136, + "y": -6.44857645, + "z": -226.0427 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f11a", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbb8034fa93c4c4b05f119", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6 - } - } - ] - }, - { - "Id": "loot_ammo_regular (2) [696bbb07-63eb-49dc-b104-08567e98b55d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 91.9359741, - "y": -0.154998779, - "z": -34.9119873 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f11c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f11c", - "_tpl": "5bc5a372d4351e44f824d17f", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f00c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f00c", + "_tpl": "669fa39b48fc9f8db6035a0c", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05f00d", + "_tpl": "669fa47da0bab4e8510d9526", + "parentId": "66cbb8034fa93c4c4b05f00c", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05f00e", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbb8034fa93c4c4b05f00d", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8034fa93c4c4b05f00f", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66cbb8034fa93c4c4b05f00c", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb8034fa93c4c4b05f010", + "_tpl": "669fa4d97a09bc295603b496", + "parentId": "66cbb8034fa93c4c4b05f00c", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb8034fa93c4c4b05f011", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbb8034fa93c4c4b05f010", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05f012", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbb8034fa93c4c4b05f00c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05f013", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66cbb8034fa93c4c4b05f012", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } } - } - ] - }, - { - "Id": "loot_ammo_regular (4) [0636d8b8-0cd1-4c2e-a5ed-d645e74b2125]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.1247559, - "y": 0.08999634, - "z": -31.4907532 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f11e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f11e", - "_tpl": "5c0673fb0db8340023300271", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 135 (3) [d6a0296e-7ff0-4ce5-b14f-cae48dde0abf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 191.813171, + "y": -5.863, + "z": -226.7807 + }, + "Rotation": { + "x": 0.0, + "y": 252.0725, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f11f", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb8034fa93c4c4b05f11e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f015", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f015", + "_tpl": "56dff026d2720bb8668b4567", + "upd": { + "StackObjectsCount": 24 + } } - } - ] - }, - { - "Id": "loot_ammo_regular (5) [ea147d1a-c70d-4755-a4ad-69cc8006b443]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.43475, - "y": 0.08999634, - "z": -31.9397583 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f121", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f121", - "_tpl": "5fbcc429900b1d5091531dd7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135 (9) [7f904259-a124-465e-ac91-1240ce74ffaa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -153.961853, + "y": -8.923576, + "z": 74.3963 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f017", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f017", + "_tpl": "60b0f6c058e0b0481a09ad11", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_ammo_regular (6) [110d9b37-290b-46b2-9a5a-95f7b5f86397]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 82.078, - "y": -0.08999634, - "z": -27.8469849 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f123", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f123", - "_tpl": "618ba91477b82356f91ae0e8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (1) [fddc601e-f811-4217-bca5-dd4fe2d3b293]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.23297, + "y": -3.777, + "z": -112.416992 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f01a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f01a", + "_tpl": "64aceaecc4eda9354b0226b6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f01b", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbb8034fa93c4c4b05f01a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_ammo_regular (8) [475345ec-b9d4-473d-9eb3-14c08e8f35bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.42175, - "y": -0.179255009, - "z": -24.84674 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f125", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f125", - "_tpl": "5cdeac42d7f00c000d36ba73", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (100) [96215a71-5bec-4825-9be7-afd068e2dba7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -105.541016, + "y": -6.737, + "z": -67.7379761 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f01e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f01e", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f01f", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb8034fa93c4c4b05f01e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_ammo_regular [fae55fc9-0870-478b-9368-1d89fa82550a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.07898, - "y": 0.3789978, - "z": -35.7489929 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f127", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f127", - "_tpl": "5a69a2ed8dc32e000d46d1f1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (101) [9c125c7c-1067-465d-9fb5-28d4534a7575]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -105.163025, + "y": -6.655, + "z": -67.405 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f022", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f022", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f023", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbb8034fa93c4c4b05f022", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_ammo_rus (5) [b062d483-e256-4f32-99a4-53c2193e62b9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.1975708, - "y": -6.360081, - "z": -16.8215637 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f12a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f12a", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo_common (102) [449a23a7-9b62-4517-a716-c444438a32c5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -146.968018, + "y": -10.081, + "z": 42.64099 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f12b", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8034fa93c4c4b05f12a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f026", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f026", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f027", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8034fa93c4c4b05f026", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_ammo_rus (8) [edbbe52f-578a-4c7c-8027-85526cc1f184]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 4.75958252, - "y": -5.852081, - "z": -14.68457 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f12e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f12e", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo_common (103) [56a001e1-bfbd-4d27-8f0a-481f584c4d98]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -146.788025, + "y": -9.886, + "z": 43.25702 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f12f", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8034fa93c4c4b05f12e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f02a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f02a", + "_tpl": "6570253ec5d7d4cb4d078573", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f02b", + "_tpl": "5735fdcd2459776445391d61", + "parentId": "66cbb8034fa93c4c4b05f02a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "loot_ammo_rus [9a46984b-1469-4731-9bd5-c6a0f9dbf25d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 8.085571, - "y": -5.915001, - "z": -14.7215576 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f132", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f132", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_ammo_common (104) [e96d99fb-74be-490c-b100-f555c2bf4acd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -146.500977, + "y": -9.984, + "z": 44.48004 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f133", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8034fa93c4c4b05f132", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f02f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f02f", + "_tpl": "657024361419851aef03e6fa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f030", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "66cbb8034fa93c4c4b05f02f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f031", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "66cbb8034fa93c4c4b05f02f", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_barter_electr_phaseantenna (8) [d6df9f51-5828-46fa-baee-9968131b1637]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 108.039978, - "y": -5.853, - "z": 59.70404 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f135", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f135", - "_tpl": "5d03775b86f774203e7e0c4b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (105) [8167f2bc-59d3-4aee-bfe2-06a193d4219b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -139.107, + "y": -11.456, + "z": 72.06299 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f034", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f034", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f035", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbb8034fa93c4c4b05f034", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_barter_electr_phaseantenna (9) [0db7ba1d-8a00-4103-931b-cdb67b4a2322]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 100.396973, - "y": -5.509, - "z": 57.73999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f137", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f137", - "_tpl": "5d03775b86f774203e7e0c4b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (106) [de2b9f1c-541b-4f82-9e9d-61a39cb768f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -139.229, + "y": -11.456, + "z": 71.47504 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f038", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f038", + "_tpl": "657024b31419851aef03e70f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f039", + "_tpl": "5f647f31b6238e5dd066e196", + "parentId": "66cbb8034fa93c4c4b05f038", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_bilding (1) [87d1f2ad-f455-44b0-989e-d02b6f14e783]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -45.9119873, - "y": 13.61, - "z": 178.958984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f139", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f139", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (108) [7a38344a-3a67-46be-8b96-44c1db2e1c37]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -102.51001, + "y": -14.348, + "z": 40.00403 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f03d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f03d", + "_tpl": "65702479c5d7d4cb4d07855e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f03e", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66cbb8034fa93c4c4b05f03d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f03f", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66cbb8034fa93c4c4b05f03d", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_bilding (3) [62cb1df9-75c3-4955-8d6f-93399d2b383c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -43.3070068, - "y": 12.916, - "z": 184.855042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f13b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f13b", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (15) [97b559f8-0ef7-44e4-83a0-de887156e388]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 75.284, + "y": -4.676, + "z": -115.599976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f042", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f042", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f043", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbb8034fa93c4c4b05f042", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_building_mater (10) [8324d767-6da7-461c-a357-6406bbf03c8d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 53.2020264, - "y": -3.811, - "z": -139.207977 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f13d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f13d", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (16) [b146e125-a0ef-43e2-8d7a-7c62502ea14c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 74.57599, + "y": -4.676, + "z": -115.274994 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f046", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f046", + "_tpl": "657025bbcfc010a0f5006a35", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f047", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbb8034fa93c4c4b05f046", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_building_mater (14) [919149af-5e76-49ff-a316-c2e6cd7984b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 8.314026, - "y": -4.007, - "z": -119.212982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f13f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f13f", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (18) [f1ce3537-01d1-4da9-b5a1-feebbec09cc1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 237.04895, + "y": -1.757, + "z": -101.659 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f04b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f04b", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f04c", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8034fa93c4c4b05f04b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f04d", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8034fa93c4c4b05f04b", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_building_mater (18) [f86d5668-6f7a-40ca-837e-fddc553153c3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.9571533, - "y": -11.184577, - "z": -103.498718 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f141", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f141", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (22) [d388bfd7-cbfd-43b1-aefe-2c6a4c8d2235]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -13.4210205, + "y": -4.052, + "z": -98.9419861 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f051", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f051", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f052", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbb8034fa93c4c4b05f051", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f053", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbb8034fa93c4c4b05f051", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_building_mater (19) [b8303fa5-fb48-4412-8f2b-15155f8ba2b3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 180.291992, - "y": -6.328, - "z": -137.099976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f143", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f143", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (25) [12a41153-550b-45c9-b0a8-4c230cdd1ea8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -13.4849854, + "y": -4.603, + "z": -98.17499 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f056", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f056", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f057", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbb8034fa93c4c4b05f056", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_building_mater (20) [1461294c-414e-4a7a-8af9-661a12a695e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 182.504028, - "y": -6.328, - "z": -136.427979 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f145", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f145", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (28) [c65be3a9-54b8-4f4a-8bd8-6e452a4a73ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 36.0709839, + "y": -3.459, + "z": -118.781982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f05a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f05a", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f05b", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8034fa93c4c4b05f05a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_building_mater (22) [c55a657c-e8d2-464a-87b3-c5754714f3cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.4279785, - "y": -4.711, - "z": -132.59 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f147", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f147", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (30) [b2a8cb90-953a-4566-909b-4a9157e6d792]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.422, + "y": -0.095, + "z": -165.556976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f05e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f05e", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f05f", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8034fa93c4c4b05f05e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_building_mater (31) [9afec3e2-1373-44b1-bc35-09698e4b5b73]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -154.521, - "y": -11.007, - "z": 26.9909973 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f149", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f149", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (37) [af200c49-a845-4d56-adf4-9a9a78de2df0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -20.3480225, + "y": -5.35, + "z": -161.512 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f062", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f062", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f063", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8034fa93c4c4b05f062", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_bunker_quest (1) [63b9b8ab-1fb2-463f-86ea-b46674800bee]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -114.36499, - "y": -13.7081, - "z": 27.3590088 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f14b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f14b", - "_tpl": "60915994c49cf53e4772cc38", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (38) [bdfc8326-7e1a-4607-bf75-385c0cb8018a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -19.8889771, + "y": -5.35, + "z": -161.47 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f067", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f067", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f068", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8034fa93c4c4b05f067", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f069", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8034fa93c4c4b05f067", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_bunker_quest (2) [4f1fb7bd-c7f7-4d0a-8d4c-6082bc9d56fe]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -114.18103, - "y": -13.6893, - "z": 39.7880249 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f14d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f14d", - "_tpl": "60a3b6359c427533db36cf84", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_bunker_quest (3) [e3d58f16-1ecb-498b-91e0-daf410d541b5]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -121.867004, - "y": -14.314, - "z": 38.6560059 - }, - "Rotation": { - "x": 57.3194122, - "y": 107.333969, - "z": 3.16238743e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f14f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f14f", - "_tpl": "60a3b65c27adf161da7b6e14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (4) [2c655a25-5958-4e47-a23b-f0e20f99795f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.23602, + "y": -3.777, + "z": -112.929993 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f06d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f06d", + "_tpl": "65702479c5d7d4cb4d07855e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f06e", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66cbb8034fa93c4c4b05f06d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f06f", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66cbb8034fa93c4c4b05f06d", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_ccp_quest (4) [1db76d0b-d6ef-418e-914f-8b62bb1251f8]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -88.065, - "y": -19.129, - "z": 151.055 - }, - "Rotation": { - "x": 0.0, - "y": 167.8859, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f151", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f151", - "_tpl": "609267a2bb3f46069c3e6c7d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (41) [ffdc2dec-fd45-4fb9-b2f2-9579431a5f09]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -19.8870239, + "y": -5.35, + "z": -162.29599 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f072", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f072", + "_tpl": "64aceaecc4eda9354b0226b6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f073", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbb8034fa93c4c4b05f072", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_common (1) [bb8a32b6-544f-481d-844e-fdb3d5540da9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -12.1339722, - "y": -4.073, - "z": -100.806976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f153", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f153", - "_tpl": "591af28e86f77414a27a9e1d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (42) [497fc1b0-4157-47f4-ba7e-2ed77b4d406e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -19.8150024, + "y": -5.35, + "z": -162.659973 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f076", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f076", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f077", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbb8034fa93c4c4b05f076", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_common_mod (1) [241864a5-12b3-4cb4-9353-5126c96eb634]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.6010132, - "y": 0.39, - "z": -159.028992 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f155", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f155", - "_tpl": "55d35ee94bdc2d61338b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (44) [4eb52ae8-c1d6-4fb6-a99a-0233fb95c44b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.611023, + "y": -6.721, + "z": 105.552 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f07a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f07a", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f07b", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8034fa93c4c4b05f07a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_common_mod (2) [fb104f1d-5a7d-4445-9587-35342852d291]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.1599731, - "y": 0.39, - "z": -158.986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f157", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f157", - "_tpl": "58272d7f2459774f6311ddfd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (45) [4583687d-b53a-4fff-aedc-690a82dfdbdf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.185, + "y": -6.721, + "z": 105.028015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f07f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f07f", + "_tpl": "65702474bfc87b3a34093226", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f080", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbb8034fa93c4c4b05f07f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f081", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbb8034fa93c4c4b05f07f", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_drink (2) [87f56e6b-a8e0-416c-9e9a-7afc28bbdf07]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -71.2608643, - "y": -10.1125765, - "z": 25.2593079 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f159", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f159", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (46) [107baae3-045e-4a36-89ec-8c1beec85015]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 168.823, + "y": -4.067, + "z": -131.318 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f085", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f085", + "_tpl": "6570266bc5d7d4cb4d078594", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f086", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb8034fa93c4c4b05f085", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f087", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb8034fa93c4c4b05f085", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_drink (4) [6d0eab95-692a-4534-a1a2-8ee6d27562a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.396, - "y": -2.59182382, - "z": -2.1428833 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f15b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f15b", - "_tpl": "57513fcc24597720a31c09a6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (46) [5cc764a9-004a-4677-b3ef-5d28d7598e69]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 9.14856, + "y": -3.684081, + "z": -15.4205627 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f08a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f08a", + "_tpl": "6570259bc5d7d4cb4d07857f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f08b", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbb8034fa93c4c4b05f08a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_el_military (1) [e9c3b795-bb30-4288-a246-5b9ba6fbacce]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": -146.315, - "y": 0.939, - "z": -3.16897583 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f15d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f15d", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (47) [2e6fe3fe-1abd-47ce-99fb-b85e228baf07]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 169.07, + "y": -4.067, + "z": -131.48999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f08e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f08e", + "_tpl": "657025d4c5d7d4cb4d078585", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f08f", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbb8034fa93c4c4b05f08e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_el_military (30) [ac35a42d-08b9-4515-aaa6-8f912b8dc94a]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": -133.021, - "y": -5.309, - "z": -17.0369873 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f15f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f15f", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (48) [ac00017f-727d-4e43-bf26-187dfeb3fda1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 169.401978, + "y": -4.067, + "z": -131.677 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f092", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f092", + "_tpl": "64aceaecc4eda9354b0226b6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f093", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbb8034fa93c4c4b05f092", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_el_military_citizen (20) [84791d26-54d1-416e-81de-bacae9603dd5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.55884, - "y": -3.3285768, - "z": 29.1712952 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f161", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f161", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (48) [ac8de4d9-45e3-4d3c-8559-fe18e54b7406]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 9.312561, + "y": -3.684081, + "z": -14.6165771 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f096", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f096", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f097", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbb8034fa93c4c4b05f096", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_el_military_citizen (3) [008354b0-b974-4119-9217-6f39295c46ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -55.49402, - "y": -2.454, - "z": 20.8359985 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f163", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f163", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (53) [5bd3fdef-24e1-42cf-a59c-ac017079bcc5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 176.375, + "y": -0.424, + "z": -166.844 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f09b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f09b", + "_tpl": "65702652cfc010a0f5006a53", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f09c", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbb8034fa93c4c4b05f09b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f09d", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbb8034fa93c4c4b05f09b", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_el_military_citizen (30) [3136870a-aec6-4ca2-b894-fc6ba2516cda]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -5.33197, - "y": 20.411, - "z": 197.580017 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f165", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f165", - "_tpl": "5d0376a486f7747d8050965c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (56) [5957fb11-178c-496e-82e3-a7a64c4178df]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 272.610962, + "y": 2.407, + "z": 20.0480042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0a0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0a0", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0a1", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbb8034fa93c4c4b05f0a0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_el_military_citizen (42) [4f93ed88-0ce9-41fa-ac13-f95607324f28]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.03583, - "y": -17.6645775, - "z": 145.2533 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f167", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f167", - "_tpl": "5c052f6886f7746b1e3db148", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (6) [b03d2546-ecef-4f78-b1b7-8739106ebdb8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 71.34497, + "y": -4.08, + "z": -113.286987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0a5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0a5", + "_tpl": "65702432bfc87b3a3409321c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0a6", + "_tpl": "5d6e67fba4b9361bc73bc779", + "parentId": "66cbb8034fa93c4c4b05f0a5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0a7", + "_tpl": "5d6e67fba4b9361bc73bc779", + "parentId": "66cbb8034fa93c4c4b05f0a5", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_el_military_citizen (63) [be910b3e-c348-4085-b26d-909a7c1a5cd8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -61.00586, - "y": -18.1355762, - "z": 140.660278 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f169", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f169", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (60) [e12f09fb-37cc-4a80-84a9-c0134f24c52a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 150.76001, + "y": -1.256, + "z": 58.2030029 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0aa", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0aa", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0ab", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbb8034fa93c4c4b05f0aa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_el_scheme (8) [da8bf33d-bb5b-470b-9f5a-3380e2acc975]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": -67.5050049, - "y": -5.822, - "z": 7.421997 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f16b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f16b", - "_tpl": "590a3d9c86f774385926e510", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (63) [af126774-76c1-4d28-8b5c-22e8eb4fc8b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.463989, + "y": -6.184, + "z": -124.530975 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0ae", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0ae", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0af", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbb8034fa93c4c4b05f0ae", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_electr (11) [921e59be-c64b-4c41-b2e9-2a7fc12599a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -37.763855, - "y": -5.33357668, - "z": 13.7522888 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f16d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f16d", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (64) [a930ac29-f090-495a-97f5-82477da26847]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.103027, + "y": -6.184, + "z": -122.708984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0b2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0b2", + "_tpl": "65702558cfc010a0f5006a25", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0b3", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbb8034fa93c4c4b05f0b2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_electr (18) [9845a17c-871d-4dec-a9ab-bd1811308f68]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -128.561951, - "y": -2.45782375, - "z": -14.0228882 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f16f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f16f", - "_tpl": "590a391c86f774385a33c404", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (66) [ba2fc6f7-0ccd-48ba-9bc3-883d209a01fb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.682983, + "y": -6.39, + "z": -123.634979 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0b6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0b6", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0b7", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbb8034fa93c4c4b05f0b6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_electr (22) [e3dec5d5-44f8-4e76-940c-a0f11a645537]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.104004, - "y": -2.74982381, - "z": -15.49588 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f171", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f171", - "_tpl": "56742c324bdc2d150f8b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (68) [7b30975d-5b54-450c-9156-e033993bcfa3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -138.379028, + "y": -3.594, + "z": -138.374 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0ba", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0ba", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0bb", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8034fa93c4c4b05f0ba", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_electr (8) [48c0a004-df9e-4586-bd7a-4b4c5bd70ee5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -37.7608643, - "y": -5.83357668, - "z": 18.5372925 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f173", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f173", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (69) [6ca7ce5f-c05c-4dcf-845f-2093151d896d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -138.216, + "y": -3.594, + "z": -137.918 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0be", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0be", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0bf", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8034fa93c4c4b05f0be", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_electr (8) [f51c4949-c89f-4fe2-94e9-d212ac0ce11d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -128.633, - "y": -2.13182378, - "z": -16.55487 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f175", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f175", - "_tpl": "5d1b309586f77425227d1676", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (72) [6a3aecbb-6db0-4ab7-b688-1ac7f0e31cbe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.37, + "y": -2.77, + "z": -123.211975 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0c2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0c2", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0c3", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8034fa93c4c4b05f0c2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_electron_rare (4) [e9d1c672-f3c2-406d-b7a5-e6de2828e60b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 12.6589966, - "y": -5.661003, - "z": -28.1329956 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f177", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f177", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (74) [f50f0565-0866-4928-b09f-2439c77c202a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 37.211, + "y": -6.058, + "z": -156.176 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0c7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0c7", + "_tpl": "6570266bc5d7d4cb4d078594", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0c8", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb8034fa93c4c4b05f0c7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0c9", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb8034fa93c4c4b05f0c7", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_food [4067dea1-6cf5-4b0a-8173-7c3712a0970d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 75.3481445, - "y": -11.0945768, - "z": -129.2667 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f179", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f179", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (78) [68b37b79-2e8a-4832-9c87-10efd2ef6ad1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -115.086975, + "y": 3.067, + "z": -151.741 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0cc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0cc", + "_tpl": "65702561cfc010a0f5006a28", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0cd", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbb8034fa93c4c4b05f0cc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_food [45f1f539-f6b8-4f86-920e-980a7e9175d1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 82.09918, - "y": -10.8465767, - "z": -129.9227 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f17b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f17b", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (79) [9aa8dae6-9912-45d9-a4d6-84d8ba95002e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -114.432983, + "y": 3.067, + "z": -152.513 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0d0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0d0", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0d1", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbb8034fa93c4c4b05f0d0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_food_drink (1) [93d84d7a-c1ac-4e49-be58-6a863b7d8ee9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -169.907959, - "y": 0.09917617, - "z": -1.88186646 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f17d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f17d", - "_tpl": "65815f0e647e3d7246384e14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (8) [ad207bee-04ee-42e1-8aa2-1d43042035e5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 71.172, + "y": -4.08, + "z": -113.448975 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0d4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0d4", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0d5", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66cbb8034fa93c4c4b05f0d4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_food_drink (10) [2dd82508-ffa4-4d13-bfed-b40daa337d9b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -124.911011, - "y": -4.44482374, - "z": -28.8279114 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f17f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f17f", - "_tpl": "57513f07245977207e26a311", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (84) [ecc1f63b-c4a0-4a52-811d-270cfdc3b805]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 41.664978, + "y": -4.309, + "z": -77.7479858 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0d8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0d8", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0d9", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8034fa93c4c4b05f0d8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_food_drink (100) [f07253d6-db03-42b0-b888-3fc8ecdec6fd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.344971, - "y": -14.289, - "z": 53.822998 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f181", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f181", - "_tpl": "57513fcc24597720a31c09a6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (85) [46c0e1ba-5642-4067-a139-4b63f6eafb88]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 42.7160034, + "y": -4.524, + "z": -77.181 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0dc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0dc", + "_tpl": "657024bdc5d7d4cb4d078564", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0dd", + "_tpl": "5e85a9f4add9fe03027d9bf1", + "parentId": "66cbb8034fa93c4c4b05f0dc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_food_drink (11) [e123b3de-0812-4ac4-972b-4038c0f80d7a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.919983, - "y": -4.44482374, - "z": -29.526886 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f183", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f183", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (86) [8d19095f-02ae-421a-a26d-4a882bdbbb4a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 42.70398, + "y": -4.524, + "z": -76.76898 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0e1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0e1", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0e2", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb8034fa93c4c4b05f0e1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0e3", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb8034fa93c4c4b05f0e1", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_food_drink (110) [08bc3c29-a929-44d6-9728-28fcb22f8700]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -117.882996, - "y": -8.501, - "z": -11.7460022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f185", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f185", - "_tpl": "57347da92459774491567cf5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (90) [968b2fa1-cc59-4abd-a1d8-d2a0a724d336]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.4910278, + "y": -4.448, + "z": -80.453 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0e6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0e6", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0e7", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbb8034fa93c4c4b05f0e6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_food_drink (12) [8a40da28-6470-44aa-839c-53c983157cc8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.436035, - "y": -4.779824, - "z": -29.6748962 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f187", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f187", - "_tpl": "5448ff904bdc2d6f028b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (91) [b1aa597e-b1c8-49f9-902c-6262a4dc2cef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.927002, + "y": -4.448, + "z": -80.65799 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0ea", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0ea", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0eb", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbb8034fa93c4c4b05f0ea", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_food_drink (22) [b35259dd-214c-47ee-9cfb-0618de5667b5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -147.268, - "y": -6.604, - "z": 105.825989 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f189", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f189", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (92) [370da89f-6ecf-4ee0-b981-9f6f842fa906]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -227.63501, + "y": -6.103, + "z": -11.9079895 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0ee", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0ee", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0ef", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb8034fa93c4c4b05f0ee", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_food_drink (26) [66db20e4-d213-4752-8b77-c64fc2b1d26d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -108.58197, - "y": -4.351824, - "z": -18.8968811 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f18b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f18b", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (93) [48377bb7-fb7c-4f84-8366-c344fb59483f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -228.06897, + "y": -6.199, + "z": -11.6029968 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0f2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0f2", + "_tpl": "65702629cfc010a0f5006a47", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0f3", + "_tpl": "57371f8d24597761006c6a81", + "parentId": "66cbb8034fa93c4c4b05f0f2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_food_drink (29) [ae5b49a4-5aa8-4c91-89c9-a23a2abdb0e5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -118.691956, - "y": -5.125824, - "z": -31.9378662 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f18d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f18d", - "_tpl": "57513f07245977207e26a311", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (96) [cafedcbf-14f3-49b4-8eea-7ec59c380847]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -6.45599365, + "y": -4.01, + "z": -107.806 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0f6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0f6", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0f7", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8034fa93c4c4b05f0f6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_food_drink (34) [bb2883ed-36f3-458e-b9d9-57496c8dcc31]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -14.4390259, - "y": -6.003, - "z": 18.072998 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f18f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f18f", - "_tpl": "5c0fa877d174af02a012e1cf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (97) [d6a754bc-1722-4e31-a7dc-1fc328c5b0b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -6.48699951, + "y": -4.01, + "z": -107.53 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0fa", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0fa", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0fb", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8034fa93c4c4b05f0fa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_food_drink (50) [72902b88-b125-47f4-bed6-fd08cbd8763c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 270.805054, - "y": 2.37, - "z": 22.3860168 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f191", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f191", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (98) [e7421ebc-710c-424f-9b76-2de2caac1b64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -108.586, + "y": -6.698, + "z": -69.35599 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f0fe", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f0fe", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f0ff", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbb8034fa93c4c4b05f0fe", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_food_drink (6) [48e3f4fd-65fd-4d9f-a9a6-f5bfafe8daeb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -121.601013, - "y": -4.356824, - "z": -25.27591 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f193", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f193", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_common (99) [a2912819-6dee-4340-8175-e8a000aef02e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -108.684021, + "y": -6.698, + "z": -69.638 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f103", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f103", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f104", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb8034fa93c4c4b05f103", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f105", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb8034fa93c4c4b05f103", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_food_drink (66) [d25c4d53-494e-41c2-be6c-10fd9ad1e186]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 57.6760254, - "y": -5.795, - "z": 62.3710327 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f195", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f195", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (1) [93f13994-118b-4821-afeb-bc5a0ef56c2b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.2810059, + "y": 0.3789978, + "z": -36.1169739 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f107", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f107", + "_tpl": "6086b5731246154cad35d6c7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_drink (7) [1760839a-36a0-46eb-9e46-2385ef9b3330]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -121.388, - "y": -4.356824, - "z": -26.2849121 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f197", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f197", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (10) [f0e0f1fb-fc6f-4f93-8ead-bc83148050a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.20599, + "y": 3.58100128, + "z": -18.7909851 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f109", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f109", + "_tpl": "6415c694da439c6a97048b56", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_drink (88) [db0a7761-0a39-4dc9-aa72-38d6a55eee6e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -248.450012, - "y": -4.983, - "z": -0.009979248 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f199", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f199", - "_tpl": "5448ff904bdc2d6f028b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (11) [206d6f3c-f670-404b-bf5a-01f43656f598]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.75403, + "y": 3.58100128, + "z": -18.83899 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f10b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f10b", + "_tpl": "617130016c780c1e710c9a24", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_food_drink (89) [3d6b8707-211b-4d56-bdf1-5de71df46213]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.15057373, - "y": -0.371080875, - "z": -21.4765625 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f19b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f19b", - "_tpl": "60098b1705871270cd5352a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (12) [da94dde4-fb66-4b1a-85a4-e66228e3e810]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.0310059, + "y": 3.58100128, + "z": -18.7059937 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f10d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f10d", + "_tpl": "599860ac86f77436b225ed1a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f10e", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb8034fa93c4c4b05f10d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f10f", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb8034fa93c4c4b05f10d", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "loot_food_drink (9) [48892801-bcb1-4d18-bdf4-14651e79ab8d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -124.263, - "y": -4.44482374, - "z": -28.99289 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f19d", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f19d", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (13) [94ea6b90-be0b-4e35-bd6e-a9e44ef9b001]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 81.88074, + "y": 0.08874512, + "z": -17.6547546 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f111", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f111", + "_tpl": "5bfd36ad0db834001c38ef66", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_fuel (70) [257c9eec-86bd-4d37-9b05-8a15eb63860f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 5.435974, - "y": -5.639, - "z": -7.60498047 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f19f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f19f", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (14) [f67b5122-b7ea-4d71-829e-64cc060cb817]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 82.13873, + "y": 0.09574509, + "z": -17.3117371 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f113", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f113", + "_tpl": "6513f0a194c72326990a3868", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f114", + "_tpl": "59e0d99486f7744a32234762", + "parentId": "66cbb8034fa93c4c4b05f113", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f115", + "_tpl": "59e0d99486f7744a32234762", + "parentId": "66cbb8034fa93c4c4b05f113", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 28 + } } - } - ] - }, - { - "Id": "loot_gals_quest (3) [e4776340-4289-4f4d-a72f-9501f1bc1071]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 99.78601, - "y": -6.725, - "z": 59.1600342 - }, - "Rotation": { - "x": 57.5091553, - "y": 135.458725, - "z": 3.17881381e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1a1", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1a1", - "_tpl": "60c080eb991ac167ad1c3ad4", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "loot_ammo_regular (15) [487bf350-afdb-46cd-82fb-ccf355f03af9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 82.42676, + "y": 0.0227451324, + "z": -16.6097412 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f117", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f117", + "_tpl": "619624b26db0f2477964e6b0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_household (14) [19cdb36b-9a85-4554-912c-2d906cff104e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.055, - "y": -9.074, - "z": -20.00998 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1a3", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1a3", - "_tpl": "5e2af02c86f7746d420957d4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (19) [d4990c99-6c5d-44fb-83a2-7f0268579a26]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 89.25873, + "y": -2.99825478, + "z": -20.0557556 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f119", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f119", + "_tpl": "617131a4568c120fdd29482d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f11a", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbb8034fa93c4c4b05f119", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6 + } } - } - ] - }, - { - "Id": "loot_households (10) [cb26fc09-c575-41fe-93c2-295acefd9e5a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.953979, - "y": -5.080824, - "z": -33.1348877 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1a5", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1a5", - "_tpl": "5d4041f086f7743cac3f22a7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (2) [696bbb07-63eb-49dc-b104-08567e98b55d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 91.9359741, + "y": -0.154998779, + "z": -34.9119873 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f11c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f11c", + "_tpl": "5bc5a372d4351e44f824d17f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_households (9) [d28a79c2-e0fe-49d9-9fd3-1df67648bd8a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.373962, - "y": 0.800176144, - "z": -10.6558838 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1a7", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1a7", - "_tpl": "57347c93245977448d35f6e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (4) [0636d8b8-0cd1-4c2e-a5ed-d645e74b2125]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.1247559, + "y": 0.08999634, + "z": -31.4907532 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f11e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f11e", + "_tpl": "5c0673fb0db8340023300271", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f11f", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb8034fa93c4c4b05f11e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_housestuff (1) [84d1dd4d-c7f8-4296-8eb3-5961e329b46d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -174.73999, - "y": -8.236404, - "z": 36.6949768 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1a9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1a9", - "_tpl": "59e358a886f7741776641ac3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (5) [ea147d1a-c70d-4755-a4ad-69cc8006b443]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.43475, + "y": 0.08999634, + "z": -31.9397583 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f121", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f121", + "_tpl": "5fbcc429900b1d5091531dd7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_item_weapon_parts (25) [4311fcfd-4395-4dfa-b872-f3b786bc4487]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 79.3699951, - "y": -5.829, - "z": -35.5 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1ab", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1ab", - "_tpl": "5d1c819a86f774771b0acd6c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_regular (6) [110d9b37-290b-46b2-9a5a-95f7b5f86397]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 82.078, + "y": -0.08999634, + "z": -27.8469849 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f123", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f123", + "_tpl": "618ba91477b82356f91ae0e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (10) [b83c5227-b7fd-4611-801d-3140e6ce8de5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 190.290161, - "y": -5.863, - "z": -226.579681 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1ac", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1ac", - "_tpl": "5fc3f2d5900b1d5091531e57", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" + { + "Id": "loot_ammo_regular (8) [475345ec-b9d4-473d-9eb3-14c08e8f35bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.42175, + "y": -0.179255009, + "z": -24.84674 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f125", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f125", + "_tpl": "5cdeac42d7f00c000d36ba73", + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "loot_ammo_regular [fae55fc9-0870-478b-9368-1d89fa82550a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.07898, + "y": 0.3789978, + "z": -35.7489929 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f1ad", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "66cbb8034fa93c4c4b05f1ac", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05f1b6", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb8034fa93c4c4b05f1ad", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f127", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f127", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb8034fa93c4c4b05f1ae", - "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "66cbb8034fa93c4c4b05f1ac", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb8034fa93c4c4b05f1af", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "66cbb8034fa93c4c4b05f1ac", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb8034fa93c4c4b05f1b0", - "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "66cbb8034fa93c4c4b05f1ac", - "slotId": "mod_stock" - }, - { - "_id": "66cbb8034fa93c4c4b05f1b1", - "_tpl": "5fbbc366ca32ed67276c1557", - "parentId": "66cbb8034fa93c4c4b05f1ac", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05f1b2", - "_tpl": "5fbbc34106bde7524f03cbe9", - "parentId": "66cbb8034fa93c4c4b05f1b1", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb8034fa93c4c4b05f1b3", - "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "66cbb8034fa93c4c4b05f1ac", - "slotId": "mod_mount" - }, - { - "_id": "66cbb8034fa93c4c4b05f1b4", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "66cbb8034fa93c4c4b05f1ac", - "slotId": "mod_mount_001" - }, - { - "_id": "66cbb8034fa93c4c4b05f1b5", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "66cbb8034fa93c4c4b05f1ac", - "slotId": "mod_mount_002" - } - ] - }, - { - "Id": "loot_jeverly (13) [3000f844-d839-4dff-9878-f5c2d0013d8a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 191.495178, - "y": -5.78457642, - "z": -227.4267 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1b8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1b8", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ammo_rus (5) [b062d483-e256-4f32-99a4-53c2193e62b9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.1975708, + "y": -6.360081, + "z": -16.8215637 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f12a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f12a", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f12b", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8034fa93c4c4b05f12a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_jeverly (14) [33cf98d0-1a9d-4afa-99fc-c9be58972eca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 192.6272, - "y": -5.99557638, - "z": -226.7847 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1b9", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1b9", - "_tpl": "606dae0ab0e443224b421bb7", - "upd": { - "FireMode": { - "FireMode": "single" + { + "Id": "loot_ammo_rus (8) [edbbe52f-578a-4c7c-8027-85526cc1f184]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 4.75958252, + "y": -5.852081, + "z": -14.68457 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f12e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f12e", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f12f", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8034fa93c4c4b05f12e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 } } + ] + }, + { + "Id": "loot_ammo_rus [9a46984b-1469-4731-9bd5-c6a0f9dbf25d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 8.085571, + "y": -5.915001, + "z": -14.7215576 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f1ba", - "_tpl": "6076c1b9f2cb2e02a42acedc", - "parentId": "66cbb8034fa93c4c4b05f1b9", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb8034fa93c4c4b05f1bb", - "_tpl": "607d5aa50494a626335e12ed", - "parentId": "66cbb8034fa93c4c4b05f1b9", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb8034fa93c4c4b05f1bc", - "_tpl": "6076c87f232e5a31c233d50e", - "parentId": "66cbb8034fa93c4c4b05f1b9", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb8034fa93c4c4b05f1be", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "66cbb8034fa93c4c4b05f1bc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f132", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f132", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f133", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8034fa93c4c4b05f132", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - }, - { - "_id": "66cbb8034fa93c4c4b05f1bd", - "_tpl": "607d5a891246154cad35d6aa", - "parentId": "66cbb8034fa93c4c4b05f1b9", - "slotId": "mod_stock" - } - ] - }, - { - "Id": "loot_jeverly (15) [7663be7c-0537-40c0-8049-cfa7b674e9b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 192.0332, - "y": -5.80557632, - "z": -227.631683 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1c0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1c0", - "_tpl": "66572b8d80b1cd4b6a67847f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_barter_electr_phaseantenna (8) [d6df9f51-5828-46fa-baee-9968131b1637]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 108.039978, + "y": -5.853, + "z": 59.70404 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f135", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f135", + "_tpl": "5d03775b86f774203e7e0c4b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (3) [aff46234-453f-4274-9c8e-41a5d3f2f321]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 233.802, - "y": -4.995, - "z": -58.4029846 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1c2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1c2", - "_tpl": "655c673673a43e23e857aebd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_barter_electr_phaseantenna (9) [0db7ba1d-8a00-4103-931b-cdb67b4a2322]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 100.396973, + "y": -5.509, + "z": 57.73999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f137", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f137", + "_tpl": "5d03775b86f774203e7e0c4b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (4) [6a1a9446-9278-425e-a187-f7959beb2299]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 225.194946, - "y": -4.847, - "z": -58.0469971 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1c4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1c4", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_bilding (1) [87d1f2ad-f455-44b0-989e-d02b6f14e783]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -45.9119873, + "y": 13.61, + "z": 178.958984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f139", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f139", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (4) [9bc0ccd5-05de-4c57-9021-52c91fde8c9f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -155.982849, - "y": -8.501576, - "z": 75.03827 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1c6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1c6", - "_tpl": "5d0376a486f7747d8050965c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_bilding (3) [62cb1df9-75c3-4955-8d6f-93399d2b383c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -43.3070068, + "y": 12.916, + "z": 184.855042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f13b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f13b", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (7) [264a8726-a371-4cf3-91b1-18bb4aca8088]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -153.603821, - "y": -8.794577, - "z": 75.84027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1c8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1c8", - "_tpl": "66572c82ad599021091c6118", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building_mater (10) [8324d767-6da7-461c-a357-6406bbf03c8d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 53.2020264, + "y": -3.811, + "z": -139.207977 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f13d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f13d", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (7) [4aef27b3-35e4-481e-883f-bb0ef5b2d1fc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -97.16785, - "y": -6.765577, - "z": 33.6112976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1ca", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1ca", - "_tpl": "5f745ee30acaeb0d490d8c5b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building_mater (14) [919149af-5e76-49ff-a316-c2e6cd7984b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 8.314026, + "y": -4.007, + "z": -119.212982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f13f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f13f", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_jeverly (8) [a625e01b-5f30-403f-9c40-d42c9e3c1811]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 190.352173, - "y": -5.863, - "z": -224.8927 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1cb", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1cb", - "_tpl": "633ec7c2a6918cb895019c6c", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" + { + "Id": "loot_building_mater (18) [f86d5668-6f7a-40ca-837e-fddc553153c3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.9571533, + "y": -11.184577, + "z": -103.498718 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f141", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f141", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "loot_building_mater (19) [b8303fa5-fb48-4412-8f2b-15155f8ba2b3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 180.291992, + "y": -6.328, + "z": -137.099976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f1cc", - "_tpl": "633ec6ee025b096d320a3b15", - "parentId": "66cbb8034fa93c4c4b05f1cb", - "slotId": "mod_magazine" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f143", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f143", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "loot_building_mater (20) [1461294c-414e-4a7a-8af9-661a12a695e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 182.504028, + "y": -6.328, + "z": -136.427979 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f1ce", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbb8034fa93c4c4b05f1cc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f145", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f145", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_building_mater (22) [c55a657c-e8d2-464a-87b3-c5754714f3cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.4279785, + "y": -4.711, + "z": -132.59 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f1cd", - "_tpl": "633ec8e4025b096d320a3b1e", - "parentId": "66cbb8034fa93c4c4b05f1cb", - "slotId": "mod_pistol_grip" - } - ] - }, - { - "Id": "loot_med (10) [f35dd62c-3051-499c-afe2-164b6b60aad9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -140.332947, - "y": -2.524824, - "z": -10.91687 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f147", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f147", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1d0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1d0", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_building_mater (31) [9afec3e2-1373-44b1-bc35-09698e4b5b73]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -154.521, + "y": -11.007, + "z": 26.9909973 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f149", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f149", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (104) [7eb6dc6a-ef6f-4157-81ea-4cb2301520b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.502991, - "y": -6.682, - "z": -68.07999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1d2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1d2", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_bunker_quest (1) [63b9b8ab-1fb2-463f-86ea-b46674800bee]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -114.36499, + "y": -13.7081, + "z": 27.3590088 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f14b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f14b", + "_tpl": "60915994c49cf53e4772cc38", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (13) [8755c0c2-5a68-4685-94c9-5d4038f63665]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -160.616943, - "y": -2.47282386, - "z": -3.526886 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1d4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1d4", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_bunker_quest (2) [4f1fb7bd-c7f7-4d0a-8d4c-6082bc9d56fe]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -114.18103, + "y": -13.6893, + "z": 39.7880249 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f14d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f14d", + "_tpl": "60a3b6359c427533db36cf84", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (2) [67bb2103-e193-4353-99ec-5a87ac3710f8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -80.18262, - "y": -6.75779057, - "z": -24.3711853 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1d6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1d6", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_bunker_quest (3) [e3d58f16-1ecb-498b-91e0-daf410d541b5]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -121.867004, + "y": -14.314, + "z": 38.6560059 + }, + "Rotation": { + "x": 57.3194122, + "y": 107.333969, + "z": 3.16238743e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f14f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f14f", + "_tpl": "60a3b65c27adf161da7b6e14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (2) [996a8113-61e6-45b6-8ee0-0e5965c66bd5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -169.64563, - "y": -2.47500014, - "z": 45.5869141 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1d8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1d8", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_ccp_quest (4) [1db76d0b-d6ef-418e-914f-8b62bb1251f8]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -88.065, + "y": -19.129, + "z": 151.055 + }, + "Rotation": { + "x": 0.0, + "y": 167.8859, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f151", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f151", + "_tpl": "609267a2bb3f46069c3e6c7d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (20) [1bfe095f-c781-45b7-8faf-cca9d7343db1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.96057, - "y": -5.88279057, - "z": -22.1072083 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1da", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1da", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_common (1) [bb8a32b6-544f-481d-844e-fdb3d5540da9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -12.1339722, + "y": -4.073, + "z": -100.806976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f153", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f153", + "_tpl": "591af28e86f77414a27a9e1d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (25) [33017bea-4739-4314-b7c4-feb15cb4b98b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -81.60156, - "y": -3.54979038, - "z": -30.7482 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1dc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1dc", - "_tpl": "5751a89d24597722aa0e8db0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_common_mod (1) [241864a5-12b3-4cb4-9353-5126c96eb634]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.6010132, + "y": 0.39, + "z": -159.028992 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f155", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f155", + "_tpl": "55d35ee94bdc2d61338b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (28) [b5259543-e3e8-4fd2-bf09-bb804fc13b02]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -80.16461, - "y": -3.50679064, - "z": -32.51819 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1de", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1de", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_common_mod (2) [fb104f1d-5a7d-4445-9587-35342852d291]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.1599731, + "y": 0.39, + "z": -158.986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f157", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f157", + "_tpl": "58272d7f2459774f6311ddfd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (32) [0e734339-0b8a-4cb1-9a22-624d3f383d13]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.95557, - "y": -3.54979038, - "z": -31.0861816 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1e0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1e0", - "_tpl": "590c678286f77426c9660122", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_drink (2) [87f56e6b-a8e0-416c-9e9a-7afc28bbdf07]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -71.2608643, + "y": -10.1125765, + "z": 25.2593079 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f159", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f159", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (34) [08bd28cb-082b-440f-9092-4c653efe3abd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.9395752, - "y": -3.53379059, - "z": -34.5292053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1e2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1e2", - "_tpl": "59e361e886f774176c10a2a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_drink (4) [6d0eab95-692a-4534-a1a2-8ee6d27562a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.396, + "y": -2.59182382, + "z": -2.1428833 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f15b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f15b", + "_tpl": "57513fcc24597720a31c09a6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (40) [91ae5640-cfe9-41b4-9438-0f271f93a64a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -60.15503, - "y": -2.75499725, - "z": -39.8299866 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1e4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1e4", - "_tpl": "590c661e86f7741e566b646a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_el_military (1) [e9c3b795-bb30-4288-a246-5b9ba6fbacce]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": -146.315, + "y": 0.939, + "z": -3.16897583 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f15d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f15d", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (47) [8df1fe4b-97b9-4ef2-9054-667f1efdccf8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -60.6776123, - "y": -3.55879068, - "z": -33.6171875 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1e6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1e6", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_el_military (30) [ac35a42d-08b9-4515-aaa6-8f912b8dc94a]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": -133.021, + "y": -5.309, + "z": -17.0369873 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f15f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f15f", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (54) [d451954a-6fb6-4046-8178-fa46cc815b76]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -82.17761, - "y": -8.71879, - "z": -23.3742065 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1e8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1e8", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_el_military_citizen (20) [84791d26-54d1-416e-81de-bacae9603dd5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.55884, + "y": -3.3285768, + "z": 29.1712952 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f161", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f161", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (59) [d724fbae-be88-48f4-8ed7-43bee7b06df2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -76.01758, - "y": -9.59679, - "z": -26.4891968 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1ea", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1ea", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_el_military_citizen (3) [008354b0-b974-4119-9217-6f39295c46ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -55.49402, + "y": -2.454, + "z": 20.8359985 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f163", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f163", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (64) [ecb11d3c-6807-40d4-927d-c7a08b3c2924]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -65.03259, - "y": -3.54079056, - "z": -25.8451843 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1ec", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1ec", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_el_military_citizen (30) [3136870a-aec6-4ca2-b894-fc6ba2516cda]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -5.33197, + "y": 20.411, + "z": 197.580017 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f165", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f165", + "_tpl": "5d0376a486f7747d8050965c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (71) [7089d3a7-c5da-4600-8980-1dae63bd6c60]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -59.055603, - "y": -3.08679056, - "z": -36.2062073 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1ee", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1ee", - "_tpl": "5b4335ba86f7744d2837a264", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_el_military_citizen (42) [4f93ed88-0ce9-41fa-ac13-f95607324f28]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.03583, + "y": -17.6645775, + "z": 145.2533 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f167", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f167", + "_tpl": "5c052f6886f7746b1e3db148", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (76) [a01ff1aa-cf00-43cd-b575-b1d87d54aea4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.80359, - "y": -2.78279042, - "z": -31.6011963 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1f0", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1f0", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_el_military_citizen (63) [be910b3e-c348-4085-b26d-909a7c1a5cd8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -61.00586, + "y": -18.1355762, + "z": 140.660278 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f169", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f169", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (78) [b0018a00-c0ab-4a7d-943a-5234304520ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.62958, - "y": -2.78279042, - "z": -31.45221 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1f2", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1f2", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_el_scheme (8) [da8bf33d-bb5b-470b-9f5a-3380e2acc975]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": -67.5050049, + "y": -5.822, + "z": 7.421997 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f16b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f16b", + "_tpl": "590a3d9c86f774385926e510", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (8) [8633866f-cf6b-4fca-8796-cba9b893ac74]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.375671, - "y": -2.90300035, - "z": 55.3688965 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1f4", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1f4", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electr (11) [921e59be-c64b-4c41-b2e9-2a7fc12599a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -37.763855, + "y": -5.33357668, + "z": 13.7522888 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f16d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f16d", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (8) [ee524abe-a4d0-478d-abcd-caf6bffc11a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -39.14685, - "y": -3.0405767, - "z": 6.270294 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1f6", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1f6", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electr (18) [9845a17c-871d-4dec-a9ab-bd1811308f68]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -128.561951, + "y": -2.45782375, + "z": -14.0228882 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f16f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f16f", + "_tpl": "590a391c86f774385a33c404", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (81) [05879529-e7c7-4a2d-ba23-decbfe30dcd6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.99457, - "y": -2.63779044, - "z": -33.4961853 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1f8", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1f8", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electr (22) [e3dec5d5-44f8-4e76-940c-a0f11a645537]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.104004, + "y": -2.74982381, + "z": -15.49588 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f171", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f171", + "_tpl": "56742c324bdc2d150f8b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med (83) [024265f2-21d0-45cd-a679-3931f468820e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.7225952, - "y": -2.63779044, - "z": -32.6422119 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1fa", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1fa", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electr (8) [48c0a004-df9e-4586-bd7a-4b4c5bd70ee5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -37.7608643, + "y": -5.83357668, + "z": 18.5372925 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f173", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f173", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med_common (12) [7f486e2b-992b-4940-839e-9259da667afb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 91.26074, - "y": -6.23625469, - "z": -29.0237427 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1fc", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1fc", - "_tpl": "5755356824597772cb798962", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electr (8) [f51c4949-c89f-4fe2-94e9-d212ac0ce11d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -128.633, + "y": -2.13182378, + "z": -16.55487 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f175", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f175", + "_tpl": "5d1b309586f77425227d1676", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med_common (13) [bb3acf83-0df1-49d7-a891-b9b6b74e4ee8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.2167358, - "y": -6.174255, - "z": -26.8167419 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f1fe", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f1fe", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electron_rare (4) [e9d1c672-f3c2-406d-b7a5-e6de2828e60b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 12.6589966, + "y": -5.661003, + "z": -28.1329956 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f177", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f177", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_med_super_rare (3) [5d43d66c-73b4-41ff-8a6e-2463846a8792]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -79.88959, - "y": -6.59100342, - "z": -33.7962036 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f200", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f200", - "_tpl": "5755356824597772cb798962", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food [4067dea1-6cf5-4b0a-8173-7c3712a0970d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 75.3481445, + "y": -11.0945768, + "z": -129.2667 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f179", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f179", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_medroom_quest (2) [3dc4204a-819f-41fa-b9d3-642a1106ee06]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -59.0209961, - "y": -3.637, - "z": -36.1919861 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f202", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f202", - "_tpl": "608c22a003292f4ba43f8a1a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "loot_medroom_quest (3) [5057b1ba-7141-4bcc-bc6b-1526136cee27]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -80.47601, - "y": -3.647, - "z": -30.7659912 - }, - "Rotation": { - "x": 67.99741, - "y": 36.12959, - "z": -4.557729e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f204", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f204", - "_tpl": "60a3b5b05f84d429b732e934", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food [45f1f539-f6b8-4f86-920e-980a7e9175d1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 82.09918, + "y": -10.8465767, + "z": -129.9227 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f17b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f17b", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_military_veh (10) [b5a8bff0-32ab-4eec-a5ac-69faa91fd630]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 81.56, - "y": -5.803, - "z": -29.0499878 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f206", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f206", - "_tpl": "5d0379a886f77420407aa271", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (1) [93d84d7a-c1ac-4e49-be58-6a863b7d8ee9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -169.907959, + "y": 0.09917617, + "z": -1.88186646 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f17d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f17d", + "_tpl": "65815f0e647e3d7246384e14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_military_veh (14) [5c4301e9-72c0-4540-901f-c93859bf4d34]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 75.9849854, - "y": -5.662, - "z": -40.2979736 - }, - "Rotation": { - "x": 0.0, - "y": 135.458725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f208", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f208", - "_tpl": "5d1c819a86f774771b0acd6c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (10) [2dd82508-ffa4-4d13-bfed-b40daa337d9b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -124.911011, + "y": -4.44482374, + "z": -28.8279114 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f17f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f17f", + "_tpl": "57513f07245977207e26a311", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (105) [a40e8e09-90ce-4ee0-940c-74b715d1e534]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.1140137, - "y": -5.907, - "z": 6.848999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f20b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f20b", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_food_drink (100) [f07253d6-db03-42b0-b888-3fc8ecdec6fd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.344971, + "y": -14.289, + "z": 53.822998 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f20c", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8034fa93c4c4b05f20b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f181", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f181", + "_tpl": "57513fcc24597720a31c09a6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (111) [4ac62492-d978-42a6-959b-7e28c561560d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 65.276, - "y": -4.016, - "z": -129.845978 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f20e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f20e", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (11) [e123b3de-0812-4ac4-972b-4038c0f80d7a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.919983, + "y": -4.44482374, + "z": -29.526886 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f183", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f183", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (113) [f063c869-e15a-4ffe-b257-3f7d1c15a9ca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.52399, - "y": -4.08, - "z": -130.695984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f211", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f211", - "_tpl": "64aceaecc4eda9354b0226b6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_food_drink (110) [08bc3c29-a929-44d6-9728-28fcb22f8700]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -117.882996, + "y": -8.501, + "z": -11.7460022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f212", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbb8034fa93c4c4b05f211", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f185", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f185", + "_tpl": "57347da92459774491567cf5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (126) [c9fdc2f3-b167-4074-ade9-8485eacf8858]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 141.133, - "y": -4.082, - "z": -138.070984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f215", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f215", - "_tpl": "657024bdc5d7d4cb4d078564", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_food_drink (12) [8a40da28-6470-44aa-839c-53c983157cc8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.436035, + "y": -4.779824, + "z": -29.6748962 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f216", - "_tpl": "5e85a9f4add9fe03027d9bf1", - "parentId": "66cbb8034fa93c4c4b05f215", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f187", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f187", + "_tpl": "5448ff904bdc2d6f028b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (142) [edc0b67e-a88c-4b47-9378-6bf1aaf30089]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 196.989014, - "y": -5.732, - "z": -11.7219849 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f21a", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f21a", - "_tpl": "65702474bfc87b3a34093226", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_food_drink (22) [b35259dd-214c-47ee-9cfb-0618de5667b5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -147.268, + "y": -6.604, + "z": 105.825989 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f21b", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbb8034fa93c4c4b05f21a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f189", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f189", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_food_drink (26) [66db20e4-d213-4752-8b77-c64fc2b1d26d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -108.58197, + "y": -4.351824, + "z": -18.8968811 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f21c", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66cbb8034fa93c4c4b05f21a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f18b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f18b", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (169) [3dd2540d-b478-4047-94cb-250b2e56055e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.63098, - "y": 0.067, - "z": -159.303986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f21f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f21f", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_food_drink (29) [ae5b49a4-5aa8-4c91-89c9-a23a2abdb0e5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -118.691956, + "y": -5.125824, + "z": -31.9378662 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f220", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8034fa93c4c4b05f21f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f18d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f18d", + "_tpl": "57513f07245977207e26a311", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (173) [22de6cd5-65c8-4ff8-a38d-11d78a5ea9ca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -17.2319946, - "y": -4.296, - "z": -171.801 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f223", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f223", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_food_drink (34) [bb2883ed-36f3-458e-b9d9-57496c8dcc31]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -14.4390259, + "y": -6.003, + "z": 18.072998 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f224", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8034fa93c4c4b05f223", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f18f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f18f", + "_tpl": "5c0fa877d174af02a012e1cf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (176) [394a0479-c66e-419d-8b38-d0da77753d98]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.50097656, - "y": 3.367, - "z": -204.78598 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f226", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f226", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (50) [72902b88-b125-47f4-bed6-fd08cbd8763c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 270.805054, + "y": 2.37, + "z": 22.3860168 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f191", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f191", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (187) [1c7c0a61-b42e-43b7-bd83-fe49c7b577a9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -153.953, - "y": -6.669, - "z": 54.64203 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f229", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f229", - "_tpl": "657025d4c5d7d4cb4d078585", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_food_drink (6) [48e3f4fd-65fd-4d9f-a9a6-f5bfafe8daeb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -121.601013, + "y": -4.356824, + "z": -25.27591 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f22a", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbb8034fa93c4c4b05f229", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f193", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f193", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (205) [86d9b310-cf95-45f8-b414-3bfe6f321fcb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.3660278, - "y": -6.083, - "z": 0.4909973 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f22e", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f22e", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_food_drink (66) [d25c4d53-494e-41c2-be6c-10fd9ad1e186]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 57.6760254, + "y": -5.795, + "z": 62.3710327 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f22f", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8034fa93c4c4b05f22e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f195", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f195", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_food_drink (7) [1760839a-36a0-46eb-9e46-2385ef9b3330]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -121.388, + "y": -4.356824, + "z": -26.2849121 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f230", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8034fa93c4c4b05f22e", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f197", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f197", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (206) [4b0bc222-3a13-427f-96e6-0629a1848d9b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.1140137, - "y": -6.083, - "z": 1.01901245 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f233", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f233", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_food_drink (88) [db0a7761-0a39-4dc9-aa72-38d6a55eee6e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -248.450012, + "y": -4.983, + "z": -0.009979248 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f234", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbb8034fa93c4c4b05f233", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f199", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f199", + "_tpl": "5448ff904bdc2d6f028b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (210) [182ecf0b-e504-48c1-8f18-9adeebb42dbb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 84.4607544, - "y": -0.126255035, - "z": -15.0527344 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f236", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f236", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (89) [3d6b8707-211b-4d56-bdf1-5de71df46213]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.15057373, + "y": -0.371080875, + "z": -21.4765625 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f19b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f19b", + "_tpl": "60098b1705871270cd5352a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (210) [e28d874f-3625-4726-bcc8-1dcc398c4ffc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 209.88501, - "y": -5.584, - "z": -174.820984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f238", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f238", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_food_drink (9) [48892801-bcb1-4d18-bdf4-14651e79ab8d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -124.263, + "y": -4.44482374, + "z": -28.99289 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f19d", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f19d", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (210) [f55f9fb7-3193-4130-97b5-870333ec8419]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 156.732, - "y": -6.04, - "z": -230.156982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f23b", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f23b", - "_tpl": "65702561cfc010a0f5006a28", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_fuel (70) [257c9eec-86bd-4d37-9b05-8a15eb63860f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 5.435974, + "y": -5.639, + "z": -7.60498047 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f23c", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbb8034fa93c4c4b05f23b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f19f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f19f", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (215) [a2130860-b78f-4e41-9f9a-c26ceed67086]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.69171, - "y": -5.892255, - "z": -24.8097534 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f23f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f23f", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_gals_quest (3) [e4776340-4289-4f4d-a72f-9501f1bc1071]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 99.78601, + "y": -6.725, + "z": 59.1600342 + }, + "Rotation": { + "x": 57.5091553, + "y": 135.458725, + "z": 3.17881381e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1a1", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1a1", + "_tpl": "60c080eb991ac167ad1c3ad4", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_household (14) [19cdb36b-9a85-4554-912c-2d906cff104e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.055, + "y": -9.074, + "z": -20.00998 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f240", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbb8034fa93c4c4b05f23f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1a3", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1a3", + "_tpl": "5e2af02c86f7746d420957d4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (215) [d110b594-467e-48c3-a6ff-8989c652d994]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 13.3615723, - "y": -5.464081, - "z": -3.166565 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f244", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f244", - "_tpl": "6570266bc5d7d4cb4d078594", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_households (10) [cb26fc09-c575-41fe-93c2-295acefd9e5a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.953979, + "y": -5.080824, + "z": -33.1348877 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f245", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb8034fa93c4c4b05f244", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1a5", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1a5", + "_tpl": "5d4041f086f7743cac3f22a7", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_households (9) [d28a79c2-e0fe-49d9-9fd3-1df67648bd8a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.373962, + "y": 0.800176144, + "z": -10.6558838 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f246", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb8034fa93c4c4b05f244", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1a7", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1a7", + "_tpl": "57347c93245977448d35f6e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (217) [3d60e6a4-b70d-4245-b79a-51745036358c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.36273, - "y": -5.616255, - "z": -38.9507446 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f249", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f249", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_housestuff (1) [84d1dd4d-c7f8-4296-8eb3-5961e329b46d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -174.73999, + "y": -8.236404, + "z": 36.6949768 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f24a", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbb8034fa93c4c4b05f249", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1a9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1a9", + "_tpl": "59e358a886f7741776641ac3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (220) [2aa69512-015d-4099-9130-525afbf2439c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 12.4395752, - "y": -6.646081, - "z": 2.2104187 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f24c", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f24c", - "_tpl": "575146b724597720a27126d5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_item_weapon_parts (25) [4311fcfd-4395-4dfa-b872-f3b786bc4487]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 79.3699951, + "y": -5.829, + "z": -35.5 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1ab", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1ab", + "_tpl": "5d1c819a86f774771b0acd6c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (222) [160efe3e-4e01-4d1d-9f4c-cc5c3e49cd78]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 24.4555664, - "y": -7.841081, - "z": -1.24957275 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f24f", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f24f", - "_tpl": "65702591c5d7d4cb4d07857c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_jeverly (10) [b83c5227-b7fd-4611-801d-3140e6ce8de5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 190.290161, + "y": -5.863, + "z": -226.579681 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1ac", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1ac", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05f1ad", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "66cbb8034fa93c4c4b05f1ac", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05f1b6", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb8034fa93c4c4b05f1ad", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f1ae", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "66cbb8034fa93c4c4b05f1ac", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb8034fa93c4c4b05f1af", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "66cbb8034fa93c4c4b05f1ac", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb8034fa93c4c4b05f1b0", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "66cbb8034fa93c4c4b05f1ac", + "slotId": "mod_stock" + }, + { + "_id": "66cbb8034fa93c4c4b05f1b1", + "_tpl": "5fbbc366ca32ed67276c1557", + "parentId": "66cbb8034fa93c4c4b05f1ac", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05f1b2", + "_tpl": "5fbbc34106bde7524f03cbe9", + "parentId": "66cbb8034fa93c4c4b05f1b1", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb8034fa93c4c4b05f1b3", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "66cbb8034fa93c4c4b05f1ac", + "slotId": "mod_mount" + }, + { + "_id": "66cbb8034fa93c4c4b05f1b4", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "66cbb8034fa93c4c4b05f1ac", + "slotId": "mod_mount_001" + }, + { + "_id": "66cbb8034fa93c4c4b05f1b5", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "66cbb8034fa93c4c4b05f1ac", + "slotId": "mod_mount_002" } + ] + }, + { + "Id": "loot_jeverly (13) [3000f844-d839-4dff-9878-f5c2d0013d8a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 191.495178, + "y": -5.78457642, + "z": -227.4267 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f250", - "_tpl": "5c925fa22e221601da359b7b", - "parentId": "66cbb8034fa93c4c4b05f24f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1b8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1b8", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (222) [53634e0a-369b-419b-8f6a-d3577f0d168e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 146.361023, - "y": -5.883, - "z": -237.934982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f253", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f253", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (14) [33cf98d0-1a9d-4afa-99fc-c9be58972eca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 192.6272, + "y": -5.99557638, + "z": -226.7847 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f254", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8034fa93c4c4b05f253", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1b9", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1b9", + "_tpl": "606dae0ab0e443224b421bb7", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05f1ba", + "_tpl": "6076c1b9f2cb2e02a42acedc", + "parentId": "66cbb8034fa93c4c4b05f1b9", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb8034fa93c4c4b05f1bb", + "_tpl": "607d5aa50494a626335e12ed", + "parentId": "66cbb8034fa93c4c4b05f1b9", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb8034fa93c4c4b05f1bc", + "_tpl": "6076c87f232e5a31c233d50e", + "parentId": "66cbb8034fa93c4c4b05f1b9", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05f1be", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "66cbb8034fa93c4c4b05f1bc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f1bd", + "_tpl": "607d5a891246154cad35d6aa", + "parentId": "66cbb8034fa93c4c4b05f1b9", + "slotId": "mod_stock" } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (222) [a3587f17-7127-4b66-9f1f-19bbeac8db89]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 167.437012, - "y": -5.281, - "z": -133.245 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8034fa93c4c4b05f257", - "Items": [ - { - "_id": "66cbb8034fa93c4c4b05f257", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (15) [7663be7c-0537-40c0-8049-cfa7b674e9b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 192.0332, + "y": -5.80557632, + "z": -227.631683 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8034fa93c4c4b05f258", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbb8034fa93c4c4b05f257", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1c0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1c0", + "_tpl": "66572b8d80b1cd4b6a67847f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (222) [e630279f-b295-4e8c-9937-b82cf1894f05]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.8487549, - "y": -3.03725481, - "z": -35.3777466 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f25b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f25b", - "_tpl": "657024c81419851aef03e712", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (3) [aff46234-453f-4274-9c8e-41a5d3f2f321]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 233.802, + "y": -4.995, + "z": -58.4029846 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f25c", - "_tpl": "5ba26812d4351e003201fef1", - "parentId": "66cbb8044fa93c4c4b05f25b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1c2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1c2", + "_tpl": "655c673673a43e23e857aebd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (227) [325fd81b-d1bb-4895-87b7-e038c1074e2c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 18.647583, - "y": -6.391081, - "z": -30.37558 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f25f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f25f", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (4) [6a1a9446-9278-425e-a187-f7959beb2299]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 225.194946, + "y": -4.847, + "z": -58.0469971 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f260", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbb8044fa93c4c4b05f25f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1c4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1c4", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (227) [d3cab5dd-61e1-447d-8f53-4f015b6a3d91]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 85.97174, - "y": -2.8202548, - "z": -41.7927551 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f263", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f263", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (4) [9bc0ccd5-05de-4c57-9021-52c91fde8c9f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -155.982849, + "y": -8.501576, + "z": 75.03827 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f264", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f263", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1c6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1c6", + "_tpl": "5d0376a486f7747d8050965c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (230) [39313ff8-525d-4dbc-9c52-cd2a59c3c20f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 76.40076, - "y": 0.195744991, - "z": -21.3757324 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f267", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f267", - "_tpl": "657026251419851aef03e72a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (7) [264a8726-a371-4cf3-91b1-18bb4aca8088]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -153.603821, + "y": -8.794577, + "z": 75.84027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f268", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbb8044fa93c4c4b05f267", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1c8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1c8", + "_tpl": "66572c82ad599021091c6118", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (233) [3e5c4d90-9828-4f18-a707-21ed39b075e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 84.9997559, - "y": -0.0462546349, - "z": -21.3587341 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f26b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f26b", - "_tpl": "657024f9bfc87b3a3409323b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (7) [4aef27b3-35e4-481e-883f-bb0ef5b2d1fc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -97.16785, + "y": -6.765577, + "z": 33.6112976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f26c", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb8044fa93c4c4b05f26b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1ca", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1ca", + "_tpl": "5f745ee30acaeb0d490d8c5b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (241) [81afdad9-9926-4570-9607-9c5ad5b58069]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 189.5, - "y": -5.991, - "z": -206.043 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f26f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f26f", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_jeverly (8) [a625e01b-5f30-403f-9c40-d42c9e3c1811]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 190.352173, + "y": -5.863, + "z": -224.8927 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f270", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f26f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1cb", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1cb", + "_tpl": "633ec7c2a6918cb895019c6c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb8034fa93c4c4b05f1cc", + "_tpl": "633ec6ee025b096d320a3b15", + "parentId": "66cbb8034fa93c4c4b05f1cb", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb8034fa93c4c4b05f1ce", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbb8034fa93c4c4b05f1cc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2.0 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f1cd", + "_tpl": "633ec8e4025b096d320a3b1e", + "parentId": "66cbb8034fa93c4c4b05f1cb", + "slotId": "mod_pistol_grip" } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (248) [55304939-9485-43a8-8e34-4b6fc8b6a4ed]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.1560059, - "y": -6.09, - "z": 2.51699829 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f272", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f272", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (10) [f35dd62c-3051-499c-afe2-164b6b60aad9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -140.332947, + "y": -2.524824, + "z": -10.91687 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1d0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1d0", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (255) [4dbbca99-14fc-4529-a691-74fd9919649c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 91.763, - "y": -6.206, - "z": -36.1519775 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f275", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f275", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (104) [7eb6dc6a-ef6f-4157-81ea-4cb2301520b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.502991, + "y": -6.682, + "z": -68.07999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f276", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f275", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1d2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1d2", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (26) [815dd1a1-430a-4363-935a-de039dd75fa6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -155.250977, - "y": 0.56459856, - "z": 61.618042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f279", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f279", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (13) [8755c0c2-5a68-4685-94c9-5d4038f63665]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -160.616943, + "y": -2.47282386, + "z": -3.526886 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f27a", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb8044fa93c4c4b05f279", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1d4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1d4", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (261) [d48e971c-a257-476f-a685-a7b5621ea909]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -115.088013, - "y": 3.371, - "z": 96.89099 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f27d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f27d", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (2) [67bb2103-e193-4353-99ec-5a87ac3710f8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -80.18262, + "y": -6.75779057, + "z": -24.3711853 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f27e", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbb8044fa93c4c4b05f27d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1d6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1d6", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (264) [a1347870-1df5-4243-ae3e-5c69e212dec1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -163.355957, - "y": -5.571824, - "z": -2.55786133 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f281", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f281", - "_tpl": "6570259fcfc010a0f5006a32", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (2) [996a8113-61e6-45b6-8ee0-0e5965c66bd5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -169.64563, + "y": -2.47500014, + "z": 45.5869141 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f282", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66cbb8044fa93c4c4b05f281", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1d8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1d8", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (267) [f6e69033-2fa2-4a3f-a64f-2b51a867b6ec]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -158.238953, - "y": -5.340824, - "z": -10.3768616 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f285", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f285", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (20) [1bfe095f-c781-45b7-8faf-cca9d7343db1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.96057, + "y": -5.88279057, + "z": -22.1072083 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f286", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbb8044fa93c4c4b05f285", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1da", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1da", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (275) [7f38642f-3d9f-4221-822b-ad4441540ebf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -136.094971, - "y": -2.3058238, - "z": -7.646881 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f289", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f289", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (25) [33017bea-4739-4314-b7c4-feb15cb4b98b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -81.60156, + "y": -3.54979038, + "z": -30.7482 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f28a", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb8044fa93c4c4b05f289", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1dc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1dc", + "_tpl": "5751a89d24597722aa0e8db0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (279) [0b36d07d-ac2f-49c7-b07d-e0359df48c89]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -139.32196, - "y": -2.35482383, - "z": -19.6428833 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f28d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f28d", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (28) [b5259543-e3e8-4fd2-bf09-bb804fc13b02]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -80.16461, + "y": -3.50679064, + "z": -32.51819 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f28e", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbb8044fa93c4c4b05f28d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1de", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1de", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (279) [7cbb16ad-8888-49a6-9255-f02c6e1ccb1c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -140.359009, - "y": -6.13, - "z": -135.34198 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f290", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f290", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (32) [0e734339-0b8a-4cb1-9a22-624d3f383d13]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.95557, + "y": -3.54979038, + "z": -31.0861816 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1e0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1e0", + "_tpl": "590c678286f77426c9660122", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (281) [272dd576-fc8e-4398-834d-c59f16807a3d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -145.349976, - "y": -6.284, - "z": -133.259979 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f292", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f292", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (34) [08bd28cb-082b-440f-9092-4c653efe3abd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.9395752, + "y": -3.53379059, + "z": -34.5292053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1e2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1e2", + "_tpl": "59e361e886f774176c10a2a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (281) [889063e7-192a-47ec-8b56-c6f481d1315f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -147.16095, - "y": -2.31682372, - "z": -15.5098877 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f295", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f295", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (40) [91ae5640-cfe9-41b4-9438-0f271f93a64a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -60.15503, + "y": -2.75499725, + "z": -39.8299866 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1e4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1e4", + "_tpl": "590c661e86f7741e566b646a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med (47) [8df1fe4b-97b9-4ef2-9054-667f1efdccf8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -60.6776123, + "y": -3.55879068, + "z": -33.6171875 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f296", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb8044fa93c4c4b05f295", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1e6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1e6", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (282) [770111f9-00dc-4c83-aa0e-2045df518ee8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -142.586, - "y": -5.714, - "z": -127.513 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f299", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f299", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (54) [d451954a-6fb6-4046-8178-fa46cc815b76]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -82.17761, + "y": -8.71879, + "z": -23.3742065 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f29a", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f299", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1e8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1e8", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (290) [7a084d79-e2af-4129-bdee-e2dbe872b437]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -153.140991, - "y": -2.35282373, - "z": -2.47286987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f29d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f29d", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (59) [d724fbae-be88-48f4-8ed7-43bee7b06df2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -76.01758, + "y": -9.59679, + "z": -26.4891968 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f29e", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8044fa93c4c4b05f29d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1ea", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1ea", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (300) [713c1254-8f6c-4353-bf11-b5aa4befedf7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -56.32202, - "y": -8.892, - "z": -30.5579834 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2a1", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2a1", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (64) [ecb11d3c-6807-40d4-927d-c7a08b3c2924]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -65.03259, + "y": -3.54079056, + "z": -25.8451843 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2a2", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbb8044fa93c4c4b05f2a1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1ec", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1ec", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (302) [23f058b7-dd9a-4041-b709-79eef3903fb8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -66.698, - "y": -8.73, - "z": -31.6719971 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2a4", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2a4", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (71) [7089d3a7-c5da-4600-8980-1dae63bd6c60]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -59.055603, + "y": -3.08679056, + "z": -36.2062073 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1ee", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1ee", + "_tpl": "5b4335ba86f7744d2837a264", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (311) [8eb8f7cb-7b6a-47a4-bbcd-fc29aaf0cbfc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -83.013, - "y": -9.432, - "z": -31.9400024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2a8", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2a8", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (76) [a01ff1aa-cf00-43cd-b575-b1d87d54aea4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.80359, + "y": -2.78279042, + "z": -31.6011963 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2a9", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbb8044fa93c4c4b05f2a8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1f0", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1f0", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med (78) [b0018a00-c0ab-4a7d-943a-5234304520ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.62958, + "y": -2.78279042, + "z": -31.45221 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2aa", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbb8044fa93c4c4b05f2a8", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1f2", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1f2", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (314) [2be449a6-0d96-4daa-9a02-60d4d25578af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -84.36603, - "y": -8.731, - "z": -30.8469849 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2ac", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2ac", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (8) [8633866f-cf6b-4fca-8796-cba9b893ac74]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.375671, + "y": -2.90300035, + "z": 55.3688965 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1f4", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1f4", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (323) [4950b471-cf3e-4149-be70-2bcd1a7c350d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -128.19, - "y": -8.724, - "z": -18.1559753 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2af", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2af", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_med (8) [ee524abe-a4d0-478d-abcd-caf6bffc11a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -39.14685, + "y": -3.0405767, + "z": 6.270294 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2b0", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbb8044fa93c4c4b05f2af", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1f6", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1f6", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (327) [5ae9c1ba-c73f-4a0a-9cb9-a4ffb7afdc0d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -138.083984, - "y": -8.48, - "z": -15.9689941 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2b3", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2b3", - "_tpl": "657024f9bfc87b3a3409323b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med (81) [05879529-e7c7-4a2d-ba23-decbfe30dcd6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.99457, + "y": -2.63779044, + "z": -33.4961853 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1f8", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1f8", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_med (83) [024265f2-21d0-45cd-a679-3931f468820e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.7225952, + "y": -2.63779044, + "z": -32.6422119 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2b4", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb8044fa93c4c4b05f2b3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1fa", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1fa", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (341) [8acd2d42-1afe-44ff-8c0e-68b561403c20]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -156.927, - "y": -9.77, - "z": 33.1000061 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2b6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2b6", - "_tpl": "5d403f9186f7743cac3f229b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med_common (12) [7f486e2b-992b-4940-839e-9259da667afb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 91.26074, + "y": -6.23625469, + "z": -29.0237427 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1fc", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1fc", + "_tpl": "5755356824597772cb798962", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (344) [8c5ebb3b-8753-4405-b343-003bfd25cd76]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -86.888, - "y": -13.202, - "z": 12.3080139 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2b8", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2b8", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med_common (13) [bb3acf83-0df1-49d7-a891-b9b6b74e4ee8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.2167358, + "y": -6.174255, + "z": -26.8167419 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f1fe", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f1fe", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (345) [b2a9bb81-6142-437c-bd6f-8d0a56d11d05]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -87.1069946, - "y": -13.532, - "z": 10.6740112 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2bb", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2bb", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_med_super_rare (3) [5d43d66c-73b4-41ff-8a6e-2463846a8792]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -79.88959, + "y": -6.59100342, + "z": -33.7962036 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f200", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f200", + "_tpl": "5755356824597772cb798962", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_medroom_quest (2) [3dc4204a-819f-41fa-b9d3-642a1106ee06]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -59.0209961, + "y": -3.637, + "z": -36.1919861 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2bc", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbb8044fa93c4c4b05f2bb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f202", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f202", + "_tpl": "608c22a003292f4ba43f8a1a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (41) [5b912b7d-3809-4d1d-b0b3-3e49b0ea40ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -115.115295, - "y": -6.192, - "z": 102.5896 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2bf", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2bf", - "_tpl": "657025bbcfc010a0f5006a35", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_medroom_quest (3) [5057b1ba-7141-4bcc-bc6b-1526136cee27]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -80.47601, + "y": -3.647, + "z": -30.7659912 + }, + "Rotation": { + "x": 67.99741, + "y": 36.12959, + "z": -4.557729e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f204", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f204", + "_tpl": "60a3b5b05f84d429b732e934", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_military_veh (10) [b5a8bff0-32ab-4eec-a5ac-69faa91fd630]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 81.56, + "y": -5.803, + "z": -29.0499878 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2c0", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbb8044fa93c4c4b05f2bf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f206", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f206", + "_tpl": "5d0379a886f77420407aa271", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (45) [441b0770-8157-45af-add3-a89c1237b14d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -98.30499, - "y": -8.091295, - "z": 92.63599 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2c2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2c2", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_military_veh (14) [5c4301e9-72c0-4540-901f-c93859bf4d34]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 75.9849854, + "y": -5.662, + "z": -40.2979736 + }, + "Rotation": { + "x": 0.0, + "y": 135.458725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f208", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f208", + "_tpl": "5d1c819a86f774771b0acd6c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (47) [3f10c115-8486-479a-871b-eb7e412c4bcc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -103.72467, - "y": -8.051001, - "z": 92.546936 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2c5", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2c5", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (105) [a40e8e09-90ce-4ee0-940c-74b715d1e534]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.1140137, + "y": -5.907, + "z": 6.848999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f20b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f20b", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f20c", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8034fa93c4c4b05f20b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (111) [4ac62492-d978-42a6-959b-7e28c561560d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 65.276, + "y": -4.016, + "z": -129.845978 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2c6", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8044fa93c4c4b05f2c5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f20e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f20e", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (48) [6eaf8fa9-4637-4c45-93e6-1fbceb4fc909]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -104.722656, - "y": -8.149, - "z": 91.8729248 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2c8", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2c8", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (113) [f063c869-e15a-4ffe-b257-3f7d1c15a9ca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.52399, + "y": -4.08, + "z": -130.695984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f211", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f211", + "_tpl": "64aceaecc4eda9354b0226b6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f212", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbb8034fa93c4c4b05f211", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (48) [83ac2966-3c05-45c6-973a-9d43a2e6d427]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -103.478271, - "y": -9.282, - "z": 73.8266 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2cb", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2cb", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (126) [c9fdc2f3-b167-4074-ade9-8485eacf8858]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 141.133, + "y": -4.082, + "z": -138.070984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f215", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f215", + "_tpl": "657024bdc5d7d4cb4d078564", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f216", + "_tpl": "5e85a9f4add9fe03027d9bf1", + "parentId": "66cbb8034fa93c4c4b05f215", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (142) [edc0b67e-a88c-4b47-9378-6bf1aaf30089]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 196.989014, + "y": -5.732, + "z": -11.7219849 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2cc", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbb8044fa93c4c4b05f2cb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f21a", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f21a", + "_tpl": "65702474bfc87b3a34093226", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f21b", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbb8034fa93c4c4b05f21a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f21c", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66cbb8034fa93c4c4b05f21a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (49) [7ddbf0f2-a891-4fc0-a5f0-16a60454303c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -38.8209839, - "y": 18.733, - "z": 183.014038 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2cf", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2cf", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (169) [3dd2540d-b478-4047-94cb-250b2e56055e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.63098, + "y": 0.067, + "z": -159.303986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f21f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f21f", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f220", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8034fa93c4c4b05f21f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (173) [22de6cd5-65c8-4ff8-a38d-11d78a5ea9ca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -17.2319946, + "y": -4.296, + "z": -171.801 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2d0", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f2cf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f223", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f223", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f224", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8034fa93c4c4b05f223", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (51) [27e899bc-ddd5-44c5-9f21-b602838fb19c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -38.7910156, - "y": 18.733, - "z": 183.39502 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2d4", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2d4", - "_tpl": "65702495c5d7d4cb4d078561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (176) [394a0479-c66e-419d-8b38-d0da77753d98]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.50097656, + "y": 3.367, + "z": -204.78598 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2d5", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66cbb8044fa93c4c4b05f2d4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f226", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f226", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (187) [1c7c0a61-b42e-43b7-bd83-fe49c7b577a9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -153.953, + "y": -6.669, + "z": 54.64203 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2d6", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66cbb8044fa93c4c4b05f2d4", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f229", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f229", + "_tpl": "657025d4c5d7d4cb4d078585", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f22a", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbb8034fa93c4c4b05f229", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (51) [db963a9a-2d13-4c63-9eff-299c30188341]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.591248, - "y": -9.358, - "z": 76.98761 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2d8", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2d8", - "_tpl": "5751a25924597722c463c472", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (205) [86d9b310-cf95-45f8-b414-3bfe6f321fcb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.3660278, + "y": -6.083, + "z": 0.4909973 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f22e", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f22e", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f22f", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8034fa93c4c4b05f22e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f230", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8034fa93c4c4b05f22e", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (52) [e16d7591-1fe7-4f57-a314-ebef1aabe06b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -48.39386, - "y": -6.2425766, - "z": -5.755707 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2da", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2da", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (206) [4b0bc222-3a13-427f-96e6-0629a1848d9b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.1140137, + "y": -6.083, + "z": 1.01901245 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f233", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f233", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f234", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbb8034fa93c4c4b05f233", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (54) [dacea446-2447-4823-9d46-08a20d398366]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -47.39984, - "y": 0.4364233, - "z": 23.7182922 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2dd", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2dd", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (210) [182ecf0b-e504-48c1-8f18-9adeebb42dbb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 84.4607544, + "y": -0.126255035, + "z": -15.0527344 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2de", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f2dd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f236", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f236", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (56) [7221c4d2-9bc8-4528-b54f-124aa04d8722]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -156.137634, - "y": -5.76600027, - "z": 74.0459 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2e1", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2e1", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (210) [e28d874f-3625-4726-bcc8-1dcc398c4ffc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 209.88501, + "y": -5.584, + "z": -174.820984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2e2", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbb8044fa93c4c4b05f2e1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f238", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f238", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (63) [4db059a9-0aa2-4d68-ae38-7d4442870c6a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 77.63397, - "y": -5.904, - "z": 64.79901 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2e6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2e6", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (210) [f55f9fb7-3193-4130-97b5-870333ec8419]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 156.732, + "y": -6.04, + "z": -230.156982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2e7", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb8044fa93c4c4b05f2e6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f23b", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f23b", + "_tpl": "65702561cfc010a0f5006a28", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f23c", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbb8034fa93c4c4b05f23b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (215) [a2130860-b78f-4e41-9f9a-c26ceed67086]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.69171, + "y": -5.892255, + "z": -24.8097534 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2e8", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb8044fa93c4c4b05f2e6", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f23f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f23f", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f240", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbb8034fa93c4c4b05f23f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (63) [64d53344-89cb-47cf-b86f-eb2a2a5bc604]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -153.593628, - "y": -2.80300021, - "z": 73.60895 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2eb", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2eb", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (215) [d110b594-467e-48c3-a6ff-8989c652d994]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 13.3615723, + "y": -5.464081, + "z": -3.166565 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2ec", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbb8044fa93c4c4b05f2eb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f244", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f244", + "_tpl": "6570266bc5d7d4cb4d078594", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f245", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb8034fa93c4c4b05f244", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f246", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb8034fa93c4c4b05f244", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (65) [9d864f6c-3d14-4443-87cc-31355fabd964]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 75.89801, - "y": -5.7, - "z": 54.04303 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2ee", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2ee", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (217) [3d60e6a4-b70d-4245-b79a-51745036358c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.36273, + "y": -5.616255, + "z": -38.9507446 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f249", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f249", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f24a", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbb8034fa93c4c4b05f249", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (67) [7ff8ec39-73b9-487e-af22-0be2ec8b5e3d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -102.046265, - "y": -2.487, - "z": 89.59161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2f1", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2f1", - "_tpl": "648986bbc827d4637f01791e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (220) [2aa69512-015d-4099-9130-525afbf2439c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 12.4395752, + "y": -6.646081, + "z": 2.2104187 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2f2", - "_tpl": "5cc80f38e4a949001152b560", - "parentId": "66cbb8044fa93c4c4b05f2f1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f24c", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f24c", + "_tpl": "575146b724597720a27126d5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (68) [79989987-0844-4240-a485-ba1a9d94388f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -62.79785, - "y": 0.331423283, - "z": 4.79830933 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2f5", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2f5", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (222) [160efe3e-4e01-4d1d-9f4c-cc5c3e49cd78]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 24.4555664, + "y": -7.841081, + "z": -1.24957275 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2f6", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f2f5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f24f", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f24f", + "_tpl": "65702591c5d7d4cb4d07857c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f250", + "_tpl": "5c925fa22e221601da359b7b", + "parentId": "66cbb8034fa93c4c4b05f24f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (68) [919a5f71-f9ad-4d68-b25b-182b4a98ca4f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -99.5662842, - "y": -2.93599987, - "z": 84.50659 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2f9", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2f9", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (222) [53634e0a-369b-419b-8f6a-d3577f0d168e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 146.361023, + "y": -5.883, + "z": -237.934982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2fa", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb8044fa93c4c4b05f2f9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f253", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f253", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f254", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8034fa93c4c4b05f253", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (71) [939e5bc0-1f7b-4ec2-971a-688e586ab70e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 72.02399, - "y": -5.635, - "z": 31.2890015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f2fd", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f2fd", - "_tpl": "657024f9bfc87b3a3409323b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (222) [a3587f17-7127-4b66-9f1f-19bbeac8db89]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 167.437012, + "y": -5.281, + "z": -133.245 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f2fe", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb8044fa93c4c4b05f2fd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8034fa93c4c4b05f257", + "Items": [ + { + "_id": "66cbb8034fa93c4c4b05f257", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8034fa93c4c4b05f258", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbb8034fa93c4c4b05f257", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (73) [2059e58f-5d9f-4bf6-8eb9-5d166d38d0d3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -55.7768555, - "y": -6.05657673, - "z": 10.6813049 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f301", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f301", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (222) [e630279f-b295-4e8c-9937-b82cf1894f05]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.8487549, + "y": -3.03725481, + "z": -35.3777466 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f302", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8044fa93c4c4b05f301", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f25b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f25b", + "_tpl": "657024c81419851aef03e712", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f25c", + "_tpl": "5ba26812d4351e003201fef1", + "parentId": "66cbb8044fa93c4c4b05f25b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (73) [43596a2b-bb09-4da6-ae87-064b932189d2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -158.949646, - "y": 0.1159997, - "z": 48.4909058 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f305", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f305", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (227) [325fd81b-d1bb-4895-87b7-e038c1074e2c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 18.647583, + "y": -6.391081, + "z": -30.37558 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f306", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbb8044fa93c4c4b05f305", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f25f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f25f", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f260", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbb8044fa93c4c4b05f25f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (73) [e1ffdf1a-4e86-423b-ad48-c3914537617f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -127.000061, - "y": 0.353000164, - "z": 94.8522949 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f309", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f309", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (227) [d3cab5dd-61e1-447d-8f53-4f015b6a3d91]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 85.97174, + "y": -2.8202548, + "z": -41.7927551 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f30a", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbb8044fa93c4c4b05f309", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f263", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f263", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f264", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f263", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (74) [00b8a2b0-c349-4374-9d3f-fc461902a946]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -126.147278, - "y": 0.353000164, - "z": 95.90857 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f30c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f30c", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (230) [39313ff8-525d-4dbc-9c52-cd2a59c3c20f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 76.40076, + "y": 0.195744991, + "z": -21.3757324 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f267", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f267", + "_tpl": "657026251419851aef03e72a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f268", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbb8044fa93c4c4b05f267", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (74) [1da6081d-fae6-451d-9e17-c29e7f82e1ea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -55.08185, - "y": -6.05657673, - "z": 10.4883118 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f30f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f30f", - "_tpl": "5c1127bdd174af44217ab8b9", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (233) [3e5c4d90-9828-4f18-a707-21ed39b075e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 84.9997559, + "y": -0.0462546349, + "z": -21.3587341 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f310", - "_tpl": "5c0d56a986f774449d5de529", - "parentId": "66cbb8044fa93c4c4b05f30f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f26b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f26b", + "_tpl": "657024f9bfc87b3a3409323b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f26c", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb8044fa93c4c4b05f26b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (77) [73252ea7-d622-4126-b4d2-fc6bb0caf1b9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -70.8758545, - "y": -3.00157666, - "z": 20.9772949 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f313", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f313", - "_tpl": "657024e3c5d7d4cb4d07856a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (241) [81afdad9-9926-4570-9607-9c5ad5b58069]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 189.5, + "y": -5.991, + "z": -206.043 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f314", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbb8044fa93c4c4b05f313", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f26f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f26f", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f270", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f26f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (79) [b7edd3be-e14a-47a0-ab26-98831dc98f91]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -70.32782, - "y": -2.49757671, - "z": 18.1372986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f317", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f317", - "_tpl": "64acea0d03378853630da53b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (248) [55304939-9485-43a8-8e34-4b6fc8b6a4ed]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.1560059, + "y": -6.09, + "z": 2.51699829 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f318", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbb8044fa93c4c4b05f317", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f272", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f272", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (80) [5e0974e7-a21e-4bc4-99d3-083fec2e653c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -69.93787, - "y": -2.05757666, - "z": 18.19931 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f31b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f31b", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (255) [4dbbca99-14fc-4529-a691-74fd9919649c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 91.763, + "y": -6.206, + "z": -36.1519775 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f31c", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f31b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f275", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f275", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f276", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f275", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (82) [5791e489-a049-41e8-945d-ef3c7cb76255]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -163.799683, - "y": 3.007, - "z": 30.3499146 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f31e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f31e", - "_tpl": "590c5f0d86f77413997acfab", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (26) [815dd1a1-430a-4363-935a-de039dd75fa6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -155.250977, + "y": 0.56459856, + "z": 61.618042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f279", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f279", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f27a", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb8044fa93c4c4b05f279", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (84) [93487cce-e087-405d-a39f-edbd20d805b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -167.413635, - "y": 2.9119997, - "z": 32.1419067 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f320", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f320", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (261) [d48e971c-a257-476f-a685-a7b5621ea909]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -115.088013, + "y": 3.371, + "z": 96.89099 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f27d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f27d", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f27e", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbb8044fa93c4c4b05f27d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (85) [cc6eeef3-f32a-4e11-b185-0b82fa45d26b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -167.448669, - "y": 3.12899971, - "z": 32.50891 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f323", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f323", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (264) [a1347870-1df5-4243-ae3e-5c69e212dec1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -163.355957, + "y": -5.571824, + "z": -2.55786133 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f324", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbb8044fa93c4c4b05f323", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f281", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f281", + "_tpl": "6570259fcfc010a0f5006a32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f282", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66cbb8044fa93c4c4b05f281", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (87) [a61c8eb9-88cb-4d2f-bd57-51963cc41385]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 69.20398, - "y": -6.118, - "z": -37.57898 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f327", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f327", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (267) [f6e69033-2fa2-4a3f-a64f-2b51a867b6ec]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -158.238953, + "y": -5.340824, + "z": -10.3768616 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f328", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbb8044fa93c4c4b05f327", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f285", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f285", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f286", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbb8044fa93c4c4b05f285", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (90) [48c4a7fe-578b-4071-864e-5ea39011e7ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 63.8699951, - "y": -6.657, - "z": -41.2309875 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f32a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f32a", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (275) [7f38642f-3d9f-4221-822b-ad4441540ebf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -136.094971, + "y": -2.3058238, + "z": -7.646881 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f289", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f289", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f28a", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb8044fa93c4c4b05f289", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (91) [1eeaefb4-82dd-4d50-bfd6-409466d5a0b3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -5.369995, - "y": 27.082, - "z": 195.635986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f32e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f32e", - "_tpl": "6570243bbfc87b3a3409321f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (279) [0b36d07d-ac2f-49c7-b07d-e0359df48c89]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -139.32196, + "y": -2.35482383, + "z": -19.6428833 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f32f", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb8044fa93c4c4b05f32e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f28d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f28d", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f28e", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbb8044fa93c4c4b05f28d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (279) [7cbb16ad-8888-49a6-9255-f02c6e1ccb1c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -140.359009, + "y": -6.13, + "z": -135.34198 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f330", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb8044fa93c4c4b05f32e", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f290", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f290", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (93) [0aa5175f-faad-406a-b5b3-3cc752f70556]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -97.92029, - "y": 6.59100056, - "z": 92.00659 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f333", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f333", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (281) [272dd576-fc8e-4398-834d-c59f16807a3d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -145.349976, + "y": -6.284, + "z": -133.259979 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f334", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8044fa93c4c4b05f333", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f292", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f292", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (96) [ee0486f1-c10c-4ce8-9d8e-435bf075f4fc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -18.132019, - "y": -6.243, - "z": -1.86398315 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f337", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f337", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (281) [889063e7-192a-47ec-8b56-c6f481d1315f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -147.16095, + "y": -2.31682372, + "z": -15.5098877 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f338", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbb8044fa93c4c4b05f337", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f295", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f295", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f296", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb8044fa93c4c4b05f295", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (97) [d0e94d65-0e58-4c75-a0ae-b3df5bd979b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -157.526672, - "y": 2.93199968, - "z": 76.91492 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f33b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f33b", - "_tpl": "657025a81419851aef03e724", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (282) [770111f9-00dc-4c83-aa0e-2045df518ee8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -142.586, + "y": -5.714, + "z": -127.513 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f33c", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb8044fa93c4c4b05f33b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f299", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f299", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f29a", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f299", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (98) [68da80a7-929d-4d50-9617-4fb84e22e2f3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -19.3740234, - "y": -6.306, - "z": 16.487 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f33f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f33f", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (290) [7a084d79-e2af-4129-bdee-e2dbe872b437]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -153.140991, + "y": -2.35282373, + "z": -2.47286987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f340", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8044fa93c4c4b05f33f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f29d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f29d", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f29e", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8044fa93c4c4b05f29d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mix_food_med_ammo (99) [03fe5c80-1dfc-4f9f-98ad-f5b3984abe12]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -19.4000244, - "y": -6.306, - "z": 16.81601 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f343", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f343", - "_tpl": "657024f9bfc87b3a3409323b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (300) [713c1254-8f6c-4353-bf11-b5aa4befedf7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -56.32202, + "y": -8.892, + "z": -30.5579834 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2a1", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2a1", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2a2", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbb8044fa93c4c4b05f2a1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (302) [23f058b7-dd9a-4041-b709-79eef3903fb8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -66.698, + "y": -8.73, + "z": -31.6719971 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f344", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb8044fa93c4c4b05f343", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2a4", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2a4", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (10) [a251ebd5-fe65-4537-9565-750b4541fa78]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.702637, - "y": 6.468, - "z": 68.1449 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f346", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f346", - "_tpl": "59db7eed86f77461f8380365", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (311) [8eb8f7cb-7b6a-47a4-bbcd-fc29aaf0cbfc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -83.013, + "y": -9.432, + "z": -31.9400024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2a8", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2a8", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2a9", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbb8044fa93c4c4b05f2a8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2aa", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbb8044fa93c4c4b05f2a8", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "loot_mod_common (10) [fdb18038-3f7a-43a2-a799-4aa90faa22d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.539978, - "y": -3.954, - "z": -113.108978 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f348", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f348", - "_tpl": "6034e3cb0ddce744014cb870", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (314) [2be449a6-0d96-4daa-9a02-60d4d25578af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -84.36603, + "y": -8.731, + "z": -30.8469849 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2ac", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2ac", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (17) [b54591a5-702e-4786-aacb-aeccaf7a49c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -96.77899, - "y": -5.077, - "z": 34.2980042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f34a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f34a", - "_tpl": "5a787ebcc5856700142fdd98", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (323) [4950b471-cf3e-4149-be70-2bcd1a7c350d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -128.19, + "y": -8.724, + "z": -18.1559753 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2af", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2af", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2b0", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbb8044fa93c4c4b05f2af", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_common (18) [de048319-8061-4f36-9042-30d926a10e95]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -96.026, - "y": -5.077, - "z": 33.60501 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f34c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f34c", - "_tpl": "5beec8ea0db834001a6f9dbf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (327) [5ae9c1ba-c73f-4a0a-9cb9-a4ffb7afdc0d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -138.083984, + "y": -8.48, + "z": -15.9689941 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2b3", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2b3", + "_tpl": "657024f9bfc87b3a3409323b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2b4", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb8044fa93c4c4b05f2b3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_common (19) [bdc24a1b-76b4-4792-af2a-aa2de20117d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -95.56598, - "y": -5.077, - "z": 33.3789978 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f34e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f34e", - "_tpl": "5a7c74b3e899ef0014332c29", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (341) [8acd2d42-1afe-44ff-8c0e-68b561403c20]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -156.927, + "y": -9.77, + "z": 33.1000061 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2b6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2b6", + "_tpl": "5d403f9186f7743cac3f229b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (2) [f0d9a3f3-8d53-477a-91e6-aecd82445c5f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 1.68701172, - "y": -3.802, - "z": -94.849 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f350", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f350", - "_tpl": "66992f7d9950f5f4cd0602a8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (344) [8c5ebb3b-8753-4405-b343-003bfd25cd76]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -86.888, + "y": -13.202, + "z": 12.3080139 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2b8", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2b8", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (24) [76e5eb4f-46db-4133-a8f4-2316a6cee91c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 168.726013, - "y": -4.667, - "z": -169.03299 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f352", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f352", - "_tpl": "5aaa4194e5b5b055d06310a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (345) [b2a9bb81-6142-437c-bd6f-8d0a56d11d05]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -87.1069946, + "y": -13.532, + "z": 10.6740112 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2bb", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2bb", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2bc", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbb8044fa93c4c4b05f2bb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (41) [5b912b7d-3809-4d1d-b0b3-3e49b0ea40ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -115.115295, + "y": -6.192, + "z": 102.5896 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f353", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f352", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2bf", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2bf", + "_tpl": "657025bbcfc010a0f5006a35", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2c0", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbb8044fa93c4c4b05f2bf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mod_common (27) [1d3e27cf-c2b8-4916-bb6c-5244255e50e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 178.979, - "y": -0.361, - "z": -168.013977 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f355", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f355", - "_tpl": "62850c28da09541f43158cca", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (45) [441b0770-8157-45af-add3-a89c1237b14d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -98.30499, + "y": -8.091295, + "z": 92.63599 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2c2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2c2", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (28) [32ed5d2a-e5a0-4ad8-9b9e-86a3450205d7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.963013, - "y": -2.794, - "z": -124.592987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f357", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f357", - "_tpl": "625ff2eb9f5537057932257d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (47) [3f10c115-8486-479a-871b-eb7e412c4bcc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -103.72467, + "y": -8.051001, + "z": 92.546936 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2c5", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2c5", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2c6", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8044fa93c4c4b05f2c5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (48) [6eaf8fa9-4637-4c45-93e6-1fbceb4fc909]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -104.722656, + "y": -8.149, + "z": 91.8729248 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f358", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66cbb8044fa93c4c4b05f357", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2c8", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2c8", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (3) [093c1b32-66fc-41ef-a5a1-d78f5af01df4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 21.1985474, - "y": 0.0879192352, - "z": -14.4095764 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f35a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f35a", - "_tpl": "5a7ad0c451dfba0013379712", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (48) [83ac2966-3c05-45c6-973a-9d43a2e6d427]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -103.478271, + "y": -9.282, + "z": 73.8266 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2cb", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2cb", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2cc", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbb8044fa93c4c4b05f2cb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_common (3) [6d968be1-a12c-427a-b98f-a3acd36cf463]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 2.04901123, - "y": -3.802, - "z": -95.2879944 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f35c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f35c", - "_tpl": "5fbc227aa56d053a3543f79e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (49) [7ddbf0f2-a891-4fc0-a5f0-16a60454303c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -38.8209839, + "y": 18.733, + "z": 183.014038 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2cf", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2cf", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2d0", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f2cf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_common (3) [8a91e52b-7047-4013-af65-9155a7e49b59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -160.268677, - "y": 6.225, - "z": 49.0109253 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f35e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f35e", - "_tpl": "6565b91666492762f5029c0b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (51) [27e899bc-ddd5-44c5-9f21-b602838fb19c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -38.7910156, + "y": 18.733, + "z": 183.39502 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2d4", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2d4", + "_tpl": "65702495c5d7d4cb4d078561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2d5", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66cbb8044fa93c4c4b05f2d4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2d6", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66cbb8044fa93c4c4b05f2d4", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_mod_common (30) [cd9f2f87-349a-4d7b-b0b8-616e00f95bc4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.232971, - "y": -2.794, - "z": -124.379974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f360", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f360", - "_tpl": "612e0d3767085e45ef14057f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (51) [db963a9a-2d13-4c63-9eff-299c30188341]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.591248, + "y": -9.358, + "z": 76.98761 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2d8", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2d8", + "_tpl": "5751a25924597722c463c472", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (32) [43cf639f-7fa6-460f-9550-b8dc1eca7533]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 18.3029785, - "y": -4.716, - "z": -81.34299 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f362", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f362", - "_tpl": "6388c4478d895f557a0c6512", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (52) [e16d7591-1fe7-4f57-a314-ebef1aabe06b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -48.39386, + "y": -6.2425766, + "z": -5.755707 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2da", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2da", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common (34) [cba09d78-325d-4366-a626-cc6691b43fdd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.87799, - "y": -4.716, - "z": -80.79898 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f364", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f364", - "_tpl": "5cf67a1bd7f00c06585fb6f3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (54) [dacea446-2447-4823-9d46-08a20d398366]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -47.39984, + "y": 0.4364233, + "z": 23.7182922 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2dd", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2dd", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2de", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f2dd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mod_common (37) [bec70ffc-38de-43d9-a562-ee101f9e2db7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -12.1129761, - "y": -4.113, - "z": -89.1429749 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f366", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f366", - "_tpl": "5c90c3622e221601da359851", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (56) [7221c4d2-9bc8-4528-b54f-124aa04d8722]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -156.137634, + "y": -5.76600027, + "z": 74.0459 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2e1", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2e1", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2e2", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbb8044fa93c4c4b05f2e1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mod_common (4) [6c07691c-fb48-4f61-96a9-92c2e3a28542]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -172.978638, - "y": 6.225, - "z": 39.38495 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f368", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f368", - "_tpl": "618bab21526131765025ab3f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (63) [4db059a9-0aa2-4d68-ae38-7d4442870c6a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 77.63397, + "y": -5.904, + "z": 64.79901 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2e6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2e6", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2e7", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb8044fa93c4c4b05f2e6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2e8", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb8044fa93c4c4b05f2e6", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_mod_common (4) [83e790db-087e-4c14-ae0e-1c61d52102bb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 21.78955, - "y": -0.00508117676, - "z": -16.96457 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f36a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f36a", - "_tpl": "651580dc71a4f10aec4b6056", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (63) [64d53344-89cb-47cf-b86f-eb2a2a5bc604]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -153.593628, + "y": -2.80300021, + "z": 73.60895 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2eb", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2eb", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2ec", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbb8044fa93c4c4b05f2eb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_common (6) [31a2e167-da8b-472d-b5cb-d44817456d82]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -170.351685, - "y": 5.879, - "z": 52.77295 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f36c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f36c", - "_tpl": "5b099bb25acfc400186331e8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (65) [9d864f6c-3d14-4443-87cc-31355fabd964]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 75.89801, + "y": -5.7, + "z": 54.04303 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2ee", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2ee", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_common [60cae2a4-3f43-4d5d-9a00-5b5a3b00fbea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -159.56366, - "y": 6.225, - "z": 48.7939453 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f36e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f36e", - "_tpl": "560838c94bdc2d77798b4569", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (67) [7ff8ec39-73b9-487e-af22-0be2ec8b5e3d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -102.046265, + "y": -2.487, + "z": 89.59161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2f1", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2f1", + "_tpl": "648986bbc827d4637f01791e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2f2", + "_tpl": "5cc80f38e4a949001152b560", + "parentId": "66cbb8044fa93c4c4b05f2f1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_common [6df3deba-e000-4dc3-865e-46a2985f34d5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 21.5995483, - "y": 0.0879192352, - "z": -14.3605652 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f370", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f370", - "_tpl": "5beec2820db834001b095426", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (68) [79989987-0844-4240-a485-ba1a9d94388f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -62.79785, + "y": 0.331423283, + "z": 4.79830933 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2f5", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2f5", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2f6", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f2f5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mod_regular (10) [eb65201c-5c46-42ff-91a1-2499d430b006]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.08099, - "y": 3.28299713, - "z": -21.3269958 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f372", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f372", - "_tpl": "5bbdb83fd4351e44f824c44b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (68) [919a5f71-f9ad-4d68-b25b-182b4a98ca4f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -99.5662842, + "y": -2.93599987, + "z": 84.50659 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2f9", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2f9", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2fa", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb8044fa93c4c4b05f2f9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mod_regular (11) [b197bafc-a4a2-4223-8398-41416e60eedf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.84003, - "y": 3.23200226, - "z": -21.3069763 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f374", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f374", - "_tpl": "63f4ba71f31d4a33b87bd046", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (71) [939e5bc0-1f7b-4ec2-971a-688e586ab70e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 72.02399, + "y": -5.635, + "z": 31.2890015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f2fd", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f2fd", + "_tpl": "657024f9bfc87b3a3409323b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f2fe", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb8044fa93c4c4b05f2fd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_regular (12) [bcc39a08-e594-41fb-8e8e-45b285c874c1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 72.70502, - "y": 0.009002686, - "z": -34.6929932 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f376", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f376", - "_tpl": "602a97060ddce744014caf6f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (73) [2059e58f-5d9f-4bf6-8eb9-5d166d38d0d3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -55.7768555, + "y": -6.05657673, + "z": 10.6813049 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f301", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f301", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f302", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8044fa93c4c4b05f301", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mod_regular (13) [e844840f-5caf-412d-b2b9-ca338ccaf106]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 72.48602, - "y": 0.009002686, - "z": -34.0039978 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f378", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f378", - "_tpl": "5b099ac65acfc400186331e1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (73) [43596a2b-bb09-4da6-ae87-064b932189d2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -158.949646, + "y": 0.1159997, + "z": 48.4909058 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f379", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbb8044fa93c4c4b05f378", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f305", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f305", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f306", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbb8044fa93c4c4b05f305", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_regular (15) [bbef7557-32c0-4ad5-beda-b17edd04e6b2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 73.28003, - "y": 0.00399780273, - "z": -40.5979919 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f37b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f37b", - "_tpl": "5a9d6d21a2750c00137fa649", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (73) [e1ffdf1a-4e86-423b-ad48-c3914537617f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -127.000061, + "y": 0.353000164, + "z": 94.8522949 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f309", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f309", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f30a", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbb8044fa93c4c4b05f309", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_regular (16) [fe911cce-8ca2-4b06-ae20-5d79d523ac6b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 73.9749756, - "y": 0.00399780273, - "z": -40.4789734 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f37d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f37d", - "_tpl": "5888988e24597752fe43a6fa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (74) [00b8a2b0-c349-4374-9d3f-fc461902a946]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -126.147278, + "y": 0.353000164, + "z": 95.90857 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f37e", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbb8044fa93c4c4b05f37d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f30c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f30c", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_regular (20) [b085f18d-8d9a-4bd8-8baf-09044224bfdc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 76.69299, - "y": 0.0210037231, - "z": -18.1459961 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f380", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f380", - "_tpl": "62669bccdb9ebb4daa44cd14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (74) [1da6081d-fae6-451d-9e17-c29e7f82e1ea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -55.08185, + "y": -6.05657673, + "z": 10.4883118 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f30f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f30f", + "_tpl": "5c1127bdd174af44217ab8b9", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f310", + "_tpl": "5c0d56a986f774449d5de529", + "parentId": "66cbb8044fa93c4c4b05f30f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mod_regular (21) [307ebc57-8c2b-495b-b1c4-0ddf0a504225]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 77.39972, - "y": 0.0210037231, - "z": -18.244751 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f382", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f382", - "_tpl": "5d120a10d7ad1a4e1026ba85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (77) [73252ea7-d622-4126-b4d2-fc6bb0caf1b9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -70.8758545, + "y": -3.00157666, + "z": 20.9772949 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f313", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f313", + "_tpl": "657024e3c5d7d4cb4d07856a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f314", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbb8044fa93c4c4b05f313", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_regular (23) [73edce97-7754-40d1-ba01-bef3133654b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 76.93671, - "y": 0.0210037231, - "z": -17.9387512 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f384", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f384", - "_tpl": "58d39d3d86f77445bb794ae7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (79) [b7edd3be-e14a-47a0-ab26-98831dc98f91]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -70.32782, + "y": -2.49757671, + "z": 18.1372986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f317", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f317", + "_tpl": "64acea0d03378853630da53b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f318", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbb8044fa93c4c4b05f317", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mod_regular (23) [9c0da69c-cbb4-4f8b-ba5e-dfebb38e9dfb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.22302, - "y": -4.09999847, - "z": -45.66098 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f386", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f386", - "_tpl": "65293c38fc460e50a509cb25", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (80) [5e0974e7-a21e-4bc4-99d3-083fec2e653c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -69.93787, + "y": -2.05757666, + "z": 18.19931 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f31b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f31b", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f31c", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f31b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_mix_food_med_ammo (82) [5791e489-a049-41e8-945d-ef3c7cb76255]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -163.799683, + "y": 3.007, + "z": 30.3499146 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f387", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbb8044fa93c4c4b05f386", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f31e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f31e", + "_tpl": "590c5f0d86f77413997acfab", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_regular (24) [3c0d9406-685a-4df3-b14b-aa52f1e7b279]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 77.48071, - "y": -0.09225464, - "z": -18.1127319 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f389", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f389", - "_tpl": "591af28e86f77414a27a9e1d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (84) [93487cce-e087-405d-a39f-edbd20d805b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -167.413635, + "y": 2.9119997, + "z": 32.1419067 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f320", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f320", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_regular (24) [3dd96bef-695d-4f05-aab5-b67edfd1d73f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.8959961, - "y": -4.09999847, - "z": -45.3999939 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f38b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f38b", - "_tpl": "5a16b93dfcdbcbcae6687261", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (85) [cc6eeef3-f32a-4e11-b185-0b82fa45d26b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -167.448669, + "y": 3.12899971, + "z": 32.50891 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f323", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f323", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f324", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbb8044fa93c4c4b05f323", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_regular (25) [303f519b-d9ef-472c-9f75-65ca9273640d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.73572, - "y": -3.35925484, - "z": -36.2567444 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f38d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f38d", - "_tpl": "593d490386f7745ee97a1555", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (87) [a61c8eb9-88cb-4d2f-bd57-51963cc41385]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 69.20398, + "y": -6.118, + "z": -37.57898 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f327", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f327", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f328", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbb8044fa93c4c4b05f327", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mod_regular (25) [f1eaafb8-04f5-4f74-beb3-fd37ddb16625]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.30701, - "y": -4.09999847, - "z": -45.1799927 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f38f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f38f", - "_tpl": "5a34fae7c4a2826c6e06d760", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (90) [48c4a7fe-578b-4071-864e-5ea39011e7ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 63.8699951, + "y": -6.657, + "z": -41.2309875 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f32a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f32a", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_regular (27) [cdc1f41c-32e6-4060-a0a4-24c1b6e3f45c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 89.99371, - "y": -2.881255, - "z": -36.55475 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f391", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f391", - "_tpl": "628a85ee6b1d481ff772e9d5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (91) [1eeaefb4-82dd-4d50-bfd6-409466d5a0b3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -5.369995, + "y": 27.082, + "z": 195.635986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f32e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f32e", + "_tpl": "6570243bbfc87b3a3409321f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f32f", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb8044fa93c4c4b05f32e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f330", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb8044fa93c4c4b05f32e", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "loot_mod_regular (3) [6e2e19d8-63f3-45f7-a2ee-c3021fd5fb2e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -74.10498, - "y": 0.622001648, - "z": -22.388 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f393", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f393", - "_tpl": "5cf13123d7f00c1085616a50", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (93) [0aa5175f-faad-406a-b5b3-3cc752f70556]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -97.92029, + "y": 6.59100056, + "z": 92.00659 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f333", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f333", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f334", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8044fa93c4c4b05f333", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_mod_regular (30) [f052dfe1-e57a-48a2-9a5c-f5d9c215b1f8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.01471, - "y": -2.87525487, - "z": -37.37375 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f395", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f395", - "_tpl": "6386120cd6baa055ad1e201c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (96) [ee0486f1-c10c-4ce8-9d8e-435bf075f4fc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -18.132019, + "y": -6.243, + "z": -1.86398315 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f337", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f337", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f338", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbb8044fa93c4c4b05f337", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_mod_regular (32) [459e9053-5c76-4e16-a9f9-5d2aa93ce163]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.55072, - "y": -2.87525487, - "z": -37.5257568 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f397", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f397", - "_tpl": "55d481904bdc2d8c2f8b456a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mix_food_med_ammo (97) [d0e94d65-0e58-4c75-a0ae-b3df5bd979b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -157.526672, + "y": 2.93199968, + "z": 76.91492 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f398", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb8044fa93c4c4b05f397", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f33b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f33b", + "_tpl": "657025a81419851aef03e724", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f33c", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb8044fa93c4c4b05f33b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_regular (34) [33cbd158-cb68-4214-b7b9-c09c017fa77c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.67474, - "y": -2.90825486, - "z": -21.63974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f39a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f39a", - "_tpl": "5fb653962b1b027b1f50bd03", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (98) [68da80a7-929d-4d50-9617-4fb84e22e2f3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -19.3740234, + "y": -6.306, + "z": 16.487 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f33f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f33f", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f340", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8044fa93c4c4b05f33f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_mod_regular (35) [278eff66-8cd0-4e03-8596-1b00f569de13]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.7007446, - "y": -2.90825486, - "z": -21.9087524 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f39c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f39c", - "_tpl": "64942bfc6ee699f6890dff95", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mix_food_med_ammo (99) [03fe5c80-1dfc-4f9f-98ad-f5b3984abe12]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -19.4000244, + "y": -6.306, + "z": 16.81601 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f343", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f343", + "_tpl": "657024f9bfc87b3a3409323b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f344", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb8044fa93c4c4b05f343", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "loot_mod_regular (4) [b7a8444e-fcb0-468b-9d23-c5c893780e2c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -74.95099, - "y": 0.622001648, - "z": -22.1900024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f39e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f39e", - "_tpl": "56eabf3bd2720b75698b4569", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (10) [a251ebd5-fe65-4537-9565-750b4541fa78]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.702637, + "y": 6.468, + "z": 68.1449 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f346", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f346", + "_tpl": "59db7eed86f77461f8380365", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_regular (5) [7a6c27b5-c271-4730-8cce-4dadea17b934]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 87.51575, - "y": 0.08999634, - "z": -31.9377441 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3a0", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3a0", - "_tpl": "5b800e9286f7747a8b04f3ff", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (10) [fdb18038-3f7a-43a2-a799-4aa90faa22d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.539978, + "y": -3.954, + "z": -113.108978 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f348", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f348", + "_tpl": "6034e3cb0ddce744014cb870", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_regular (6) [4d5ac9a9-c26b-4aaa-808f-e0b31c74a2a4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.091, - "y": 0.08999634, - "z": -31.9859924 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3a2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3a2", - "_tpl": "62e2a7138e1ac9380579c122", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (17) [b54591a5-702e-4786-aacb-aeccaf7a49c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -96.77899, + "y": -5.077, + "z": 34.2980042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f34a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f34a", + "_tpl": "5a787ebcc5856700142fdd98", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_regular (8) [eb8985d0-7ca6-4d5c-978b-76cb60040b9d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.323, - "y": 0.471000671, - "z": -27.0809937 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3a4", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3a4", - "_tpl": "5a16b93dfcdbcbcae6687261", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (18) [de048319-8061-4f36-9042-30d926a10e95]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -96.026, + "y": -5.077, + "z": 33.60501 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f34c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f34c", + "_tpl": "5beec8ea0db834001a6f9dbf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_regular (9) [aa5b58a7-d035-4e18-9cb3-fec4006899df]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.72302, - "y": 0.471000671, - "z": -26.867981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3a6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3a6", - "_tpl": "661e52e29c8b4dadef008577", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (19) [bdc24a1b-76b4-4792-af2a-aa2de20117d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -95.56598, + "y": -5.077, + "z": 33.3789978 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f34e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f34e", + "_tpl": "5a7c74b3e899ef0014332c29", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (10) [8a6eec12-002d-47ae-aace-aaa541ebae72]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.117, - "y": -8.192398, - "z": 30.3959961 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3a8", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3a8", - "_tpl": "5b222d405acfc400153af4fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (2) [f0d9a3f3-8d53-477a-91e6-aecd82445c5f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 1.68701172, + "y": -3.802, + "z": -94.849 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f350", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f350", + "_tpl": "66992f7d9950f5f4cd0602a8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (100) [2d920d2e-14fc-4ceb-bc51-e2b8cae438bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 4.39654541, - "y": -6.236081, - "z": -17.5415649 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3aa", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3aa", - "_tpl": "57d17c5e2459775a5c57d17d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (24) [76e5eb4f-46db-4133-a8f4-2316a6cee91c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 168.726013, + "y": -4.667, + "z": -169.03299 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f352", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f352", + "_tpl": "5aaa4194e5b5b055d06310a5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f353", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f352", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13 + } } - } - ] - }, - { - "Id": "loot_mod_true (100) [7727002f-54d5-4802-92f9-0b8245350970]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 195.515015, - "y": -5.762, - "z": -200.68 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3ac", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3ac", - "_tpl": "5c0672ed0db834001b7353f3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (27) [1d3e27cf-c2b8-4916-bb6c-5244255e50e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 178.979, + "y": -0.361, + "z": -168.013977 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f355", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f355", + "_tpl": "62850c28da09541f43158cca", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_common (28) [32ed5d2a-e5a0-4ad8-9b9e-86a3450205d7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.963013, + "y": -2.794, + "z": -124.592987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f3ad", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb8044fa93c4c4b05f3ac", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f357", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f357", + "_tpl": "625ff2eb9f5537057932257d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f358", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66cbb8044fa93c4c4b05f357", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } } + ] + }, + { + "Id": "loot_mod_common (3) [093c1b32-66fc-41ef-a5a1-d78f5af01df4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 21.1985474, + "y": 0.0879192352, + "z": -14.4095764 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f3ae", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb8044fa93c4c4b05f3ac", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 2 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f35a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f35a", + "_tpl": "5a7ad0c451dfba0013379712", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (101) [57c456a8-c804-4b11-a3a5-f57195d10e64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.96954346, - "y": -6.236081, - "z": -17.40158 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3b0", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3b0", - "_tpl": "57ffaea724597779f52b3a4d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (3) [6d968be1-a12c-427a-b98f-a3acd36cf463]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 2.04901123, + "y": -3.802, + "z": -95.2879944 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f35c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f35c", + "_tpl": "5fbc227aa56d053a3543f79e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (101) [9df15c4d-eb2e-4959-a080-8e4ecec44f0b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 197.286011, - "y": -5.786, - "z": -201.122986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3b2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3b2", - "_tpl": "57cffd8224597763b03fc609", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (3) [8a91e52b-7047-4013-af65-9155a7e49b59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -160.268677, + "y": 6.225, + "z": 49.0109253 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f35e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f35e", + "_tpl": "6565b91666492762f5029c0b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (102) [9ea67b9a-cef7-4df4-9d38-3d42ce25ba88]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -161.588989, - "y": -2.317824, - "z": -10.8848877 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3b4", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3b4", - "_tpl": "593d493f86f7745e6b2ceb22", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (30) [cd9f2f87-349a-4d7b-b0b8-616e00f95bc4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.232971, + "y": -2.794, + "z": -124.379974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f360", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f360", + "_tpl": "612e0d3767085e45ef14057f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (103) [25f3abc4-92df-47b6-89ba-bdabb84421fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.12054443, - "y": -5.730081, - "z": -18.00357 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3b6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3b6", - "_tpl": "5bffd7ed0db834001d23ebf9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (32) [43cf639f-7fa6-460f-9550-b8dc1eca7533]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 18.3029785, + "y": -4.716, + "z": -81.34299 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f362", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f362", + "_tpl": "6388c4478d895f557a0c6512", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (103) [82632ede-1dde-47bb-b007-77ac469e9d59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -161.800964, - "y": -2.317824, - "z": -11.197876 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3b8", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3b8", - "_tpl": "5c617a5f2e2216000f1e81b3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (34) [cba09d78-325d-4366-a626-cc6691b43fdd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.87799, + "y": -4.716, + "z": -80.79898 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f364", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f364", + "_tpl": "5cf67a1bd7f00c06585fb6f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (104) [be8b924b-ed31-4bc9-be57-685af9484bd8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 13.1895752, - "y": -5.870081, - "z": -15.0095825 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3ba", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3ba", - "_tpl": "5c4eecc32e221602b412b440", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (37) [bec70ffc-38de-43d9-a562-ee101f9e2db7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -12.1129761, + "y": -4.113, + "z": -89.1429749 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f366", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f366", + "_tpl": "5c90c3622e221601da359851", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (105) [895a47d3-bbf2-43ab-a7d6-78bcea82ba0f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.479, - "y": 0.8451762, - "z": -16.1138611 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3bc", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3bc", - "_tpl": "593d493f86f7745e6b2ceb22", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (4) [6c07691c-fb48-4f61-96a9-92c2e3a28542]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -172.978638, + "y": 6.225, + "z": 39.38495 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f368", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f368", + "_tpl": "618bab21526131765025ab3f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (105) [afdebc1e-78ec-49c5-a7ff-dec3a3580ead]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 13.0765381, - "y": -5.870081, - "z": -15.2355652 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3be", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3be", - "_tpl": "5649d9a14bdc2d79388b4580", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (4) [83e790db-087e-4c14-ae0e-1c61d52102bb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 21.78955, + "y": -0.00508117676, + "z": -16.96457 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f36a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f36a", + "_tpl": "651580dc71a4f10aec4b6056", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (106) [e8b23a58-a2f2-4225-ba77-352a7b84d9ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 13.0095825, - "y": -5.870081, - "z": -15.5185852 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3c0", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3c0", - "_tpl": "5648b4534bdc2d3d1c8b4580", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common (6) [31a2e167-da8b-472d-b5cb-d44817456d82]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -170.351685, + "y": 5.879, + "z": 52.77295 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f36c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f36c", + "_tpl": "5b099bb25acfc400186331e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (107) [27c5b9f3-d3ea-458b-b1c6-0e5403afa990]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 98.7880249, - "y": -6.755, - "z": 61.2590332 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3c2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3c2", - "_tpl": "57cffddc24597763133760c6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common [60cae2a4-3f43-4d5d-9a00-5b5a3b00fbea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -159.56366, + "y": 6.225, + "z": 48.7939453 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f36e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f36e", + "_tpl": "560838c94bdc2d77798b4569", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (113) [53272ce7-4ac6-4510-8493-2c4dcac45c71]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.901, - "y": -0.434823751, - "z": -26.7008667 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3c4", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3c4", - "_tpl": "5c0672ed0db834001b7353f3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_common [6df3deba-e000-4dc3-865e-46a2985f34d5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 21.5995483, + "y": 0.0879192352, + "z": -14.3605652 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f370", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f370", + "_tpl": "5beec2820db834001b095426", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_regular (10) [eb65201c-5c46-42ff-91a1-2499d430b006]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.08099, + "y": 3.28299713, + "z": -21.3269958 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f3c5", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "66cbb8044fa93c4c4b05f3c4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f372", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f372", + "_tpl": "5bbdb83fd4351e44f824c44b", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_regular (11) [b197bafc-a4a2-4223-8398-41416e60eedf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.84003, + "y": 3.23200226, + "z": -21.3069763 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f3c6", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "66cbb8044fa93c4c4b05f3c4", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 6 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f374", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f374", + "_tpl": "63f4ba71f31d4a33b87bd046", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (116) [62d93433-4b7d-451c-ad8a-deec1085e480]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -65.80682, - "y": -9.807577, - "z": 23.0603027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3c8", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3c8", - "_tpl": "57ae0171245977343c27bfcf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (12) [bcc39a08-e594-41fb-8e8e-45b285c874c1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 72.70502, + "y": 0.009002686, + "z": -34.6929932 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f376", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f376", + "_tpl": "602a97060ddce744014caf6f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (124) [81559a32-040c-4ae8-86b5-f39cf08227cc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -3.354004, - "y": 32.978, - "z": 168.004028 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3ca", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3ca", - "_tpl": "5a0d63621526d8dba31fe3bf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (13) [e844840f-5caf-412d-b2b9-ca338ccaf106]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 72.48602, + "y": 0.009002686, + "z": -34.0039978 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f378", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f378", + "_tpl": "5b099ac65acfc400186331e1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f379", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbb8044fa93c4c4b05f378", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15 + } } - } - ] - }, - { - "Id": "loot_mod_true (128) [2e9ba85d-e467-4c62-aa21-327d084afe3e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -60.5239868, - "y": -15.3, - "z": 186.32 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3cc", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3cc", - "_tpl": "59ecc28286f7746d7a68aa8c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (15) [bbef7557-32c0-4ad5-beda-b17edd04e6b2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 73.28003, + "y": 0.00399780273, + "z": -40.5979919 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f37b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f37b", + "_tpl": "5a9d6d21a2750c00137fa649", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (13) [7fd511d2-bbdc-4b63-9246-b92e03d71be7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -165.568665, - "y": -8.357, - "z": 68.75995 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3ce", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3ce", - "_tpl": "5bed61680db834001d2c45ab", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (16) [fe911cce-8ca2-4b06-ae20-5d79d523ac6b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 73.9749756, + "y": 0.00399780273, + "z": -40.4789734 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f37d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f37d", + "_tpl": "5888988e24597752fe43a6fa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f37e", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbb8044fa93c4c4b05f37d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2 + } } + ] + }, + { + "Id": "loot_mod_regular (20) [b085f18d-8d9a-4bd8-8baf-09044224bfdc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 76.69299, + "y": 0.0210037231, + "z": -18.1459961 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f3cf", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbb8044fa93c4c4b05f3ce", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 14 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f380", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f380", + "_tpl": "62669bccdb9ebb4daa44cd14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (130) [ac24900b-e528-4e4e-a2f6-4a482bca08f5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -60.0770264, - "y": -15.458, - "z": 186.022034 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3d1", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3d1", - "_tpl": "5c1bc5af2e221602b412949b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (21) [307ebc57-8c2b-495b-b1c4-0ddf0a504225]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 77.39972, + "y": 0.0210037231, + "z": -18.244751 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f382", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f382", + "_tpl": "5d120a10d7ad1a4e1026ba85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (133) [7cf59f78-e453-4d0c-871c-82d3bb4d8679]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -99.81799, - "y": -14.376, - "z": 41.368042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3d3", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3d3", - "_tpl": "59fc48e086f77463b1118392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (23) [73edce97-7754-40d1-ba01-bef3133654b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 76.93671, + "y": 0.0210037231, + "z": -17.9387512 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f384", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f384", + "_tpl": "58d39d3d86f77445bb794ae7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (134) [0adb2eb2-0198-4b56-b8b8-52665bf3164b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -100.65802, - "y": -14.376, - "z": 41.6950073 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3d5", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3d5", - "_tpl": "59ecc3dd86f7746dc827481c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (23) [9c0da69c-cbb4-4f8b-ba5e-dfebb38e9dfb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.22302, + "y": -4.09999847, + "z": -45.66098 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f386", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f386", + "_tpl": "65293c38fc460e50a509cb25", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f387", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbb8044fa93c4c4b05f386", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "loot_mod_true (135) [11ecf501-a521-457b-b027-b0578c23b6cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -101.166992, - "y": -14.376, - "z": 40.3729858 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3d7", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3d7", - "_tpl": "593d489686f7745c6255d58a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (24) [3c0d9406-685a-4df3-b14b-aa52f1e7b279]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 77.48071, + "y": -0.09225464, + "z": -18.1127319 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f389", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f389", + "_tpl": "591af28e86f77414a27a9e1d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (136) [2ad1f819-0669-4dbd-a81f-0fe5981fe32c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.31897, - "y": -15.774, - "z": 162.934021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3d9", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3d9", - "_tpl": "593d493f86f7745e6b2ceb22", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (24) [3dd96bef-695d-4f05-aab5-b67edfd1d73f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.8959961, + "y": -4.09999847, + "z": -45.3999939 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f38b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f38b", + "_tpl": "5a16b93dfcdbcbcae6687261", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (138) [041de8fa-19d5-4793-8a8f-50d162911254]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -153.638, - "y": -8.286, - "z": -13.5709839 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3db", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3db", - "_tpl": "56def37dd2720bec348b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (25) [303f519b-d9ef-472c-9f75-65ca9273640d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.73572, + "y": -3.35925484, + "z": -36.2567444 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f38d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f38d", + "_tpl": "593d490386f7745ee97a1555", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (139) [fdc7c756-35b7-492f-9133-84b0e5b11b75]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -153.864014, - "y": -8.286, - "z": -13.3119812 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3dd", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3dd", - "_tpl": "57cff947245977638e6f2a19", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (25) [f1eaafb8-04f5-4f74-beb3-fd37ddb16625]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.30701, + "y": -4.09999847, + "z": -45.1799927 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f38f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f38f", + "_tpl": "5a34fae7c4a2826c6e06d760", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (140) [ce6b14d3-c9b7-4fd6-8bae-6c4d42ed3f91]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -153.676025, - "y": -8.286, - "z": -13.2529907 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3df", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3df", - "_tpl": "5b222d405acfc400153af4fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (27) [cdc1f41c-32e6-4060-a0a4-24c1b6e3f45c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 89.99371, + "y": -2.881255, + "z": -36.55475 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f391", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f391", + "_tpl": "628a85ee6b1d481ff772e9d5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (142) [bcf2a3e4-533f-4938-8346-bcf1c5f932ac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -154.294, - "y": -8.286, - "z": -12.8029785 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3e1", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3e1", - "_tpl": "5c4eecc32e221602b412b440", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (3) [6e2e19d8-63f3-45f7-a2ee-c3021fd5fb2e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -74.10498, + "y": 0.622001648, + "z": -22.388 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f393", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f393", + "_tpl": "5cf13123d7f00c1085616a50", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (19) [cc1aef0e-0365-47fa-9860-d047c39207b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.186646, - "y": -8.33, - "z": 69.02991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3e3", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3e3", - "_tpl": "5c9a1c3a2e2216000e69fb6a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (30) [f052dfe1-e57a-48a2-9a5c-f5d9c215b1f8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.01471, + "y": -2.87525487, + "z": -37.37375 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f395", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f395", + "_tpl": "6386120cd6baa055ad1e201c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (21) [57b6a163-2932-4dc6-9395-c56c37cf761f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -167.103027, - "y": -5.22540236, - "z": 32.2539673 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3e5", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3e5", - "_tpl": "5c1bc7432e221602b412949d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (32) [459e9053-5c76-4e16-a9f9-5d2aa93ce163]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.55072, + "y": -2.87525487, + "z": -37.5257568 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f397", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f397", + "_tpl": "55d481904bdc2d8c2f8b456a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f398", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb8044fa93c4c4b05f397", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "loot_mod_true (30) [6185c4ef-fb7a-4869-bcd3-3eac96b94124]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -165.35498, - "y": -2.30840254, - "z": 29.28598 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3e7", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3e7", - "_tpl": "544a378f4bdc2d30388b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (34) [33cbd158-cb68-4214-b7b9-c09c017fa77c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.67474, + "y": -2.90825486, + "z": -21.63974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f39a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f39a", + "_tpl": "5fb653962b1b027b1f50bd03", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_regular (35) [278eff66-8cd0-4e03-8596-1b00f569de13]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.7007446, + "y": -2.90825486, + "z": -21.9087524 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f3e8", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbb8044fa93c4c4b05f3e7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 36 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f39c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f39c", + "_tpl": "64942bfc6ee699f6890dff95", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (33) [e83360f5-92de-4613-9979-c7e0b9073b00]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.521973, - "y": -2.42439985, - "z": 30.2459717 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3ea", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3ea", - "_tpl": "5c1cdd512e22161b267d91ae", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (4) [b7a8444e-fcb0-468b-9d23-c5c893780e2c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -74.95099, + "y": 0.622001648, + "z": -22.1900024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f39e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f39e", + "_tpl": "56eabf3bd2720b75698b4569", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (34) [d294e9d3-98fc-4d9e-82ab-44692c16d2e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.43, - "y": -2.44139814, - "z": 30.7569885 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3ec", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3ec", - "_tpl": "646f62fee779812413011ab7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (5) [7a6c27b5-c271-4730-8cce-4dadea17b934]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 87.51575, + "y": 0.08999634, + "z": -31.9377441 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3a0", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3a0", + "_tpl": "5b800e9286f7747a8b04f3ff", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (37) [be453a37-7e10-489a-8a86-9e1847f2f701]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 79.2089844, - "y": -6.031, - "z": 60.125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3ee", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3ee", - "_tpl": "57ffb0e42459777d047111c5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (6) [4d5ac9a9-c26b-4aaa-808f-e0b31c74a2a4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.091, + "y": 0.08999634, + "z": -31.9859924 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3a2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3a2", + "_tpl": "62e2a7138e1ac9380579c122", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (4) [6e5e6b2f-4be6-41b8-b981-3d4db631d625]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -162.294, - "y": -8.209404, - "z": 72.4260254 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3f0", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3f0", - "_tpl": "5ac78eaf5acfc4001926317a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (8) [eb8985d0-7ca6-4d5c-978b-76cb60040b9d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.323, + "y": 0.471000671, + "z": -27.0809937 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3a4", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3a4", + "_tpl": "5a16b93dfcdbcbcae6687261", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (40) [7e55f161-b291-4eff-a3af-6c4d80aa82c1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.659668, - "y": -8.33, - "z": 68.97095 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3f2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3f2", - "_tpl": "5b222d405acfc400153af4fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_regular (9) [aa5b58a7-d035-4e18-9cb3-fec4006899df]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.72302, + "y": 0.471000671, + "z": -26.867981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3a6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3a6", + "_tpl": "661e52e29c8b4dadef008577", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (47) [9cbe5b4c-789c-4efe-b737-940665453cd5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -62.03882, - "y": 3.11142325, - "z": 15.8833008 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3f4", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3f4", - "_tpl": "5a9fc7e6a2750c0032157184", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (10) [8a6eec12-002d-47ae-aace-aaa541ebae72]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.117, + "y": -8.192398, + "z": 30.3959961 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3a8", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3a8", + "_tpl": "5b222d405acfc400153af4fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (5) [d655e7d7-6f19-4962-99b0-f21425ea0cc1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -162.200989, - "y": -8.209404, - "z": 71.68201 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3f6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3f6", - "_tpl": "5c1bc5fb2e221602b1779b32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (100) [2d920d2e-14fc-4ceb-bc51-e2b8cae438bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 4.39654541, + "y": -6.236081, + "z": -17.5415649 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3aa", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3aa", + "_tpl": "57d17c5e2459775a5c57d17d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (54) [66a79bff-3be8-4e7d-8b9e-b8a0f756907b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -80.48328, - "y": -8.198, - "z": 83.44556 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3f8", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3f8", - "_tpl": "5649d9a14bdc2d79388b4580", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (100) [7727002f-54d5-4802-92f9-0b8245350970]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 195.515015, + "y": -5.762, + "z": -200.68 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3ac", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3ac", + "_tpl": "5c0672ed0db834001b7353f3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f3ad", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb8044fa93c4c4b05f3ac", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f3ae", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb8044fa93c4c4b05f3ac", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "loot_mod_true (55) [d47fc36e-82bd-4be2-b26b-28d15ca8b2af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -124.202271, - "y": 3.16800022, - "z": 95.02356 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3fa", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3fa", - "_tpl": "5648ae314bdc2d3d1c8b457f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (101) [57c456a8-c804-4b11-a3a5-f57195d10e64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.96954346, + "y": -6.236081, + "z": -17.40158 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3b0", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3b0", + "_tpl": "57ffaea724597779f52b3a4d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (56) [db2018fc-6393-4eba-a9de-ea6e8ceeb7ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -124.398254, - "y": 3.42300034, - "z": 94.14661 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3fc", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3fc", - "_tpl": "5b222d405acfc400153af4fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (101) [9df15c4d-eb2e-4959-a080-8e4ecec44f0b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 197.286011, + "y": -5.786, + "z": -201.122986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3b2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3b2", + "_tpl": "57cffd8224597763b03fc609", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (57) [5dcbc6f5-a862-478f-ad1c-236a9a3822b9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -124.30127, - "y": 3.42300034, - "z": 94.6105957 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f3fe", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f3fe", - "_tpl": "646f62fee779812413011ab7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (102) [9ea67b9a-cef7-4df4-9d38-3d42ce25ba88]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -161.588989, + "y": -2.317824, + "z": -10.8848877 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3b4", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3b4", + "_tpl": "593d493f86f7745e6b2ceb22", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (59) [f03d4377-8a4d-4de8-b7fc-7ae28853b4cf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -124.366272, - "y": 2.823, - "z": 94.2155762 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f400", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f400", - "_tpl": "5649d9a14bdc2d79388b4580", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (103) [25f3abc4-92df-47b6-89ba-bdabb84421fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.12054443, + "y": -5.730081, + "z": -18.00357 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3b6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3b6", + "_tpl": "5bffd7ed0db834001d23ebf9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (62) [5f148174-00e1-4d51-b212-ec3f9a8c0e2b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -127.207275, - "y": -2.64399958, - "z": 95.7616 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f402", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f402", - "_tpl": "55d485be4bdc2d962f8b456f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (103) [82632ede-1dde-47bb-b007-77ac469e9d59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -161.800964, + "y": -2.317824, + "z": -11.197876 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f403", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f402", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 21 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3b8", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3b8", + "_tpl": "5c617a5f2e2216000f1e81b3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (63) [435c6507-7fab-4f2a-8b16-541d68ad8339]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 235.975952, - "y": -9.944, - "z": -3.26797485 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f405", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f405", - "_tpl": "593d489686f7745c6255d58a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (104) [be8b924b-ed31-4bc9-be57-685af9484bd8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 13.1895752, + "y": -5.870081, + "z": -15.0095825 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3ba", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3ba", + "_tpl": "5c4eecc32e221602b412b440", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (63) [e6aea756-aa2e-4fbb-a3ba-5132da8ab0ac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -127.207275, - "y": -2.949, - "z": 95.7616 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f407", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f407", - "_tpl": "5947db3f86f77447880cf76f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (105) [895a47d3-bbf2-43ab-a7d6-78bcea82ba0f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.479, + "y": 0.8451762, + "z": -16.1138611 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3bc", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3bc", + "_tpl": "593d493f86f7745e6b2ceb22", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (64) [4e0b51f2-1264-4bb1-afd1-12debace8840]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -127.2843, - "y": -2.949, - "z": 95.38556 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f409", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f409", - "_tpl": "59ecc3dd86f7746dc827481c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (105) [afdebc1e-78ec-49c5-a7ff-dec3a3580ead]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 13.0765381, + "y": -5.870081, + "z": -15.2355652 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3be", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3be", + "_tpl": "5649d9a14bdc2d79388b4580", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (65) [e35f64eb-4609-44ba-8318-afe83d877dee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -127.2843, - "y": -2.323, - "z": 95.38556 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f40b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f40b", - "_tpl": "5a9fc7e6a2750c0032157184", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (106) [e8b23a58-a2f2-4225-ba77-352a7b84d9ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 13.0095825, + "y": -5.870081, + "z": -15.5185852 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3c0", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3c0", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (68) [2ab184c3-0c81-4e33-ae2d-51db8e36ba43]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 59.12799, - "y": -4.387, - "z": -100.300995 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f40d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f40d", - "_tpl": "57ffb0062459777a045af529", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (107) [27c5b9f3-d3ea-458b-b1c6-0e5403afa990]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 98.7880249, + "y": -6.755, + "z": 61.2590332 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3c2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3c2", + "_tpl": "57cffddc24597763133760c6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (69) [dff3531a-c765-4ae5-9fad-4479317ab95c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 59.0239868, - "y": -4.366, - "z": -100.491 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f40f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f40f", - "_tpl": "5c1cdd512e22161b267d91ae", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (113) [53272ce7-4ac6-4510-8493-2c4dcac45c71]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.901, + "y": -0.434823751, + "z": -26.7008667 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3c4", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3c4", + "_tpl": "5c0672ed0db834001b7353f3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f3c5", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "66cbb8044fa93c4c4b05f3c4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f3c6", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "66cbb8044fa93c4c4b05f3c4", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 6 + } } - } - ] - }, - { - "Id": "loot_mod_true (7) [5a492b1c-ec04-49d0-a43f-86f7304c0f8b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.924011, - "y": -8.316399, - "z": 68.83301 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f411", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f411", - "_tpl": "5b86a0e586f7745b600ccb23", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (116) [62d93433-4b7d-451c-ad8a-deec1085e480]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -65.80682, + "y": -9.807577, + "z": 23.0603027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3c8", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3c8", + "_tpl": "57ae0171245977343c27bfcf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (73) [bb89f795-c904-4029-a57f-2b4261b7caa0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 70.66498, - "y": -4.528, - "z": -104.711975 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f413", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f413", - "_tpl": "5b04473a5acfc40018632f70", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (124) [81559a32-040c-4ae8-86b5-f39cf08227cc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -3.354004, + "y": 32.978, + "z": 168.004028 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3ca", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3ca", + "_tpl": "5a0d63621526d8dba31fe3bf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (74) [81157243-deb7-4f0b-b4c6-c63087c92496]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -81.96625, - "y": -2.495, - "z": 82.96161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f415", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f415", - "_tpl": "5649d9a14bdc2d79388b4580", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (128) [2e9ba85d-e467-4c62-aa21-327d084afe3e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -60.5239868, + "y": -15.3, + "z": 186.32 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3cc", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3cc", + "_tpl": "59ecc28286f7746d7a68aa8c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (76) [139e446a-7e19-4ed9-939d-4b36d7779023]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -96.04028, - "y": 6.31700039, - "z": 94.0905762 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f417", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f417", - "_tpl": "5b3f7c1c5acfc40dc5296b1d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (13) [7fd511d2-bbdc-4b63-9246-b92e03d71be7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -165.568665, + "y": -8.357, + "z": 68.75995 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3ce", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3ce", + "_tpl": "5bed61680db834001d2c45ab", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f3cf", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbb8044fa93c4c4b05f3ce", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 14 + } } - } - ] - }, - { - "Id": "loot_mod_true (80) [a8e79733-2236-42dd-bf26-2c488ebc9b9b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -43.7589722, - "y": 18.805, - "z": 183.01001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f419", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f419", - "_tpl": "57d1519e24597714373db79d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (130) [ac24900b-e528-4e4e-a2f6-4a482bca08f5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -60.0770264, + "y": -15.458, + "z": 186.022034 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3d1", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3d1", + "_tpl": "5c1bc5af2e221602b412949b", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_true (133) [7cf59f78-e453-4d0c-871c-82d3bb4d8679]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -99.81799, + "y": -14.376, + "z": 41.368042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f41a", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f419", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3d3", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3d3", + "_tpl": "59fc48e086f77463b1118392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (82) [170d469a-3db8-4bcb-9a1c-b3fb7e8a6ba9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -121.283264, - "y": 6.28600025, - "z": 94.48358 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f41c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f41c", - "_tpl": "59ecc28286f7746d7a68aa8c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (134) [0adb2eb2-0198-4b56-b8b8-52665bf3164b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -100.65802, + "y": -14.376, + "z": 41.6950073 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3d5", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3d5", + "_tpl": "59ecc3dd86f7746dc827481c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (83) [d91cdb90-795a-4f10-b877-5bbde1843a0a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.781006, - "y": -4.183, - "z": 25.582 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f41e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f41e", - "_tpl": "593d490386f7745ee97a1555", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (135) [11ecf501-a521-457b-b027-b0578c23b6cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -101.166992, + "y": -14.376, + "z": 40.3729858 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3d7", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3d7", + "_tpl": "593d489686f7745c6255d58a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (84) [45aff8d6-9fd3-4fa6-ab71-449849f9ffd5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.093994, - "y": -4.183, - "z": 24.7870178 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f420", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f420", - "_tpl": "593d493f86f7745e6b2ceb22", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (136) [2ad1f819-0669-4dbd-a81f-0fe5981fe32c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.31897, + "y": -15.774, + "z": 162.934021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3d9", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3d9", + "_tpl": "593d493f86f7745e6b2ceb22", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (88) [23860e25-22d7-420a-9f3a-d473d4579e70]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -96.0002441, - "y": 6.31700039, - "z": 94.70361 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f422", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f422", - "_tpl": "544a378f4bdc2d30388b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (138) [041de8fa-19d5-4793-8a8f-50d162911254]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -153.638, + "y": -8.286, + "z": -13.5709839 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3db", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3db", + "_tpl": "56def37dd2720bec348b456a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_true (139) [fdc7c756-35b7-492f-9133-84b0e5b11b75]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -153.864014, + "y": -8.286, + "z": -13.3119812 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f423", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbb8044fa93c4c4b05f422", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 19 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3dd", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3dd", + "_tpl": "57cff947245977638e6f2a19", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (90) [5a2cfcf3-bfef-4704-bec4-15722c21d897]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -96.22424, - "y": 6.31700039, - "z": 94.1936 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f425", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f425", - "_tpl": "5bed61680db834001d2c45ab", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (140) [ce6b14d3-c9b7-4fd6-8bae-6c4d42ed3f91]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -153.676025, + "y": -8.286, + "z": -13.2529907 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3df", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3df", + "_tpl": "5b222d405acfc400153af4fe", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_true (142) [bcf2a3e4-533f-4938-8346-bcf1c5f932ac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -154.294, + "y": -8.286, + "z": -12.8029785 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f426", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f425", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3e1", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3e1", + "_tpl": "5c4eecc32e221602b412b440", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (91) [ca0b2545-fd32-4d18-a932-7d0f257536e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 195.096985, - "y": -5.705, - "z": -200.453 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f428", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f428", - "_tpl": "5c61a40d2e2216001403158d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (19) [cc1aef0e-0365-47fa-9860-d047c39207b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.186646, + "y": -8.33, + "z": 69.02991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3e3", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3e3", + "_tpl": "5c9a1c3a2e2216000e69fb6a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (92) [157239cc-fa63-48fa-a59d-bd08b59786c3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.538574, - "y": -2.951081, - "z": -3.08557129 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f42a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f42a", - "_tpl": "5bed61680db834001d2c45ab", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (21) [57b6a163-2932-4dc6-9395-c56c37cf761f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -167.103027, + "y": -5.22540236, + "z": 32.2539673 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3e5", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3e5", + "_tpl": "5c1bc7432e221602b412949d", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_true (30) [6185c4ef-fb7a-4869-bcd3-3eac96b94124]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -165.35498, + "y": -2.30840254, + "z": 29.28598 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f42b", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8044fa93c4c4b05f42a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 23 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3e7", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3e7", + "_tpl": "544a378f4bdc2d30388b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f3e8", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbb8044fa93c4c4b05f3e7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 36 + } } - } - ] - }, - { - "Id": "loot_mod_true (92) [3d8bb8e0-58f4-41f8-8937-36d00892c15c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.396, - "y": -5.20882368, - "z": -19.53888 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f42d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f42d", - "_tpl": "5b04473a5acfc40018632f70", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (33) [e83360f5-92de-4613-9979-c7e0b9073b00]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.521973, + "y": -2.42439985, + "z": 30.2459717 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3ea", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3ea", + "_tpl": "5c1cdd512e22161b267d91ae", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (92) [a49e0de8-da2b-4ec3-a71a-acc47d9f1193]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 192.448, - "y": 2.911, - "z": -256.322 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f42f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f42f", - "_tpl": "5b222d405acfc400153af4fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (34) [d294e9d3-98fc-4d9e-82ab-44692c16d2e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.43, + "y": -2.44139814, + "z": 30.7569885 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3ec", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3ec", + "_tpl": "646f62fee779812413011ab7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (92) [ca21868f-5a44-4cfd-b703-fcd47d5ed12e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -107.723267, - "y": 6.20400047, - "z": 97.98456 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f431", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f431", - "_tpl": "57ffb0062459777a045af529", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (37) [be453a37-7e10-489a-8a86-9e1847f2f701]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 79.2089844, + "y": -6.031, + "z": 60.125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3ee", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3ee", + "_tpl": "57ffb0e42459777d047111c5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (93) [6a5565c1-45f9-4547-9230-e9042390658b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 196.086, - "y": -5.714, - "z": -200.436981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f433", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f433", - "_tpl": "5b222d335acfc4771e1be099", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (4) [6e5e6b2f-4be6-41b8-b981-3d4db631d625]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -162.294, + "y": -8.209404, + "z": 72.4260254 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3f0", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3f0", + "_tpl": "5ac78eaf5acfc4001926317a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (93) [78e6fc17-dc85-4ae0-9993-32bd876a648e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.219, - "y": -5.20882368, - "z": -18.8288879 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f435", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f435", - "_tpl": "5c0505e00db834001b735073", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (40) [7e55f161-b291-4eff-a3af-6c4d80aa82c1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.659668, + "y": -8.33, + "z": 68.97095 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3f2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3f2", + "_tpl": "5b222d405acfc400153af4fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (94) [95b18b1b-94bb-4263-9e53-ea372c1b670b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.469, - "y": -5.20882368, - "z": -18.3098755 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f437", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f437", - "_tpl": "5c1bc7432e221602b412949d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (47) [9cbe5b4c-789c-4efe-b737-940665453cd5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -62.03882, + "y": 3.11142325, + "z": 15.8833008 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3f4", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3f4", + "_tpl": "5a9fc7e6a2750c0032157184", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (94) [c6d542d7-59d6-4dcf-af76-11794bf1a45c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 192.409973, - "y": 3.411, - "z": -256.841 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f439", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f439", - "_tpl": "57ffaea724597779f52b3a4d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (5) [d655e7d7-6f19-4962-99b0-f21425ea0cc1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -162.200989, + "y": -8.209404, + "z": 71.68201 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3f6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3f6", + "_tpl": "5c1bc5fb2e221602b1779b32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (95) [7f4a6172-e40e-47aa-aacb-2d9d10b4649d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 192.450989, - "y": 3.411, - "z": -256.599 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f43b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f43b", - "_tpl": "5c9a1c422e221600106f69f0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (54) [66a79bff-3be8-4e7d-8b9e-b8a0f756907b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -80.48328, + "y": -8.198, + "z": 83.44556 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3f8", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3f8", + "_tpl": "5649d9a14bdc2d79388b4580", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (95) [cd329ae8-4d77-408b-89a8-30fd6363b058]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 8.242554, - "y": -2.941081, - "z": -27.23758 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f43d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f43d", - "_tpl": "56e05b06d2720bb2668b4586", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (55) [d47fc36e-82bd-4be2-b26b-28d15ca8b2af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -124.202271, + "y": 3.16800022, + "z": 95.02356 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3fa", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3fa", + "_tpl": "5648ae314bdc2d3d1c8b457f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (96) [008aa040-6ea0-45e7-9cfa-df54beb40c96]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.273987, - "y": -5.20882368, - "z": -17.8888855 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f43f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f43f", - "_tpl": "5c4ee3d62e2216152006f302", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (56) [db2018fc-6393-4eba-a9de-ea6e8ceeb7ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -124.398254, + "y": 3.42300034, + "z": 94.14661 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3fc", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3fc", + "_tpl": "5b222d405acfc400153af4fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (96) [28f10a53-8e0d-4051-acc4-f7b1be662fb5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 198.273987, - "y": -5.729, - "z": -201.084991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f441", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f441", - "_tpl": "5c4ee3d62e2216152006f302", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (57) [5dcbc6f5-a862-478f-ad1c-236a9a3822b9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -124.30127, + "y": 3.42300034, + "z": 94.6105957 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f3fe", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f3fe", + "_tpl": "646f62fee779812413011ab7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (96) [7d9978ea-65d4-4995-9f4c-b8c82af96e87]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 7.489563, - "y": -2.941081, - "z": -27.2915649 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f443", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f443", - "_tpl": "5b222d405acfc400153af4fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (59) [f03d4377-8a4d-4de8-b7fc-7ae28853b4cf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -124.366272, + "y": 2.823, + "z": 94.2155762 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f400", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f400", + "_tpl": "5649d9a14bdc2d79388b4580", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (97) [4b156341-48c2-4586-bbac-ab2045775510]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -97.79529, - "y": 5.892, - "z": 93.19061 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f445", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f445", - "_tpl": "5beec8b20db834001961942a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (62) [5f148174-00e1-4d51-b212-ec3f9a8c0e2b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -127.207275, + "y": -2.64399958, + "z": 95.7616 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f402", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f402", + "_tpl": "55d485be4bdc2d962f8b456f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f403", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f402", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 21 + } } - } - ] - }, - { - "Id": "loot_mod_true (97) [57566293-1372-4493-9983-8ea1c5084823]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 197.888977, - "y": -5.729, - "z": -201.224 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f447", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f447", - "_tpl": "5c9a1c422e221600106f69f0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (63) [435c6507-7fab-4f2a-8b16-541d68ad8339]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 235.975952, + "y": -9.944, + "z": -3.26797485 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f405", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f405", + "_tpl": "593d489686f7745c6255d58a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (97) [59f05e4a-0fa0-41bf-8da1-2d4cb2f7d9e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 8.62854, - "y": -2.941081, - "z": -27.7235718 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f449", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f449", - "_tpl": "5c4eecc32e221602b412b440", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (63) [e6aea756-aa2e-4fbb-a3ba-5132da8ab0ac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -127.207275, + "y": -2.949, + "z": 95.7616 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f407", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f407", + "_tpl": "5947db3f86f77447880cf76f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (97) [ae50c3f7-e103-4c26-91ce-e86c220b6c05]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -155.103943, - "y": -5.15082359, - "z": -1.68685913 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f44b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f44b", - "_tpl": "57c69dd424597774c03b7bbc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (64) [4e0b51f2-1264-4bb1-afd1-12debace8840]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -127.2843, + "y": -2.949, + "z": 95.38556 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f409", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f409", + "_tpl": "59ecc3dd86f7746dc827481c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (98) [3efd8fb0-2db5-4cf4-b8c9-603319a896a7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 197.513, - "y": -5.729, - "z": -201.126984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f44d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f44d", - "_tpl": "5c1bc5fb2e221602b1779b32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (65) [e35f64eb-4609-44ba-8318-afe83d877dee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -127.2843, + "y": -2.323, + "z": 95.38556 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f40b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f40b", + "_tpl": "5a9fc7e6a2750c0032157184", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (99) [0e9d26f5-6fb8-4f10-9a4d-9417cb871fdb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -145.037964, - "y": -2.36782384, - "z": -5.431885 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f44f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f44f", - "_tpl": "5b86a0e586f7745b600ccb23", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (68) [2ab184c3-0c81-4e33-ae2d-51db8e36ba43]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 59.12799, + "y": -4.387, + "z": -100.300995 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f40d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f40d", + "_tpl": "57ffb0062459777a045af529", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (99) [e14c467d-3618-4190-b1f6-922582c11772]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -115.061279, - "y": 0.360000134, - "z": 93.68158 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f451", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f451", - "_tpl": "57ffaea724597779f52b3a4d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (69) [dff3531a-c765-4ae5-9fad-4479317ab95c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 59.0239868, + "y": -4.366, + "z": -100.491 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f40f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f40f", + "_tpl": "5c1cdd512e22161b267d91ae", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mod_true (99) [e9c20b91-1801-4470-9ab2-147e8e1093be]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 196.008, - "y": -5.762, - "z": -200.788 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f453", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f453", - "_tpl": "57ee59b42459771c7b045da5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (7) [5a492b1c-ec04-49d0-a43f-86f7304c0f8b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.924011, + "y": -8.316399, + "z": 68.83301 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f411", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f411", + "_tpl": "5b86a0e586f7745b600ccb23", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_money (10) [f5ae98a1-1cad-4462-a839-73be7344d101]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -51.0880127, - "y": -6.00499725, - "z": -28.3580017 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f455", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f455", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 75 + { + "Id": "loot_mod_true (73) [bb89f795-c904-4029-a57f-2b4261b7caa0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 70.66498, + "y": -4.528, + "z": -104.711975 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f413", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f413", + "_tpl": "5b04473a5acfc40018632f70", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_money (14) [62e8198b-86e8-430e-bf1f-d4e6df2b1ba1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -123.31, - "y": -2.66529274, - "z": 92.6069946 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f457", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f457", - "_tpl": "5d235b4d86f7742e017bc88a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (74) [81157243-deb7-4f0b-b4c6-c63087c92496]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -81.96625, + "y": -2.495, + "z": 82.96161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f415", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f415", + "_tpl": "5649d9a14bdc2d79388b4580", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_money [20832f53-c0cd-4078-a0f5-fde404785e8e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -70.54785, - "y": -9.812576, - "z": 22.2142944 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f459", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f459", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 46 + { + "Id": "loot_mod_true (76) [139e446a-7e19-4ed9-939d-4b36d7779023]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -96.04028, + "y": 6.31700039, + "z": 94.0905762 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f417", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f417", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_money [79df41ac-46ea-4823-8287-6f5d13fd71a5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -165.271667, - "y": 0.7819996, - "z": 35.9509277 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f45b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f45b", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 77 + { + "Id": "loot_mod_true (80) [a8e79733-2236-42dd-bf26-2c488ebc9b9b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -43.7589722, + "y": 18.805, + "z": 183.01001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f419", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f419", + "_tpl": "57d1519e24597714373db79d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f41a", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f419", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_paracord (1) [9b06733f-39e4-4fb5-b5c6-efa763f59f6b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 25.8410034, - "y": -6.298, - "z": -181.345978 - }, - "Rotation": { - "x": 0.0, - "y": 300.675049, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f45d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f45d", - "_tpl": "5c12688486f77426843c7d32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (82) [170d469a-3db8-4bcb-9a1c-b3fb7e8a6ba9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -121.283264, + "y": 6.28600025, + "z": 94.48358 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f41c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f41c", + "_tpl": "59ecc28286f7746d7a68aa8c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_paracord (16) [a3f43e1a-930c-49e6-b4db-7c4457adba1a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 12.9890137, - "y": -0.42, - "z": -20.46698 - }, - "Rotation": { - "x": 0.0, - "y": 300.675049, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f45f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f45f", - "_tpl": "5c12688486f77426843c7d32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (83) [d91cdb90-795a-4f10-b877-5bbde1843a0a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.781006, + "y": -4.183, + "z": 25.582 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f41e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f41e", + "_tpl": "593d490386f7745ee97a1555", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (1) [ac6458e5-7e87-4edb-a599-4a8227191c3b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.330017, - "y": -2.63940382, - "z": 33.2049866 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f462", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f462", - "_tpl": "5c1262a286f7743f8a69aab2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (84) [45aff8d6-9fd3-4fa6-ab71-449849f9ffd5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.093994, + "y": -4.183, + "z": 24.7870178 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f463", - "_tpl": "5c0d5e4486f77478390952fe", - "parentId": "66cbb8044fa93c4c4b05f462", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f420", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f420", + "_tpl": "593d493f86f7745e6b2ceb22", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (10) [7b2bc5b4-c0ae-47b4-bed6-9dcab8cba73b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -91.5586548, - "y": -9.321, - "z": 66.6109 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f466", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f466", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (88) [23860e25-22d7-420a-9f3a-d473d4579e70]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -96.0002441, + "y": 6.31700039, + "z": 94.70361 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f467", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f466", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f422", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f422", + "_tpl": "544a378f4bdc2d30388b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f423", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbb8044fa93c4c4b05f422", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 19 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (100) [790a0bf4-15e8-4cd8-9205-bad46bc47e4c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 160.640991, - "y": -6.361, - "z": -220.381989 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f46a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f46a", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (90) [5a2cfcf3-bfef-4704-bec4-15722c21d897]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -96.22424, + "y": 6.31700039, + "z": 94.1936 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f46b", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f46a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f425", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f425", + "_tpl": "5bed61680db834001d2c45ab", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f426", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f425", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (101) [0d8e9b4f-45ad-4f63-9ae0-aeb0d356c560]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.53259277, - "y": 0.275918961, - "z": -13.8585815 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f46e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f46e", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (91) [ca0b2545-fd32-4d18-a932-7d0f257536e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 195.096985, + "y": -5.705, + "z": -200.453 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f428", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f428", + "_tpl": "5c61a40d2e2216001403158d", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_true (92) [157239cc-fa63-48fa-a59d-bd08b59786c3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.538574, + "y": -2.951081, + "z": -3.08557129 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f46f", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8044fa93c4c4b05f46e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f42a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f42a", + "_tpl": "5bed61680db834001d2c45ab", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f42b", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8044fa93c4c4b05f42a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 23 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (101) [6b50a848-f8d4-4299-9492-12348b810ac0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -146.307983, - "y": -5.68382359, - "z": -17.244873 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f472", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f472", - "_tpl": "5737273924597765dd374461", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (92) [3d8bb8e0-58f4-41f8-8937-36d00892c15c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.396, + "y": -5.20882368, + "z": -19.53888 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f42d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f42d", + "_tpl": "5b04473a5acfc40018632f70", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_true (92) [a49e0de8-da2b-4ec3-a71a-acc47d9f1193]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 192.448, + "y": 2.911, + "z": -256.322 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f473", - "_tpl": "57371f8d24597761006c6a81", - "parentId": "66cbb8044fa93c4c4b05f472", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f42f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f42f", + "_tpl": "5b222d405acfc400153af4fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (103) [ddf1a5e9-1314-4915-b4c4-c1310e25b4d1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.86358643, - "y": 0.275918961, - "z": -14.3955688 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f476", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f476", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (92) [ca21868f-5a44-4cfd-b703-fcd47d5ed12e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -107.723267, + "y": 6.20400047, + "z": 97.98456 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f431", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f431", + "_tpl": "57ffb0062459777a045af529", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_true (93) [6a5565c1-45f9-4547-9230-e9042390658b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 196.086, + "y": -5.714, + "z": -200.436981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f477", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f476", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f433", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f433", + "_tpl": "5b222d335acfc4771e1be099", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (104) [4164b781-c904-4dab-89f3-24d1cd9f1c34]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 3.61755371, - "y": 0.275918961, - "z": -14.6365662 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f47a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f47a", - "_tpl": "5737280e24597765cc785b5c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mod_true (93) [78e6fc17-dc85-4ae0-9993-32bd876a648e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.219, + "y": -5.20882368, + "z": -18.8288879 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f435", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f435", + "_tpl": "5c0505e00db834001b735073", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_mod_true (94) [95b18b1b-94bb-4263-9e53-ea372c1b670b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.469, + "y": -5.20882368, + "z": -18.3098755 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f47b", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbb8044fa93c4c4b05f47a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f437", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f437", + "_tpl": "5c1bc7432e221602b412949d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (104) [656e3e55-775a-41db-96de-8fe019d03093]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -140.974, - "y": -2.17382383, - "z": -5.250885 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f47e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f47e", - "_tpl": "5c12619186f7743f871c8a32", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (94) [c6d542d7-59d6-4dcf-af76-11794bf1a45c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 192.409973, + "y": 3.411, + "z": -256.841 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f47f", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbb8044fa93c4c4b05f47e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f439", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f439", + "_tpl": "57ffaea724597779f52b3a4d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (104) [c9238e8f-f041-480a-9200-bff7f94b4eef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 157.612, - "y": -6.007, - "z": -221.381989 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f482", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f482", - "_tpl": "5737273924597765dd374461", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (95) [7f4a6172-e40e-47aa-aacb-2d9d10b4649d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 192.450989, + "y": 3.411, + "z": -256.599 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f483", - "_tpl": "57371f8d24597761006c6a81", - "parentId": "66cbb8044fa93c4c4b05f482", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f43b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f43b", + "_tpl": "5c9a1c422e221600106f69f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (109) [a85bbf7d-1132-406a-9202-9a23a0dfb5c7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -144.574951, - "y": -2.10782385, - "z": -17.3068848 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f486", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f486", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (95) [cd329ae8-4d77-408b-89a8-30fd6363b058]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 8.242554, + "y": -2.941081, + "z": -27.23758 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f487", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f486", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f43d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f43d", + "_tpl": "56e05b06d2720bb2668b4586", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (110) [264c49a8-c1f6-478b-9f87-f825cd85c12f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 45.4219971, - "y": -5.824, - "z": 63.6959839 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f48a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f48a", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (96) [008aa040-6ea0-45e7-9cfa-df54beb40c96]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.273987, + "y": -5.20882368, + "z": -17.8888855 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f48b", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f48a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f43f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f43f", + "_tpl": "5c4ee3d62e2216152006f302", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (111) [e45518d7-cef8-4b0c-b90d-c5a03081fd65]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 45.9119873, - "y": -5.824, - "z": 63.3040161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f48e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f48e", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (96) [28f10a53-8e0d-4051-acc4-f7b1be662fb5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 198.273987, + "y": -5.729, + "z": -201.084991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f48f", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f48e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f441", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f441", + "_tpl": "5c4ee3d62e2216152006f302", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (112) [d6cf7812-313a-4453-876b-b2403e8f40ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -123.231995, - "y": 2.873, - "z": 92.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f492", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f492", - "_tpl": "57372c89245977685d4159b1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (96) [7d9978ea-65d4-4995-9f4c-b8c82af96e87]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 7.489563, + "y": -2.941081, + "z": -27.2915649 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f493", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f492", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f443", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f443", + "_tpl": "5b222d405acfc400153af4fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (114) [dfbf43ba-5b23-4854-b9aa-c320cf16e469]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.138, - "y": 2.873, - "z": 92.25299 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f496", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f496", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (97) [4b156341-48c2-4586-bbac-ab2045775510]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -97.79529, + "y": 5.892, + "z": 93.19061 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f497", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f496", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f445", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f445", + "_tpl": "5beec8b20db834001961942a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (12) [10851c44-33a0-4552-96e2-9ddacc37c340]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -113.489624, - "y": -8.685, - "z": 94.37891 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f49a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f49a", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (97) [57566293-1372-4493-9983-8ea1c5084823]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 197.888977, + "y": -5.729, + "z": -201.224 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f49b", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8044fa93c4c4b05f49a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f447", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f447", + "_tpl": "5c9a1c422e221600106f69f0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (120) [fa6926d1-7d91-48ed-b0f2-0b44dec20785]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.48401, - "y": -3.533, - "z": 121.242004 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f49e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f49e", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (97) [59f05e4a-0fa0-41bf-8da1-2d4cb2f7d9e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 8.62854, + "y": -2.941081, + "z": -27.7235718 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f49f", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8044fa93c4c4b05f49e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f449", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f449", + "_tpl": "5c4eecc32e221602b412b440", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (121) [93b20386-070f-48d0-aed8-22db2df29b65]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -116.843994, - "y": -0.288823843, - "z": -22.526886 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4a2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4a2", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (97) [ae50c3f7-e103-4c26-91ce-e86c220b6c05]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -155.103943, + "y": -5.15082359, + "z": -1.68685913 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4a3", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f4a2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f44b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f44b", + "_tpl": "57c69dd424597774c03b7bbc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (122) [7d611fda-d269-419c-b487-f6ff219e55f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -56.552002, - "y": 3.297, - "z": 37.5010071 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4a6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4a6", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (98) [3efd8fb0-2db5-4cf4-b8c9-603319a896a7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 197.513, + "y": -5.729, + "z": -201.126984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4a7", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f4a6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f44d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f44d", + "_tpl": "5c1bc5fb2e221602b1779b32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (123) [57eeee3e-36e2-46fd-82e6-dd21ff932a00]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -55.1428223, - "y": -9.516577, - "z": 23.2062988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4aa", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4aa", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (99) [0e9d26f5-6fb8-4f10-9a4d-9417cb871fdb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -145.037964, + "y": -2.36782384, + "z": -5.431885 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4ab", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f4aa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f44f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f44f", + "_tpl": "5b86a0e586f7745b600ccb23", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (127) [84a00feb-c565-4a8b-80fd-3526c4a6d120]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.19702, - "y": 2.548, - "z": 6.12200928 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4ae", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4ae", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (99) [e14c467d-3618-4190-b1f6-922582c11772]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -115.061279, + "y": 0.360000134, + "z": 93.68158 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4af", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f4ae", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f451", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f451", + "_tpl": "57ffaea724597779f52b3a4d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (134) [e1330cf7-5f86-4ea1-81e1-11d964370a0c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -15.4920044, - "y": 26.772, - "z": 176.741028 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4b2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4b2", - "_tpl": "57372bd3245977670b7cd243", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_mod_true (99) [e9c20b91-1801-4470-9ab2-147e8e1093be]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 196.008, + "y": -5.762, + "z": -200.788 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4b3", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb8044fa93c4c4b05f4b2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f453", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f453", + "_tpl": "57ee59b42459771c7b045da5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (135) [7e4e61c1-565c-4638-9fad-599429691fc8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -15.6209717, - "y": 26.772, - "z": 176.28302 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4b6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4b6", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_money (10) [f5ae98a1-1cad-4462-a839-73be7344d101]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -51.0880127, + "y": -6.00499725, + "z": -28.3580017 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4b7", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8044fa93c4c4b05f4b6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f455", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f455", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 75 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (136) [b49cb422-6b40-4003-b948-524f096b84c4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -15.5139771, - "y": 26.772, - "z": 175.622986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4ba", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4ba", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_money (14) [62e8198b-86e8-430e-bf1f-d4e6df2b1ba1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -123.31, + "y": -2.66529274, + "z": 92.6069946 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4bb", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f4ba", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f457", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f457", + "_tpl": "5d235b4d86f7742e017bc88a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (137) [3c3c4439-0cbd-47ba-95ac-d4bb840658d4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -15.8560181, - "y": 26.772, - "z": 175.581 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4be", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4be", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_money [20832f53-c0cd-4078-a0f5-fde404785e8e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -70.54785, + "y": -9.812576, + "z": 22.2142944 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4bf", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f4be", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f459", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f459", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 46 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (14) [a12c2435-f3a8-4f7e-bed2-badd8effd377]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -51.5216064, - "y": -5.87400055, - "z": -40.1882 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4c2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4c2", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_money [79df41ac-46ea-4823-8287-6f5d13fd71a5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -165.271667, + "y": 0.7819996, + "z": 35.9509277 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4c3", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f4c2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f45b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f45b", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 77 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (14) [e23a7fae-db8f-40cb-807a-fc6e02354584]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 57.59198, - "y": -2.457, - "z": 103.730042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4c6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4c6", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_paracord (1) [9b06733f-39e4-4fb5-b5c6-efa763f59f6b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 25.8410034, + "y": -6.298, + "z": -181.345978 + }, + "Rotation": { + "x": 0.0, + "y": 300.675049, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4c7", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f4c6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f45d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f45d", + "_tpl": "5c12688486f77426843c7d32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (140) [82a68faa-f50c-4d13-9edf-286fc177a727]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.54199, - "y": -6.695, - "z": -127.687988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4cb", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4cb", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_paracord (16) [a3f43e1a-930c-49e6-b4db-7c4457adba1a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 12.9890137, + "y": -0.42, + "z": -20.46698 + }, + "Rotation": { + "x": 0.0, + "y": 300.675049, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f45f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f45f", + "_tpl": "5c12688486f77426843c7d32", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (1) [ac6458e5-7e87-4edb-a599-4a8227191c3b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.330017, + "y": -2.63940382, + "z": 33.2049866 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4cc", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f4cb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f462", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f462", + "_tpl": "5c1262a286f7743f8a69aab2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f463", + "_tpl": "5c0d5e4486f77478390952fe", + "parentId": "66cbb8044fa93c4c4b05f462", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (10) [7b2bc5b4-c0ae-47b4-bed6-9dcab8cba73b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -91.5586548, + "y": -9.321, + "z": 66.6109 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4cd", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f4cb", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f466", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f466", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f467", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f466", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (15) [144df5b8-bbc8-40bd-b8ae-e7c88b1c4e9a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -60.6560059, - "y": -6.191002, - "z": -32.4919739 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4d0", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4d0", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (100) [790a0bf4-15e8-4cd8-9205-bad46bc47e4c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 160.640991, + "y": -6.361, + "z": -220.381989 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4d1", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f4d0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f46a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f46a", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f46b", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f46a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (152) [0369a32f-0e78-49b9-bed6-5b22b310915b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -218.276978, - "y": -4.45733643, - "z": -72.94098 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4d4", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4d4", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (101) [0d8e9b4f-45ad-4f63-9ae0-aeb0d356c560]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.53259277, + "y": 0.275918961, + "z": -13.8585815 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4d5", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66cbb8044fa93c4c4b05f4d4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f46e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f46e", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f46f", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8044fa93c4c4b05f46e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (153) [c44b7c30-d36a-45dd-aeb1-8ffeb05bff0e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -218.547, - "y": -4.256, - "z": -72.2579956 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4d8", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4d8", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (101) [6b50a848-f8d4-4299-9492-12348b810ac0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -146.307983, + "y": -5.68382359, + "z": -17.244873 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4d9", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8044fa93c4c4b05f4d8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f472", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f472", + "_tpl": "5737273924597765dd374461", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f473", + "_tpl": "57371f8d24597761006c6a81", + "parentId": "66cbb8044fa93c4c4b05f472", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (156) [c8da178f-431e-4b33-89bb-21032dc51591]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -260.254028, - "y": -10.469, - "z": -67.431 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4dd", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4dd", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (103) [ddf1a5e9-1314-4915-b4c4-c1310e25b4d1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.86358643, + "y": 0.275918961, + "z": -14.3955688 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4de", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f4dd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f476", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f476", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f477", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f476", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (104) [4164b781-c904-4dab-89f3-24d1cd9f1c34]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 3.61755371, + "y": 0.275918961, + "z": -14.6365662 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4df", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f4dd", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f47a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f47a", + "_tpl": "5737280e24597765cc785b5c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f47b", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbb8044fa93c4c4b05f47a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (157) [0add89cf-a2c0-4d6d-b379-a03c7fd22deb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -259.192017, - "y": -10.292, - "z": -65.7479858 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4e2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4e2", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (104) [656e3e55-775a-41db-96de-8fe019d03093]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -140.974, + "y": -2.17382383, + "z": -5.250885 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4e3", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8044fa93c4c4b05f4e2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f47e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f47e", + "_tpl": "5c12619186f7743f871c8a32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f47f", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbb8044fa93c4c4b05f47e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (158) [392fb093-9a98-405b-ac0b-b76bff8aea7f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -259.893982, - "y": -10.143, - "z": -66.3929749 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4e6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4e6", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (104) [c9238e8f-f041-480a-9200-bff7f94b4eef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 157.612, + "y": -6.007, + "z": -221.381989 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4e7", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f4e6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f482", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f482", + "_tpl": "5737273924597765dd374461", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f483", + "_tpl": "57371f8d24597761006c6a81", + "parentId": "66cbb8044fa93c4c4b05f482", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (159) [3010495d-03a0-49ad-bfad-44833c8bbb94]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -257.26, - "y": -10.512, - "z": -69.905 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4ea", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4ea", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (109) [a85bbf7d-1132-406a-9202-9a23a0dfb5c7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -144.574951, + "y": -2.10782385, + "z": -17.3068848 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4eb", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f4ea", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f486", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f486", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f487", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f486", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (16) [09544005-7393-40df-9b64-80f9b8bdec4e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.1129761, - "y": -2.956, - "z": 103.924988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4ee", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4ee", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (110) [264c49a8-c1f6-478b-9f87-f825cd85c12f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 45.4219971, + "y": -5.824, + "z": 63.6959839 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4ef", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8044fa93c4c4b05f4ee", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f48a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f48a", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f48b", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f48a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (169) [754b983c-1c23-44be-bb53-d0367cb4b5ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 40.92102, - "y": -5.465, - "z": -177.233 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4f2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4f2", - "_tpl": "5737280e24597765cc785b5c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (111) [e45518d7-cef8-4b0c-b90d-c5a03081fd65]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 45.9119873, + "y": -5.824, + "z": 63.3040161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4f3", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbb8044fa93c4c4b05f4f2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f48e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f48e", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f48f", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f48e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (17) [02cdad67-f2f2-4909-b001-ee799e51bed9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.4299927, - "y": -2.956, - "z": 103.965027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4f6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4f6", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (112) [d6cf7812-313a-4453-876b-b2403e8f40ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -123.231995, + "y": 2.873, + "z": 92.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4f7", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8044fa93c4c4b05f4f6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f492", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f492", + "_tpl": "57372c89245977685d4159b1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f493", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f492", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (173) [39a4cedd-acb7-447e-aebe-05b95b4781f0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -86.513, - "y": -6.428, - "z": -38.19998 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4fa", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4fa", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (114) [dfbf43ba-5b23-4854-b9aa-c320cf16e469]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.138, + "y": 2.873, + "z": 92.25299 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f4fb", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f4fa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f496", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f496", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f497", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f496", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (176) [36658e1a-e5e2-4d08-92be-f8168bf28cfc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -85.84601, - "y": -6.355, - "z": -38.48999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f4ff", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f4ff", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (12) [10851c44-33a0-4552-96e2-9ddacc37c340]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -113.489624, + "y": -8.685, + "z": 94.37891 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f500", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f4ff", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f49a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f49a", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f49b", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8044fa93c4c4b05f49a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (120) [fa6926d1-7d91-48ed-b0f2-0b44dec20785]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.48401, + "y": -3.533, + "z": 121.242004 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f501", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f4ff", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f49e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f49e", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f49f", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8044fa93c4c4b05f49e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (180) [f0f5c168-6f7a-4849-b52f-22c04fd170aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -52.3079834, - "y": -9.717, - "z": -27.92099 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f505", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f505", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_rf_ammo_true (121) [93b20386-070f-48d0-aed8-22db2df29b65]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -116.843994, + "y": -0.288823843, + "z": -22.526886 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4a2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4a2", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4a3", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f4a2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (122) [7d611fda-d269-419c-b487-f6ff219e55f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -56.552002, + "y": 3.297, + "z": 37.5010071 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f506", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f505", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4a6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4a6", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4a7", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f4a6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (123) [57eeee3e-36e2-46fd-82e6-dd21ff932a00]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -55.1428223, + "y": -9.516577, + "z": 23.2062988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f507", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f505", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4aa", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4aa", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4ab", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f4aa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (186) [d15a50d8-25a7-4653-b638-5e6ea40b499c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -137.937988, - "y": -13.514, - "z": 36.858 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f50a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f50a", - "_tpl": "5c12619186f7743f871c8a32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_rf_ammo_true (127) [84a00feb-c565-4a8b-80fd-3526c4a6d120]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.19702, + "y": 2.548, + "z": 6.12200928 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4ae", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4ae", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4af", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f4ae", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (134) [e1330cf7-5f86-4ea1-81e1-11d964370a0c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -15.4920044, + "y": 26.772, + "z": 176.741028 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f50b", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbb8044fa93c4c4b05f50a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4b2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4b2", + "_tpl": "57372bd3245977670b7cd243", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4b3", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb8044fa93c4c4b05f4b2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (188) [998694fd-e728-46e5-8f66-818f9c24fb6d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -137.932983, - "y": -13.514, - "z": 37.3050232 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f50e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f50e", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (135) [7e4e61c1-565c-4638-9fad-599429691fc8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -15.6209717, + "y": 26.772, + "z": 176.28302 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f50f", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f50e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4b6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4b6", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4b7", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8044fa93c4c4b05f4b6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (19) [4aea6db6-cb09-4781-a1cd-2fd4f648dc0e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.82587, - "y": 0.3284233, - "z": 30.2612915 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f512", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f512", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (136) [b49cb422-6b40-4003-b948-524f096b84c4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -15.5139771, + "y": 26.772, + "z": 175.622986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f513", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f512", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4ba", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4ba", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4bb", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f4ba", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (19) [50b33af8-096c-4b3c-83ce-f6b497cafa3e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -61.4890137, - "y": -3.13800049, - "z": -26.2109985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f516", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f516", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (137) [3c3c4439-0cbd-47ba-95ac-d4bb840658d4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -15.8560181, + "y": 26.772, + "z": 175.581 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f517", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8044fa93c4c4b05f516", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4be", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4be", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4bf", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f4be", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (194) [edcf756a-e8dd-488f-8576-a7770a0ee28e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -137.767029, - "y": -14.296, - "z": 37.1520081 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f51a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f51a", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (14) [a12c2435-f3a8-4f7e-bed2-badd8effd377]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -51.5216064, + "y": -5.87400055, + "z": -40.1882 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f51b", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f51a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4c2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4c2", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4c3", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f4c2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (21) [68557611-1648-41d3-b111-396d809f275c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -152.415649, - "y": 6.17899942, - "z": 70.763916 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f51e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f51e", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (14) [e23a7fae-db8f-40cb-807a-fc6e02354584]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 57.59198, + "y": -2.457, + "z": 103.730042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f51f", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8044fa93c4c4b05f51e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4c6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4c6", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4c7", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f4c6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (21) [a25f37b7-a2bc-4691-92fa-6811babb62fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.50781, - "y": 0.279423267, - "z": 31.2012939 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f522", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f522", - "_tpl": "5649ed104bdc2d3d1c8b458b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (140) [82a68faa-f50c-4d13-9edf-286fc177a727]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.54199, + "y": -6.695, + "z": -127.687988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f523", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb8044fa93c4c4b05f522", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4cb", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4cb", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4cc", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f4cb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4cd", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f4cb", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (22) [418adbb8-bcc0-43ea-98df-432ac4298341]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -51.2816162, - "y": -3.10479045, - "z": -32.07019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f526", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f526", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (15) [144df5b8-bbc8-40bd-b8ae-e7c88b1c4e9a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -60.6560059, + "y": -6.191002, + "z": -32.4919739 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f527", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f526", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4d0", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4d0", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4d1", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f4d0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (22) [7b9b085b-1086-4d86-b920-e3045c13b3cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -152.556641, - "y": 6.17899942, - "z": 70.0119 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f52a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f52a", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (152) [0369a32f-0e78-49b9-bed6-5b22b310915b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -218.276978, + "y": -4.45733643, + "z": -72.94098 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f52b", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f52a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4d4", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4d4", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4d5", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66cbb8044fa93c4c4b05f4d4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (23) [7985f1fa-717b-48f3-836c-e716e1f4cda9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -73.53882, - "y": 0.499423265, - "z": 16.0332947 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f52e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f52e", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (153) [c44b7c30-d36a-45dd-aeb1-8ffeb05bff0e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -218.547, + "y": -4.256, + "z": -72.2579956 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f52f", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f52e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4d8", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4d8", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4d9", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8044fa93c4c4b05f4d8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (25) [2c5c7f76-7fd0-4908-ada3-3dc8938a5c9c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 79.18402, - "y": -5.736, - "z": 66.54999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f532", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f532", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (156) [c8da178f-431e-4b33-89bb-21032dc51591]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -260.254028, + "y": -10.469, + "z": -67.431 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f533", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66cbb8044fa93c4c4b05f532", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4dd", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4dd", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4de", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f4dd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4df", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f4dd", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (26) [74371527-140f-41f1-8323-4ec06b9315da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.152649, - "y": 5.339, - "z": 29.8509216 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f536", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f536", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (157) [0add89cf-a2c0-4d6d-b379-a03c7fd22deb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -259.192017, + "y": -10.292, + "z": -65.7479858 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f537", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8044fa93c4c4b05f536", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4e2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4e2", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4e3", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8044fa93c4c4b05f4e2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (28) [30a89ee4-185d-4b65-a8a8-c9958d27d83e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -82.20599, - "y": 0.542999268, - "z": -25.8280029 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f53a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f53a", - "_tpl": "5737287724597765e1625ae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (158) [392fb093-9a98-405b-ac0b-b76bff8aea7f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -259.893982, + "y": -10.143, + "z": -66.3929749 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f53b", - "_tpl": "573720e02459776143012541", - "parentId": "66cbb8044fa93c4c4b05f53a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4e6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4e6", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4e7", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f4e6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (29) [6e1dbe14-089e-4906-84fc-5c11d9dc97fb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -165.292664, - "y": 5.339, - "z": 29.8269348 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f53e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f53e", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (159) [3010495d-03a0-49ad-bfad-44833c8bbb94]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -257.26, + "y": -10.512, + "z": -69.905 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f53f", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f53e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4ea", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4ea", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4eb", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f4ea", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (30) [4f8d5f3a-3ec9-40b3-9af4-e66ede31a596]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -53.9248657, - "y": 5.288423, - "z": 24.2572937 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f542", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f542", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (16) [09544005-7393-40df-9b64-80f9b8bdec4e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.1129761, + "y": -2.956, + "z": 103.924988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f543", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f542", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4ee", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4ee", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4ef", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8044fa93c4c4b05f4ee", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (30) [938728d3-6e3d-4a78-9d0d-f02414784e52]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -81.513, - "y": 0.5220032, - "z": -26.1669922 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f546", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f546", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (169) [754b983c-1c23-44be-bb53-d0367cb4b5ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 40.92102, + "y": -5.465, + "z": -177.233 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f547", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f546", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4f2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4f2", + "_tpl": "5737280e24597765cc785b5c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4f3", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbb8044fa93c4c4b05f4f2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (31) [567b0d1b-13d7-4a81-a5bc-e5b844556241]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -53.914856, - "y": 5.288423, - "z": 23.8583069 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f54a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f54a", - "_tpl": "5c1262a286f7743f8a69aab2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (17) [02cdad67-f2f2-4909-b001-ee799e51bed9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.4299927, + "y": -2.956, + "z": 103.965027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f54b", - "_tpl": "5c0d5e4486f77478390952fe", - "parentId": "66cbb8044fa93c4c4b05f54a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4f6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4f6", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4f7", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8044fa93c4c4b05f4f6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (32) [cbf0520f-fffd-45d9-827e-3ecfe6574577]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -158.919678, - "y": 5.971, - "z": 55.8359375 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f54e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f54e", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (173) [39a4cedd-acb7-447e-aebe-05b95b4781f0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -86.513, + "y": -6.428, + "z": -38.19998 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f54f", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8044fa93c4c4b05f54e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4fa", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4fa", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f4fb", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f4fa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (32) [d2e93178-2828-47b6-ae5b-d582fee2dec0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -90.14526, - "y": -8.439, - "z": 92.58356 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f553", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f553", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (176) [36658e1a-e5e2-4d08-92be-f8168bf28cfc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -85.84601, + "y": -6.355, + "z": -38.48999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f554", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f553", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f4ff", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f4ff", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f500", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f4ff", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f501", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f4ff", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (180) [f0f5c168-6f7a-4849-b52f-22c04fd170aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -52.3079834, + "y": -9.717, + "z": -27.92099 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f555", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f553", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f505", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f505", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f506", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f505", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f507", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f505", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (33) [e8e30918-6d87-459a-8ebf-2fa4e7ee1242]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -158.804626, - "y": 5.971, - "z": 55.3359375 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f558", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f558", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (186) [d15a50d8-25a7-4653-b638-5e6ea40b499c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -137.937988, + "y": -13.514, + "z": 36.858 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f559", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f558", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f50a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f50a", + "_tpl": "5c12619186f7743f871c8a32", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f50b", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbb8044fa93c4c4b05f50a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (34) [75bd1d90-1312-438c-9bef-35895b47e89d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -90.71802, - "y": -8.007296, - "z": 94.0180054 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f55c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f55c", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (188) [998694fd-e728-46e5-8f66-818f9c24fb6d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -137.932983, + "y": -13.514, + "z": 37.3050232 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f55d", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f55c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f50e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f50e", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f50f", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f50e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (35) [376f0601-4e3c-4044-8ff0-59d9bf745bea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -63.53784, - "y": 3.16642332, - "z": 29.55429 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f561", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f561", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (19) [4aea6db6-cb09-4781-a1cd-2fd4f648dc0e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.82587, + "y": 0.3284233, + "z": 30.2612915 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f562", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f561", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f512", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f512", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f513", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f512", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (19) [50b33af8-096c-4b3c-83ce-f6b497cafa3e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -61.4890137, + "y": -3.13800049, + "z": -26.2109985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f563", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f561", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f516", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f516", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f517", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8044fa93c4c4b05f516", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (35) [de5450d7-ddf5-4d0c-ac03-02cafac90e84]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -8.965027, - "y": -6.972, - "z": -15.9119873 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f567", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f567", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (194) [edcf756a-e8dd-488f-8576-a7770a0ee28e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -137.767029, + "y": -14.296, + "z": 37.1520081 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f568", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f567", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f51a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f51a", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f51b", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f51a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (21) [68557611-1648-41d3-b111-396d809f275c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -152.415649, + "y": 6.17899942, + "z": 70.763916 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f569", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f567", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f51e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f51e", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f51f", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8044fa93c4c4b05f51e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (37) [217f0ffb-af1a-44f9-a9c5-3705397e761c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.650269, - "y": 3.1420002, - "z": 91.5426 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f56c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f56c", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (21) [a25f37b7-a2bc-4691-92fa-6811babb62fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.50781, + "y": 0.279423267, + "z": 31.2012939 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f56d", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f56c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f522", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f522", + "_tpl": "5649ed104bdc2d3d1c8b458b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f523", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb8044fa93c4c4b05f522", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (37) [b360443a-6b72-446f-80cb-88ea3085082e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.077026, - "y": -6.972, - "z": -17.2639771 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f570", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f570", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (22) [418adbb8-bcc0-43ea-98df-432ac4298341]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -51.2816162, + "y": -3.10479045, + "z": -32.07019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f571", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8044fa93c4c4b05f570", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f526", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f526", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f527", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f526", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (37) [d42b5ff9-7b57-4bcb-9563-db46c7639cfe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.42084, - "y": 3.16642332, - "z": 29.3132935 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f574", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f574", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (22) [7b9b085b-1086-4d86-b920-e3045c13b3cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -152.556641, + "y": 6.17899942, + "z": 70.0119 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f575", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f574", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f52a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f52a", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f52b", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f52a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (38) [11037fe6-4f25-400f-941b-1ee2f9c63d6b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -7.12902832, - "y": -5.973, - "z": -14.848999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f579", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f579", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (23) [7985f1fa-717b-48f3-836c-e716e1f4cda9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -73.53882, + "y": 0.499423265, + "z": 16.0332947 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f57a", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f579", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f52e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f52e", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f52f", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f52e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (25) [2c5c7f76-7fd0-4908-ada3-3dc8938a5c9c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 79.18402, + "y": -5.736, + "z": 66.54999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f57b", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f579", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f532", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f532", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f533", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66cbb8044fa93c4c4b05f532", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (39) [ecabb04a-b64f-4fc9-bf03-a2cfe85688d4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.38086, - "y": 2.55242324, - "z": 31.6112976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f57e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f57e", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (26) [74371527-140f-41f1-8323-4ec06b9315da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.152649, + "y": 5.339, + "z": 29.8509216 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f57f", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f57e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f536", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f536", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f537", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8044fa93c4c4b05f536", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (4) [c7b29590-ed42-4ae2-b28d-c95e4994969e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -154.536682, - "y": 6.291, - "z": 72.796936 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f582", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f582", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (28) [30a89ee4-185d-4b65-a8a8-c9958d27d83e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -82.20599, + "y": 0.542999268, + "z": -25.8280029 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f583", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f582", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f53a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f53a", + "_tpl": "5737287724597765e1625ae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f53b", + "_tpl": "573720e02459776143012541", + "parentId": "66cbb8044fa93c4c4b05f53a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (41) [f9b0792c-a358-4068-9003-1720194f4ab1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.01782, - "y": 2.55242324, - "z": 31.3812866 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f586", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f586", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (29) [6e1dbe14-089e-4906-84fc-5c11d9dc97fb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -165.292664, + "y": 5.339, + "z": 29.8269348 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f587", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8044fa93c4c4b05f586", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f53e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f53e", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f53f", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f53e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (43) [3c814979-699a-4321-87b6-3ee920c9fd6a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.83386, - "y": 3.63242316, - "z": 13.3812866 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f58a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f58a", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_rf_ammo_true (30) [4f8d5f3a-3ec9-40b3-9af4-e66ede31a596]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -53.9248657, + "y": 5.288423, + "z": 24.2572937 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f542", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f542", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f543", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f542", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (30) [938728d3-6e3d-4a78-9d0d-f02414784e52]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -81.513, + "y": 0.5220032, + "z": -26.1669922 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f58b", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8044fa93c4c4b05f58a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f546", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f546", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f547", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f546", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (43) [5fc3501e-48aa-41ea-91e5-7f73e29a1ddf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -124.333252, - "y": -2.65099955, - "z": 94.22461 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f58e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f58e", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (31) [567b0d1b-13d7-4a81-a5bc-e5b844556241]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -53.914856, + "y": 5.288423, + "z": 23.8583069 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f58f", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f58e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f54a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f54a", + "_tpl": "5c1262a286f7743f8a69aab2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f54b", + "_tpl": "5c0d5e4486f77478390952fe", + "parentId": "66cbb8044fa93c4c4b05f54a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (44) [36ce855a-1b50-48fa-91ba-9a908c1d9283]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.7998657, - "y": 2.6154232, - "z": 11.8682861 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f592", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f592", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (32) [cbf0520f-fffd-45d9-827e-3ecfe6574577]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -158.919678, + "y": 5.971, + "z": 55.8359375 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f593", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f592", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f54e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f54e", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f54f", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8044fa93c4c4b05f54e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (45) [8e5617a7-7d07-402a-ab6e-6d1cb66f3980]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -124.316284, - "y": -2.35899973, - "z": 94.65161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f596", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f596", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (32) [d2e93178-2828-47b6-ae5b-d582fee2dec0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -90.14526, + "y": -8.439, + "z": 92.58356 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f597", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8044fa93c4c4b05f596", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f553", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f553", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f554", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f553", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f555", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f553", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (46) [48529878-36fd-4452-9bcf-2550e2dcb99e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.47687, - "y": 3.46542335, - "z": 12.7073059 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f59a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f59a", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (33) [e8e30918-6d87-459a-8ebf-2fa4e7ee1242]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -158.804626, + "y": 5.971, + "z": 55.3359375 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f59b", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8044fa93c4c4b05f59a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f558", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f558", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f559", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f558", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (46) [50e5e623-5b1a-4380-a0f4-16d4e1192d15]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -124.14325, - "y": -2.35899973, - "z": 95.206604 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f59e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f59e", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (34) [75bd1d90-1312-438c-9bef-35895b47e89d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -90.71802, + "y": -8.007296, + "z": 94.0180054 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f59f", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8044fa93c4c4b05f59e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f55c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f55c", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f55d", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f55c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (47) [28ebaf5f-cb3d-4a3d-a941-794157daeb89]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.5423, - "y": -2.85299969, - "z": 63.4295654 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5a2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5a2", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (35) [376f0601-4e3c-4044-8ff0-59d9bf745bea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -63.53784, + "y": 3.16642332, + "z": 29.55429 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5a3", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f5a2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f561", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f561", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f562", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f561", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f563", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f561", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (47) [cd67f769-ce7e-4387-a72b-4aeb14ad74cf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -15.85199, - "y": -6.849083, - "z": -8.065002 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5a6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5a6", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (35) [de5450d7-ddf5-4d0c-ac03-02cafac90e84]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -8.965027, + "y": -6.972, + "z": -15.9119873 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5a7", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f5a6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f567", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f567", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f568", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f567", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f569", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f567", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (48) [496cbae8-3c76-4545-a43a-e078b962ff3f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -15.6010132, - "y": -6.849083, - "z": -7.29299927 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5aa", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5aa", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (37) [217f0ffb-af1a-44f9-a9c5-3705397e761c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.650269, + "y": 3.1420002, + "z": 91.5426 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5ab", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f5aa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f56c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f56c", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f56d", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f56c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (49) [959238ee-8ada-4f2d-9d51-dbb38004e1d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -15.3670044, - "y": -6.334, - "z": -4.095978 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5ae", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5ae", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (37) [b360443a-6b72-446f-80cb-88ea3085082e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.077026, + "y": -6.972, + "z": -17.2639771 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5af", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8044fa93c4c4b05f5ae", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f570", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f570", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f571", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8044fa93c4c4b05f570", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (49) [9c86bddd-6957-4b2d-9391-e140f8cf6da5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.761292, - "y": -3.10599971, - "z": 62.8695679 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5b2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5b2", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (37) [d42b5ff9-7b57-4bcb-9563-db46c7639cfe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.42084, + "y": 3.16642332, + "z": 29.3132935 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5b3", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8044fa93c4c4b05f5b2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f574", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f574", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f575", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f574", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (49) [eae038c5-7dc2-4b14-b9eb-0cc6016a427e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -62.41986, - "y": 3.30842328, - "z": 9.614288 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5b6", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5b6", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (38) [11037fe6-4f25-400f-941b-1ee2f9c63d6b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -7.12902832, + "y": -5.973, + "z": -14.848999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5b7", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f5b6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f579", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f579", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f57a", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f579", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f57b", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f579", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (50) [9a9e74f5-2ce9-4f43-b91b-5ec7da398df6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -61.79486, - "y": 3.19042325, - "z": 9.3203125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5bb", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5bb", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (39) [ecabb04a-b64f-4fc9-bf03-a2cfe85688d4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.38086, + "y": 2.55242324, + "z": 31.6112976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5bc", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f5bb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f57e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f57e", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f57f", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f57e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (4) [c7b29590-ed42-4ae2-b28d-c95e4994969e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -154.536682, + "y": 6.291, + "z": 72.796936 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5bd", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f5bb", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f582", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f582", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f583", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f582", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (52) [87eb2331-3168-429d-99dd-6d967bfbaa89]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.61786, - "y": 3.13242316, - "z": 27.1882935 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5c0", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5c0", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (41) [f9b0792c-a358-4068-9003-1720194f4ab1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.01782, + "y": 2.55242324, + "z": 31.3812866 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5c1", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f5c0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f586", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f586", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f587", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8044fa93c4c4b05f586", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (52) [feb87e94-5352-4723-8cd0-3e7f2b5817b2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.144287, - "y": -2.98199987, - "z": 63.2196045 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5c4", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5c4", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (43) [3c814979-699a-4321-87b6-3ee920c9fd6a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.83386, + "y": 3.63242316, + "z": 13.3812866 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5c5", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f5c4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f58a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f58a", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f58b", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8044fa93c4c4b05f58a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (53) [b3ef382f-b184-4226-9987-8c58aa7f0b8c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -163.83429, - "y": 2.7140007, - "z": 31.80957 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5c9", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5c9", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_rf_ammo_true (43) [5fc3501e-48aa-41ea-91e5-7f73e29a1ddf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -124.333252, + "y": -2.65099955, + "z": 94.22461 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f58e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f58e", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f58f", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f58e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (44) [36ce855a-1b50-48fa-91ba-9a908c1d9283]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.7998657, + "y": 2.6154232, + "z": 11.8682861 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5ca", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f5c9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f592", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f592", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f593", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f592", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (45) [8e5617a7-7d07-402a-ab6e-6d1cb66f3980]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -124.316284, + "y": -2.35899973, + "z": 94.65161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5cb", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f5c9", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f596", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f596", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f597", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8044fa93c4c4b05f596", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (53) [de3d153b-7fad-4ff9-914c-8b7f7d19edf0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.39282, - "y": 3.20042324, - "z": 26.4902954 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5ce", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5ce", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (46) [48529878-36fd-4452-9bcf-2550e2dcb99e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.47687, + "y": 3.46542335, + "z": 12.7073059 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5cf", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f5ce", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f59a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f59a", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f59b", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8044fa93c4c4b05f59a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (54) [1f9ac32f-66b8-4f25-93cc-ece0ea4dd8e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -65.44086, - "y": 3.19542336, - "z": 26.97229 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5d3", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5d3", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (46) [50e5e623-5b1a-4380-a0f4-16d4e1192d15]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -124.14325, + "y": -2.35899973, + "z": 95.206604 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5d4", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f5d3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f59e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f59e", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f59f", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8044fa93c4c4b05f59e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (47) [28ebaf5f-cb3d-4a3d-a941-794157daeb89]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.5423, + "y": -2.85299969, + "z": 63.4295654 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5d5", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f5d3", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5a2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5a2", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5a3", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f5a2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (55) [542fb907-69b3-4e24-9899-3ec59bb12436]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -65.5008545, - "y": 3.20742321, - "z": 26.6653137 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5d8", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5d8", - "_tpl": "5737273924597765dd374461", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (47) [cd67f769-ce7e-4387-a72b-4aeb14ad74cf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -15.85199, + "y": -6.849083, + "z": -8.065002 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5d9", - "_tpl": "57371f8d24597761006c6a81", - "parentId": "66cbb8044fa93c4c4b05f5d8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5a6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5a6", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5a7", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f5a6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (55) [b2bf6882-208c-4515-804f-d52fd80c1ca5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -28.6569824, - "y": -5.875, - "z": -23.1029968 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5dc", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5dc", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (48) [496cbae8-3c76-4545-a43a-e078b962ff3f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -15.6010132, + "y": -6.849083, + "z": -7.29299927 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5dd", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f5dc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5aa", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5aa", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5ab", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f5aa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (56) [7f215b6a-c72d-40b5-b768-2aa7d5dac5a0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -71.263855, - "y": 0.210423291, - "z": 18.5403137 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5e0", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5e0", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (49) [959238ee-8ada-4f2d-9d51-dbb38004e1d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -15.3670044, + "y": -6.334, + "z": -4.095978 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5e1", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f5e0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5ae", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5ae", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5af", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8044fa93c4c4b05f5ae", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (57) [82f1d3df-3e6a-49e0-9baf-49582e4dc6f2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -118.82428, - "y": -2.27399969, - "z": 97.508606 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5e5", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5e5", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (49) [9c86bddd-6957-4b2d-9391-e140f8cf6da5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.761292, + "y": -3.10599971, + "z": 62.8695679 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5e6", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f5e5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5b2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5b2", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5b3", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8044fa93c4c4b05f5b2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (49) [eae038c5-7dc2-4b14-b9eb-0cc6016a427e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -62.41986, + "y": 3.30842328, + "z": 9.614288 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5e7", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f5e5", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5b6", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5b6", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5b7", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f5b6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (58) [09496086-e52a-4637-a5b5-93e2f6478950]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -27.7559814, - "y": -6.619, - "z": -22.1519775 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5ea", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5ea", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (50) [9a9e74f5-2ce9-4f43-b91b-5ec7da398df6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -61.79486, + "y": 3.19042325, + "z": 9.3203125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5eb", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66cbb8044fa93c4c4b05f5ea", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5bb", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5bb", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5bc", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f5bb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5bd", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f5bb", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (60) [77ab5e40-b07f-4088-8eb2-738972f22edb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -28.3330078, - "y": -6.768, - "z": -19.82898 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5ee", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5ee", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (52) [87eb2331-3168-429d-99dd-6d967bfbaa89]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.61786, + "y": 3.13242316, + "z": 27.1882935 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5ef", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8044fa93c4c4b05f5ee", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5c0", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5c0", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5c1", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f5c0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (60) [b0918ea8-729b-49b8-bbbd-4e9c7d20c4c1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -103.877258, - "y": -2.92099977, - "z": 95.13257 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5f2", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5f2", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (52) [feb87e94-5352-4723-8cd0-3e7f2b5817b2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.144287, + "y": -2.98199987, + "z": 63.2196045 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5f3", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f5f2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5c4", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5c4", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5c5", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f5c4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (61) [6aab9f39-4e4c-4dbb-983e-e891b3fae260]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -69.42084, - "y": -0.09157672, - "z": 21.1893 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5f7", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5f7", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (53) [b3ef382f-b184-4226-9987-8c58aa7f0b8c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -163.83429, + "y": 2.7140007, + "z": 31.80957 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5f8", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8044fa93c4c4b05f5f7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5c9", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5c9", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5ca", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f5c9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5cb", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f5c9", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (53) [de3d153b-7fad-4ff9-914c-8b7f7d19edf0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.39282, + "y": 3.20042324, + "z": 26.4902954 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5f9", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8044fa93c4c4b05f5f7", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5ce", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5ce", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5cf", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f5ce", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (61) [aec081f9-859b-442c-a8aa-7017048ae7c4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -27.91101, - "y": -6.768, - "z": -19.931 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f5fc", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f5fc", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (54) [1f9ac32f-66b8-4f25-93cc-ece0ea4dd8e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -65.44086, + "y": 3.19542336, + "z": 26.97229 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f5fd", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f5fc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5d3", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5d3", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5d4", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f5d3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5d5", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f5d3", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (62) [49b94606-af12-4a4f-b666-d29d06c970da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -1.87200928, - "y": -5.828, - "z": -3.29797363 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f600", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f600", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (55) [542fb907-69b3-4e24-9899-3ec59bb12436]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -65.5008545, + "y": 3.20742321, + "z": 26.6653137 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f601", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb8044fa93c4c4b05f600", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5d8", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5d8", + "_tpl": "5737273924597765dd374461", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5d9", + "_tpl": "57371f8d24597761006c6a81", + "parentId": "66cbb8044fa93c4c4b05f5d8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (64) [8feea1ce-ef5f-47bb-993e-d365177356f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 25.9780273, - "y": -5.916, - "z": 40.51599 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f605", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f605", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_rf_ammo_true (55) [b2bf6882-208c-4515-804f-d52fd80c1ca5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -28.6569824, + "y": -5.875, + "z": -23.1029968 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5dc", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5dc", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5dd", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f5dc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (56) [7f215b6a-c72d-40b5-b768-2aa7d5dac5a0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -71.263855, + "y": 0.210423291, + "z": 18.5403137 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f606", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f605", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5e0", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5e0", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5e1", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f5e0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (57) [82f1d3df-3e6a-49e0-9baf-49582e4dc6f2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -118.82428, + "y": -2.27399969, + "z": 97.508606 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f607", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f605", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5e5", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5e5", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5e6", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f5e5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5e7", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f5e5", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (65) [8de2790a-c6c5-4740-be45-07fe4a6fc69d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.2689819, - "y": -5.923, - "z": 40.99701 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f60a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f60a", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (58) [09496086-e52a-4637-a5b5-93e2f6478950]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -27.7559814, + "y": -6.619, + "z": -22.1519775 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f60b", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f60a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5ea", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5ea", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5eb", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66cbb8044fa93c4c4b05f5ea", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (66) [370ea5c4-c207-4ee8-8847-e67d7c43d13b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 70.5150146, - "y": -3.805, - "z": -123.35199 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f60e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f60e", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (60) [77ab5e40-b07f-4088-8eb2-738972f22edb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -28.3330078, + "y": -6.768, + "z": -19.82898 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f60f", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f60e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5ee", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5ee", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5ef", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8044fa93c4c4b05f5ee", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (66) [ad521506-9283-432d-ac8d-93fb30b41a95]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -100.06427, - "y": 0.414000034, - "z": 97.12457 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f612", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f612", - "_tpl": "5737280e24597765cc785b5c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (60) [b0918ea8-729b-49b8-bbbd-4e9c7d20c4c1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -103.877258, + "y": -2.92099977, + "z": 95.13257 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f613", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbb8044fa93c4c4b05f612", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5f2", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5f2", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5f3", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f5f2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (67) [f62b2019-b6fb-4fda-b129-3ea110e974c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -99.61029, - "y": 0.414000034, - "z": 97.09961 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f616", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f616", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (61) [6aab9f39-4e4c-4dbb-983e-e891b3fae260]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -69.42084, + "y": -0.09157672, + "z": 21.1893 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f617", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f616", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5f7", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5f7", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5f8", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8044fa93c4c4b05f5f7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5f9", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8044fa93c4c4b05f5f7", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (68) [4be24b51-0556-4cfe-90a1-9b1506877989]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.9060059, - "y": -3.805, - "z": -122.556976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f61a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f61a", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (61) [aec081f9-859b-442c-a8aa-7017048ae7c4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -27.91101, + "y": -6.768, + "z": -19.931 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f61b", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8044fa93c4c4b05f61a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f5fc", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f5fc", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f5fd", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f5fc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (71) [58861092-3cd9-4121-80ac-c54ed1b7c9e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.79901, - "y": -4.145, - "z": -122.773987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f61e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f61e", - "_tpl": "5737256c2459776125652acd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (62) [49b94606-af12-4a4f-b666-d29d06c970da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -1.87200928, + "y": -5.828, + "z": -3.29797363 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f61f", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb8044fa93c4c4b05f61e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f600", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f600", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f601", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb8044fa93c4c4b05f600", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (71) [c6177c58-5694-4de2-b530-2f1404957255]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -104.821289, - "y": -0.305999756, - "z": 95.0376 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f622", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f622", - "_tpl": "5c1260dc86f7746b106e8748", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (64) [8feea1ce-ef5f-47bb-993e-d365177356f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 25.9780273, + "y": -5.916, + "z": 40.51599 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f623", - "_tpl": "5c0d688c86f77413ae3407b2", - "parentId": "66cbb8044fa93c4c4b05f622", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f605", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f605", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f606", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f605", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f607", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f605", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (73) [8de73b33-42c2-4897-a246-bd05556abc67]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -104.78125, - "y": -0.05499983, - "z": 99.28259 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f626", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f626", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (65) [8de2790a-c6c5-4740-be45-07fe4a6fc69d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.2689819, + "y": -5.923, + "z": 40.99701 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f627", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f626", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f60a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f60a", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f60b", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f60a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (74) [4f8c18ac-8cf7-421c-8dce-14589c29065a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -104.78125, - "y": 0.4630003, - "z": 99.28259 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f62b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f62b", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (66) [370ea5c4-c207-4ee8-8847-e67d7c43d13b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 70.5150146, + "y": -3.805, + "z": -123.35199 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f62c", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f62b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f60e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f60e", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f60f", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f60e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (66) [ad521506-9283-432d-ac8d-93fb30b41a95]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -100.06427, + "y": 0.414000034, + "z": 97.12457 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f62d", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f62b", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f612", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f612", + "_tpl": "5737280e24597765cc785b5c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f613", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbb8044fa93c4c4b05f612", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (75) [596a7866-3bae-4ed6-b85d-b2184b936206]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.9000244, - "y": -5.678, - "z": -153.583984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f630", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f630", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (67) [f62b2019-b6fb-4fda-b129-3ea110e974c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -99.61029, + "y": 0.414000034, + "z": 97.09961 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f631", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8044fa93c4c4b05f630", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f616", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f616", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f617", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f616", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (80) [adfaf82d-573d-4b3c-8aea-ba5dbc1ea8a5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 120.111023, - "y": -0.07, - "z": -87.91699 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f634", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f634", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (68) [4be24b51-0556-4cfe-90a1-9b1506877989]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.9060059, + "y": -3.805, + "z": -122.556976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f635", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f634", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f61a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f61a", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f61b", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8044fa93c4c4b05f61a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (83) [12455e78-a397-43c9-bb67-8c4041b56523]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.330261, - "y": 6.22100067, - "z": 91.9165649 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f638", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f638", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (71) [58861092-3cd9-4121-80ac-c54ed1b7c9e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.79901, + "y": -4.145, + "z": -122.773987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f639", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f638", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f61e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f61e", + "_tpl": "5737256c2459776125652acd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f61f", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb8044fa93c4c4b05f61e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (84) [713e7a2c-ff97-4f0e-896d-0ab3fdd8218f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.685974, - "y": -2.80682373, - "z": -21.1098633 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f63c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f63c", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (71) [c6177c58-5694-4de2-b530-2f1404957255]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -104.821289, + "y": -0.305999756, + "z": 95.0376 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f63d", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f63c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f622", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f622", + "_tpl": "5c1260dc86f7746b106e8748", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f623", + "_tpl": "5c0d688c86f77413ae3407b2", + "parentId": "66cbb8044fa93c4c4b05f622", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (85) [c78ccb09-e20c-4f0a-8eed-28f284eebae1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 10.961853, - "y": -3.377081, - "z": -1.71246338 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f640", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f640", - "_tpl": "57372f5c24597769917c0131", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (73) [8de73b33-42c2-4897-a246-bd05556abc67]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -104.78125, + "y": -0.05499983, + "z": 99.28259 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f641", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbb8044fa93c4c4b05f640", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f626", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f626", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f627", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f626", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (86) [704f4e61-d9ae-4479-846e-6629b987ee80]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 162.070984, - "y": -6.517, - "z": -233.033981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f645", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f645", - "_tpl": "57372b832459776701014e41", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (74) [4f8c18ac-8cf7-421c-8dce-14589c29065a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -104.78125, + "y": 0.4630003, + "z": 99.28259 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f646", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb8044fa93c4c4b05f645", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f62b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f62b", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f62c", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f62b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f62d", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f62b", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (75) [596a7866-3bae-4ed6-b85d-b2184b936206]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.9000244, + "y": -5.678, + "z": -153.583984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f647", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb8044fa93c4c4b05f645", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f630", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f630", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f631", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8044fa93c4c4b05f630", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (87) [66575fa0-a804-4690-87c1-2e829ff1d76e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 161.497986, - "y": -6.517, - "z": -233.088989 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f64a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f64a", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (80) [adfaf82d-573d-4b3c-8aea-ba5dbc1ea8a5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 120.111023, + "y": -0.07, + "z": -87.91699 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f64b", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb8044fa93c4c4b05f64a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f634", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f634", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f635", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f634", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (87) [df4c46a6-0a54-4c1c-b9e7-f2c19f914440]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -103.933289, - "y": 6.465, - "z": 97.3505859 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f64e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f64e", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (83) [12455e78-a397-43c9-bb67-8c4041b56523]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.330261, + "y": 6.22100067, + "z": 91.9165649 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f64f", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb8044fa93c4c4b05f64e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f638", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f638", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f639", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f638", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (88) [9172b2ed-16d4-4c94-bab0-b0eb09d2fe8a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 189.007019, - "y": 3.03, - "z": -257.761 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f652", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f652", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (84) [713e7a2c-ff97-4f0e-896d-0ab3fdd8218f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.685974, + "y": -2.80682373, + "z": -21.1098633 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f653", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f652", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f63c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f63c", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f63d", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f63c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (89) [739d707b-d6d8-4444-893c-d4236c2d1fdd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.978027, - "y": 3.03, - "z": -258.234 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f657", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f657", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (85) [c78ccb09-e20c-4f0a-8eed-28f284eebae1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 10.961853, + "y": -3.377081, + "z": -1.71246338 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f658", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f657", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f640", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f640", + "_tpl": "57372f5c24597769917c0131", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f641", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbb8044fa93c4c4b05f640", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (86) [704f4e61-d9ae-4479-846e-6629b987ee80]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 162.070984, + "y": -6.517, + "z": -233.033981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f659", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f657", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f645", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f645", + "_tpl": "57372b832459776701014e41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f646", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb8044fa93c4c4b05f645", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f647", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb8044fa93c4c4b05f645", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (9) [791d1ca2-c7ce-463f-ac63-027a6bce85f0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.55957, - "y": -6.685997, - "z": -35.7201843 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f65c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f65c", - "_tpl": "57372bd3245977670b7cd243", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (87) [66575fa0-a804-4690-87c1-2e829ff1d76e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 161.497986, + "y": -6.517, + "z": -233.088989 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f65d", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb8044fa93c4c4b05f65c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f64a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f64a", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f64b", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb8044fa93c4c4b05f64a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (90) [8f92b6cf-7c53-4582-ad5f-03596df97a35]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 157.992, - "y": -6.459, - "z": -145.268982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f661", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f661", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (87) [df4c46a6-0a54-4c1c-b9e7-f2c19f914440]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -103.933289, + "y": 6.465, + "z": 97.3505859 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f662", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f661", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f64e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f64e", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f64f", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb8044fa93c4c4b05f64e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (88) [9172b2ed-16d4-4c94-bab0-b0eb09d2fe8a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 189.007019, + "y": 3.03, + "z": -257.761 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f663", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f661", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f652", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f652", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f653", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f652", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (91) [2af7dc07-8ae8-4baf-a564-17004defb28d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 186.778992, - "y": -6.376, - "z": -225.702988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f666", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f666", - "_tpl": "573726d824597765d96be361", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (89) [739d707b-d6d8-4444-893c-d4236c2d1fdd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.978027, + "y": 3.03, + "z": -258.234 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f667", - "_tpl": "57371f2b24597761224311f1", - "parentId": "66cbb8044fa93c4c4b05f666", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f657", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f657", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f658", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f657", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f659", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f657", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (91) [f01197c8-aee8-4f84-a08a-ea8b398aecbb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 157.828979, - "y": -6.459, - "z": -144.504974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f66a", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f66a", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (9) [791d1ca2-c7ce-463f-ac63-027a6bce85f0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.55957, + "y": -6.685997, + "z": -35.7201843 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f66b", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f66a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f65c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f65c", + "_tpl": "57372bd3245977670b7cd243", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f65d", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb8044fa93c4c4b05f65c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (93) [49d7d0e1-48c5-4042-9556-931e1e151dca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.8175659, - "y": -6.619081, - "z": -14.5725708 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f66e", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f66e", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (90) [8f92b6cf-7c53-4582-ad5f-03596df97a35]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 157.992, + "y": -6.459, + "z": -145.268982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f66f", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f66e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f661", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f661", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f662", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f661", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f663", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f661", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (94) [10fde625-7b4f-4a66-bd5c-28bc55aaaf86]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 106.346985, - "y": -6.208, - "z": 51.3040161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f672", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f672", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (91) [2af7dc07-8ae8-4baf-a564-17004defb28d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 186.778992, + "y": -6.376, + "z": -225.702988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f673", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb8044fa93c4c4b05f672", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f666", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f666", + "_tpl": "573726d824597765d96be361", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f667", + "_tpl": "57371f2b24597761224311f1", + "parentId": "66cbb8044fa93c4c4b05f666", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (95) [5e09558b-d113-4383-93e2-c28a6bfee811]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 15.7975464, - "y": -6.100081, - "z": -15.121582 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f677", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f677", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (91) [f01197c8-aee8-4f84-a08a-ea8b398aecbb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 157.828979, + "y": -6.459, + "z": -144.504974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f678", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f677", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f66a", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f66a", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f66b", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f66a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (93) [49d7d0e1-48c5-4042-9556-931e1e151dca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.8175659, + "y": -6.619081, + "z": -14.5725708 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f679", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb8044fa93c4c4b05f677", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f66e", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f66e", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f66f", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f66e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (96) [1fb53110-d4af-4b69-a968-f514e51a352d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 183.112976, - "y": -5.836, - "z": -223.255981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f67c", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f67c", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (94) [10fde625-7b4f-4a66-bd5c-28bc55aaaf86]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 106.346985, + "y": -6.208, + "z": 51.3040161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f67d", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb8044fa93c4c4b05f67c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f672", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f672", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f673", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb8044fa93c4c4b05f672", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (96) [e9aefe02-9d01-4d92-95eb-be32314af5a7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.1445923, - "y": -6.100081, - "z": -15.1665649 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f680", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f680", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (95) [5e09558b-d113-4383-93e2-c28a6bfee811]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 15.7975464, + "y": -6.100081, + "z": -15.121582 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f681", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb8044fa93c4c4b05f680", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f677", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f677", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f678", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f677", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f679", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb8044fa93c4c4b05f677", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (97) [8d16176e-7057-49ea-b9a5-dbea89f5fe97]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.0405884, - "y": -5.990081, - "z": -16.141571 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f685", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f685", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (96) [1fb53110-d4af-4b69-a968-f514e51a352d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 183.112976, + "y": -5.836, + "z": -223.255981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f686", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f685", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f67c", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f67c", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f67d", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb8044fa93c4c4b05f67c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (96) [e9aefe02-9d01-4d92-95eb-be32314af5a7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.1445923, + "y": -6.100081, + "z": -15.1665649 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f687", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb8044fa93c4c4b05f685", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f680", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f680", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f681", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb8044fa93c4c4b05f680", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (98) [7c1209ea-36af-49a5-9770-778513fed2d2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 160.794, - "y": -6.361, - "z": -219.857986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f68b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f68b", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (97) [8d16176e-7057-49ea-b9a5-dbea89f5fe97]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.0405884, + "y": -5.990081, + "z": -16.141571 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f68c", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f68b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f685", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f685", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f686", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f685", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f687", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb8044fa93c4c4b05f685", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "loot_rf_ammo_true (98) [7c1209ea-36af-49a5-9770-778513fed2d2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 160.794, + "y": -6.361, + "z": -219.857986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f68d", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb8044fa93c4c4b05f68b", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f68b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f68b", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f68c", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f68b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f68d", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb8044fa93c4c4b05f68b", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (99) [3f928836-0d3a-4610-9ee9-96e120c44cd2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 159.995, - "y": -6.361, - "z": -220.14299 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f690", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f690", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (99) [3f928836-0d3a-4610-9ee9-96e120c44cd2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 159.995, + "y": -6.361, + "z": -220.14299 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f691", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8044fa93c4c4b05f690", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f690", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f690", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f691", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8044fa93c4c4b05f690", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_rf_ammo_true (99) [59b968b5-e7c4-4beb-88cb-509bad8664f9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 15.1065674, - "y": -5.510081, - "z": -16.2915649 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f694", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f694", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_rf_ammo_true (99) [59b968b5-e7c4-4beb-88cb-509bad8664f9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 15.1065674, + "y": -5.510081, + "z": -16.2915649 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb8044fa93c4c4b05f695", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb8044fa93c4c4b05f694", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f694", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f694", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb8044fa93c4c4b05f695", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb8044fa93c4c4b05f694", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (2) [85bc4fe6-c3c3-496c-9bc1-aad3201a4fe4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.856018, - "y": -10.45, - "z": 31.2710266 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f697", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f697", - "_tpl": "5d1b2f3f86f774252167a52c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (2) [85bc4fe6-c3c3-496c-9bc1-aad3201a4fe4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.856018, + "y": -10.45, + "z": 31.2710266 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f697", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f697", + "_tpl": "5d1b2f3f86f774252167a52c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (41) [c7563346-d60d-44f9-89ee-35d00f65fe5e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 170.380981, - "y": -3.892, - "z": -165.807983 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f699", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f699", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (41) [c7563346-d60d-44f9-89ee-35d00f65fe5e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 170.380981, + "y": -3.892, + "z": -165.807983 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f699", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f699", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (43) [725a3f1e-76d0-4e41-b639-1da9a786716a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 144.690979, - "y": -0.823, - "z": -151.805 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f69b", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f69b", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (43) [725a3f1e-76d0-4e41-b639-1da9a786716a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 144.690979, + "y": -0.823, + "z": -151.805 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f69b", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f69b", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (66) [5f437551-cb58-4e22-975e-a935bfacc7a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -56.05786, - "y": -0.351576716, - "z": 34.82431 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f69d", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f69d", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (66) [5f437551-cb58-4e22-975e-a935bfacc7a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -56.05786, + "y": -0.351576716, + "z": 34.82431 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f69d", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f69d", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (73) [76dde3b7-4d9d-45bc-9c31-dba01e87b6b6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.08197, - "y": -20.866, - "z": 111.5 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f69f", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f69f", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (73) [76dde3b7-4d9d-45bc-9c31-dba01e87b6b6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.08197, + "y": -20.866, + "z": 111.5 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f69f", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f69f", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (76) [8a503001-f55a-4b93-ab49-e013871f5435]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -72.091, - "y": -20.799, - "z": 108.78302 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6a1", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6a1", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (76) [8a503001-f55a-4b93-ab49-e013871f5435]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -72.091, + "y": -20.799, + "z": 108.78302 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6a1", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6a1", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (81) [47685716-04d1-44f8-86be-2a6d9b8d767e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -85.026, - "y": -19.189, - "z": 117.105042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6a3", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6a3", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (81) [47685716-04d1-44f8-86be-2a6d9b8d767e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -85.026, + "y": -19.189, + "z": 117.105042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6a3", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6a3", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (13) [f83c65e5-4062-4b1e-93c5-040ec9e57162]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -54.8498535, - "y": -6.114577, - "z": 16.9552917 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6a5", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6a5", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (13) [f83c65e5-4062-4b1e-93c5-040ec9e57162]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -54.8498535, + "y": -6.114577, + "z": 16.9552917 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6a5", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6a5", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (32) [7b563e44-d6b8-4f6e-b880-cad196409663]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -65.9678345, - "y": -5.271577, - "z": 32.6052856 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6a7", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6a7", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (32) [7b563e44-d6b8-4f6e-b880-cad196409663]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -65.9678345, + "y": -5.271577, + "z": 32.6052856 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6a7", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6a7", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (117) [44ea7499-1a51-44a0-b8c4-9f95cf63f3f9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.216, - "y": -10.649, - "z": 30.543 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6a9", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6a9", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (117) [44ea7499-1a51-44a0-b8c4-9f95cf63f3f9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.216, + "y": -10.649, + "z": 30.543 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6a9", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6a9", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (36) [d2ca5786-a38c-4e7e-aea1-a7c0fcecba1c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 10.0130005, - "y": -5.840004, - "z": -26.8359985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6ab", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6ab", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (36) [d2ca5786-a38c-4e7e-aea1-a7c0fcecba1c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 10.0130005, + "y": -5.840004, + "z": -26.8359985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6ab", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6ab", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (67) [2a75cfd0-122e-4050-9f74-f6483855cf7b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -50.8015747, - "y": -6.71379042, - "z": -35.9682 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6ad", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6ad", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (67) [2a75cfd0-122e-4050-9f74-f6483855cf7b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -50.8015747, + "y": -6.71379042, + "z": -35.9682 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6ad", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6ad", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (68) [cb618203-b2e0-4b53-9afa-2d18ee3c62fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -60.96881, - "y": -6.613577, - "z": 77.0952759 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6af", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6af", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (68) [cb618203-b2e0-4b53-9afa-2d18ee3c62fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -60.96881, + "y": -6.613577, + "z": 77.0952759 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6af", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6af", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (73) [d1a5a7e8-a509-4032-a9c6-cef975bc0b34]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.6117554, - "y": -6.14525461, - "z": -37.32376 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6b1", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6b1", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (73) [d1a5a7e8-a509-4032-a9c6-cef975bc0b34]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.6117554, + "y": -6.14525461, + "z": -37.32376 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6b1", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6b1", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (76) [03c89e61-88f1-4205-80f7-28a8ef3fd7e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 7.439026, - "y": -6.15899658, - "z": -7.473999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6b3", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6b3", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (76) [03c89e61-88f1-4205-80f7-28a8ef3fd7e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 7.439026, + "y": -6.15899658, + "z": -7.473999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6b3", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6b3", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (76) [f1cbee72-86ca-40e7-ad67-c7e41bce665e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.9489746, - "y": -5.846, - "z": 4.377014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6b5", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6b5", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (76) [f1cbee72-86ca-40e7-ad67-c7e41bce665e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.9489746, + "y": -5.846, + "z": 4.377014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6b5", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6b5", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (78) [1b98b693-238f-42e5-bf4b-71ed9d11c517]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 91.9577, - "y": -2.97225475, - "z": -36.05475 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6b7", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6b7", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (78) [1b98b693-238f-42e5-bf4b-71ed9d11c517]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 91.9577, + "y": -2.97225475, + "z": -36.05475 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6b7", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6b7", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (85) [93583f6e-1522-4461-9807-51cdf64a8cd2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -84.026, - "y": -8.890299, - "z": 80.73901 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6b9", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6b9", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (85) [93583f6e-1522-4461-9807-51cdf64a8cd2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -84.026, + "y": -8.890299, + "z": 80.73901 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6b9", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6b9", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (85) [c35850bd-5b90-491f-8593-e7c06db6c8a7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -126.792969, - "y": -5.2348237, - "z": -21.5028687 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6bb", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6bb", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (85) [c35850bd-5b90-491f-8593-e7c06db6c8a7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -126.792969, + "y": -5.2348237, + "z": -21.5028687 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6bb", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6bb", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (94) [f9b74555-f2d4-409e-b086-d83ad9b56b3e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 40.8380127, - "y": -4.08, - "z": -125.750977 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6bd", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6bd", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (94) [f9b74555-f2d4-409e-b086-d83ad9b56b3e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 40.8380127, + "y": -4.08, + "z": -125.750977 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6bd", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6bd", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_tool (97) [4a4f9ca8-6ec9-46df-8f48-3f9a2f9f406b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 180.400024, - "y": -5.977, - "z": -138.117981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6bf", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6bf", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_tool (97) [4a4f9ca8-6ec9-46df-8f48-3f9a2f9f406b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 180.400024, + "y": -5.977, + "z": -138.117981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6bf", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6bf", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (102) [a619f037-3b17-4a09-a3b9-5fa865c085ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -159.643677, - "y": -9.052, - "z": 75.83893 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6c1", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6c1", - "_tpl": "57347c93245977448d35f6e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (102) [a619f037-3b17-4a09-a3b9-5fa865c085ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -159.643677, + "y": -9.052, + "z": 75.83893 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6c1", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6c1", + "_tpl": "57347c93245977448d35f6e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (113) [6313ecb5-971c-4273-bedc-b482c2f85860]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -121.678955, - "y": -5.255824, - "z": -33.3328857 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6c3", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6c3", - "_tpl": "5c13cd2486f774072c757944", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (113) [6313ecb5-971c-4273-bedc-b482c2f85860]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -121.678955, + "y": -5.255824, + "z": -33.3328857 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6c3", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6c3", + "_tpl": "5c13cd2486f774072c757944", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (116) [ada2691d-5eed-4531-8428-fabcc7d842e7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -44.0499878, - "y": -6.453003, - "z": 9.801025 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6c5", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6c5", - "_tpl": "5c13cd2486f774072c757944", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (116) [ada2691d-5eed-4531-8428-fabcc7d842e7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -44.0499878, + "y": -6.453003, + "z": 9.801025 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6c5", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6c5", + "_tpl": "5c13cd2486f774072c757944", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (135) [d0c27882-116d-4beb-a000-88716ceb230e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -80.37726, - "y": -0.05700302, - "z": 90.09259 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6c7", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6c7", - "_tpl": "57347c93245977448d35f6e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (135) [d0c27882-116d-4beb-a000-88716ceb230e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -80.37726, + "y": -0.05700302, + "z": 90.09259 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6c7", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6c7", + "_tpl": "57347c93245977448d35f6e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (143) [855f7e69-ff15-439f-8835-0c10c40ffe75]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -94.40802, - "y": -14.341, - "z": 22.9790039 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6c9", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6c9", - "_tpl": "5c13cd2486f774072c757944", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (143) [855f7e69-ff15-439f-8835-0c10c40ffe75]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -94.40802, + "y": -14.341, + "z": 22.9790039 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6c9", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6c9", + "_tpl": "5c13cd2486f774072c757944", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (42) [fb94230d-4dbf-443e-9aa1-0de1212aed0e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 4.24902344, - "y": -6.361, - "z": -24.95398 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6cb", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6cb", - "_tpl": "5c13cef886f774072e618e82", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (42) [fb94230d-4dbf-443e-9aa1-0de1212aed0e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 4.24902344, + "y": -6.361, + "z": -24.95398 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6cb", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6cb", + "_tpl": "5c13cef886f774072e618e82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (46) [1fe29355-2b7a-4466-a94c-fc6ba89a2090]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -174.96698, - "y": -6.01540327, - "z": 38.0779724 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6cd", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6cd", - "_tpl": "5c13cd2486f774072c757944", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (46) [1fe29355-2b7a-4466-a94c-fc6ba89a2090]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -174.96698, + "y": -6.01540327, + "z": 38.0779724 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6cd", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6cd", + "_tpl": "5c13cd2486f774072c757944", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (52) [0c67325d-29b7-4f48-8cb3-f3971ddd7e53]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.04718, - "y": -5.37499952, - "z": 72.23682 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6cf", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6cf", - "_tpl": "57347c93245977448d35f6e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (52) [0c67325d-29b7-4f48-8cb3-f3971ddd7e53]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.04718, + "y": -5.37499952, + "z": 72.23682 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6cf", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6cf", + "_tpl": "57347c93245977448d35f6e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (62) [d5bf376e-7f50-4c19-a856-2db55b17d970]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.333008, - "y": -6.1184, - "z": 73.19104 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6d1", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6d1", - "_tpl": "5c13cef886f774072e618e82", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (62) [d5bf376e-7f50-4c19-a856-2db55b17d970]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.333008, + "y": -6.1184, + "z": 73.19104 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6d1", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6d1", + "_tpl": "5c13cef886f774072e618e82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (63) [a38d9c9e-3cbe-4537-ad9d-6f1c3123d4f1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.114014, - "y": -6.1184, - "z": 74.95203 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6d3", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6d3", - "_tpl": "57347c93245977448d35f6e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (63) [a38d9c9e-3cbe-4537-ad9d-6f1c3123d4f1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.114014, + "y": -6.1184, + "z": 74.95203 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6d3", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6d3", + "_tpl": "57347c93245977448d35f6e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (68) [cb52bd8a-c825-4de0-84e1-d740875c1bf7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -171.487, - "y": -9.09740448, - "z": 31.7939758 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6d5", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6d5", - "_tpl": "57347c93245977448d35f6e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (68) [cb52bd8a-c825-4de0-84e1-d740875c1bf7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -171.487, + "y": -9.09740448, + "z": 31.7939758 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6d5", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6d5", + "_tpl": "57347c93245977448d35f6e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Pick_09 [4c9a74a6-ef70-4488-b010-67183fe4fd7d]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -171.2431, - "y": -5.96119976, - "z": -0.976135254 - }, - "Rotation": { - "x": 354.870941, - "y": 104.867027, - "z": -2.18587538e-5 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -171.2431, - "y": -5.96119976, - "z": -0.976135254 + ] + }, + { + "Id": "Pick_09 [4c9a74a6-ef70-4488-b010-67183fe4fd7d]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -171.2431, + "y": -5.96119976, + "z": -0.976135254 + }, + "Rotation": { + "x": 354.870941, + "y": 104.867027, + "z": -2.18587538e-5 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -171.2431, + "y": -5.96119976, + "z": -0.976135254 + }, + "Rotation": { + "x": 354.870941, + "y": 104.867027, + "z": -2.18587538e-5 + } }, - "Rotation": { - "x": 354.870941, - "y": 104.867027, - "z": -2.18587538e-5 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -169.77533, - "y": -6.034, - "z": 3.56524658 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -169.77533, + "y": -6.034, + "z": 3.56524658 + }, + "Rotation": { + "x": 349.0679, + "y": 195.309555, + "z": -1.84780151e-6 + } }, - "Rotation": { - "x": 349.0679, - "y": 195.309555, - "z": -1.84780151e-6 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -163.741211, + "y": -3.0375, + "z": 0.6904297 + }, + "Rotation": { + "x": 345.9537, + "y": 10.41713, + "z": 0.8332909 + } + } + ], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6d7", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6d7", + "_tpl": "64e74a4baac4cd0a7264ecdd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "repair_kit_item (3) [45dc34cd-6599-45ee-91e6-4f1b3d8830df]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -127.11499, + "y": 6.697, + "z": 92.46002 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -163.741211, - "y": -3.0375, - "z": 0.6904297 - }, - "Rotation": { - "x": 345.9537, - "y": 10.41713, - "z": 0.8332909 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6d9", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6d9", + "_tpl": "5910968f86f77425cf569c32", + "upd": { + "StackObjectsCount": 1 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6d7", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6d7", - "_tpl": "64e74a4baac4cd0a7264ecdd", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "repair_kit_item (5) [55786939-1a6f-4ed6-bfec-4bd3c770a72f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 34.48401, + "y": -10.722, + "z": -148.023987 + }, + "Rotation": { + "x": 0.0, + "y": 164.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6db", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6db", + "_tpl": "5910968f86f77425cf569c32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "repair_kit_item (3) [45dc34cd-6599-45ee-91e6-4f1b3d8830df]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -127.11499, - "y": 6.697, - "z": 92.46002 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6d9", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6d9", - "_tpl": "5910968f86f77425cf569c32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "repair_kit_weapon (3) [cdd17b5b-4ce6-4dbc-92d3-c0df7b205d67]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 69.23602, + "y": -3.849, + "z": -123.53598 + }, + "Rotation": { + "x": 270.0, + "y": 349.705383, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb8044fa93c4c4b05f6dd", + "Items": [ + { + "_id": "66cbb8044fa93c4c4b05f6dd", + "_tpl": "5910968f86f77425cf569c32", + "upd": { + "StackObjectsCount": 1 + } } + ] + } + ], + "Banners": [ + { + "id": "5807bfe124597742a92e0a4c", + "pic": { + "path": "CONTENT\/banners\/norvinskzone.jpg", + "rcid": "" } - ] - }, - { - "Id": "repair_kit_item (5) [55786939-1a6f-4ed6-bfec-4bd3c770a72f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 34.48401, - "y": -10.722, - "z": -148.023987 - }, - "Rotation": { - "x": 0.0, - "y": 164.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6db", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6db", - "_tpl": "5910968f86f77425cf569c32", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "5c1b857086f77465f465faa4", + "pic": { + "path": "CONTENT\/banners\/banner_scavraider.jpg", + "rcid": "" } - ] - }, - { - "Id": "repair_kit_weapon (3) [cdd17b5b-4ce6-4dbc-92d3-c0df7b205d67]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 69.23602, - "y": -3.849, - "z": -123.53598 - }, - "Rotation": { - "x": 270.0, - "y": 349.705383, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb8044fa93c4c4b05f6dd", - "Items": [ - { - "_id": "66cbb8044fa93c4c4b05f6dd", - "_tpl": "5910968f86f77425cf569c32", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "64c0ad6af99768b777048f4e", + "pic": { + "path": "CONTENT\/banners\/banner_emissary.jpg", + "rcid": "" } - ] - } - ], - "Banners": [ - { - "id": "5807bfe124597742a92e0a4c", - "pic": { - "path": "CONTENT\/banners\/norvinskzone.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT\/banners\/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT\/banners\/banner_emissary.jpg", - "rcid": "" } - } - ] + ] + } } } \ No newline at end of file diff --git a/Fuyu.Platform.Server/embedded/database/locations/sandbox.json b/Fuyu.Platform.Server/embedded/database/locations/sandbox.json index ff6b62fe..7586a8eb 100644 --- a/Fuyu.Platform.Server/embedded/database/locations/sandbox.json +++ b/Fuyu.Platform.Server/embedded/database/locations/sandbox.json @@ -1,35687 +1,35690 @@ { - "serverId": "PVE_OFFLINE_659885_24_08_2024_04_11_47", - "serverSettings": { - "TraderServerSettings": { - "TraderServices": { - "ExUsecLoyalty": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ExUsecLoyalty", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966ff54c3ef01b6f3ffad8" + "err": 0, + "data": { + "serverId": "PVE_OFFLINE_659885_24_08_2024_04_11_47", + "serverSettings": { + "TraderServerSettings": { + "TraderServices": { + "ExUsecLoyalty": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ExUsecLoyalty", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966ff54c3ef01b6f3ffad8" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.09 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.09 + }, + "ServiceItemCost": { + "569668774bdc2da2298b4568": { + "Count": 2500 + }, + "61bf7c024770ee6f9c6b8b53": { + "Count": 2 } - } - }, - "ServiceItemCost": { - "569668774bdc2da2298b4568": { - "Count": 2500 }, - "61bf7c024770ee6f9c6b8b53": { - "Count": 2 - } - }, - "UniqueItems": [] - }, - "ZryachiyAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ZryachiyAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "6396701b9113f06a7c3b2379" + "UniqueItems": [] + }, + "ZryachiyAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ZryachiyAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "6396701b9113f06a7c3b2379" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.18 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.18 + }, + "ServiceItemCost": { + "62a0a16d0b9d3c46de5b6e97": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 2000 } - } - }, - "ServiceItemCost": { - "62a0a16d0b9d3c46de5b6e97": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 2000 - } - }, - "UniqueItems": [] - }, - "CultistsAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "CultistsAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966fccac6f8f3c677b9d89" + "UniqueItems": [] + }, + "CultistsAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "CultistsAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966fccac6f8f3c677b9d89" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.03 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.03 + }, + "ServiceItemCost": { + "5c12613b86f7743bbe2c3f76": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 1000 } - } - }, - "ServiceItemCost": { - "5c12613b86f7743bbe2c3f76": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 1000 - } - }, - "UniqueItems": [ - "64d0b40fbe2eed70e254e2d4" + "UniqueItems": [ + "64d0b40fbe2eed70e254e2d4" + ] + }, + "PlayerTaxi": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "PlayerTaxi", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrBotCover": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrBotCover", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "TransitItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "TransitItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + } + } + }, + "BTRServerSettings": { + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.77, + "BodySwingIntensity": 0.506, + "ServerMapBTRSettings": { + "Develop": { + "MapID": "develop", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "TarkovStreets": { + "MapID": "TarkovStreets", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "Woods": { + "MapID": "Woods", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 180.0, + "y": 360.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + } + } + } + }, + "profile": { + "insuredItems": [] + }, + "locationLoot": { + "Enabled": true, + "EnableCoop": true, + "ForceOnlineRaidInPVE": false, + "Locked": false, + "Insurance": true, + "SafeLocation": false, + "Name": "Sandbox", + "Description": "The downtown Tarkov with banks, malls, hotels and all the other things a striving modern city could have needed.", + "Scene": { + "path": "maps\/sandbox_preset.bundle", + "rcid": "sandbox.scenespreset.asset" + }, + "Area": 0.0, + "RequiredPlayerLevelMin": 0, + "RequiredPlayerLevelMax": 20, + "PmcMaxPlayersInGroup": 5, + "ScavMaxPlayersInGroup": 4, + "MinPlayers": 9, + "MaxPlayers": 10, + "MaxCoopGroup": 20, + "exit_count": 1, + "exit_access_time": 35, + "exit_time": 2, + "Preview": { + "path": "", + "rcid": "" + }, + "IconX": 760, + "IconY": 740, + "filter_ex": [], + "waves": [ + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "easy", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" ] }, - "PlayerTaxi": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "PlayerTaxi", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + { + "number": 1, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BtrItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + { + "number": 2, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BtrBotCover": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrBotCover", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + { + "number": 9, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "easy", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "TransitItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "TransitItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + { + "number": 3, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 1, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "easy", + "isPlayers": false, + "WildSpawnType": "marksman", + "SpawnMode": [ + "pve" + ] + }, + { + "number": 4, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] } - } - }, - "BTRServerSettings": { - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.77, - "BodySwingIntensity": 0.506, - "ServerMapBTRSettings": { - "Develop": { - "MapID": "develop", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "TarkovStreets": { - "MapID": "TarkovStreets", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "Woods": { - "MapID": "Woods", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 180.0, - "y": 360.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 + ], + "limits": [ + { + "items": [ + "64d4b23dc1b37504b41ac2b6" + ], + "min": 1, + "max": 1 } - } - } - }, - "profile": { - "insuredItems": [] - }, - "locationLoot": { - "Enabled": true, - "EnableCoop": true, - "ForceOnlineRaidInPVE": false, - "Locked": false, - "Insurance": true, - "SafeLocation": false, - "Name": "Sandbox", - "Description": "The downtown Tarkov with banks, malls, hotels and all the other things a striving modern city could have needed.", - "Scene": { - "path": "maps\/sandbox_preset.bundle", - "rcid": "sandbox.scenespreset.asset" - }, - "Area": 0.0, - "RequiredPlayerLevelMin": 0, - "RequiredPlayerLevelMax": 20, - "PmcMaxPlayersInGroup": 5, - "ScavMaxPlayersInGroup": 4, - "MinPlayers": 9, - "MaxPlayers": 10, - "MaxCoopGroup": 20, - "exit_count": 1, - "exit_access_time": 35, - "exit_time": 2, - "Preview": { - "path": "", - "rcid": "" - }, - "IconX": 760, - "IconY": 740, - "filter_ex": [], - "waves": [ - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "easy", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 1, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 2, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 9, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "easy", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 3, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 1, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "easy", - "isPlayers": false, - "WildSpawnType": "marksman", - "SpawnMode": [ - "pve" + ], + "AveragePlayTime": 35, + "AveragePlayerLevel": 20, + "EscapeTimeLimit": 35, + "EscapeTimeLimitPVE": 35, + "EscapeTimeLimitCoop": 30, + "Rules": "Normal", + "IsSecret": false, + "doors": [], + "tmp_location_field_remove_me": 0, + "MinDistToExitPoint": 10, + "MaxDistToFreePoint": 220, + "MinDistToFreePoint": 60, + "MaxBotPerZone": 5, + "OpenZones": "", + "OcculsionCullingEnabled": false, + "GlobalLootChanceModifier": 0.34, + "GlobalLootChanceModifierPvE": 0.72, + "OldSpawn": true, + "OfflineOldSpawn": true, + "NewSpawn": true, + "OfflineNewSpawn": true, + "BotMax": 20, + "BotMaxPvE": 20, + "BotStart": 120, + "BotStartPlayer": 0, + "BotStop": 1800, + "BotMaxTimePlayer": 0, + "BotSpawnTimeOnMin": 290, + "BotSpawnTimeOnMax": 380, + "BotSpawnTimeOffMin": 20, + "BotSpawnTimeOffMax": 25, + "BotMaxPlayer": 0, + "BotEasy": 100, + "BotNormal": 0, + "BotHard": 0, + "BotImpossible": 0, + "BotAssault": 100, + "BotMarksman": 0, + "DisabledScavExits": "", + "MinPlayerLvlAccessKeys": 0, + "AccessKeys": [], + "UnixDateTime": 1621511450, + "users_gather_seconds": 0, + "users_spawn_seconds_n": 120, + "users_spawn_seconds_n2": 200, + "users_summon_seconds": 0, + "sav_summon_seconds": 60, + "matching_min_seconds": 60, + "GenerateLocalLootCache": true, + "PlayersRequestCount": -1, + "NonWaveGroupScenario": { + "MinToBeGroup": 2, + "MaxToBeGroup": 3, + "Chance": 50.0, + "Enabled": true + }, + "BotSpawnCountStep": 3, + "BotSpawnPeriodCheck": 14, + "GlobalContainerChanceModifier": 1.0, + "MinMaxBots": [], + "BotLocationModifier": { + "AccuracySpeed": 1.0, + "Scattering": 1.0, + "GainSight": 1.0, + "MarksmanAccuratyCoef": 1.0, + "VisibleDistance": 1.0, + "MinExfiltrationTime": 1200.0, + "MaxExfiltrationTime": 1500.0, + "DistToActivatePvE": 260.0, + "DistToSleepPvE": 300.0, + "DistToSleep": 300.0, + "DistToActivate": 260.0, + "AdditionalHostilitySettings": [ + { + "BotRole": "pmcBEAR", + "AlwaysEnemies": [ + "pmcBot", + "exUsec", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar", + "bossKnight" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcUSEC" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 35, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 50 + }, + { + "BotRole": "pmcUSEC", + "AlwaysEnemies": [ + "pmcBot", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcBEAR" + }, + { + "EnemyChance": 15, + "Role": "exUsec" + }, + { + "EnemyChance": 15, + "Role": "bossKnight" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 50, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 35 + } ] }, - { - "number": 4, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - } - ], - "limits": [ - { - "items": [ - "64d4b23dc1b37504b41ac2b6" - ], - "min": 1, - "max": 1 - } - ], - "AveragePlayTime": 35, - "AveragePlayerLevel": 20, - "EscapeTimeLimit": 35, - "EscapeTimeLimitPVE": 35, - "EscapeTimeLimitCoop": 30, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 10, - "MaxDistToFreePoint": 220, - "MinDistToFreePoint": 60, - "MaxBotPerZone": 5, - "OpenZones": "", - "OcculsionCullingEnabled": false, - "GlobalLootChanceModifier": 0.34, - "GlobalLootChanceModifierPvE": 0.72, - "OldSpawn": true, - "OfflineOldSpawn": true, - "NewSpawn": true, - "OfflineNewSpawn": true, - "BotMax": 20, - "BotMaxPvE": 20, - "BotStart": 120, - "BotStartPlayer": 0, - "BotStop": 1800, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 290, - "BotSpawnTimeOnMax": 380, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOffMax": 25, - "BotMaxPlayer": 0, - "BotEasy": 100, - "BotNormal": 0, - "BotHard": 0, - "BotImpossible": 0, - "BotAssault": 100, - "BotMarksman": 0, - "DisabledScavExits": "", - "MinPlayerLvlAccessKeys": 0, - "AccessKeys": [], - "UnixDateTime": 1621511450, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "sav_summon_seconds": 60, - "matching_min_seconds": 60, - "GenerateLocalLootCache": true, - "PlayersRequestCount": -1, - "NonWaveGroupScenario": { - "MinToBeGroup": 2, - "MaxToBeGroup": 3, - "Chance": 50.0, - "Enabled": true - }, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 14, - "GlobalContainerChanceModifier": 1.0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 1.0, - "Scattering": 1.0, - "GainSight": 1.0, - "MarksmanAccuratyCoef": 1.0, - "VisibleDistance": 1.0, - "MinExfiltrationTime": 1200.0, - "MaxExfiltrationTime": 1500.0, - "DistToActivatePvE": 260.0, - "DistToSleepPvE": 300.0, - "DistToSleep": 300.0, - "DistToActivate": 260.0, - "AdditionalHostilitySettings": [ + "exits": [ { - "BotRole": "pmcBEAR", - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 35, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 50 - }, - { - "BotRole": "pmcUSEC", - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" + "Name": "Unity_free_exit", + "EntryPoints": "east", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 + }, + { + "Name": "Sandbox_VExit", + "EntryPoints": "west,east", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 4, + "ExfiltrationTime": 60.0, + "PassageRequirement": "TransferItem", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "5449016a4bdc2d6f028b456f", + "RequirementTip": "EXFIL_Item", + "Count": 5000, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 5000, + "ExfiltrationTimePVE": 60.0, + "PlayersCountPVE": 4 + }, + { + "Name": "Sniper_exit", + "EntryPoints": "west,east", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 6.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 6.0, + "PlayersCountPVE": 0 + }, + { + "Name": "Scav_coop_exit", + "EntryPoints": "west,east", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "ScavCooperation", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "EXFIL_Cooperate", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 + }, + { + "Name": "Nakatani_stairs_free_exit", + "EntryPoints": "west", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 + } + ], + "DisabledForScav": false, + "ExitZones": "5c82534488a45046451a2386", + "SpawnPointParams": [ + { + "Id": "01a17b0b-3f3a-4f05-9d37-5193f5a5361a", + "Position": { + "x": 182.9868, + "y": 16.21865, + "z": 127.555809 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" + "Categories": [ + "Bot" ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 50, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 35 - } - ] - }, - "exits": [ - { - "Name": "Unity_free_exit", - "EntryPoints": "east", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Sandbox_VExit", - "EntryPoints": "west,east", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 4, - "ExfiltrationTime": 60.0, - "PassageRequirement": "TransferItem", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "5449016a4bdc2d6f028b456f", - "RequirementTip": "EXFIL_Item", - "Count": 5000, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 5000, - "ExfiltrationTimePVE": 60.0, - "PlayersCountPVE": 4 - }, - { - "Name": "Sniper_exit", - "EntryPoints": "west,east", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 6.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 6.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Scav_coop_exit", - "EntryPoints": "west,east", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "ScavCooperation", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "EXFIL_Cooperate", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Nakatani_stairs_free_exit", - "EntryPoints": "west", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - } - ], - "DisabledForScav": false, - "ExitZones": "5c82534488a45046451a2386", - "SpawnPointParams": [ - { - "Id": "01a17b0b-3f3a-4f05-9d37-5193f5a5361a", - "Position": { - "x": 182.9868, - "y": 16.21865, - "z": 127.555809 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "0344832c-a6f2-4c58-8d89-85e9d451a7ed", - "Position": { - "x": 72.81, - "y": 14.18, - "z": 5.44599962 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "0524be03-bcd4-4e28-98d4-f477dd0e550d", - "Position": { - "x": 65.03, - "y": 14.722, - "z": 161.741 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "0344832c-a6f2-4c58-8d89-85e9d451a7ed", + "Position": { + "x": 72.81, + "y": 14.18, + "z": 5.44599962 + }, + "Rotation": 96.67873, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "079220f6-66d7-471f-8236-1acc4e441b53", - "Position": { - "x": -10.5931931, - "y": 23.982048, - "z": 22.86581 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "0524be03-bcd4-4e28-98d4-f477dd0e550d", + "Position": { + "x": 65.03, + "y": 14.722, + "z": 161.741 + }, + "Rotation": 95.4804, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "0b110691-b8a9-4020-9ea1-910386dde586", - "Position": { - "x": 127.158, - "y": 23.21, - "z": 187.909 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 + }, + { + "Id": "079220f6-66d7-471f-8236-1acc4e441b53", + "Position": { + "x": -10.5931931, + "y": 23.982048, + "z": 22.86581 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "0dadcf0c-b3b8-4837-a16e-12ef201c21e1", - "Position": { - "x": 67.59, - "y": 14.18, - "z": 104.54 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "0b110691-b8a9-4020-9ea1-910386dde586", + "Position": { + "x": 127.158, + "y": 23.21, + "z": 187.909 + }, + "Rotation": 279.416534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } } - } - }, - { - "Id": "0eebe151-c53b-417e-a349-18c070ce5dac", - "Position": { - "x": 137.37, - "y": 22.74, - "z": -70.18 - }, - "Rotation": 298.9875, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "0dadcf0c-b3b8-4837-a16e-12ef201c21e1", + "Position": { + "x": 67.59, + "y": 14.18, + "z": 104.54 + }, + "Rotation": 96.67873, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "10a75815-d786-43e2-9639-6b94071433f8", - "Position": { - "x": 83.44798, - "y": 22.8000011, - "z": 11.6839752 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "0eebe151-c53b-417e-a349-18c070ce5dac", + "Position": { + "x": 137.37, + "y": 22.74, + "z": -70.18 + }, + "Rotation": 298.9875, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", - "Position": { - "x": 74.04802, - "y": 22.987999, - "z": 269.953979 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "10a75815-d786-43e2-9639-6b94071433f8", + "Position": { + "x": 83.44798, + "y": 22.8000011, + "z": 11.6839752 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "14e76203-f6d3-49d3-bb5e-300ff6bd3773", - "Position": { - "x": 121.832, - "y": 22.796, - "z": -1.133 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", + "Position": { + "x": 74.04802, + "y": 22.987999, + "z": 269.953979 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "16b9cd7d-ebea-41eb-8c9f-fe01aa2c9245", - "Position": { - "x": 111.243, - "y": 23.193, - "z": 174.479 - }, - "Rotation": 25.0808964, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "14e76203-f6d3-49d3-bb5e-300ff6bd3773", + "Position": { + "x": 121.832, + "y": 22.796, + "z": -1.133 + }, + "Rotation": 297.1408, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "181f7000-df70-4bc7-bff3-a709291c907f", - "Position": { - "x": 81.838, - "y": 22.8000011, - "z": 11.7840118 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "16b9cd7d-ebea-41eb-8c9f-fe01aa2c9245", + "Position": { + "x": 111.243, + "y": 23.193, + "z": 174.479 + }, + "Rotation": 25.0808964, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "1a88bc11-50fc-4df3-bb6c-750136afbb86", - "Position": { - "x": 71.7568054, - "y": 14.1386509, - "z": 0.6758108 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "181f7000-df70-4bc7-bff3-a709291c907f", + "Position": { + "x": 81.838, + "y": 22.8000011, + "z": 11.7840118 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", - "Position": { - "x": 77.06801, - "y": 22.987999, - "z": 269.114 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "1a88bc11-50fc-4df3-bb6c-750136afbb86", + "Position": { + "x": 71.7568054, + "y": 14.1386509, + "z": 0.6758108 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", - "Position": { - "x": 49.8150177, - "y": 22.777998, - "z": -78.392 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", + "Position": { + "x": 77.06801, + "y": 22.987999, + "z": 269.114 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "1c2fe835-f486-4f7e-847d-9ff1dfadc5c5", - "Position": { - "x": 180.9, - "y": 16.27, - "z": 114.89 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", + "Position": { + "x": 49.8150177, + "y": 22.777998, + "z": -78.392 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "1d60dfbb-d470-4557-8309-deb68d3cd7a4", - "Position": { - "x": 184.961, - "y": 17.209, - "z": -8.589 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "1c2fe835-f486-4f7e-847d-9ff1dfadc5c5", + "Position": { + "x": 180.9, + "y": 16.27, + "z": 114.89 + }, + "Rotation": 95.4804, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", - "Position": { - "x": 73.647995, - "y": 22.987999, - "z": 262.904 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "1d60dfbb-d470-4557-8309-deb68d3cd7a4", + "Position": { + "x": 184.961, + "y": 17.209, + "z": -8.589 + }, + "Rotation": 53.49001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "2251a0dd-f096-483c-88c6-d8abe1f0a8d8", - "Position": { - "x": 117.106, - "y": 28.963, - "z": 150.689 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", + "Position": { + "x": 73.647995, + "y": 22.987999, + "z": 262.904 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "22c535e6-6d49-46bd-9009-e688aace63d1", - "Position": { - "x": 38.43, - "y": 23.44, - "z": 149.07 - }, - "Rotation": 150.727722, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "2251a0dd-f096-483c-88c6-d8abe1f0a8d8", + "Position": { + "x": 117.106, + "y": 28.963, + "z": 150.689 + }, + "Rotation": 244.743225, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "2790d68f-c087-45d2-8b63-660e26858b34", - "Position": { - "x": 143.1, - "y": 23.3, - "z": 248.83 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "22c535e6-6d49-46bd-9009-e688aace63d1", + "Position": { + "x": 38.43, + "y": 23.44, + "z": 149.07 + }, + "Rotation": 150.727722, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "287bf35f-5cdc-44dc-97b6-c035d5054bfa", - "Position": { - "x": 82.34401, - "y": 22.8000011, - "z": 16.0929718 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "2790d68f-c087-45d2-8b63-660e26858b34", + "Position": { + "x": 143.1, + "y": 23.3, + "z": 248.83 + }, + "Rotation": 244.743225, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "2b8f1ba9-543b-45a7-84a7-23a0094ff8a4", - "Position": { - "x": -10.7931976, - "y": 23.982048, - "z": 16.7358112 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "287bf35f-5cdc-44dc-97b6-c035d5054bfa", + "Position": { + "x": 82.34401, + "y": 22.8000011, + "z": 16.0929718 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "2c2faaf6-49f5-4286-9e68-449f6eff4384", - "Position": { - "x": 109.116806, - "y": 22.70865, - "z": 234.205811 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "2b8f1ba9-543b-45a7-84a7-23a0094ff8a4", + "Position": { + "x": -10.7931976, + "y": 23.982048, + "z": 16.7358112 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", - "Position": { - "x": 49.6950226, - "y": 22.778, - "z": -81.59199 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "2c2faaf6-49f5-4286-9e68-449f6eff4384", + "Position": { + "x": 109.116806, + "y": 22.70865, + "z": 234.205811 + }, + "Rotation": 283.99, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "31fca074-b125-48d7-9beb-4cc6f67c82d2", - "Position": { - "x": 110.661, - "y": 23.193, - "z": 171.344 - }, - "Rotation": 37.9340668, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", + "Position": { + "x": 49.6950226, + "y": 22.778, + "z": -81.59199 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "36a3716c-e3f2-43c7-8b98-ea68c59f8238", - "Position": { - "x": -8.020001, - "y": 23.86, - "z": -4.959993 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "31fca074-b125-48d7-9beb-4cc6f67c82d2", + "Position": { + "x": 110.661, + "y": 23.193, + "z": 171.344 + }, + "Rotation": 37.9340668, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "3b54601a-2e4b-4991-988e-962f1ee45668", - "Position": { - "x": 77.81801, - "y": 22.8000011, - "z": 13.173996 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "36a3716c-e3f2-43c7-8b98-ea68c59f8238", + "Position": { + "x": -8.020001, + "y": 23.86, + "z": -4.959993 + }, + "Rotation": 29.2678757, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "3b8ab212-bd3f-41d2-bdc1-0f7d472b14f9", - "Position": { - "x": 172.2468, - "y": 16.9886513, - "z": 9.425811 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "3b54601a-2e4b-4991-988e-962f1ee45668", + "Position": { + "x": 77.81801, + "y": 22.8000011, + "z": 13.173996 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "3c5c66f2-5ce2-443f-b962-8938f67bf2b4", - "Position": { - "x": 1.43, - "y": 23.89, - "z": -60.42 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "3b8ab212-bd3f-41d2-bdc1-0f7d472b14f9", + "Position": { + "x": 172.2468, + "y": 16.9886513, + "z": 9.425811 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "3ceaca65-e5df-4ad2-8fc9-fe24f1c71b24", - "Position": { - "x": 57.717804, - "y": 23.4366512, - "z": 226.737823 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "3c5c66f2-5ce2-443f-b962-8938f67bf2b4", + "Position": { + "x": 1.43, + "y": 23.89, + "z": -60.42 + }, + "Rotation": 15.3505669, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "3d869992-11e2-4ebf-9d24-f160b612ed17", - "Position": { - "x": 112.67, - "y": 23.193, - "z": 175.8 - }, - "Rotation": 25.0808964, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "3ceaca65-e5df-4ad2-8fc9-fe24f1c71b24", + "Position": { + "x": 57.717804, + "y": 23.4366512, + "z": 226.737823 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "3fd9f3f8-a582-4f1a-938d-133cd47bed8c", - "Position": { - "x": 13.4328041, - "y": 23.48965, - "z": 157.559814 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "3d869992-11e2-4ebf-9d24-f160b612ed17", + "Position": { + "x": 112.67, + "y": 23.193, + "z": 175.8 + }, + "Rotation": 25.0808964, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "407eb4b9-5b70-4f84-bae5-f59e776d1c02", - "Position": { - "x": 73.69881, - "y": 14.1306515, - "z": 117.034813 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "3fd9f3f8-a582-4f1a-938d-133cd47bed8c", + "Position": { + "x": 13.4328041, + "y": 23.48965, + "z": 157.559814 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "412cc11b-b2ec-4d7b-bfbe-9691162949b7", - "Position": { - "x": 67.764, - "y": 13.981, - "z": 163.128 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "407eb4b9-5b70-4f84-bae5-f59e776d1c02", + "Position": { + "x": 73.69881, + "y": 14.1306515, + "z": 117.034813 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "419a0f20-e32e-4f17-a526-675314485814", - "Position": { - "x": -0.66, - "y": 23.89, - "z": -60.43 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "412cc11b-b2ec-4d7b-bfbe-9691162949b7", + "Position": { + "x": 67.764, + "y": 13.981, + "z": 163.128 + }, + "Rotation": 95.4804, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "4274c09b-9544-45e0-aa8a-011b6e929b70", - "Position": { - "x": 73.06999, - "y": 14.18, - "z": 2.27599764 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "419a0f20-e32e-4f17-a526-675314485814", + "Position": { + "x": -0.66, + "y": 23.89, + "z": -60.43 + }, + "Rotation": 15.3505669, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "442298dc-403c-4550-9c2f-60398a638c07", - "Position": { - "x": 73.09, - "y": 14.147, - "z": -56.52 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "4274c09b-9544-45e0-aa8a-011b6e929b70", + "Position": { + "x": 73.06999, + "y": 14.18, + "z": 2.27599764 + }, + "Rotation": 96.67873, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "45bf1ce6-cab7-4b6b-a420-aefc135a942a", - "Position": { - "x": 64.94, - "y": 14.14, - "z": 103.31 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "442298dc-403c-4550-9c2f-60398a638c07", + "Position": { + "x": 73.09, + "y": 14.147, + "z": -56.52 + }, + "Rotation": 94.1142349, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "469bf936-cee9-4b9c-9fa9-54ccdc5467f2", - "Position": { - "x": 139.255, - "y": 14.088, - "z": 65.609 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "45bf1ce6-cab7-4b6b-a420-aefc135a942a", + "Position": { + "x": 64.94, + "y": 14.14, + "z": 103.31 + }, + "Rotation": 96.67873, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "46c3886e-8d68-4614-8a0b-48721ed1ee77", - "Position": { - "x": 74.6868057, - "y": 13.9586515, - "z": 160.9158 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "469bf936-cee9-4b9c-9fa9-54ccdc5467f2", + "Position": { + "x": 139.255, + "y": 14.088, + "z": 65.609 + }, + "Rotation": 281.497131, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "46cb5fbc-3d56-45a1-a6ab-18b22b51cf15", - "Position": { - "x": 36.95, - "y": 23.47, - "z": 146.98 - }, - "Rotation": 142.971115, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "46c3886e-8d68-4614-8a0b-48721ed1ee77", + "Position": { + "x": 74.6868057, + "y": 13.9586515, + "z": 160.9158 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "47849095-43c2-474c-a44d-899e1dc643e4", - "Position": { - "x": 32.7768021, - "y": 22.6686516, - "z": 335.6558 - }, - "Rotation": 158.465, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "46cb5fbc-3d56-45a1-a6ab-18b22b51cf15", + "Position": { + "x": 36.95, + "y": 23.47, + "z": 146.98 + }, + "Rotation": 142.971115, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "48054a87-c386-461e-ad3b-f23291349be1", - "Position": { - "x": 73.880806, - "y": 14.1386509, - "z": 37.23281 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "47849095-43c2-474c-a44d-899e1dc643e4", + "Position": { + "x": 32.7768021, + "y": 22.6686516, + "z": 335.6558 + }, + "Rotation": 158.465, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "4a3e3ae1-e6fb-442f-99c6-f74b25b06a28", - "Position": { - "x": 127.454, - "y": 23.204, - "z": 196.106 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 + }, + { + "Id": "48054a87-c386-461e-ad3b-f23291349be1", + "Position": { + "x": 73.880806, + "y": 14.1386509, + "z": 37.23281 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "4ad4b25c-70f0-47a0-84fd-f8dc685cf399", - "Position": { - "x": -6.32000065, - "y": 23.86, - "z": -2.03999472 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "4a3e3ae1-e6fb-442f-99c6-f74b25b06a28", + "Position": { + "x": 127.454, + "y": 23.204, + "z": 196.106 + }, + "Rotation": 279.416534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } } - } - }, - { - "Id": "4bad832e-0532-463a-8072-c65b67c46519", - "Position": { - "x": 137.5668, - "y": 14.1126509, - "z": 61.81581 - }, - "Rotation": 249.33786, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "4ad4b25c-70f0-47a0-84fd-f8dc685cf399", + "Position": { + "x": -6.32000065, + "y": 23.86, + "z": -2.03999472 + }, + "Rotation": 29.2678757, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "4dd86c92-ee79-4b7d-9931-e658963c8dc0", - "Position": { - "x": 163.6168, - "y": 22.768652, - "z": -88.24419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "4bad832e-0532-463a-8072-c65b67c46519", + "Position": { + "x": 137.5668, + "y": 14.1126509, + "z": 61.81581 + }, + "Rotation": 249.33786, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "4e5dd2d4-cbee-4f97-8f88-18b9a7897e72", - "Position": { - "x": 127.266, - "y": 23.199, - "z": 186.033 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 + }, + { + "Id": "4dd86c92-ee79-4b7d-9931-e658963c8dc0", + "Position": { + "x": 163.6168, + "y": 22.768652, + "z": -88.24419 + }, + "Rotation": 294.737854, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "4e876370-2396-4517-81c1-c535811d18e0", - "Position": { - "x": 54.8150177, - "y": 22.778, - "z": -81.1619949 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "4e5dd2d4-cbee-4f97-8f88-18b9a7897e72", + "Position": { + "x": 127.266, + "y": 23.199, + "z": 186.033 + }, + "Rotation": 279.416534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } } - } - }, - { - "Id": "4f865c11-d533-4fce-9833-fe41a6cb52af", - "Position": { - "x": 83.088, - "y": 22.828, - "z": 17.4640045 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "4e876370-2396-4517-81c1-c535811d18e0", + "Position": { + "x": 54.8150177, + "y": 22.778, + "z": -81.1619949 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "4fb0d413-cf19-4580-8217-b2d6ca431e91", - "Position": { - "x": 83.27998, - "y": 22.8000011, - "z": 18.81697 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "4f865c11-d533-4fce-9833-fe41a6cb52af", + "Position": { + "x": 83.088, + "y": 22.828, + "z": 17.4640045 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "5051d4e9-291a-4384-9557-e10d149f3282", - "Position": { - "x": 44.67, - "y": 23.276, - "z": -102.55 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "4fb0d413-cf19-4580-8217-b2d6ca431e91", + "Position": { + "x": 83.27998, + "y": 22.8000011, + "z": 18.81697 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "50d18fbd-cd19-4d33-afa7-aa1f97b1f303", - "Position": { - "x": 17.0988045, - "y": 24.20565, - "z": 73.366806 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "5051d4e9-291a-4384-9557-e10d149f3282", + "Position": { + "x": 44.67, + "y": 23.276, + "z": -102.55 + }, + "Rotation": 323.255859, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "52521917-58bb-412f-b509-ed69191bf6a3", - "Position": { - "x": 113.965996, - "y": 23.448, - "z": 269.982 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "50d18fbd-cd19-4d33-afa7-aa1f97b1f303", + "Position": { + "x": 17.0988045, + "y": 24.20565, + "z": 73.366806 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "551f5ea8-4bea-474d-a3d1-0af1e507aa73", - "Position": { - "x": 75.1199951, - "y": 14.18, - "z": 6.036 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "52521917-58bb-412f-b509-ed69191bf6a3", + "Position": { + "x": 113.965996, + "y": 23.448, + "z": 269.982 + }, + "Rotation": 197.8527, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "564c09fb-f464-4c30-b61b-4cc1943808be", - "Position": { - "x": 102.15, - "y": 28.1424046, - "z": 311.83 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "551f5ea8-4bea-474d-a3d1-0af1e507aa73", + "Position": { + "x": 75.1199951, + "y": 14.18, + "z": 6.036 + }, + "Rotation": 96.67873, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "5a4e21b9-8234-45a5-b24a-1cd71ffc9d4a", - "Position": { - "x": 117.61, - "y": 28.963, - "z": 146.43 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "564c09fb-f464-4c30-b61b-4cc1943808be", + "Position": { + "x": 102.15, + "y": 28.1424046, + "z": 311.83 + }, + "Rotation": 129.322372, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "5caf5e1b-0113-41fc-9867-007e37ffe906", - "Position": { - "x": 77.647995, - "y": 22.8000011, - "z": 11.443985 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "5a4e21b9-8234-45a5-b24a-1cd71ffc9d4a", + "Position": { + "x": 117.61, + "y": 28.963, + "z": 146.43 + }, + "Rotation": 244.743225, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "5cb1309d-05b9-4043-ba3a-1ef53d52c012", - "Position": { - "x": 40.19, - "y": 23.45, - "z": 148.61 - }, - "Rotation": 171.041977, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "5caf5e1b-0113-41fc-9867-007e37ffe906", + "Position": { + "x": 77.647995, + "y": 22.8000011, + "z": 11.443985 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "5d711f09-edc9-4ec1-94f8-2e1765929dbd", - "Position": { - "x": 73.815, - "y": 14.147, - "z": -54.394 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "5cb1309d-05b9-4043-ba3a-1ef53d52c012", + "Position": { + "x": 40.19, + "y": 23.45, + "z": 148.61 + }, + "Rotation": 171.041977, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "5e1f6ac9-eac2-455e-a9ee-43b293f2ae39", - "Position": { - "x": 57.486805, - "y": 14.0686512, - "z": -33.82419 - }, - "Rotation": 57.4887657, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "5d711f09-edc9-4ec1-94f8-2e1765929dbd", + "Position": { + "x": 73.815, + "y": 14.147, + "z": -54.394 + }, + "Rotation": 94.1142349, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "5fa59046-4e17-408e-8531-14766ae4a7c4", - "Position": { - "x": 117.49, - "y": 28.963, - "z": 148.6 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "5e1f6ac9-eac2-455e-a9ee-43b293f2ae39", + "Position": { + "x": 57.486805, + "y": 14.0686512, + "z": -33.82419 + }, + "Rotation": 57.4887657, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "612fd960-fdd6-422b-9b5b-8161d4e5ec12", - "Position": { - "x": 72.331, - "y": 14.147, - "z": -51.719 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "5fa59046-4e17-408e-8531-14766ae4a7c4", + "Position": { + "x": 117.49, + "y": 28.963, + "z": 148.6 + }, + "Rotation": 244.743225, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", - "Position": { - "x": 70.188, - "y": 22.818, - "z": 269.214 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "612fd960-fdd6-422b-9b5b-8161d4e5ec12", + "Position": { + "x": 72.331, + "y": 14.147, + "z": -51.719 + }, + "Rotation": 94.1142349, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "61bc3b0f-bbb7-41a6-a3cb-fc647cb4d57d", - "Position": { - "x": 137.174, - "y": 14.088, - "z": 67.36 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", + "Position": { + "x": 70.188, + "y": 22.818, + "z": 269.214 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "62f5b14d-cb51-4529-b572-f5a8f5815bb5", - "Position": { - "x": 85.92601, - "y": 22.828001, - "z": 18.5319977 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "61bc3b0f-bbb7-41a6-a3cb-fc647cb4d57d", + "Position": { + "x": 137.174, + "y": 14.088, + "z": 67.36 + }, + "Rotation": 281.497131, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "64bab044-d9e2-41fb-8b02-435103f17bdc", - "Position": { - "x": 112.2068, - "y": 22.688652, - "z": 220.925812 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "62f5b14d-cb51-4529-b572-f5a8f5815bb5", + "Position": { + "x": 85.92601, + "y": 22.828001, + "z": 18.5319977 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "65f10e3a-3f0c-415a-82c9-65c494071117", - "Position": { - "x": 131.006, - "y": 23.45, - "z": 268.826 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "64bab044-d9e2-41fb-8b02-435103f17bdc", + "Position": { + "x": 112.2068, + "y": 22.688652, + "z": 220.925812 + }, + "Rotation": 283.99, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", - "Position": { - "x": 73.48802, - "y": 22.987999, - "z": 263.994019 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "65f10e3a-3f0c-415a-82c9-65c494071117", + "Position": { + "x": 131.006, + "y": 23.45, + "z": 268.826 + }, + "Rotation": 235.117432, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "6a18e621-14cc-4de5-83e9-4dbb5d57db3d", - "Position": { - "x": 180.8, - "y": 16.21, - "z": 117.5 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", + "Position": { + "x": 73.48802, + "y": 22.987999, + "z": 263.994019 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "6a4b6afe-e215-4d9b-8d1e-4c2f7187baef", - "Position": { - "x": 46.38, - "y": 23.276, - "z": -101.48 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "6a18e621-14cc-4de5-83e9-4dbb5d57db3d", + "Position": { + "x": 180.8, + "y": 16.21, + "z": 117.5 + }, + "Rotation": 95.4804, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "6acdf3c0-2c89-4824-97b9-7d5d10969670", - "Position": { - "x": 64.41, - "y": 14.702, - "z": 164.414 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "6a4b6afe-e215-4d9b-8d1e-4c2f7187baef", + "Position": { + "x": 46.38, + "y": 23.276, + "z": -101.48 + }, + "Rotation": 323.255859, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "6b4a840c-fc42-4b8c-bc68-04d7f6c2113a", - "Position": { - "x": 151.47, - "y": 22.85, - "z": 243.36 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "6acdf3c0-2c89-4824-97b9-7d5d10969670", + "Position": { + "x": 64.41, + "y": 14.702, + "z": 164.414 + }, + "Rotation": 95.4804, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "6bb1d97d-c152-4467-b67b-bcd052438a96", - "Position": { - "x": 180.58, - "y": 16.2, - "z": 123.16 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "6b4a840c-fc42-4b8c-bc68-04d7f6c2113a", + "Position": { + "x": 151.47, + "y": 22.85, + "z": 243.36 + }, + "Rotation": 244.743225, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "6ce9a592-54dc-4bbb-bfd1-0f2e8cbc3ea2", - "Position": { - "x": 22.2868042, - "y": 23.53865, - "z": 255.1308 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "6bb1d97d-c152-4467-b67b-bcd052438a96", + "Position": { + "x": 180.58, + "y": 16.2, + "z": 123.16 + }, + "Rotation": 95.4804, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", - "Position": { - "x": 71.76799, - "y": 22.987999, - "z": 270.554016 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "6ce9a592-54dc-4bbb-bfd1-0f2e8cbc3ea2", + "Position": { + "x": 22.2868042, + "y": 23.53865, + "z": 255.1308 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "6f70381f-dcd2-4b4b-8f7e-27a787298af6", - "Position": { - "x": -4.45, - "y": 23.89, - "z": -58.9 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", + "Position": { + "x": 71.76799, + "y": 22.987999, + "z": 270.554016 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "70d32d6a-267d-4375-86be-dc240e2255e9", - "Position": { - "x": -15.6471939, - "y": 23.87565, - "z": 101.716812 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "6f70381f-dcd2-4b4b-8f7e-27a787298af6", + "Position": { + "x": -4.45, + "y": 23.89, + "z": -58.9 + }, + "Rotation": 15.3505669, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "71e27ce2-54ef-4070-942c-c8a136e81fcf", - "Position": { - "x": 113.345993, - "y": 23.448, - "z": 273.162 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "70d32d6a-267d-4375-86be-dc240e2255e9", + "Position": { + "x": -15.6471939, + "y": 23.87565, + "z": 101.716812 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "734798e9-93cc-4239-93eb-8f23476b1f3d", - "Position": { - "x": 137.609, - "y": 14.088, - "z": 63.101 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "71e27ce2-54ef-4070-942c-c8a136e81fcf", + "Position": { + "x": 113.345993, + "y": 23.448, + "z": 273.162 + }, + "Rotation": 197.8527, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "74ce5970-afa4-4bfa-9a57-5f1725adb6f6", - "Position": { - "x": 73.57, - "y": 14.147, - "z": -48.848 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "734798e9-93cc-4239-93eb-8f23476b1f3d", + "Position": { + "x": 137.609, + "y": 14.088, + "z": 63.101 + }, + "Rotation": 281.497131, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "74da28f8-d773-4ede-9c03-83811cf9563f", - "Position": { - "x": 74.271, - "y": 14.147, - "z": -51.551 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "74ce5970-afa4-4bfa-9a57-5f1725adb6f6", + "Position": { + "x": 73.57, + "y": 14.147, + "z": -48.848 + }, + "Rotation": 94.1142349, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", - "Position": { - "x": 52.9480133, - "y": 22.918, - "z": -79.646 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "74da28f8-d773-4ede-9c03-83811cf9563f", + "Position": { + "x": 74.271, + "y": 14.147, + "z": -51.551 + }, + "Rotation": 94.1142349, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "75f2a001-06c8-40a2-99f0-715c75b38138", - "Position": { - "x": 135.18, - "y": 14.088, - "z": 66.07 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", + "Position": { + "x": 52.9480133, + "y": 22.918, + "z": -79.646 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "76076875-b690-43f3-8917-68f7b077742f", - "Position": { - "x": 117.819, - "y": 28.963, - "z": 152.665 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "75f2a001-06c8-40a2-99f0-715c75b38138", + "Position": { + "x": 135.18, + "y": 14.088, + "z": 66.07 + }, + "Rotation": 281.497131, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "7650aa3e-7ab6-4e76-9b71-af60211b4ad1", - "Position": { - "x": 143.83, - "y": 22.74, - "z": -71.39 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "76076875-b690-43f3-8917-68f7b077742f", + "Position": { + "x": 117.819, + "y": 28.963, + "z": 152.665 + }, + "Rotation": 244.743225, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "7689966a-e33d-45af-bec8-7f4161438b74", - "Position": { - "x": 133.66, - "y": 23.45, - "z": 268.62 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "7650aa3e-7ab6-4e76-9b71-af60211b4ad1", + "Position": { + "x": 143.83, + "y": 22.74, + "z": -71.39 + }, + "Rotation": 53.49001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "7abcf691-7aa8-4dff-a592-5cd860701676", - "Position": { - "x": 121.494, - "y": 22.834, - "z": -2.778 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "7689966a-e33d-45af-bec8-7f4161438b74", + "Position": { + "x": 133.66, + "y": 23.45, + "z": 268.62 + }, + "Rotation": 235.117432, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "7b81d205-9028-4a06-81ce-b1d73922fce0", - "Position": { - "x": 115.777, - "y": 23.426, - "z": 274.272 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "7abcf691-7aa8-4dff-a592-5cd860701676", + "Position": { + "x": 121.494, + "y": 22.834, + "z": -2.778 + }, + "Rotation": 297.1408, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "7c3113ec-ad54-4482-b131-616af7d8b187", - "Position": { - "x": 133.4458, - "y": 14.1126509, - "z": 66.43681 - }, - "Rotation": 249.33786, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "7b81d205-9028-4a06-81ce-b1d73922fce0", + "Position": { + "x": 115.777, + "y": 23.426, + "z": 274.272 + }, + "Rotation": 197.8527, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "7d15d123-4d59-451f-9bf5-c0d0ac846d84", - "Position": { - "x": 176.3018, - "y": 16.9956512, - "z": 10.2488108 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "7c3113ec-ad54-4482-b131-616af7d8b187", + "Position": { + "x": 133.4458, + "y": 14.1126509, + "z": 66.43681 + }, + "Rotation": 249.33786, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "7e5be667-48c5-4d47-899b-6349fffab4f2", - "Position": { - "x": 17.0218048, - "y": 24.20565, - "z": 66.79081 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "7d15d123-4d59-451f-9bf5-c0d0ac846d84", + "Position": { + "x": 176.3018, + "y": 16.9956512, + "z": 10.2488108 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "7f0d4fce-32a8-4d9a-ac19-d27ab617a45a", - "Position": { - "x": 132.107, - "y": 23.45, - "z": 270.349 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "7e5be667-48c5-4d47-899b-6349fffab4f2", + "Position": { + "x": 17.0218048, + "y": 24.20565, + "z": 66.79081 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "808fa3b4-3c42-4677-a55a-820550dbd33a", - "Position": { - "x": 71.866806, - "y": 14.1386509, - "z": -13.0741882 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "7f0d4fce-32a8-4d9a-ac19-d27ab617a45a", + "Position": { + "x": 132.107, + "y": 23.45, + "z": 270.349 + }, + "Rotation": 235.117432, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "811063e9-7b4c-4e88-b571-dda14fc5c422", - "Position": { - "x": 111.826, - "y": 23.448, - "z": 269.082 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "808fa3b4-3c42-4677-a55a-820550dbd33a", + "Position": { + "x": 71.866806, + "y": 14.1386509, + "z": -13.0741882 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "818d8bb3-2bb9-4323-be8a-f03b1cfc2137", - "Position": { - "x": 143.33, - "y": 22.74, - "z": -69.41 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "811063e9-7b4c-4e88-b571-dda14fc5c422", + "Position": { + "x": 111.826, + "y": 23.448, + "z": 269.082 + }, + "Rotation": 197.8527, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8199eec6-7c9e-47bd-9564-c8bf35c88cc8", - "Position": { - "x": 55.2668037, - "y": 14.0686512, - "z": -32.35419 - }, - "Rotation": 57.4887657, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "818d8bb3-2bb9-4323-be8a-f03b1cfc2137", + "Position": { + "x": 143.33, + "y": 22.74, + "z": -69.41 + }, + "Rotation": 53.49001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "81dcf114-6ea8-4197-b024-d886a7b3b1fb", - "Position": { - "x": 46.5608063, - "y": 23.30565, - "z": -102.121193 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8199eec6-7c9e-47bd-9564-c8bf35c88cc8", + "Position": { + "x": 55.2668037, + "y": 14.0686512, + "z": -32.35419 + }, + "Rotation": 57.4887657, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "82479080-e2bd-4673-be13-9e436f814a45", - "Position": { - "x": 26.1368027, - "y": 23.86865, - "z": -24.01419 - }, - "Rotation": 220.881927, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "81dcf114-6ea8-4197-b024-d886a7b3b1fb", + "Position": { + "x": 46.5608063, + "y": 23.30565, + "z": -102.121193 + }, + "Rotation": 294.737854, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", - "Position": { - "x": 52.795, - "y": 22.778, - "z": -76.65201 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "82479080-e2bd-4673-be13-9e436f814a45", + "Position": { + "x": 26.1368027, + "y": 23.86865, + "z": -24.01419 + }, + "Rotation": 220.881927, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "85d0c978-1f88-4867-ab44-2d2a9a799ec9", - "Position": { - "x": 11.5208054, - "y": 23.48965, - "z": 156.3288 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", + "Position": { + "x": 52.795, + "y": 22.778, + "z": -76.65201 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "87e8d4b8-9daf-433d-ac02-618fa63697f3", - "Position": { - "x": 162.2768, - "y": 22.768652, - "z": -86.23419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "85d0c978-1f88-4867-ab44-2d2a9a799ec9", + "Position": { + "x": 11.5208054, + "y": 23.48965, + "z": 156.3288 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "88f9673a-94aa-41e0-af26-8fb49d809b60", - "Position": { - "x": 26.6068039, - "y": 23.86865, - "z": -26.9641876 - }, - "Rotation": 220.881927, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "87e8d4b8-9daf-433d-ac02-618fa63697f3", + "Position": { + "x": 162.2768, + "y": 22.768652, + "z": -86.23419 + }, + "Rotation": 294.737854, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "894397aa-eb45-4371-a2da-dcaa55bbc2df", - "Position": { - "x": 111.535995, - "y": 23.448, - "z": 271.632 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "88f9673a-94aa-41e0-af26-8fb49d809b60", + "Position": { + "x": 26.6068039, + "y": 23.86865, + "z": -26.9641876 + }, + "Rotation": 220.881927, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8991994e-2dd2-4335-8fb9-5f906a80c0f8", - "Position": { - "x": 179.893, - "y": 17.01, - "z": -6.997 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "894397aa-eb45-4371-a2da-dcaa55bbc2df", + "Position": { + "x": 111.535995, + "y": 23.448, + "z": 271.632 + }, + "Rotation": 197.8527, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8a478f38-07d3-4e3d-8322-d2f1f6137aff", - "Position": { - "x": 99.644, - "y": 28.1424046, - "z": 314.177 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8991994e-2dd2-4335-8fb9-5f906a80c0f8", + "Position": { + "x": 179.893, + "y": 17.01, + "z": -6.997 + }, + "Rotation": 53.49001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8aa4f53e-1ecd-4bda-900a-3c650e197c8e", - "Position": { - "x": 134.04, - "y": 23.45, - "z": 271.91 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8a478f38-07d3-4e3d-8322-d2f1f6137aff", + "Position": { + "x": 99.644, + "y": 28.1424046, + "z": 314.177 + }, + "Rotation": 129.322372, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8ac7e495-cc53-4543-baa7-8a4fc32a6172", - "Position": { - "x": 96.9698, - "y": 22.87865, - "z": -86.9261856 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8aa4f53e-1ecd-4bda-900a-3c650e197c8e", + "Position": { + "x": 134.04, + "y": 23.45, + "z": 271.91 + }, + "Rotation": 235.117432, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8b301a0d-e694-4f24-b938-32329a5084f5", - "Position": { - "x": 87.17799, - "y": 22.809, - "z": 17.154007 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8ac7e495-cc53-4543-baa7-8a4fc32a6172", + "Position": { + "x": 96.9698, + "y": 22.87865, + "z": -86.9261856 + }, + "Rotation": 294.737854, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8befdee7-3429-4faa-85e4-c5bf3f763845", - "Position": { - "x": 11.1888046, - "y": 23.48965, - "z": 159.016815 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8b301a0d-e694-4f24-b938-32329a5084f5", + "Position": { + "x": 87.17799, + "y": 22.809, + "z": 17.154007 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8e2cf7d7-6b81-4686-be31-1f169492165f", - "Position": { - "x": 144.95, - "y": 22.949, - "z": 253.29 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8befdee7-3429-4faa-85e4-c5bf3f763845", + "Position": { + "x": 11.1888046, + "y": 23.48965, + "z": 159.016815 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8e70071b-0949-4f6a-b106-dcc689714e07", - "Position": { - "x": 109.208, - "y": 23.193, - "z": 174.245 - }, - "Rotation": 24.08007, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8e2cf7d7-6b81-4686-be31-1f169492165f", + "Position": { + "x": 144.95, + "y": 22.949, + "z": 253.29 + }, + "Rotation": 244.743225, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8f3bef35-3e52-47ec-a072-02b3ad071433", - "Position": { - "x": 183.821, - "y": 17.209, - "z": -6.948 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8e70071b-0949-4f6a-b106-dcc689714e07", + "Position": { + "x": 109.208, + "y": 23.193, + "z": 174.245 + }, + "Rotation": 24.08007, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "8f4062b7-bb81-4f5e-8400-d714bf323984", - "Position": { - "x": -15.4731979, - "y": 23.8186512, - "z": -56.62419 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8f3bef35-3e52-47ec-a072-02b3ad071433", + "Position": { + "x": 183.821, + "y": 17.209, + "z": -6.948 + }, + "Rotation": 53.49001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "90a0d0bc-fe10-4772-b28a-74a61583e5f4", - "Position": { - "x": 36.1368027, - "y": 22.6686516, - "z": 334.6858 - }, - "Rotation": 158.465, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "8f4062b7-bb81-4f5e-8400-d714bf323984", + "Position": { + "x": -15.4731979, + "y": 23.8186512, + "z": -56.62419 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", - "Position": { - "x": 52.8650055, - "y": 22.778, - "z": -75.272 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "90a0d0bc-fe10-4772-b28a-74a61583e5f4", + "Position": { + "x": 36.1368027, + "y": 22.6686516, + "z": 334.6858 + }, + "Rotation": 158.465, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "93f288d8-8fc8-4fee-b904-6c4128c7a7a9", - "Position": { - "x": 8.986805, - "y": 23.48965, - "z": 158.425812 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", + "Position": { + "x": 52.8650055, + "y": 22.778, + "z": -75.272 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "96c84440-4cc8-410e-afd2-15dc920dca8b", - "Position": { - "x": 147.74, - "y": 23.3, - "z": 253.63 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "93f288d8-8fc8-4fee-b904-6c4128c7a7a9", + "Position": { + "x": 8.986805, + "y": 23.48965, + "z": 158.425812 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "97185451-3b24-4e74-baa1-6a706f09c520", - "Position": { - "x": 80.90199, - "y": 22.8000011, - "z": 18.7039948 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "96c84440-4cc8-410e-afd2-15dc920dca8b", + "Position": { + "x": 147.74, + "y": 23.3, + "z": 253.63 + }, + "Rotation": 244.743225, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", - "Position": { - "x": 70.468, - "y": 23.018, - "z": 266.003967 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "97185451-3b24-4e74-baa1-6a706f09c520", + "Position": { + "x": 80.90199, + "y": 22.8000011, + "z": 18.7039948 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "989cfb81-3a2e-4cef-b3c1-a2a914dceaad", - "Position": { - "x": 119.189, - "y": 22.834, - "z": -2.685 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", + "Position": { + "x": 70.468, + "y": 23.018, + "z": 266.003967 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", - "Position": { - "x": 79.97801, - "y": 22.818, - "z": 270.224 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "989cfb81-3a2e-4cef-b3c1-a2a914dceaad", + "Position": { + "x": 119.189, + "y": 22.834, + "z": -2.685 + }, + "Rotation": 297.1408, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "9c0e31a8-2008-41ef-b42b-b8888cc523ba", - "Position": { - "x": 142.85, - "y": 22.74, - "z": -67.64 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", + "Position": { + "x": 79.97801, + "y": 22.818, + "z": 270.224 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "9ca696c4-a631-4272-9e02-e0b7950a8a18", - "Position": { - "x": 57.236805, - "y": 14.0986509, - "z": -31.15419 - }, - "Rotation": 57.4887657, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "9c0e31a8-2008-41ef-b42b-b8888cc523ba", + "Position": { + "x": 142.85, + "y": 22.74, + "z": -67.64 + }, + "Rotation": 53.49001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "9cc6b2c3-948c-4902-8344-fa12d0c0e700", - "Position": { - "x": 135.85, - "y": 14.088, - "z": 68.92 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "9ca696c4-a631-4272-9e02-e0b7950a8a18", + "Position": { + "x": 57.236805, + "y": 14.0986509, + "z": -31.15419 + }, + "Rotation": 57.4887657, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "9dd4bcc0-062e-45a4-9346-2b488ed4ad72", - "Position": { - "x": 86.31801, - "y": 22.809, - "z": 14.1439972 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "9cc6b2c3-948c-4902-8344-fa12d0c0e700", + "Position": { + "x": 135.85, + "y": 14.088, + "z": 68.92 + }, + "Rotation": 281.497131, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", - "Position": { - "x": 76.378006, - "y": 23.018, - "z": 267.274 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "9dd4bcc0-062e-45a4-9346-2b488ed4ad72", + "Position": { + "x": 86.31801, + "y": 22.809, + "z": 14.1439972 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "9fbe814b-9217-4d81-84c2-cc43e67f7bda", - "Position": { - "x": 117.413, - "y": 28.963, - "z": 154.495 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", + "Position": { + "x": 76.378006, + "y": 23.018, + "z": 267.274 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "a5654bc0-d8a6-4897-9f9a-768c4af478c1", - "Position": { - "x": -8.37, - "y": 23.86, - "z": -0.3899932 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "9fbe814b-9217-4d81-84c2-cc43e67f7bda", + "Position": { + "x": 117.413, + "y": 28.963, + "z": 154.495 + }, + "Rotation": 244.743225, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "a89d94ec-5205-4f8f-aac1-e6680ffbdebf", - "Position": { - "x": 29.9268036, - "y": 23.86865, - "z": -25.2141876 - }, - "Rotation": 220.881927, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "a5654bc0-d8a6-4897-9f9a-768c4af478c1", + "Position": { + "x": -8.37, + "y": 23.86, + "z": -0.3899932 + }, + "Rotation": 29.2678757, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "a8b2e367-82fd-4e64-a37c-906955df399f", - "Position": { - "x": 67.72, - "y": 13.981, - "z": 164.591 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "a89d94ec-5205-4f8f-aac1-e6680ffbdebf", + "Position": { + "x": 29.9268036, + "y": 23.86865, + "z": -25.2141876 + }, + "Rotation": 220.881927, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "a9f2fbc7-fa61-4538-9e91-39ca505f86e7", - "Position": { - "x": -11.19, - "y": 23.86, - "z": -2.8199935 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "a8b2e367-82fd-4e64-a37c-906955df399f", + "Position": { + "x": 67.72, + "y": 13.981, + "z": 164.591 + }, + "Rotation": 95.4804, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "ace73ef1-b867-4e84-9a40-5a1aefbbbd78", - "Position": { - "x": 44.2268066, - "y": 23.30565, - "z": -104.874191 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "a9f2fbc7-fa61-4538-9e91-39ca505f86e7", + "Position": { + "x": -11.19, + "y": 23.86, + "z": -2.8199935 + }, + "Rotation": 29.2678757, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b0126d65-ba76-45ad-b25e-32f4f3509904", - "Position": { - "x": 83.84801, - "y": 22.8399982, - "z": 19.673996 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "ace73ef1-b867-4e84-9a40-5a1aefbbbd78", + "Position": { + "x": 44.2268066, + "y": 23.30565, + "z": -104.874191 + }, + "Rotation": 294.737854, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b049945c-de9b-4bea-a102-f7e318c188f4", - "Position": { - "x": 72.74081, - "y": 14.1386509, - "z": 29.96981 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b0126d65-ba76-45ad-b25e-32f4f3509904", + "Position": { + "x": 83.84801, + "y": 22.8399982, + "z": 19.673996 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b049c6f8-afb9-42f9-9591-2f265fef2097", - "Position": { - "x": 81.33101, - "y": 22.8000011, - "z": 14.4269867 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b049945c-de9b-4bea-a102-f7e318c188f4", + "Position": { + "x": 72.74081, + "y": 14.1386509, + "z": 29.96981 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b174e1f8-2d16-4762-9e14-ca87057191b3", - "Position": { - "x": -10.4581985, - "y": 23.982048, - "z": 19.6548119 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b049c6f8-afb9-42f9-9591-2f265fef2097", + "Position": { + "x": 81.33101, + "y": 22.8000011, + "z": 14.4269867 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b2045b65-d78a-4f76-b35d-6966bf7a1616", - "Position": { - "x": 72.49081, - "y": 14.2016516, - "z": 113.621811 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b174e1f8-2d16-4762-9e14-ca87057191b3", + "Position": { + "x": -10.4581985, + "y": 23.982048, + "z": 19.6548119 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b2d85104-d574-4482-8962-9dbeae1221f5", - "Position": { - "x": 74.228, - "y": 14.18, - "z": 8.865999 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b2045b65-d78a-4f76-b35d-6966bf7a1616", + "Position": { + "x": 72.49081, + "y": 14.2016516, + "z": 113.621811 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b4320240-51bf-44b3-857f-7fb70ad39f52", - "Position": { - "x": 96.2568054, - "y": 22.87865, - "z": -85.19419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b2d85104-d574-4482-8962-9dbeae1221f5", + "Position": { + "x": 74.228, + "y": 14.18, + "z": 8.865999 + }, + "Rotation": 96.67873, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b5e02957-b03d-4295-b05d-9be69f6f2e82", - "Position": { - "x": 67.816, - "y": 13.981, - "z": 166.22 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b4320240-51bf-44b3-857f-7fb70ad39f52", + "Position": { + "x": 96.2568054, + "y": 22.87865, + "z": -85.19419 + }, + "Rotation": 294.737854, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b7183870-a16c-4429-a8e7-2c2710fe3b57", - "Position": { - "x": 103.8, - "y": 28.1424046, - "z": 316.122 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b5e02957-b03d-4295-b05d-9be69f6f2e82", + "Position": { + "x": 67.816, + "y": 13.981, + "z": 166.22 + }, + "Rotation": 95.4804, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b770592a-8d5d-46f5-95b9-b87b8526e72f", - "Position": { - "x": 109.396805, - "y": 22.688652, - "z": 239.435822 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b7183870-a16c-4429-a8e7-2c2710fe3b57", + "Position": { + "x": 103.8, + "y": 28.1424046, + "z": 316.122 + }, + "Rotation": 129.322372, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b8e7952a-18cd-4553-ad28-952a4697b055", - "Position": { - "x": 58.3678055, - "y": 23.4366512, - "z": 229.1268 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b770592a-8d5d-46f5-95b9-b87b8526e72f", + "Position": { + "x": 109.396805, + "y": 22.688652, + "z": 239.435822 + }, + "Rotation": 283.99, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "b96df3dc-23f2-4e1d-8a9a-9fbe05a94f47", - "Position": { - "x": 83.998, - "y": 22.828001, - "z": 16.05397 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b8e7952a-18cd-4553-ad28-952a4697b055", + "Position": { + "x": 58.3678055, + "y": 23.4366512, + "z": 229.1268 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "ba5a0138-2a24-4ceb-bdb2-92d351fec342", - "Position": { - "x": 42.021, - "y": 23.276, - "z": -104.487 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "b96df3dc-23f2-4e1d-8a9a-9fbe05a94f47", + "Position": { + "x": 83.998, + "y": 22.828001, + "z": 16.05397 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "baab705e-363a-41c4-9419-35c0cae9149b", - "Position": { - "x": 98.94981, - "y": 22.87865, - "z": -85.03119 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "ba5a0138-2a24-4ceb-bdb2-92d351fec342", + "Position": { + "x": 42.021, + "y": 23.276, + "z": -104.487 + }, + "Rotation": 323.255859, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "bac88572-2efd-4af3-ad8e-da356ed452a2", - "Position": { - "x": 180.1868, - "y": 16.21865, - "z": 128.1658 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "baab705e-363a-41c4-9419-35c0cae9149b", + "Position": { + "x": 98.94981, + "y": 22.87865, + "z": -85.03119 + }, + "Rotation": 294.737854, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "beefbcb9-c0cf-4dcc-860b-e599607fc324", - "Position": { - "x": 45.6098022, - "y": 23.30565, - "z": -99.78419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "bac88572-2efd-4af3-ad8e-da356ed452a2", + "Position": { + "x": 180.1868, + "y": 16.21865, + "z": 128.1658 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "c081b15d-fb2d-4a02-afeb-b0664e2bdb02", - "Position": { - "x": 38.7, - "y": 23.48, - "z": 147.19 - }, - "Rotation": 151.165863, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "beefbcb9-c0cf-4dcc-860b-e599607fc324", + "Position": { + "x": 45.6098022, + "y": 23.30565, + "z": -99.78419 + }, + "Rotation": 294.737854, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "c106dee0-2b28-461f-8d43-1ca961ff1d04", - "Position": { - "x": 127.225, - "y": 23.225, - "z": 192.607 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 + }, + { + "Id": "c081b15d-fb2d-4a02-afeb-b0664e2bdb02", + "Position": { + "x": 38.7, + "y": 23.48, + "z": 147.19 + }, + "Rotation": 151.165863, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "c2573535-446a-4dbc-ace0-a3c714834771", - "Position": { - "x": 18.5388031, - "y": 24.20565, - "z": 73.82181 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "c106dee0-2b28-461f-8d43-1ca961ff1d04", + "Position": { + "x": 127.225, + "y": 23.225, + "z": 192.607 + }, + "Rotation": 279.416534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } } - } - }, - { - "Id": "c2d85c3f-a32f-42de-9a1b-b4ed6f8567e3", - "Position": { - "x": 180.9668, - "y": 16.21865, - "z": 130.085815 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "c2573535-446a-4dbc-ace0-a3c714834771", + "Position": { + "x": 18.5388031, + "y": 24.20565, + "z": 73.82181 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "c36b37b1-e654-45b8-a921-4864d1a325a4", - "Position": { - "x": 79.78801, - "y": 22.8000011, - "z": 11.7740021 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "c2d85c3f-a32f-42de-9a1b-b4ed6f8567e3", + "Position": { + "x": 180.9668, + "y": 16.21865, + "z": 130.085815 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "c5fca4a0-ec81-4e87-a7ed-a64a3f8bc3f6", - "Position": { - "x": 22.8788033, - "y": 23.53865, - "z": 253.499817 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "c36b37b1-e654-45b8-a921-4864d1a325a4", + "Position": { + "x": 79.78801, + "y": 22.8000011, + "z": 11.7740021 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "c6b7ada3-06e1-4c17-bbfc-805297968e04", - "Position": { - "x": 101.579, - "y": 28.1424046, - "z": 314.783 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "c5fca4a0-ec81-4e87-a7ed-a64a3f8bc3f6", + "Position": { + "x": 22.8788033, + "y": 23.53865, + "z": 253.499817 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "c83cfa66-d6c2-4b78-8dfd-23d3fc83413c", - "Position": { - "x": 147.55, - "y": 23.3, - "z": 250.06 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "c6b7ada3-06e1-4c17-bbfc-805297968e04", + "Position": { + "x": 101.579, + "y": 28.1424046, + "z": 314.783 + }, + "Rotation": 129.322372, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "c8b04f3f-1f80-49a7-8530-3180b3ff71e9", - "Position": { - "x": 84.94798, - "y": 22.809, - "z": 15.1129913 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "c83cfa66-d6c2-4b78-8dfd-23d3fc83413c", + "Position": { + "x": 147.55, + "y": 23.3, + "z": 250.06 + }, + "Rotation": 244.743225, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "c91b3833-85b9-4c83-9d02-34550ad84008", - "Position": { - "x": 72.22681, - "y": 13.9586515, - "z": 159.3858 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "c8b04f3f-1f80-49a7-8530-3180b3ff71e9", + "Position": { + "x": 84.94798, + "y": 22.809, + "z": 15.1129913 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "c94a8465-be54-4bf3-833b-b83822b582df", - "Position": { - "x": 176.79, - "y": 17.01, - "z": -6.32 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "c91b3833-85b9-4c83-9d02-34550ad84008", + "Position": { + "x": 72.22681, + "y": 13.9586515, + "z": 159.3858 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "cbf941fc-9b66-4a2c-aa00-b1d9b1ba7f9f", - "Position": { - "x": 177.581, - "y": 17.01, - "z": -4.079 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "c94a8465-be54-4bf3-833b-b83822b582df", + "Position": { + "x": 176.79, + "y": 17.01, + "z": -6.32 + }, + "Rotation": 53.49001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "cc5ed6f2-1e4e-43d4-9ad4-9fc3aaf1e162", - "Position": { - "x": -11.0, - "y": 23.86, - "z": -5.77 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "cbf941fc-9b66-4a2c-aa00-b1d9b1ba7f9f", + "Position": { + "x": 177.581, + "y": 17.01, + "z": -4.079 + }, + "Rotation": 53.49001, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "ccf7a261-a540-4d17-a3c3-445521a8dd22", - "Position": { - "x": 104.531586, - "y": 33.44029, - "z": 107.521042 - }, - "Rotation": 247.765274, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 1700.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 + }, + { + "Id": "cc5ed6f2-1e4e-43d4-9ad4-9fc3aaf1e162", + "Position": { + "x": -11.0, + "y": 23.86, + "z": -5.77 + }, + "Rotation": 29.2678757, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", - "Position": { - "x": 54.733017, - "y": 22.778, - "z": -79.07599 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "ccf7a261-a540-4d17-a3c3-445521a8dd22", + "Position": { + "x": 104.531586, + "y": 33.44029, + "z": 107.521042 + }, + "Rotation": 247.765274, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 1700.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } } - } - }, - { - "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", - "Position": { - "x": 54.50502, - "y": 22.778, - "z": -73.88199 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", + "Position": { + "x": 54.733017, + "y": 22.778, + "z": -79.07599 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "ced4b14f-e478-467d-bed1-0314278e555a", - "Position": { - "x": 101.809, - "y": 28.1424046, - "z": 317.117 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", + "Position": { + "x": 54.50502, + "y": 22.778, + "z": -73.88199 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "d4f55d16-038b-455e-bc9a-74a49e57ab89", - "Position": { - "x": 119.705, - "y": 22.834, - "z": -4.314 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "ced4b14f-e478-467d-bed1-0314278e555a", + "Position": { + "x": 101.809, + "y": 28.1424046, + "z": 317.117 + }, + "Rotation": 129.322372, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "d6b11dc2-4817-4421-bec9-c790a4019777", - "Position": { - "x": 175.106812, - "y": 16.9956512, - "z": 2.17581081 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "d4f55d16-038b-455e-bc9a-74a49e57ab89", + "Position": { + "x": 119.705, + "y": 22.834, + "z": -4.314 + }, + "Rotation": 297.1408, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "d9e3c316-cf61-454b-8fca-aae78f2c0622", - "Position": { - "x": 136.6, - "y": 22.74, - "z": -66.89 - }, - "Rotation": 298.9875, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "d6b11dc2-4817-4421-bec9-c790a4019777", + "Position": { + "x": 175.106812, + "y": 16.9956512, + "z": 2.17581081 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "daaa4a02-1f51-460b-bdf8-29b3bd2c838b", - "Position": { - "x": 78.24098, - "y": 22.85, - "z": 16.96199 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "d9e3c316-cf61-454b-8fca-aae78f2c0622", + "Position": { + "x": 136.6, + "y": 22.74, + "z": -66.89 + }, + "Rotation": 298.9875, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "db5b9d0d-3105-4814-b413-03d28d4a87d2", - "Position": { - "x": 47.123, - "y": 23.276, - "z": -103.068 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "daaa4a02-1f51-460b-bdf8-29b3bd2c838b", + "Position": { + "x": 78.24098, + "y": 22.85, + "z": 16.96199 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "dcbe096a-7083-4dc0-a7e2-8149e7c153d4", - "Position": { - "x": 130.538, - "y": 23.45, - "z": 271.616 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "db5b9d0d-3105-4814-b413-03d28d4a87d2", + "Position": { + "x": 47.123, + "y": 23.276, + "z": -103.068 + }, + "Rotation": 323.255859, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "dd034db3-fb3e-4b8a-9255-8fbe67b59f1f", - "Position": { - "x": 57.486805, - "y": 23.4366512, - "z": 229.5658 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "dcbe096a-7083-4dc0-a7e2-8149e7c153d4", + "Position": { + "x": 130.538, + "y": 23.45, + "z": 271.616 + }, + "Rotation": 235.117432, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "ddca1267-6caa-4986-bd13-0ed29a81e6d2", - "Position": { - "x": 86.15001, - "y": 22.809, - "z": 16.2979889 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "dd034db3-fb3e-4b8a-9255-8fbe67b59f1f", + "Position": { + "x": 57.486805, + "y": 23.4366512, + "z": 229.5658 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "de5f4d8c-1411-446e-b67b-269830a40a15", - "Position": { - "x": 60.9, - "y": 14.18, - "z": 105.16 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "ddca1267-6caa-4986-bd13-0ed29a81e6d2", + "Position": { + "x": 86.15001, + "y": 22.809, + "z": 16.2979889 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "df92e08a-08a9-4a19-8b90-cc8aa13b3062", - "Position": { - "x": 122.356, - "y": 22.834, - "z": -4.153 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "de5f4d8c-1411-446e-b67b-269830a40a15", + "Position": { + "x": 60.9, + "y": 14.18, + "z": 105.16 + }, + "Rotation": 96.67873, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "df949703-1471-4367-a395-3afa78fcf886", - "Position": { - "x": 57.9350128, - "y": 22.778, - "z": -72.422 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + }, + { + "Id": "df92e08a-08a9-4a19-8b90-cc8aa13b3062", + "Position": { + "x": 122.356, + "y": 22.834, + "z": -4.153 + }, + "Rotation": 297.1408, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } } - } - }, - { - "Id": "e545318d-f757-4a76-90be-079bf41998d2", - "Position": { - "x": 180.81, - "y": 16.24, - "z": 119.29 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", - "Position": { - "x": 75.82799, - "y": 23.018, - "z": 268.864 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "e6e4e0bc-b533-4b7d-8f3a-479240453896", - "Position": { - "x": 130.6398, - "y": 14.1126509, - "z": 63.12081 - }, - "Rotation": 249.33786, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "eaa886c4-d771-4f7d-89f8-03b0c6d38365", - "Position": { - "x": 110.82, - "y": 23.193, - "z": 176.03 - }, - "Rotation": 25.0808964, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "eb268aaa-dfde-4021-bdfa-44faed92c139", - "Position": { - "x": 64.88, - "y": 14.22, - "z": 105.85 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "ec099d7a-f15a-488b-8402-4113f56c5822", - "Position": { - "x": 180.85, - "y": 16.24, - "z": 121.4 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "ec13b292-f7ef-4a17-85ae-84b356502878", - "Position": { - "x": 4.36, - "y": 23.89, - "z": -59.74 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", - "Position": { - "x": 54.6900177, - "y": 22.778, - "z": -77.0209961 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "f134efa8-5aae-4729-8546-c15dada03547", - "Position": { - "x": -13.1111984, - "y": 23.87565, - "z": 98.92881 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "f2187ee3-7751-441b-a7ef-b88e072a94c3", - "Position": { - "x": -2.8, - "y": 23.89, - "z": -59.58 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "f2a7bbe4-cd32-4e72-875e-3624083ec8e8", - "Position": { - "x": 44.427, - "y": 23.276, - "z": -104.867 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "f5481928-9ee3-47cd-8998-77edfd1626d3", - "Position": { - "x": 74.49, - "y": 14.18, - "z": 10.55 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "f59ed3fc-83e9-4727-899d-bd7b8d80d4cf", - "Position": { - "x": -12.6441956, - "y": 23.8186512, - "z": -59.9541855 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "f5ba4d5f-08f4-411d-b246-2bac60595f01", - "Position": { - "x": 66.95, - "y": 14.18, - "z": 107.25 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "f61dc8f4-8ab8-4a1b-9771-8c4d26568769", - "Position": { - "x": 85.338, - "y": 22.8000011, - "z": 11.584 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "f76c3749-0412-41cb-a61c-0d7bca49e779", - "Position": { - "x": 127.474, - "y": 23.225, - "z": 194.108 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - } - }, - { - "Id": "f82812d6-708f-45d4-a63a-96c96fe0b186", - "Position": { - "x": 71.97681, - "y": 14.1386509, - "z": 20.19581 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "f85dce73-81e2-494d-99be-048f4a5c20c1", - "Position": { - "x": -14.633194, - "y": 23.8186512, - "z": -58.76419 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "faadec9e-bec8-4153-9bf3-840b9fcabe2f", - "Position": { - "x": 164.696808, - "y": 22.768652, - "z": -85.8841858 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "fc1387ee-e540-4433-9022-d3c53a04b8c2", - "Position": { - "x": 39.85, - "y": 23.42, - "z": 150.63 - }, - "Rotation": 154.863632, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "east", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "fd6734ed-6ba8-423b-8a7b-2943f31c6527", - "Position": { - "x": 79.088, - "y": 22.8000011, - "z": 13.6839752 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "west", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - }, - { - "Id": "fde2249f-83dd-4e98-a141-46d6280257d5", - "Position": { - "x": 22.6368027, - "y": 23.53865, - "z": 257.9848 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - } - } - ], - "AirdropParameters": [ - { - "PlaneAirdropStartMin": 300, - "PlaneAirdropStartMax": 900, - "PlaneAirdropEnd": 2700, - "PlaneAirdropChance": 0.125, - "PlaneAirdropMax": 2, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropCooldownMax": 800, - "AirdropPointDeactivateDistance": 100, - "MinPlayersCountToSpawnAirdrop": 6, - "UnsuccessfulTryPenalty": 400 - } - ], - "BossLocationSpawn": [ - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "easy", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "easy", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "easy", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "easy", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "easy", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "easy", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "easy", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "easy", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ] - } - ], - "MatchMakerMinPlayersByWaitTime": [ - { - "time": 60, - "minPlayers": 7 - }, - { - "time": 70, - "minPlayers": 6 - }, - { - "time": 120, - "minPlayers": 5 - }, - { - "time": 180, - "minPlayers": 4 - }, - { - "time": 250, - "minPlayers": 3 - }, - { - "time": 330, - "minPlayers": 2 - }, - { - "time": 420, - "minPlayers": 1 - } - ], - "transits": [ - { - "id": 1, - "active": true, - "name": "SAN_TRANSIT_1", - "location": "TarkovStreets", - "description": "SAN_TRANSIT_1_DESC", - "activateAfterSec": 420, - "target": "5714dc692459777137212e12", - "time": 30, - "conditions": "SAN_TRANSIT_1_COND" - }, - { - "id": 2, - "active": false, - "name": "SAN_TRANSIT_2", - "location": "laboratory", - "description": "SAN_TRANSIT_2_DESC", - "activateAfterSec": 420, - "target": "5b0fc42d86f7744a585f9105", - "time": 30, - "conditions": "SAN_TRANSIT_2_COND" - } - ], - "Id": "Sandbox", - "_Id": "653e6760052c01c1c805532f", - "Loot": [ - { - "Id": "container_Sandbox_Design_Stuff_00138", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037253", - "Items": [ - { - "_id": "66c93352dacb55c5f8037253", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 + { + "Id": "df949703-1471-4367-a395-3afa78fcf886", + "Position": { + "x": 57.9350128, + "y": 22.778, + "z": -72.422 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - }, - { - "_id": "66c93352dacb55c5f8037255", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c93352dacb55c5f8037253", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + } + }, + { + "Id": "e545318d-f757-4a76-90be-079bf41998d2", + "Position": { + "x": 180.81, + "y": 16.24, + "z": 119.29 + }, + "Rotation": 95.4804, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - }, - { - "_id": "66c93352dacb55c5f8037257", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c93352dacb55c5f8037253", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + } + }, + { + "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", + "Position": { + "x": 75.82799, + "y": 23.018, + "z": 268.864 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "e6e4e0bc-b533-4b7d-8f3a-479240453896", + "Position": { + "x": 130.6398, + "y": 14.1126509, + "z": 63.12081 + }, + "Rotation": 249.33786, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + } }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037259", - "Items": [ - { - "_id": "66c93352dacb55c5f8037259", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "eaa886c4-d771-4f7d-89f8-03b0c6d38365", + "Position": { + "x": 110.82, + "y": 23.193, + "z": 176.03 + }, + "Rotation": 25.0808964, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - }, - { - "_id": "66c93352dacb55c5f803725b", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c93352dacb55c5f8037259", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + } + }, + { + "Id": "eb268aaa-dfde-4021-bdfa-44faed92c139", + "Position": { + "x": 64.88, + "y": 14.22, + "z": 105.85 + }, + "Rotation": 96.67873, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - }, - { - "_id": "66c93352dacb55c5f803725d", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c93352dacb55c5f8037259", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + } + }, + { + "Id": "ec099d7a-f15a-488b-8402-4113f56c5822", + "Position": { + "x": 180.85, + "y": 16.24, + "z": 121.4 + }, + "Rotation": 95.4804, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - }, - { - "_id": "66c93352dacb55c5f803725f", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c93352dacb55c5f8037259", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + } + }, + { + "Id": "ec13b292-f7ef-4a17-85ae-84b356502878", + "Position": { + "x": 4.36, + "y": 23.89, + "z": -59.74 + }, + "Rotation": 15.3505669, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - }, - { - "_id": "66c93352dacb55c5f8037261", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c93352dacb55c5f8037259", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + } + }, + { + "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", + "Position": { + "x": 54.6900177, + "y": 22.778, + "z": -77.0209961 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00051", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "f134efa8-5aae-4729-8546-c15dada03547", + "Position": { + "x": -13.1111984, + "y": 23.87565, + "z": 98.92881 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + } }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93352dacb55c5f8037263", - "Items": [ - { - "_id": "66c93352dacb55c5f8037263", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f2187ee3-7751-441b-a7ef-b88e072a94c3", + "Position": { + "x": -2.8, + "y": 23.89, + "z": -59.58 + }, + "Rotation": 15.3505669, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - }, - { - "_id": "66c93352dacb55c5f8037265", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93352dacb55c5f8037263", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + } + }, + { + "Id": "f2a7bbe4-cd32-4e72-875e-3624083ec8e8", + "Position": { + "x": 44.427, + "y": 23.276, + "z": -104.867 + }, + "Rotation": 323.255859, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00050", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "f5481928-9ee3-47cd-8998-77edfd1626d3", + "Position": { + "x": 74.49, + "y": 14.18, + "z": 10.55 + }, + "Rotation": 96.67873, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + } }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93352dacb55c5f8037267", - "Items": [ - { - "_id": "66c93352dacb55c5f8037267", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f59ed3fc-83e9-4727-899d-bd7b8d80d4cf", + "Position": { + "x": -12.6441956, + "y": 23.8186512, + "z": -59.9541855 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - }, - { - "_id": "66c93352dacb55c5f8037269", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66c93352dacb55c5f8037267", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + } + }, + { + "Id": "f5ba4d5f-08f4-411d-b246-2bac60595f01", + "Position": { + "x": 66.95, + "y": 14.18, + "z": 107.25 + }, + "Rotation": 96.67873, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "f61dc8f4-8ab8-4a1b-9771-8c4d26568769", + "Position": { + "x": 85.338, + "y": 22.8000011, + "z": 11.584 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + } }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93352dacb55c5f803726b", - "Items": [ - { - "_id": "66c93352dacb55c5f803726b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f76c3749-0412-41cb-a61c-0d7bca49e779", + "Position": { + "x": 127.474, + "y": 23.225, + "z": 194.108 + }, + "Rotation": 279.416534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 } - }, - { - "_id": "66c93352dacb55c5f803726d", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c93352dacb55c5f803726b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + } + }, + { + "Id": "f82812d6-708f-45d4-a63a-96c96fe0b186", + "Position": { + "x": 71.97681, + "y": 14.1386509, + "z": 20.19581 + }, + "Rotation": 111.07354, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "f85dce73-81e2-494d-99be-048f4a5c20c1", + "Position": { + "x": -14.633194, + "y": 23.8186512, + "z": -58.76419 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + } }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93352dacb55c5f803726f", - "Items": [ - { - "_id": "66c93352dacb55c5f803726f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "faadec9e-bec8-4153-9bf3-840b9fcabe2f", + "Position": { + "x": 164.696808, + "y": 22.768652, + "z": -85.8841858 + }, + "Rotation": 294.737854, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - }, - { - "_id": "66c93352dacb55c5f8037271", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c93352dacb55c5f803726f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + } + }, + { + "Id": "fc1387ee-e540-4433-9022-d3c53a04b8c2", + "Position": { + "x": 39.85, + "y": 23.42, + "z": 150.63 + }, + "Rotation": 154.863632, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "east", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00409", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037273", - "Items": [ - { - "_id": "66c93352dacb55c5f8037273", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037274", - "_tpl": "5c06c6a80db834001b735491", - "parentId": "66c93352dacb55c5f8037273", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c93352dacb55c5f8037275", - "_tpl": "6571199565daf6aa960c9b10", - "parentId": "66c93352dacb55c5f8037274", - "slotId": "Helmet_top" - }, - { - "_id": "66c93352dacb55c5f8037276", - "_tpl": "657119d49eb8c145180dbb95", - "parentId": "66c93352dacb55c5f8037274", - "slotId": "Helmet_back" - }, - { - "_id": "66c93352dacb55c5f8037277", - "_tpl": "657119fea330b8c9060f7afc", - "parentId": "66c93352dacb55c5f8037274", - "slotId": "Helmet_ears" - }, - { - "_id": "66c93352dacb55c5f8037279", - "_tpl": "5f3e7801153b8571434a924c", - "parentId": "66c93352dacb55c5f8037273", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f803727b", - "_tpl": "5a33a8ebc4a282000c5a950d", - "parentId": "66c93352dacb55c5f8037273", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f803727d", - "_tpl": "5bb20e0ed4351e3bac1212dc", - "parentId": "66c93352dacb55c5f8037273", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f803727f", - "_tpl": "6389f1dfc879ce63f72fc43e", - "parentId": "66c93352dacb55c5f8037273", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037281", - "_tpl": "5f99418230835532b445e954", - "parentId": "66c93352dacb55c5f8037273", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "Id": "fd6734ed-6ba8-423b-8a7b-2943f31c6527", + "Position": { + "x": 79.088, + "y": 22.8000011, + "z": 13.6839752 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "west", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00416", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037283", - "Items": [ - { - "_id": "66c93352dacb55c5f8037283", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037285", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66c93352dacb55c5f8037283", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037287", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66c93352dacb55c5f8037283", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "Id": "fde2249f-83dd-4e98-a141-46d6280257d5", + "Position": { + "x": 22.6368027, + "y": 23.53865, + "z": 257.9848 + }, + "Rotation": 44.63094, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + } + ], + "AirdropParameters": [ + { + "PlaneAirdropStartMin": 300, + "PlaneAirdropStartMax": 900, + "PlaneAirdropEnd": 2700, + "PlaneAirdropChance": 0.125, + "PlaneAirdropMax": 2, + "PlaneAirdropCooldownMin": 700, + "PlaneAirdropCooldownMax": 800, + "AirdropPointDeactivateDistance": 100, + "MinPlayersCountToSpawnAirdrop": 6, + "UnsuccessfulTryPenalty": 400 + } + ], + "BossLocationSpawn": [ + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "easy", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "easy", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "easy", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "easy", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037289", - "Items": [ - { - "_id": "66c93352dacb55c5f8037289", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f803728b", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c93352dacb55c5f8037289", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00140", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "easy", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "easy", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "easy", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "easy", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "IgnoreMaxBots": true, + "SpawnMode": [ + "pve" + ] + } + ], + "MatchMakerMinPlayersByWaitTime": [ + { + "time": 60, + "minPlayers": 7 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f803728d", - "Items": [ - { - "_id": "66c93352dacb55c5f803728d", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f803728f", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c93352dacb55c5f803728d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00156", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 70, + "minPlayers": 6 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 120, + "minPlayers": 5 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037291", - "Items": [ - { - "_id": "66c93352dacb55c5f8037291", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037293", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "66c93352dacb55c5f8037291", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037295", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66c93352dacb55c5f8037291", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 31 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00258", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 180, + "minPlayers": 4 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 250, + "minPlayers": 3 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037297", - "Items": [ - { - "_id": "66c93352dacb55c5f8037297", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037299", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66c93352dacb55c5f8037297", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f803729b", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66c93352dacb55c5f8037297", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 330, + "minPlayers": 2 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 420, + "minPlayers": 1 + } + ], + "transits": [ + { + "id": 1, + "active": true, + "name": "SAN_TRANSIT_1", + "location": "TarkovStreets", + "description": "SAN_TRANSIT_1_DESC", + "activateAfterSec": 420, + "target": "5714dc692459777137212e12", + "time": 30, + "conditions": "SAN_TRANSIT_1_COND" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f803729d", - "Items": [ - { - "_id": "66c93352dacb55c5f803729d", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "id": 2, + "active": false, + "name": "SAN_TRANSIT_2", + "location": "laboratory", + "description": "SAN_TRANSIT_2_DESC", + "activateAfterSec": 420, + "target": "5b0fc42d86f7744a585f9105", + "time": 30, + "conditions": "SAN_TRANSIT_2_COND" + } + ], + "Id": "Sandbox", + "_Id": "653e6760052c01c1c805532f", + "Loot": [ + { + "Id": "container_Sandbox_Design_Stuff_00138", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f803729f", - "_tpl": "57347d692459774491567cf1", - "parentId": "66c93352dacb55c5f803729d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372a1", - "_tpl": "572b7fa524597762b747ce82", - "parentId": "66c93352dacb55c5f803729d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037253", + "Items": [ + { + "_id": "66c93352dacb55c5f8037253", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f80372a3", - "_tpl": "6033fa48ffd42c541047f728", - "parentId": "66c93352dacb55c5f803729d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f8037255", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c93352dacb55c5f8037253", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f8037257", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c93352dacb55c5f8037253", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372a5", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "parentId": "66c93352dacb55c5f803729d", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372a7", - "_tpl": "5ede475339ee016e8c534742", - "parentId": "66c93352dacb55c5f803729d", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037259", + "Items": [ + { + "_id": "66c93352dacb55c5f8037259", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803725b", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c93352dacb55c5f8037259", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803725d", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c93352dacb55c5f8037259", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803725f", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c93352dacb55c5f8037259", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037261", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c93352dacb55c5f8037259", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00166", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372a9", - "Items": [ - { - "_id": "66c93352dacb55c5f80372a9", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00051", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372ab", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66c93352dacb55c5f80372a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 13 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372ad", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c93352dacb55c5f80372a9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93352dacb55c5f8037263", + "Items": [ + { + "_id": "66c93352dacb55c5f8037263", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f80372ae", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66c93352dacb55c5f80372a9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f8037265", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93352dacb55c5f8037263", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00050", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372af", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66c93352dacb55c5f80372ae", - "slotId": "mod_barrel" - }, - { - "_id": "66c93352dacb55c5f80372b0", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66c93352dacb55c5f80372ae", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c93352dacb55c5f80372b1", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66c93352dacb55c5f80372ae", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372b2", - "_tpl": "5736026a245977644601dc61", - "parentId": "66c93352dacb55c5f80372b1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93352dacb55c5f8037267", + "Items": [ + { + "_id": "66c93352dacb55c5f8037267", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037269", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66c93352dacb55c5f8037267", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372b4", - "_tpl": "5e8f3423fd7471236e6e3b64", - "parentId": "66c93352dacb55c5f80372a9", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93352dacb55c5f803726b", + "Items": [ + { + "_id": "66c93352dacb55c5f803726b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803726d", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c93352dacb55c5f803726b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00251", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372b6", - "Items": [ - { - "_id": "66c93352dacb55c5f80372b6", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372b8", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c93352dacb55c5f80372b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93352dacb55c5f803726f", + "Items": [ + { + "_id": "66c93352dacb55c5f803726f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037271", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c93352dacb55c5f803726f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00060", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372ba", - "Items": [ - { - "_id": "66c93352dacb55c5f80372ba", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00409", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372bc", - "_tpl": "5e9db13186f7742f845ee9d3", - "parentId": "66c93352dacb55c5f80372ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00108", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372be", - "Items": [ - { - "_id": "66c93352dacb55c5f80372be", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372c0", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c93352dacb55c5f80372be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037273", + "Items": [ + { + "_id": "66c93352dacb55c5f8037273", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f80372c2", - "_tpl": "57347baf24597738002c6178", - "parentId": "66c93352dacb55c5f80372be", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00370", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372c4", - "Items": [ - { - "_id": "66c93352dacb55c5f80372c4", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f80372c5", - "_tpl": "574d967124597745970e7c94", - "parentId": "66c93352dacb55c5f80372c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f8037274", + "_tpl": "5c06c6a80db834001b735491", + "parentId": "66c93352dacb55c5f8037273", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c93352dacb55c5f8037275", + "_tpl": "6571199565daf6aa960c9b10", + "parentId": "66c93352dacb55c5f8037274", + "slotId": "Helmet_top" + }, + { + "_id": "66c93352dacb55c5f8037276", + "_tpl": "657119d49eb8c145180dbb95", + "parentId": "66c93352dacb55c5f8037274", + "slotId": "Helmet_back" + }, + { + "_id": "66c93352dacb55c5f8037277", + "_tpl": "657119fea330b8c9060f7afc", + "parentId": "66c93352dacb55c5f8037274", + "slotId": "Helmet_ears" + }, + { + "_id": "66c93352dacb55c5f8037279", + "_tpl": "5f3e7801153b8571434a924c", + "parentId": "66c93352dacb55c5f8037273", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803727b", + "_tpl": "5a33a8ebc4a282000c5a950d", + "parentId": "66c93352dacb55c5f8037273", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803727d", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "parentId": "66c93352dacb55c5f8037273", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803727f", + "_tpl": "6389f1dfc879ce63f72fc43e", + "parentId": "66c93352dacb55c5f8037273", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66c93352dacb55c5f8037281", + "_tpl": "5f99418230835532b445e954", + "parentId": "66c93352dacb55c5f8037273", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00416", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372c6", - "_tpl": "574dad8024597745964bf05c", - "parentId": "66c93352dacb55c5f80372c5", - "slotId": "mod_stock" - }, - { - "_id": "66c93352dacb55c5f80372c7", - "_tpl": "634f02331f9f536910079b51", - "parentId": "66c93352dacb55c5f80372c5", - "slotId": "mod_barrel" - }, - { - "_id": "66c93352dacb55c5f80372c8", - "_tpl": "634f04d82e5def262d0b30c6", - "parentId": "66c93352dacb55c5f80372c7", - "slotId": "mod_mount_000" - }, - { - "_id": "66c93352dacb55c5f80372c9", - "_tpl": "634f02d7517ccc8a960fc744", - "parentId": "66c93352dacb55c5f80372c8", - "slotId": "mod_gas_block" - }, - { - "_id": "66c93352dacb55c5f80372ca", - "_tpl": "634f08a21f9f536910079b5a", - "parentId": "66c93352dacb55c5f80372c9", - "slotId": "mod_mount_000" - }, - { - "_id": "66c93352dacb55c5f80372cb", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "66c93352dacb55c5f80372c8", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c93352dacb55c5f80372cc", - "_tpl": "587df3a12459772c28142567", - "parentId": "66c93352dacb55c5f80372c5", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372ce", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66c93352dacb55c5f80372cc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037283", + "Items": [ + { + "_id": "66c93352dacb55c5f8037283", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037285", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66c93352dacb55c5f8037283", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037287", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66c93352dacb55c5f8037283", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c93352dacb55c5f80372cd", - "_tpl": "634f05ca517ccc8a960fc748", - "parentId": "66c93352dacb55c5f80372c5", - "slotId": "mod_reciever" - } - ] - }, - { - "Id": "container_ProfileEditor_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372d0", - "Items": [ - { - "_id": "66c93352dacb55c5f80372d0", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372d2", - "_tpl": "5bead2e00db834001c062938", - "parentId": "66c93352dacb55c5f80372d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372d4", - "_tpl": "5a7893c1c585673f2b5c374d", - "parentId": "66c93352dacb55c5f80372d0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037289", + "Items": [ + { + "_id": "66c93352dacb55c5f8037289", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803728b", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c93352dacb55c5f8037289", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00067", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372d6", - "Items": [ - { - "_id": "66c93352dacb55c5f80372d6", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00140", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372d8", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c93352dacb55c5f80372d6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372da", - "_tpl": "5d1b317c86f7742523398392", - "parentId": "66c93352dacb55c5f80372d6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f803728d", + "Items": [ + { + "_id": "66c93352dacb55c5f803728d", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f803728f", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c93352dacb55c5f803728d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00156", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372dc", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c93352dacb55c5f80372d6", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372de", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c93352dacb55c5f80372d6", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037291", + "Items": [ + { + "_id": "66c93352dacb55c5f8037291", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f80372e0", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c93352dacb55c5f80372d6", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f8037293", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "66c93352dacb55c5f8037291", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037295", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66c93352dacb55c5f8037291", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 31 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00075", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372e2", - "Items": [ - { - "_id": "66c93352dacb55c5f80372e2", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00258", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372e4", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66c93352dacb55c5f80372e2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372e6", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66c93352dacb55c5f80372e2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037297", + "Items": [ + { + "_id": "66c93352dacb55c5f8037297", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f80372e8", - "_tpl": "5d4042a986f7743185265463", - "parentId": "66c93352dacb55c5f80372e2", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f8037299", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66c93352dacb55c5f8037297", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803729b", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66c93352dacb55c5f8037297", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372ea", - "Items": [ - { - "_id": "66c93352dacb55c5f80372ea", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372ec", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c93352dacb55c5f80372ea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00178", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372ee", - "Items": [ - { - "_id": "66c93352dacb55c5f80372ee", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372f0", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c93352dacb55c5f80372ee", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f803729d", + "Items": [ + { + "_id": "66c93352dacb55c5f803729d", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f80372f2", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66c93352dacb55c5f80372ee", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f803729f", + "_tpl": "57347d692459774491567cf1", + "parentId": "66c93352dacb55c5f803729d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 32 - } - }, - { - "_id": "66c93352dacb55c5f80372f4", - "_tpl": "5ede4739e0350d05467f73e8", - "parentId": "66c93352dacb55c5f80372ee", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f80372a1", + "_tpl": "572b7fa524597762b747ce82", + "parentId": "66c93352dacb55c5f803729d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372a3", + "_tpl": "6033fa48ffd42c541047f728", + "parentId": "66c93352dacb55c5f803729d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372a5", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "parentId": "66c93352dacb55c5f803729d", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372a7", + "_tpl": "5ede475339ee016e8c534742", + "parentId": "66c93352dacb55c5f803729d", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00374", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372f6", - "Items": [ - { - "_id": "66c93352dacb55c5f80372f6", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00166", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372f8", - "_tpl": "5751496424597720a27126da", - "parentId": "66c93352dacb55c5f80372f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f80372fa", - "_tpl": "590c2d8786f774245b1f03f3", - "parentId": "66c93352dacb55c5f80372f6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372a9", + "Items": [ + { + "_id": "66c93352dacb55c5f80372a9", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f80372fc", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66c93352dacb55c5f80372f6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00263", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f80372fe", - "Items": [ - { - "_id": "66c93352dacb55c5f80372fe", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037300", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66c93352dacb55c5f80372fe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f80372ab", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66c93352dacb55c5f80372a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 13 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037302", - "_tpl": "57513f07245977207e26a311", - "parentId": "66c93352dacb55c5f80372fe", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f80372ad", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c93352dacb55c5f80372a9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037304", - "_tpl": "59e358a886f7741776641ac3", - "parentId": "66c93352dacb55c5f80372fe", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93352dacb55c5f8037306", - "Items": [ - { - "_id": "66c93352dacb55c5f8037306", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037308", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c93352dacb55c5f8037306", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f80372ae", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66c93352dacb55c5f80372a9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 569 - } - }, - { - "_id": "66c93352dacb55c5f803730a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c93352dacb55c5f8037306", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 904 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93352dacb55c5f803730c", - "Items": [ - { - "_id": "66c93352dacb55c5f803730c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f803730e", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c93352dacb55c5f803730c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f80372af", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66c93352dacb55c5f80372ae", + "slotId": "mod_barrel" + }, + { + "_id": "66c93352dacb55c5f80372b0", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66c93352dacb55c5f80372ae", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c93352dacb55c5f80372b1", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66c93352dacb55c5f80372ae", + "slotId": "mod_magazine" + }, + { + "_id": "66c93352dacb55c5f80372b2", + "_tpl": "5736026a245977644601dc61", + "parentId": "66c93352dacb55c5f80372b1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66c93352dacb55c5f80372b4", + "_tpl": "5e8f3423fd7471236e6e3b64", + "parentId": "66c93352dacb55c5f80372a9", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00100", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93352dacb55c5f8037310", - "Items": [ - { - "_id": "66c93352dacb55c5f8037310", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00251", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037312", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c93352dacb55c5f8037310", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00099", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93352dacb55c5f8037314", - "Items": [ - { - "_id": "66c93352dacb55c5f8037314", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037316", - "_tpl": "5bc9b9ecd4351e3bac122519", - "parentId": "66c93352dacb55c5f8037314", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372b6", + "Items": [ + { + "_id": "66c93352dacb55c5f80372b6", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372b8", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c93352dacb55c5f80372b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00098", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93352dacb55c5f8037318", - "Items": [ - { - "_id": "66c93352dacb55c5f8037318", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00060", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f803731a", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c93352dacb55c5f8037318", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00375", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f803731c", - "Items": [ - { - "_id": "66c93352dacb55c5f803731c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f803731e", - "_tpl": "5ab8f39486f7745cd93a1cca", - "parentId": "66c93352dacb55c5f803731c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372ba", + "Items": [ + { + "_id": "66c93352dacb55c5f80372ba", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037320", - "_tpl": "57347baf24597738002c6178", - "parentId": "66c93352dacb55c5f803731c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f80372bc", + "_tpl": "5e9db13186f7742f845ee9d3", + "parentId": "66c93352dacb55c5f80372ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037322", - "Items": [ - { - "_id": "66c93352dacb55c5f8037322", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00108", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037324", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66c93352dacb55c5f8037322", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 43 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037326", - "_tpl": "5b4326435acfc433000ed01d", - "parentId": "66c93352dacb55c5f8037322", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372be", + "Items": [ + { + "_id": "66c93352dacb55c5f80372be", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037328", - "_tpl": "5c0d56a986f774449d5de529", - "parentId": "66c93352dacb55c5f8037322", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 11 + { + "_id": "66c93352dacb55c5f80372c0", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c93352dacb55c5f80372be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372c2", + "_tpl": "57347baf24597738002c6178", + "parentId": "66c93352dacb55c5f80372be", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00415", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f803732a", - "Items": [ - { - "_id": "66c93352dacb55c5f803732a", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00370", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f803732c", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c93352dacb55c5f803732a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00181", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f803732e", - "Items": [ - { - "_id": "66c93352dacb55c5f803732e", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037330", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "66c93352dacb55c5f803732e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372c4", + "Items": [ + { + "_id": "66c93352dacb55c5f80372c4", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037332", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66c93352dacb55c5f803732e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f80372c5", + "_tpl": "574d967124597745970e7c94", + "parentId": "66c93352dacb55c5f80372c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037334", - "_tpl": "5a787ebcc5856700142fdd98", - "parentId": "66c93352dacb55c5f803732e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f80372c6", + "_tpl": "574dad8024597745964bf05c", + "parentId": "66c93352dacb55c5f80372c5", + "slotId": "mod_stock" + }, + { + "_id": "66c93352dacb55c5f80372c7", + "_tpl": "634f02331f9f536910079b51", + "parentId": "66c93352dacb55c5f80372c5", + "slotId": "mod_barrel" + }, + { + "_id": "66c93352dacb55c5f80372c8", + "_tpl": "634f04d82e5def262d0b30c6", + "parentId": "66c93352dacb55c5f80372c7", + "slotId": "mod_mount_000" + }, + { + "_id": "66c93352dacb55c5f80372c9", + "_tpl": "634f02d7517ccc8a960fc744", + "parentId": "66c93352dacb55c5f80372c8", + "slotId": "mod_gas_block" + }, + { + "_id": "66c93352dacb55c5f80372ca", + "_tpl": "634f08a21f9f536910079b5a", + "parentId": "66c93352dacb55c5f80372c9", + "slotId": "mod_mount_000" + }, + { + "_id": "66c93352dacb55c5f80372cb", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "66c93352dacb55c5f80372c8", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c93352dacb55c5f80372cc", + "_tpl": "587df3a12459772c28142567", + "parentId": "66c93352dacb55c5f80372c5", + "slotId": "mod_magazine" + }, + { + "_id": "66c93352dacb55c5f80372ce", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66c93352dacb55c5f80372cc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10.0 + } + }, + { + "_id": "66c93352dacb55c5f80372cd", + "_tpl": "634f05ca517ccc8a960fc748", + "parentId": "66c93352dacb55c5f80372c5", + "slotId": "mod_reciever" } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00307", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037336", - "Items": [ - { - "_id": "66c93352dacb55c5f8037336", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_ProfileEditor_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037338", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93352dacb55c5f8037336", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f803733a", - "Items": [ - { - "_id": "66c93352dacb55c5f803733a", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f803733c", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c93352dacb55c5f803733a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372d0", + "Items": [ + { + "_id": "66c93352dacb55c5f80372d0", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372d2", + "_tpl": "5bead2e00db834001c062938", + "parentId": "66c93352dacb55c5f80372d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372d4", + "_tpl": "5a7893c1c585673f2b5c374d", + "parentId": "66c93352dacb55c5f80372d0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00061", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f803733e", - "Items": [ - { - "_id": "66c93352dacb55c5f803733e", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00067", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037340", - "_tpl": "57347baf24597738002c6178", - "parentId": "66c93352dacb55c5f803733e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037342", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c93352dacb55c5f803733e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372d6", + "Items": [ + { + "_id": "66c93352dacb55c5f80372d6", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037344", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c93352dacb55c5f803733e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f80372d8", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c93352dacb55c5f80372d6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037346", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c93352dacb55c5f803733e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f80372da", + "_tpl": "5d1b317c86f7742523398392", + "parentId": "66c93352dacb55c5f80372d6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f8037348", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c93352dacb55c5f803733e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f80372dc", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c93352dacb55c5f80372d6", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372de", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c93352dacb55c5f80372d6", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372e0", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c93352dacb55c5f80372d6", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00460", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f803734a", - "Items": [ - { - "_id": "66c93352dacb55c5f803734a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00075", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f803734c", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c93352dacb55c5f803734a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f803734e", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66c93352dacb55c5f803734a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372e2", + "Items": [ + { + "_id": "66c93352dacb55c5f80372e2", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372e4", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66c93352dacb55c5f80372e2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372e6", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66c93352dacb55c5f80372e2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372e8", + "_tpl": "5d4042a986f7743185265463", + "parentId": "66c93352dacb55c5f80372e2", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00452", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037350", - "Items": [ - { - "_id": "66c93352dacb55c5f8037350", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037352", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c93352dacb55c5f8037350", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037354", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66c93352dacb55c5f8037350", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372ea", + "Items": [ + { + "_id": "66c93352dacb55c5f80372ea", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372ec", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c93352dacb55c5f80372ea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037356", - "Items": [ - { - "_id": "66c93352dacb55c5f8037356", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00178", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037358", - "_tpl": "65815f0e647e3d7246384e14", - "parentId": "66c93352dacb55c5f8037356", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f803735a", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c93352dacb55c5f8037356", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372ee", + "Items": [ + { + "_id": "66c93352dacb55c5f80372ee", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372f0", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c93352dacb55c5f80372ee", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372f2", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66c93352dacb55c5f80372ee", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 32 + } + }, + { + "_id": "66c93352dacb55c5f80372f4", + "_tpl": "5ede4739e0350d05467f73e8", + "parentId": "66c93352dacb55c5f80372ee", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93352dacb55c5f803735c", - "Items": [ - { - "_id": "66c93352dacb55c5f803735c", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00374", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f803735e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c93352dacb55c5f803735c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 606 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00107", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037360", - "Items": [ - { - "_id": "66c93352dacb55c5f8037360", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037362", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c93352dacb55c5f8037360", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372f6", + "Items": [ + { + "_id": "66c93352dacb55c5f80372f6", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372f8", + "_tpl": "5751496424597720a27126da", + "parentId": "66c93352dacb55c5f80372f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372fa", + "_tpl": "590c2d8786f774245b1f03f3", + "parentId": "66c93352dacb55c5f80372f6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f80372fc", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66c93352dacb55c5f80372f6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037364", - "Items": [ - { - "_id": "66c93352dacb55c5f8037364", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00263", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037366", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c93352dacb55c5f8037364", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037368", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "66c93352dacb55c5f8037364", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f80372fe", + "Items": [ + { + "_id": "66c93352dacb55c5f80372fe", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93352dacb55c5f803736a", - "_tpl": "5d2c829448f0353a5c7d6674", - "parentId": "66c93352dacb55c5f8037364", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f8037300", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66c93352dacb55c5f80372fe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f803736c", - "_tpl": "5cf4e3f3d7f00c06595bc7f0", - "parentId": "66c93352dacb55c5f8037364", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f8037302", + "_tpl": "57513f07245977207e26a311", + "parentId": "66c93352dacb55c5f80372fe", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93352dacb55c5f803736e", - "_tpl": "5a9e81fba2750c00164f6b11", - "parentId": "66c93352dacb55c5f8037364", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f8037304", + "_tpl": "59e358a886f7741776641ac3", + "parentId": "66c93352dacb55c5f80372fe", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00153", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93352dacb55c5f8037370", - "Items": [ - { - "_id": "66c93352dacb55c5f8037370", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037372", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66c93352dacb55c5f8037370", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037374", - "_tpl": "5fc3e466187fea44d52eda90", - "parentId": "66c93352dacb55c5f8037370", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93352dacb55c5f8037306", + "Items": [ + { + "_id": "66c93352dacb55c5f8037306", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f8037308", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c93352dacb55c5f8037306", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 569 + } + }, + { + "_id": "66c93352dacb55c5f803730a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c93352dacb55c5f8037306", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 904 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037376", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c93352dacb55c5f8037370", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93352dacb55c5f803730c", + "Items": [ + { + "_id": "66c93352dacb55c5f803730c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f803730e", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c93352dacb55c5f803730c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00100", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93352dacb55c5f8037378", - "_tpl": "5e023e6e34d52a55c3304f71", - "parentId": "66c93352dacb55c5f8037370", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 22 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93352dacb55c5f8037310", + "Items": [ + { + "_id": "66c93352dacb55c5f8037310", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037312", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c93352dacb55c5f8037310", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803737a", - "Items": [ - { - "_id": "66c93353dacb55c5f803737a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00099", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803737c", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c93353dacb55c5f803737a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93352dacb55c5f8037314", + "Items": [ + { + "_id": "66c93352dacb55c5f8037314", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f8037316", + "_tpl": "5bc9b9ecd4351e3bac122519", + "parentId": "66c93352dacb55c5f8037314", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00098", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803737e", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66c93353dacb55c5f803737a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 39 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00177", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037380", - "Items": [ - { - "_id": "66c93353dacb55c5f8037380", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037382", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66c93353dacb55c5f8037380", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93352dacb55c5f8037318", + "Items": [ + { + "_id": "66c93352dacb55c5f8037318", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037384", - "_tpl": "574dad8024597745964bf05c", - "parentId": "66c93353dacb55c5f8037380", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f803731a", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c93352dacb55c5f8037318", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037386", - "Items": [ - { - "_id": "66c93353dacb55c5f8037386", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00375", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037388", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c93353dacb55c5f8037386", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00026", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803738a", - "Items": [ - { - "_id": "66c93353dacb55c5f803738a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803738c", - "_tpl": "5e2af37686f774755a234b65", - "parentId": "66c93353dacb55c5f803738a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f803731c", + "Items": [ + { + "_id": "66c93352dacb55c5f803731c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803731e", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "66c93352dacb55c5f803731c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037320", + "_tpl": "57347baf24597738002c6178", + "parentId": "66c93352dacb55c5f803731c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00025", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803738e", - "Items": [ - { - "_id": "66c93353dacb55c5f803738e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037390", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c93353dacb55c5f803738e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037392", - "Items": [ - { - "_id": "66c93353dacb55c5f8037392", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037394", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f8037392", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037322", + "Items": [ + { + "_id": "66c93352dacb55c5f8037322", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037324", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66c93352dacb55c5f8037322", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 43 + } + }, + { + "_id": "66c93352dacb55c5f8037326", + "_tpl": "5b4326435acfc433000ed01d", + "parentId": "66c93352dacb55c5f8037322", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037328", + "_tpl": "5c0d56a986f774449d5de529", + "parentId": "66c93352dacb55c5f8037322", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 11 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00448", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037396", - "Items": [ - { - "_id": "66c93353dacb55c5f8037396", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00415", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037398", - "_tpl": "5e2af29386f7746d4159f077", - "parentId": "66c93353dacb55c5f8037396", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803739a", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c93353dacb55c5f8037396", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f803732a", + "Items": [ + { + "_id": "66c93352dacb55c5f803732a", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803732c", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c93352dacb55c5f803732a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00481", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803739c", - "Items": [ - { - "_id": "66c93353dacb55c5f803739c", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00181", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803739e", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c93353dacb55c5f803739c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 26 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373a0", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c93353dacb55c5f803739c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f803732e", + "Items": [ + { + "_id": "66c93352dacb55c5f803732e", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037330", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "66c93352dacb55c5f803732e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037332", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66c93352dacb55c5f803732e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037334", + "_tpl": "5a787ebcc5856700142fdd98", + "parentId": "66c93352dacb55c5f803732e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80373a2", - "Items": [ - { - "_id": "66c93353dacb55c5f80373a2", - "_tpl": "6582e6c6edf14c4c6023adf2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00307", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373a4", - "_tpl": "658199aa38c79576a2569e13", - "parentId": "66c93353dacb55c5f80373a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373a6", - "Items": [ - { - "_id": "66c93353dacb55c5f80373a6", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373a8", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c93353dacb55c5f80373a6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037336", + "Items": [ + { + "_id": "66c93352dacb55c5f8037336", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037338", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93352dacb55c5f8037336", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00450", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373aa", - "Items": [ - { - "_id": "66c93353dacb55c5f80373aa", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80373ab", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66c93353dacb55c5f80373aa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c93353dacb55c5f80373ac", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66c93353dacb55c5f80373ab", - "slotId": "mod_barrel" - }, - { - "_id": "66c93353dacb55c5f80373ad", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66c93353dacb55c5f80373ab", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c93353dacb55c5f80373ae", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66c93353dacb55c5f80373ab", - "slotId": "mod_magazine" + { + "Id": "container_Sandbox_Design_Stuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373af", - "_tpl": "5736026a245977644601dc61", - "parentId": "66c93353dacb55c5f80373ae", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373b1", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "parentId": "66c93353dacb55c5f80373aa", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f803733a", + "Items": [ + { + "_id": "66c93352dacb55c5f803733a", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803733c", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c93352dacb55c5f803733a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00174", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80373b3", - "Items": [ - { - "_id": "66c93353dacb55c5f80373b3", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00061", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373b5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c93353dacb55c5f80373b3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 812 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373b7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c93353dacb55c5f80373b3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f803733e", + "Items": [ + { + "_id": "66c93352dacb55c5f803733e", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1024 - } - }, - { - "_id": "66c93353dacb55c5f80373b9", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c93353dacb55c5f80373b3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 72 + { + "_id": "66c93352dacb55c5f8037340", + "_tpl": "57347baf24597738002c6178", + "parentId": "66c93352dacb55c5f803733e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037342", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c93352dacb55c5f803733e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037344", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c93352dacb55c5f803733e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037346", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c93352dacb55c5f803733e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037348", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c93352dacb55c5f803733e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373bb", - "Items": [ - { - "_id": "66c93353dacb55c5f80373bb", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00460", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373bd", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c93353dacb55c5f80373bb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373bf", - "_tpl": "5e569a0156edd02abe09f27d", - "parentId": "66c93353dacb55c5f80373bb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f803734a", + "Items": [ + { + "_id": "66c93352dacb55c5f803734a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803734c", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c93352dacb55c5f803734a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803734e", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66c93352dacb55c5f803734a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00158", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373c1", - "Items": [ - { - "_id": "66c93353dacb55c5f80373c1", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00452", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373c3", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c93353dacb55c5f80373c1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00095", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373c5", - "Items": [ - { - "_id": "66c93353dacb55c5f80373c5", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373c7", - "_tpl": "5addccf45acfc400185c2989", - "parentId": "66c93353dacb55c5f80373c5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037350", + "Items": [ + { + "_id": "66c93352dacb55c5f8037350", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80373c9", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c93353dacb55c5f80373c5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f8037352", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c93352dacb55c5f8037350", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037354", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66c93352dacb55c5f8037350", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00411", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373cb", - "Items": [ - { - "_id": "66c93353dacb55c5f80373cb", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373cd", - "_tpl": "6194f5722d2c397d6600348f", - "parentId": "66c93353dacb55c5f80373cb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373cf", - "_tpl": "5c0695860db834001b735461", - "parentId": "66c93353dacb55c5f80373cb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037356", + "Items": [ + { + "_id": "66c93352dacb55c5f8037356", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80373d1", - "_tpl": "6272370ee4013c5d7e31f418", - "parentId": "66c93353dacb55c5f80373cb", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c93352dacb55c5f8037358", + "_tpl": "65815f0e647e3d7246384e14", + "parentId": "66c93352dacb55c5f8037356", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93352dacb55c5f803735a", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c93352dacb55c5f8037356", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373d3", - "_tpl": "5d25a6a48abbc306c62e6310", - "parentId": "66c93353dacb55c5f80373cb", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93352dacb55c5f803735c", + "Items": [ + { + "_id": "66c93352dacb55c5f803735c", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803735e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c93352dacb55c5f803735c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 606 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00464", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373d5", - "Items": [ - { - "_id": "66c93353dacb55c5f80373d5", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00107", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373d6", - "_tpl": "5cadc190ae921500103bb3b6", - "parentId": "66c93353dacb55c5f80373d5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037360", + "Items": [ + { + "_id": "66c93352dacb55c5f8037360", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66c93352dacb55c5f8037362", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c93352dacb55c5f8037360", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373d7", - "_tpl": "5cadc1c6ae9215000f2775a4", - "parentId": "66c93353dacb55c5f80373d6", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373d8", - "_tpl": "5cadc390ae921500126a77f1", - "parentId": "66c93353dacb55c5f80373d7", - "slotId": "mod_muzzle" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037364", + "Items": [ + { + "_id": "66c93352dacb55c5f8037364", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037366", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c93352dacb55c5f8037364", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037368", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "66c93352dacb55c5f8037364", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93352dacb55c5f803736a", + "_tpl": "5d2c829448f0353a5c7d6674", + "parentId": "66c93352dacb55c5f8037364", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803736c", + "_tpl": "5cf4e3f3d7f00c06595bc7f0", + "parentId": "66c93352dacb55c5f8037364", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f803736e", + "_tpl": "5a9e81fba2750c00164f6b11", + "parentId": "66c93352dacb55c5f8037364", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00153", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373d9", - "_tpl": "5cadc431ae921500113bb8d5", - "parentId": "66c93353dacb55c5f80373d6", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373da", - "_tpl": "5cadc55cae921500103bb3be", - "parentId": "66c93353dacb55c5f80373d6", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93352dacb55c5f8037370", + "Items": [ + { + "_id": "66c93352dacb55c5f8037370", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037372", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66c93352dacb55c5f8037370", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037374", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "66c93352dacb55c5f8037370", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037376", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c93352dacb55c5f8037370", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93352dacb55c5f8037378", + "_tpl": "5e023e6e34d52a55c3304f71", + "parentId": "66c93352dacb55c5f8037370", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 22 + } + } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373db", - "_tpl": "5cadd940ae9215051e1c2316", - "parentId": "66c93353dacb55c5f80373da", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373dc", - "_tpl": "5cadd919ae921500126a77f3", - "parentId": "66c93353dacb55c5f80373da", - "slotId": "mod_sight_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803737a", + "Items": [ + { + "_id": "66c93353dacb55c5f803737a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803737c", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c93353dacb55c5f803737a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803737e", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66c93353dacb55c5f803737a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 39 + } + } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00177", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373dd", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "66c93353dacb55c5f80373d6", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373de", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c93353dacb55c5f80373dd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037380", + "Items": [ + { + "_id": "66c93353dacb55c5f8037380", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037382", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66c93353dacb55c5f8037380", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037384", + "_tpl": "574dad8024597745964bf05c", + "parentId": "66c93353dacb55c5f8037380", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373e0", - "_tpl": "5cdeaca5d7f00c00b61c4b70", - "parentId": "66c93353dacb55c5f80373d5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037386", + "Items": [ + { + "_id": "66c93353dacb55c5f8037386", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037388", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c93353dacb55c5f8037386", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00093", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373e2", - "Items": [ - { - "_id": "66c93353dacb55c5f80373e2", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00026", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373e4", - "_tpl": "57c5ac0824597754771e88a9", - "parentId": "66c93353dacb55c5f80373e2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803738a", + "Items": [ + { + "_id": "66c93353dacb55c5f803738a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803738c", + "_tpl": "5e2af37686f774755a234b65", + "parentId": "66c93353dacb55c5f803738a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00025", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373e6", - "_tpl": "5d02778e86f774203e7dedbe", - "parentId": "66c93353dacb55c5f80373e2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803738e", + "Items": [ + { + "_id": "66c93353dacb55c5f803738e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037390", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c93353dacb55c5f803738e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373e8", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66c93353dacb55c5f80373e2", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037392", + "Items": [ + { + "_id": "66c93353dacb55c5f8037392", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 50 + { + "_id": "66c93353dacb55c5f8037394", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f8037392", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c93353dacb55c5f80373ea", - "_tpl": "628c9ab845c59e5b80768a81", - "parentId": "66c93353dacb55c5f80373e2", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00425", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373ec", - "Items": [ - { - "_id": "66c93353dacb55c5f80373ec", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00448", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373ee", - "_tpl": "5cbda392ae92155f3c17c39f", - "parentId": "66c93353dacb55c5f80373ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00170", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373f0", - "Items": [ - { - "_id": "66c93353dacb55c5f80373f0", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373f2", - "_tpl": "5733279d245977289b77ec24", - "parentId": "66c93353dacb55c5f80373f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037396", + "Items": [ + { + "_id": "66c93353dacb55c5f8037396", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037398", + "_tpl": "5e2af29386f7746d4159f077", + "parentId": "66c93353dacb55c5f8037396", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803739a", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c93353dacb55c5f8037396", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00356", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373f4", - "Items": [ - { - "_id": "66c93353dacb55c5f80373f4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00481", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373f6", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c93353dacb55c5f80373f4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00202", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373f8", - "Items": [ - { - "_id": "66c93353dacb55c5f80373f8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80373fa", - "_tpl": "57513fcc24597720a31c09a6", - "parentId": "66c93353dacb55c5f80373f8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803739c", + "Items": [ + { + "_id": "66c93353dacb55c5f803739c", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80373fc", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c93353dacb55c5f80373f8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803739e", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c93353dacb55c5f803739c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 26 + } + }, + { + "_id": "66c93353dacb55c5f80373a0", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c93353dacb55c5f803739c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80373fe", - "Items": [ - { - "_id": "66c93353dacb55c5f80373fe", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037400", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c93353dacb55c5f80373fe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037402", - "_tpl": "5df8e085bb49d91fb446d6a8", - "parentId": "66c93353dacb55c5f80373fe", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80373a2", + "Items": [ + { + "_id": "66c93353dacb55c5f80373a2", + "_tpl": "6582e6c6edf14c4c6023adf2", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037404", - "_tpl": "648067db042be0705c0b3009", - "parentId": "66c93353dacb55c5f80373fe", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80373a4", + "_tpl": "658199aa38c79576a2569e13", + "parentId": "66c93353dacb55c5f80373a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037406", - "Items": [ - { - "_id": "66c93353dacb55c5f8037406", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037408", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c93353dacb55c5f8037406", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00123", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803740a", - "Items": [ - { - "_id": "66c93353dacb55c5f803740a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803740c", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c93353dacb55c5f803740a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373a6", + "Items": [ + { + "_id": "66c93353dacb55c5f80373a6", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803740e", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c93353dacb55c5f803740a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80373a8", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c93353dacb55c5f80373a6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00306", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037410", - "Items": [ - { - "_id": "66c93353dacb55c5f8037410", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00450", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037412", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66c93353dacb55c5f8037410", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037414", - "_tpl": "5d1b385e86f774252167b98a", - "parentId": "66c93353dacb55c5f8037410", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373aa", + "Items": [ + { + "_id": "66c93353dacb55c5f80373aa", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373ab", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66c93353dacb55c5f80373aa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c93353dacb55c5f80373ac", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66c93353dacb55c5f80373ab", + "slotId": "mod_barrel" + }, + { + "_id": "66c93353dacb55c5f80373ad", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66c93353dacb55c5f80373ab", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c93353dacb55c5f80373ae", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66c93353dacb55c5f80373ab", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f80373af", + "_tpl": "5736026a245977644601dc61", + "parentId": "66c93353dacb55c5f80373ae", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } + }, + { + "_id": "66c93353dacb55c5f80373b1", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "parentId": "66c93353dacb55c5f80373aa", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00430", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037416", - "Items": [ - { - "_id": "66c93353dacb55c5f8037416", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00174", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037418", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c93353dacb55c5f8037416", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803741a", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c93353dacb55c5f8037416", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80373b3", + "Items": [ + { + "_id": "66c93353dacb55c5f80373b3", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803741c", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c93353dacb55c5f8037416", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80373b5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c93353dacb55c5f80373b3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 812 + } + }, + { + "_id": "66c93353dacb55c5f80373b7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c93353dacb55c5f80373b3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1024 + } + }, + { + "_id": "66c93353dacb55c5f80373b9", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c93353dacb55c5f80373b3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 72 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00476", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803741e", - "Items": [ - { - "_id": "66c93353dacb55c5f803741e", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037420", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c93353dacb55c5f803741e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037422", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66c93353dacb55c5f803741e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373bb", + "Items": [ + { + "_id": "66c93353dacb55c5f80373bb", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037424", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c93353dacb55c5f803741e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80373bd", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c93353dacb55c5f80373bb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373bf", + "_tpl": "5e569a0156edd02abe09f27d", + "parentId": "66c93353dacb55c5f80373bb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00475", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037426", - "Items": [ - { - "_id": "66c93353dacb55c5f8037426", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00158", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037428", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c93353dacb55c5f8037426", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803742a", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66c93353dacb55c5f8037426", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373c1", + "Items": [ + { + "_id": "66c93353dacb55c5f80373c1", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80373c3", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c93353dacb55c5f80373c1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00095", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803742c", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66c93353dacb55c5f8037426", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803742e", - "_tpl": "5f60e6403b85f6263c14558c", - "parentId": "66c93353dacb55c5f8037426", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00155", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037430", - "Items": [ - { - "_id": "66c93353dacb55c5f8037430", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037432", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c93353dacb55c5f8037430", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373c5", + "Items": [ + { + "_id": "66c93353dacb55c5f80373c5", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037434", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66c93353dacb55c5f8037430", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80373c7", + "_tpl": "5addccf45acfc400185c2989", + "parentId": "66c93353dacb55c5f80373c5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 14 + { + "_id": "66c93353dacb55c5f80373c9", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c93353dacb55c5f80373c5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00411", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037436", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c93353dacb55c5f8037430", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 13 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037438", - "_tpl": "5c165d832e2216398b5a7e36", - "parentId": "66c93353dacb55c5f8037430", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373cb", + "Items": [ + { + "_id": "66c93353dacb55c5f80373cb", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373cd", + "_tpl": "6194f5722d2c397d6600348f", + "parentId": "66c93353dacb55c5f80373cb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373cf", + "_tpl": "5c0695860db834001b735461", + "parentId": "66c93353dacb55c5f80373cb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373d1", + "_tpl": "6272370ee4013c5d7e31f418", + "parentId": "66c93353dacb55c5f80373cb", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373d3", + "_tpl": "5d25a6a48abbc306c62e6310", + "parentId": "66c93353dacb55c5f80373cb", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00164", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803743a", - "Items": [ - { - "_id": "66c93353dacb55c5f803743a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00464", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803743c", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c93353dacb55c5f803743a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00019", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803743e", - "Items": [ - { - "_id": "66c93353dacb55c5f803743e", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037440", - "_tpl": "5a0d63621526d8dba31fe3bf", - "parentId": "66c93353dacb55c5f803743e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373d5", + "Items": [ + { + "_id": "66c93353dacb55c5f80373d5", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373d6", + "_tpl": "5cadc190ae921500103bb3b6", + "parentId": "66c93353dacb55c5f80373d5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c93353dacb55c5f80373d7", + "_tpl": "5cadc1c6ae9215000f2775a4", + "parentId": "66c93353dacb55c5f80373d6", + "slotId": "mod_barrel" + }, + { + "_id": "66c93353dacb55c5f80373d8", + "_tpl": "5cadc390ae921500126a77f1", + "parentId": "66c93353dacb55c5f80373d7", + "slotId": "mod_muzzle" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80373d9", + "_tpl": "5cadc431ae921500113bb8d5", + "parentId": "66c93353dacb55c5f80373d6", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c93353dacb55c5f80373da", + "_tpl": "5cadc55cae921500103bb3be", + "parentId": "66c93353dacb55c5f80373d6", + "slotId": "mod_reciever" + }, + { + "_id": "66c93353dacb55c5f80373db", + "_tpl": "5cadd940ae9215051e1c2316", + "parentId": "66c93353dacb55c5f80373da", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c93353dacb55c5f80373dc", + "_tpl": "5cadd919ae921500126a77f3", + "parentId": "66c93353dacb55c5f80373da", + "slotId": "mod_sight_front" + }, + { + "_id": "66c93353dacb55c5f80373dd", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "66c93353dacb55c5f80373d6", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f80373de", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c93353dacb55c5f80373dd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11.0 + } + }, + { + "_id": "66c93353dacb55c5f80373e0", + "_tpl": "5cdeaca5d7f00c00b61c4b70", + "parentId": "66c93353dacb55c5f80373d5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00093", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037442", - "_tpl": "58c157c886f774032749fb06", - "parentId": "66c93353dacb55c5f803743e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373e2", + "Items": [ + { + "_id": "66c93353dacb55c5f80373e2", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373e4", + "_tpl": "57c5ac0824597754771e88a9", + "parentId": "66c93353dacb55c5f80373e2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373e6", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "66c93353dacb55c5f80373e2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373e8", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66c93353dacb55c5f80373e2", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 50 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80373ea", + "_tpl": "628c9ab845c59e5b80768a81", + "parentId": "66c93353dacb55c5f80373e2", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00425", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037443", - "_tpl": "668fe5a998b5ad715703ddd6", - "parentId": "66c93353dacb55c5f803743e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373ec", + "Items": [ + { + "_id": "66c93353dacb55c5f80373ec", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c93353dacb55c5f80373ee", + "_tpl": "5cbda392ae92155f3c17c39f", + "parentId": "66c93353dacb55c5f80373ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00170", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037444", - "_tpl": "668fe5f62a0f85eea407cc18", - "parentId": "66c93353dacb55c5f8037443", - "slotId": "mod_barrel" - }, - { - "_id": "66c93353dacb55c5f8037445", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66c93353dacb55c5f8037444", - "slotId": "mod_sight_front" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037446", - "_tpl": "668fe5d42a0f85eea407cc16", - "parentId": "66c93353dacb55c5f8037443", - "slotId": "mod_pistolgrip" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373f0", + "Items": [ + { + "_id": "66c93353dacb55c5f80373f0", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373f2", + "_tpl": "5733279d245977289b77ec24", + "parentId": "66c93353dacb55c5f80373f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00356", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037447", - "_tpl": "668fe60b56984d93550462c6", - "parentId": "66c93353dacb55c5f8037443", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037448", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66c93353dacb55c5f8037447", - "slotId": "mod_sight_rear" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373f4", + "Items": [ + { + "_id": "66c93353dacb55c5f80373f4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373f6", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c93353dacb55c5f80373f4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00202", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037449", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66c93353dacb55c5f8037443", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803744a", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66c93353dacb55c5f8037449", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373f8", + "Items": [ + { + "_id": "66c93353dacb55c5f80373f8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373fa", + "_tpl": "57513fcc24597720a31c09a6", + "parentId": "66c93353dacb55c5f80373f8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80373fc", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c93353dacb55c5f80373f8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803744c", - "_tpl": "5c0111ab0db834001966914d", - "parentId": "66c93353dacb55c5f803743e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80373fe", + "Items": [ + { + "_id": "66c93353dacb55c5f80373fe", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037400", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c93353dacb55c5f80373fe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037402", + "_tpl": "5df8e085bb49d91fb446d6a8", + "parentId": "66c93353dacb55c5f80373fe", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037404", + "_tpl": "648067db042be0705c0b3009", + "parentId": "66c93353dacb55c5f80373fe", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803744e", - "_tpl": "5bead2e00db834001c062938", - "parentId": "66c93353dacb55c5f803743e", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037406", + "Items": [ + { + "_id": "66c93353dacb55c5f8037406", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037408", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c93353dacb55c5f8037406", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037450", - "Items": [ - { - "_id": "66c93353dacb55c5f8037450", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00123", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037452", - "_tpl": "5fc3e466187fea44d52eda90", - "parentId": "66c93353dacb55c5f8037450", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803740a", + "Items": [ + { + "_id": "66c93353dacb55c5f803740a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803740c", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c93353dacb55c5f803740a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803740e", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c93353dacb55c5f803740a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00306", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037454", - "_tpl": "5cadd954ae921500103bb3c2", - "parentId": "66c93353dacb55c5f8037450", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037410", + "Items": [ + { + "_id": "66c93353dacb55c5f8037410", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037412", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66c93353dacb55c5f8037410", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037414", + "_tpl": "5d1b385e86f774252167b98a", + "parentId": "66c93353dacb55c5f8037410", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00118", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037456", - "Items": [ - { - "_id": "66c93353dacb55c5f8037456", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00430", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037458", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c93353dacb55c5f8037456", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803745a", - "Items": [ - { - "_id": "66c93353dacb55c5f803745a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803745c", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c93353dacb55c5f803745a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037416", + "Items": [ + { + "_id": "66c93353dacb55c5f8037416", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037418", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c93353dacb55c5f8037416", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803741a", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c93353dacb55c5f8037416", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803741c", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c93353dacb55c5f8037416", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00116", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803745e", - "Items": [ - { - "_id": "66c93353dacb55c5f803745e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00476", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037460", - "_tpl": "6581998038c79576a2569e11", - "parentId": "66c93353dacb55c5f803745e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00115", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037462", - "Items": [ - { - "_id": "66c93353dacb55c5f8037462", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037464", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c93353dacb55c5f8037462", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803741e", + "Items": [ + { + "_id": "66c93353dacb55c5f803741e", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037420", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c93353dacb55c5f803741e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037422", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66c93353dacb55c5f803741e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037424", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c93353dacb55c5f803741e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037466", - "Items": [ - { - "_id": "66c93353dacb55c5f8037466", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00475", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037468", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66c93353dacb55c5f8037466", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803746a", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c93353dacb55c5f8037466", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037426", + "Items": [ + { + "_id": "66c93353dacb55c5f8037426", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803746c", - "_tpl": "5734758f24597738025ee253", - "parentId": "66c93353dacb55c5f8037466", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037428", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c93353dacb55c5f8037426", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803742a", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66c93353dacb55c5f8037426", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803742c", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66c93353dacb55c5f8037426", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803742e", + "_tpl": "5f60e6403b85f6263c14558c", + "parentId": "66c93353dacb55c5f8037426", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00414", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803746e", - "Items": [ - { - "_id": "66c93353dacb55c5f803746e", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00155", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037470", - "_tpl": "5bc9b9ecd4351e3bac122519", - "parentId": "66c93353dacb55c5f803746e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037472", - "_tpl": "573474f924597738002c6174", - "parentId": "66c93353dacb55c5f803746e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037430", + "Items": [ + { + "_id": "66c93353dacb55c5f8037430", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037474", - "_tpl": "5734773724597737fd047c14", - "parentId": "66c93353dacb55c5f803746e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037432", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c93353dacb55c5f8037430", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037434", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66c93353dacb55c5f8037430", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 14 + } + }, + { + "_id": "66c93353dacb55c5f8037436", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c93353dacb55c5f8037430", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 13 + } + }, + { + "_id": "66c93353dacb55c5f8037438", + "_tpl": "5c165d832e2216398b5a7e36", + "parentId": "66c93353dacb55c5f8037430", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00244", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037476", - "Items": [ - { - "_id": "66c93353dacb55c5f8037476", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00164", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037478", - "_tpl": "57513f9324597720a7128161", - "parentId": "66c93353dacb55c5f8037476", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803747a", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f8037476", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803743a", + "Items": [ + { + "_id": "66c93353dacb55c5f803743a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803747c", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c93353dacb55c5f8037476", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803743c", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c93353dacb55c5f803743a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00096", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803747e", - "Items": [ - { - "_id": "66c93353dacb55c5f803747e", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00019", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037480", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66c93353dacb55c5f803747e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037482", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66c93353dacb55c5f803747e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803743e", + "Items": [ + { + "_id": "66c93353dacb55c5f803743e", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037484", - "_tpl": "6086b5392535c57a13424d70", - "parentId": "66c93353dacb55c5f803747e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037440", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "66c93353dacb55c5f803743e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037486", - "_tpl": "57347d9c245977448b40fa85", - "parentId": "66c93353dacb55c5f803747e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037442", + "_tpl": "58c157c886f774032749fb06", + "parentId": "66c93353dacb55c5f803743e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037443", + "_tpl": "668fe5a998b5ad715703ddd6", + "parentId": "66c93353dacb55c5f803743e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c93353dacb55c5f8037444", + "_tpl": "668fe5f62a0f85eea407cc18", + "parentId": "66c93353dacb55c5f8037443", + "slotId": "mod_barrel" + }, + { + "_id": "66c93353dacb55c5f8037445", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66c93353dacb55c5f8037444", + "slotId": "mod_sight_front" + }, + { + "_id": "66c93353dacb55c5f8037446", + "_tpl": "668fe5d42a0f85eea407cc16", + "parentId": "66c93353dacb55c5f8037443", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66c93353dacb55c5f8037447", + "_tpl": "668fe60b56984d93550462c6", + "parentId": "66c93353dacb55c5f8037443", + "slotId": "mod_reciever" + }, + { + "_id": "66c93353dacb55c5f8037448", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66c93353dacb55c5f8037447", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c93353dacb55c5f8037449", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66c93353dacb55c5f8037443", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f803744a", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66c93353dacb55c5f8037449", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66c93353dacb55c5f803744c", + "_tpl": "5c0111ab0db834001966914d", + "parentId": "66c93353dacb55c5f803743e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803744e", + "_tpl": "5bead2e00db834001c062938", + "parentId": "66c93353dacb55c5f803743e", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00102", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037488", - "Items": [ - { - "_id": "66c93353dacb55c5f8037488", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803748a", - "_tpl": "58272b842459774abc128d50", - "parentId": "66c93353dacb55c5f8037488", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803748c", - "_tpl": "5aa66c72e5b5b00016327c93", - "parentId": "66c93353dacb55c5f8037488", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037450", + "Items": [ + { + "_id": "66c93353dacb55c5f8037450", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037452", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "66c93353dacb55c5f8037450", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037454", + "_tpl": "5cadd954ae921500103bb3c2", + "parentId": "66c93353dacb55c5f8037450", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00118", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803748e", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c93353dacb55c5f8037488", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00167", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037490", - "Items": [ - { - "_id": "66c93353dacb55c5f8037490", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037492", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c93353dacb55c5f8037490", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037456", + "Items": [ + { + "_id": "66c93353dacb55c5f8037456", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037494", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c93353dacb55c5f8037490", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037458", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c93353dacb55c5f8037456", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00428", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037496", - "Items": [ - { - "_id": "66c93353dacb55c5f8037496", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037498", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66c93353dacb55c5f8037496", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803749a", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66c93353dacb55c5f8037496", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803745a", + "Items": [ + { + "_id": "66c93353dacb55c5f803745a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803745c", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c93353dacb55c5f803745a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00151", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803749c", - "Items": [ - { - "_id": "66c93353dacb55c5f803749c", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00116", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803749e", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f803749c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374a0", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c93353dacb55c5f803749c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803745e", + "Items": [ + { + "_id": "66c93353dacb55c5f803745e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80374a2", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f803749c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037460", + "_tpl": "6581998038c79576a2569e11", + "parentId": "66c93353dacb55c5f803745e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00341", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80374a4", - "Items": [ - { - "_id": "66c93353dacb55c5f80374a4", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80374a6", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c93353dacb55c5f80374a4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00115", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374a8", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c93353dacb55c5f80374a4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374aa", - "_tpl": "590c595c86f7747884343ad7", - "parentId": "66c93353dacb55c5f80374a4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037462", + "Items": [ + { + "_id": "66c93353dacb55c5f8037462", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80374ac", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c93353dacb55c5f80374a4", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037464", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c93353dacb55c5f8037462", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00128", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80374ae", - "Items": [ - { - "_id": "66c93353dacb55c5f80374ae", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374b0", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c93353dacb55c5f80374ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00127", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80374b2", - "Items": [ - { - "_id": "66c93353dacb55c5f80374b2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374b4", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66c93353dacb55c5f80374b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037466", + "Items": [ + { + "_id": "66c93353dacb55c5f8037466", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037468", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66c93353dacb55c5f8037466", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803746a", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c93353dacb55c5f8037466", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803746c", + "_tpl": "5734758f24597738025ee253", + "parentId": "66c93353dacb55c5f8037466", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00126", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80374b6", - "Items": [ - { - "_id": "66c93353dacb55c5f80374b6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00414", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374b8", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c93353dacb55c5f80374b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00125", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80374ba", - "Items": [ - { - "_id": "66c93353dacb55c5f80374ba", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374bc", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c93353dacb55c5f80374ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803746e", + "Items": [ + { + "_id": "66c93353dacb55c5f803746e", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037470", + "_tpl": "5bc9b9ecd4351e3bac122519", + "parentId": "66c93353dacb55c5f803746e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037472", + "_tpl": "573474f924597738002c6174", + "parentId": "66c93353dacb55c5f803746e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037474", + "_tpl": "5734773724597737fd047c14", + "parentId": "66c93353dacb55c5f803746e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80374be", - "Items": [ - { - "_id": "66c93353dacb55c5f80374be", - "_tpl": "6582e6bb0c3b9823fe6d1840", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00244", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374c0", - "_tpl": "6217726288ed9f0845317459", - "parentId": "66c93353dacb55c5f80374be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00299", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80374c2", - "Items": [ - { - "_id": "66c93353dacb55c5f80374c2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374c4", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f80374c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037476", + "Items": [ + { + "_id": "66c93353dacb55c5f8037476", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80374c6", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c93353dacb55c5f80374c2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037478", + "_tpl": "57513f9324597720a7128161", + "parentId": "66c93353dacb55c5f8037476", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80374c8", - "_tpl": "5e2af00086f7746d3f3c33f7", - "parentId": "66c93353dacb55c5f80374c2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803747a", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f8037476", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803747c", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c93353dacb55c5f8037476", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00381", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80374ca", - "Items": [ - { - "_id": "66c93353dacb55c5f80374ca", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00096", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374cc", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c93353dacb55c5f80374ca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374ce", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66c93353dacb55c5f80374ca", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803747e", + "Items": [ + { + "_id": "66c93353dacb55c5f803747e", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037480", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66c93353dacb55c5f803747e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037482", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66c93353dacb55c5f803747e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037484", + "_tpl": "6086b5392535c57a13424d70", + "parentId": "66c93353dacb55c5f803747e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037486", + "_tpl": "57347d9c245977448b40fa85", + "parentId": "66c93353dacb55c5f803747e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00055", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80374d0", - "Items": [ - { - "_id": "66c93353dacb55c5f80374d0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00102", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374d2", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c93353dacb55c5f80374d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80374d4", - "Items": [ - { - "_id": "66c93353dacb55c5f80374d4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374d6", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f80374d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037488", + "Items": [ + { + "_id": "66c93353dacb55c5f8037488", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803748a", + "_tpl": "58272b842459774abc128d50", + "parentId": "66c93353dacb55c5f8037488", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803748c", + "_tpl": "5aa66c72e5b5b00016327c93", + "parentId": "66c93353dacb55c5f8037488", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803748e", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c93353dacb55c5f8037488", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00053", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80374d8", - "Items": [ - { - "_id": "66c93353dacb55c5f80374d8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00167", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374da", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66c93353dacb55c5f80374d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80374dc", - "Items": [ - { - "_id": "66c93353dacb55c5f80374dc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374de", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c93353dacb55c5f80374dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037490", + "Items": [ + { + "_id": "66c93353dacb55c5f8037490", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037492", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c93353dacb55c5f8037490", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037494", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c93353dacb55c5f8037490", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80374e0", - "Items": [ - { - "_id": "66c93353dacb55c5f80374e0", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00428", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374e2", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c93353dacb55c5f80374e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374e4", - "_tpl": "62a0a0bb621468534a797ad5", - "parentId": "66c93353dacb55c5f80374e0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037496", + "Items": [ + { + "_id": "66c93353dacb55c5f8037496", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80374e6", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f80374e0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037498", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66c93353dacb55c5f8037496", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803749a", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66c93353dacb55c5f8037496", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00271", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80374e8", - "Items": [ - { - "_id": "66c93353dacb55c5f80374e8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00151", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374ea", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c93353dacb55c5f80374e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374ec", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66c93353dacb55c5f80374e8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803749c", + "Items": [ + { + "_id": "66c93353dacb55c5f803749c", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803749e", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f803749c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374a0", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c93353dacb55c5f803749c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374a2", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f803749c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00124", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80374ee", - "Items": [ - { - "_id": "66c93353dacb55c5f80374ee", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00341", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374f0", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c93353dacb55c5f80374ee", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00384", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80374f2", - "Items": [ - { - "_id": "66c93353dacb55c5f80374f2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374f4", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66c93353dacb55c5f80374f2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80374a4", + "Items": [ + { + "_id": "66c93353dacb55c5f80374a4", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374a6", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c93353dacb55c5f80374a4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374a8", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c93353dacb55c5f80374a4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374aa", + "_tpl": "590c595c86f7747884343ad7", + "parentId": "66c93353dacb55c5f80374a4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374ac", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c93353dacb55c5f80374a4", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00248", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80374f6", - "Items": [ - { - "_id": "66c93353dacb55c5f80374f6", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00128", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374f8", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f80374f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80374fa", - "_tpl": "5d1c819a86f774771b0acd6c", - "parentId": "66c93353dacb55c5f80374f6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80374ae", + "Items": [ + { + "_id": "66c93353dacb55c5f80374ae", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80374fc", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c93353dacb55c5f80374f6", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80374b0", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c93353dacb55c5f80374ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00420", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80374fe", - "Items": [ - { - "_id": "66c93353dacb55c5f80374fe", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00127", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037500", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c93353dacb55c5f80374fe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037502", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c93353dacb55c5f80374fe", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80374b2", + "Items": [ + { + "_id": "66c93353dacb55c5f80374b2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374b4", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66c93353dacb55c5f80374b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037504", - "Items": [ - { - "_id": "66c93353dacb55c5f8037504", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00126", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037506", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66c93353dacb55c5f8037504", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80374b6", + "Items": [ + { + "_id": "66c93353dacb55c5f80374b6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80374b8", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c93353dacb55c5f80374b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00125", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037508", - "_tpl": "64be7095047e826eae02b0c1", - "parentId": "66c93353dacb55c5f8037504", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80374ba", + "Items": [ + { + "_id": "66c93353dacb55c5f80374ba", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80374bc", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c93353dacb55c5f80374ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803750a", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c93353dacb55c5f8037504", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80374be", + "Items": [ + { + "_id": "66c93353dacb55c5f80374be", + "_tpl": "6582e6bb0c3b9823fe6d1840", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80374c0", + "_tpl": "6217726288ed9f0845317459", + "parentId": "66c93353dacb55c5f80374be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00299", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803750c", - "_tpl": "64b8ee384b75259c590fa89b", - "parentId": "66c93353dacb55c5f8037504", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803750e", - "Items": [ - { - "_id": "66c93353dacb55c5f803750e", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037510", - "_tpl": "603409c80ca681766b6a0fb2", - "parentId": "66c93353dacb55c5f803750e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80374c2", + "Items": [ + { + "_id": "66c93353dacb55c5f80374c2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037512", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66c93353dacb55c5f803750e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80374c4", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f80374c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374c6", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c93353dacb55c5f80374c2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374c8", + "_tpl": "5e2af00086f7746d3f3c33f7", + "parentId": "66c93353dacb55c5f80374c2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037514", - "Items": [ - { - "_id": "66c93353dacb55c5f8037514", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00381", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037516", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c93353dacb55c5f8037514", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037518", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c93353dacb55c5f8037514", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80374ca", + "Items": [ + { + "_id": "66c93353dacb55c5f80374ca", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374cc", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c93353dacb55c5f80374ca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374ce", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66c93353dacb55c5f80374ca", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_ProfileEditor_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803751a", - "Items": [ - { - "_id": "66c93353dacb55c5f803751a", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00055", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803751c", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66c93353dacb55c5f803751a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803751e", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66c93353dacb55c5f803751a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80374d0", + "Items": [ + { + "_id": "66c93353dacb55c5f80374d0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 26 - } - }, - { - "_id": "66c93353dacb55c5f8037520", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "66c93353dacb55c5f803751a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80374d2", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c93353dacb55c5f80374d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00449", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037522", - "Items": [ - { - "_id": "66c93353dacb55c5f8037522", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037524", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c93353dacb55c5f8037522", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00169", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037526", - "Items": [ - { - "_id": "66c93353dacb55c5f8037526", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037528", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66c93353dacb55c5f8037526", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80374d4", + "Items": [ + { + "_id": "66c93353dacb55c5f80374d4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 3 + { + "_id": "66c93353dacb55c5f80374d6", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f80374d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00053", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803752a", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66c93353dacb55c5f8037526", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803752c", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f8037526", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80374d8", + "Items": [ + { + "_id": "66c93353dacb55c5f80374d8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80374da", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66c93353dacb55c5f80374d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803752e", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c93353dacb55c5f8037526", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037530", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c93353dacb55c5f8037526", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80374dc", + "Items": [ + { + "_id": "66c93353dacb55c5f80374dc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374de", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c93353dacb55c5f80374dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037532", - "Items": [ - { - "_id": "66c93353dacb55c5f8037532", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037534", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c93353dacb55c5f8037532", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00079", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037536", - "Items": [ - { - "_id": "66c93353dacb55c5f8037536", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037538", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f8037536", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80374e0", + "Items": [ + { + "_id": "66c93353dacb55c5f80374e0", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374e2", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c93353dacb55c5f80374e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374e4", + "_tpl": "62a0a0bb621468534a797ad5", + "parentId": "66c93353dacb55c5f80374e0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374e6", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f80374e0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00078", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803753a", - "Items": [ - { - "_id": "66c93353dacb55c5f803753a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00271", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803753c", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c93353dacb55c5f803753a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803753e", - "Items": [ - { - "_id": "66c93353dacb55c5f803753e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037540", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c93353dacb55c5f803753e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80374e8", + "Items": [ + { + "_id": "66c93353dacb55c5f80374e8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374ea", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c93353dacb55c5f80374e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374ec", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66c93353dacb55c5f80374e8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00154", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037542", - "Items": [ - { - "_id": "66c93353dacb55c5f8037542", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00124", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037544", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66c93353dacb55c5f8037542", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 26 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037546", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c93353dacb55c5f8037542", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80374ee", + "Items": [ + { + "_id": "66c93353dacb55c5f80374ee", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037547", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66c93353dacb55c5f8037542", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80374f0", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c93353dacb55c5f80374ee", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00384", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037548", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66c93353dacb55c5f8037547", - "slotId": "mod_barrel" - }, - { - "_id": "66c93353dacb55c5f8037549", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66c93353dacb55c5f8037547", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c93353dacb55c5f803754a", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66c93353dacb55c5f8037547", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803754b", - "_tpl": "5736026a245977644601dc61", - "parentId": "66c93353dacb55c5f803754a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80374f2", + "Items": [ + { + "_id": "66c93353dacb55c5f80374f2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374f4", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66c93353dacb55c5f80374f2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00470", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803754d", - "Items": [ - { - "_id": "66c93353dacb55c5f803754d", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00248", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803754f", - "_tpl": "590c595c86f7747884343ad7", - "parentId": "66c93353dacb55c5f803754d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037551", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66c93353dacb55c5f803754d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80374f6", + "Items": [ + { + "_id": "66c93353dacb55c5f80374f6", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037552", - "_tpl": "6499849fc93611967b034949", - "parentId": "66c93353dacb55c5f803754d", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66c93353dacb55c5f80374f8", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f80374f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80374fa", + "_tpl": "5d1c819a86f774771b0acd6c", + "parentId": "66c93353dacb55c5f80374f6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c93353dacb55c5f80374fc", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c93353dacb55c5f80374f6", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00420", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037553", - "_tpl": "649ec107961514b22506b10c", - "parentId": "66c93353dacb55c5f8037552", - "slotId": "mod_gas_block" - }, - { - "_id": "66c93353dacb55c5f8037554", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "66c93353dacb55c5f8037552", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c93353dacb55c5f8037555", - "_tpl": "649ec127c93611967b034957", - "parentId": "66c93353dacb55c5f8037552", - "slotId": "mod_handguard" - }, - { - "_id": "66c93353dacb55c5f8037556", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "66c93353dacb55c5f8037555", - "slotId": "mod_mount_001" - }, - { - "_id": "66c93353dacb55c5f8037557", - "_tpl": "649ec2af961514b22506b10f", - "parentId": "66c93353dacb55c5f8037552", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037558", - "_tpl": "649ec2f3961514b22506b111", - "parentId": "66c93353dacb55c5f8037552", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80374fe", + "Items": [ + { + "_id": "66c93353dacb55c5f80374fe", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037500", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c93353dacb55c5f80374fe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037502", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c93353dacb55c5f80374fe", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037559", - "_tpl": "649ec2da59cbb3c813042dca", - "parentId": "66c93353dacb55c5f8037558", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803755a", - "_tpl": "649ec2cec93611967b03495e", - "parentId": "66c93353dacb55c5f8037559", - "slotId": "mod_sight_rear" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037504", + "Items": [ + { + "_id": "66c93353dacb55c5f8037504", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037506", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66c93353dacb55c5f8037504", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037508", + "_tpl": "64be7095047e826eae02b0c1", + "parentId": "66c93353dacb55c5f8037504", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803750a", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c93353dacb55c5f8037504", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803750c", + "_tpl": "64b8ee384b75259c590fa89b", + "parentId": "66c93353dacb55c5f8037504", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803755b", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "66c93353dacb55c5f8037552", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803755e", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c93353dacb55c5f803755b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 28.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803750e", + "Items": [ + { + "_id": "66c93353dacb55c5f803750e", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037510", + "_tpl": "603409c80ca681766b6a0fb2", + "parentId": "66c93353dacb55c5f803750e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037512", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66c93353dacb55c5f803750e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803755c", - "_tpl": "649ec87d8007560a9001ab36", - "parentId": "66c93353dacb55c5f8037552", - "slotId": "mod_stock_001" - }, - { - "_id": "66c93353dacb55c5f803755d", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "66c93353dacb55c5f803755c", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037560", - "_tpl": "5b31163c5acfc400153b71cb", - "parentId": "66c93353dacb55c5f803754d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037514", + "Items": [ + { + "_id": "66c93353dacb55c5f8037514", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037516", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c93353dacb55c5f8037514", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037518", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c93353dacb55c5f8037514", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00506", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037562", - "Items": [ - { - "_id": "66c93353dacb55c5f8037562", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_ProfileEditor_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037564", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c93353dacb55c5f8037562", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803751a", + "Items": [ + { + "_id": "66c93353dacb55c5f803751a", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803751c", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66c93353dacb55c5f803751a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803751e", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66c93353dacb55c5f803751a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 26 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037520", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "66c93353dacb55c5f803751a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00449", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037566", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c93353dacb55c5f8037562", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037522", + "Items": [ + { + "_id": "66c93353dacb55c5f8037522", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037524", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c93353dacb55c5f8037522", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00489", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037568", - "Items": [ - { - "_id": "66c93353dacb55c5f8037568", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00169", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803756a", - "_tpl": "5b432c305acfc40019478128", - "parentId": "66c93353dacb55c5f8037568", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037526", + "Items": [ + { + "_id": "66c93353dacb55c5f8037526", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037528", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66c93353dacb55c5f8037526", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f803752a", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66c93353dacb55c5f8037526", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803752c", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f8037526", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803752e", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c93353dacb55c5f8037526", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037530", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c93353dacb55c5f8037526", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803756c", - "_tpl": "57513f07245977207e26a311", - "parentId": "66c93353dacb55c5f8037568", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037532", + "Items": [ + { + "_id": "66c93353dacb55c5f8037532", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037534", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c93353dacb55c5f8037532", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00079", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803756e", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66c93353dacb55c5f8037568", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037536", + "Items": [ + { + "_id": "66c93353dacb55c5f8037536", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037538", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f8037536", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00047", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037570", - "Items": [ - { - "_id": "66c93353dacb55c5f8037570", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00078", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037572", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c93353dacb55c5f8037570", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803753a", + "Items": [ + { + "_id": "66c93353dacb55c5f803753a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803753c", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c93353dacb55c5f803753a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00046", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037574", - "Items": [ - { - "_id": "66c93353dacb55c5f8037574", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037576", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c93353dacb55c5f8037574", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803753e", + "Items": [ + { + "_id": "66c93353dacb55c5f803753e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037540", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c93353dacb55c5f803753e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00045", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037578", - "Items": [ - { - "_id": "66c93353dacb55c5f8037578", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00154", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803757a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c93353dacb55c5f8037578", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00044", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803757c", - "Items": [ - { - "_id": "66c93353dacb55c5f803757c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803757e", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c93353dacb55c5f803757c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037542", + "Items": [ + { + "_id": "66c93353dacb55c5f8037542", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037544", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66c93353dacb55c5f8037542", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 26 + } + }, + { + "_id": "66c93353dacb55c5f8037546", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c93353dacb55c5f8037542", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037547", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66c93353dacb55c5f8037542", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c93353dacb55c5f8037548", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66c93353dacb55c5f8037547", + "slotId": "mod_barrel" + }, + { + "_id": "66c93353dacb55c5f8037549", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66c93353dacb55c5f8037547", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c93353dacb55c5f803754a", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66c93353dacb55c5f8037547", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f803754b", + "_tpl": "5736026a245977644601dc61", + "parentId": "66c93353dacb55c5f803754a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00495", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037580", - "Items": [ - { - "_id": "66c93353dacb55c5f8037580", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00470", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037582", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c93353dacb55c5f8037580", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037584", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c93353dacb55c5f8037580", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803754d", + "Items": [ + { + "_id": "66c93353dacb55c5f803754d", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037586", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c93353dacb55c5f8037580", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803754f", + "_tpl": "590c595c86f7747884343ad7", + "parentId": "66c93353dacb55c5f803754d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037551", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66c93353dacb55c5f803754d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037552", + "_tpl": "6499849fc93611967b034949", + "parentId": "66c93353dacb55c5f803754d", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c93353dacb55c5f8037553", + "_tpl": "649ec107961514b22506b10c", + "parentId": "66c93353dacb55c5f8037552", + "slotId": "mod_gas_block" + }, + { + "_id": "66c93353dacb55c5f8037554", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "66c93353dacb55c5f8037552", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c93353dacb55c5f8037555", + "_tpl": "649ec127c93611967b034957", + "parentId": "66c93353dacb55c5f8037552", + "slotId": "mod_handguard" + }, + { + "_id": "66c93353dacb55c5f8037556", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "66c93353dacb55c5f8037555", + "slotId": "mod_mount_001" + }, + { + "_id": "66c93353dacb55c5f8037557", + "_tpl": "649ec2af961514b22506b10f", + "parentId": "66c93353dacb55c5f8037552", + "slotId": "mod_muzzle" + }, + { + "_id": "66c93353dacb55c5f8037558", + "_tpl": "649ec2f3961514b22506b111", + "parentId": "66c93353dacb55c5f8037552", + "slotId": "mod_reciever" + }, + { + "_id": "66c93353dacb55c5f8037559", + "_tpl": "649ec2da59cbb3c813042dca", + "parentId": "66c93353dacb55c5f8037558", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c93353dacb55c5f803755a", + "_tpl": "649ec2cec93611967b03495e", + "parentId": "66c93353dacb55c5f8037559", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c93353dacb55c5f803755b", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "66c93353dacb55c5f8037552", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f803755e", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c93353dacb55c5f803755b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 28.0 + } + }, + { + "_id": "66c93353dacb55c5f803755c", + "_tpl": "649ec87d8007560a9001ab36", + "parentId": "66c93353dacb55c5f8037552", + "slotId": "mod_stock_001" + }, + { + "_id": "66c93353dacb55c5f803755d", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "66c93353dacb55c5f803755c", + "slotId": "mod_stock" + }, + { + "_id": "66c93353dacb55c5f8037560", + "_tpl": "5b31163c5acfc400153b71cb", + "parentId": "66c93353dacb55c5f803754d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00193", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037588", - "Items": [ - { - "_id": "66c93353dacb55c5f8037588", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00506", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803758a", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66c93353dacb55c5f8037588", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803758c", - "_tpl": "5751496424597720a27126da", - "parentId": "66c93353dacb55c5f8037588", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037562", + "Items": [ + { + "_id": "66c93353dacb55c5f8037562", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037564", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c93353dacb55c5f8037562", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037566", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c93353dacb55c5f8037562", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803758e", - "Items": [ - { - "_id": "66c93353dacb55c5f803758e", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00489", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037590", - "_tpl": "5734758f24597738025ee253", - "parentId": "66c93353dacb55c5f803758e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037592", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c93353dacb55c5f803758e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037568", + "Items": [ + { + "_id": "66c93353dacb55c5f8037568", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037594", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c93353dacb55c5f803758e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803756a", + "_tpl": "5b432c305acfc40019478128", + "parentId": "66c93353dacb55c5f8037568", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037596", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66c93353dacb55c5f803758e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803756c", + "_tpl": "57513f07245977207e26a311", + "parentId": "66c93353dacb55c5f8037568", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037598", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c93353dacb55c5f803758e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803756e", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66c93353dacb55c5f8037568", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803759a", - "Items": [ - { - "_id": "66c93353dacb55c5f803759a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00047", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803759c", - "_tpl": "66b37f114410565a8f6789e2", - "parentId": "66c93353dacb55c5f803759a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803759e", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c93353dacb55c5f803759a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037570", + "Items": [ + { + "_id": "66c93353dacb55c5f8037570", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037572", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c93353dacb55c5f8037570", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00429", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375a0", - "Items": [ - { - "_id": "66c93353dacb55c5f80375a0", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00046", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375a2", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66c93353dacb55c5f80375a0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375a4", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66c93353dacb55c5f80375a0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037574", + "Items": [ + { + "_id": "66c93353dacb55c5f8037574", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037576", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c93353dacb55c5f8037574", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00045", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375a6", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c93353dacb55c5f80375a0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375a8", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66c93353dacb55c5f80375a0", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037578", + "Items": [ + { + "_id": "66c93353dacb55c5f8037578", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803757a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c93353dacb55c5f8037578", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00499", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375aa", - "Items": [ - { - "_id": "66c93353dacb55c5f80375aa", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00044", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375ac", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66c93353dacb55c5f80375aa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375ae", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66c93353dacb55c5f80375aa", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803757c", + "Items": [ + { + "_id": "66c93353dacb55c5f803757c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80375b0", - "_tpl": "60098b1705871270cd5352a1", - "parentId": "66c93353dacb55c5f80375aa", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803757e", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c93353dacb55c5f803757c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375b2", - "Items": [ - { - "_id": "66c93353dacb55c5f80375b2", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00495", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375b4", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "66c93353dacb55c5f80375b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 2 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00386", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375b6", - "Items": [ - { - "_id": "66c93353dacb55c5f80375b6", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375b8", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f80375b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037580", + "Items": [ + { + "_id": "66c93353dacb55c5f8037580", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037582", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c93353dacb55c5f8037580", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037584", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c93353dacb55c5f8037580", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037586", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c93353dacb55c5f8037580", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00282", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375ba", - "Items": [ - { - "_id": "66c93353dacb55c5f80375ba", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00193", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375bc", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c93353dacb55c5f80375ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375be", - "Items": [ - { - "_id": "66c93353dacb55c5f80375be", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375c0", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c93353dacb55c5f80375be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037588", + "Items": [ + { + "_id": "66c93353dacb55c5f8037588", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80375c1", - "_tpl": "5f2a9575926fd9352339381f", - "parentId": "66c93353dacb55c5f80375be", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 + { + "_id": "66c93353dacb55c5f803758a", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66c93353dacb55c5f8037588", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66c93353dacb55c5f803758c", + "_tpl": "5751496424597720a27126da", + "parentId": "66c93353dacb55c5f8037588", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375c2", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "66c93353dacb55c5f80375c1", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375c8", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66c93353dacb55c5f80375c2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 19.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803758e", + "Items": [ + { + "_id": "66c93353dacb55c5f803758e", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037590", + "_tpl": "5734758f24597738025ee253", + "parentId": "66c93353dacb55c5f803758e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037592", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c93353dacb55c5f803758e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037594", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c93353dacb55c5f803758e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037596", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66c93353dacb55c5f803758e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037598", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c93353dacb55c5f803758e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375c3", - "_tpl": "5f2aa46b878ef416f538b567", - "parentId": "66c93353dacb55c5f80375c1", - "slotId": "mod_barrel" - }, - { - "_id": "66c93353dacb55c5f80375c4", - "_tpl": "5f2aa4464b50c14bcf07acdb", - "parentId": "66c93353dacb55c5f80375c3", - "slotId": "mod_muzzle" - }, - { - "_id": "66c93353dacb55c5f80375c5", - "_tpl": "5f2aa47a200e2c0ee46efa71", - "parentId": "66c93353dacb55c5f80375c1", - "slotId": "mod_handguard" - }, - { - "_id": "66c93353dacb55c5f80375c6", - "_tpl": "5f2aa493cd375f14e15eea72", - "parentId": "66c93353dacb55c5f80375c5", - "slotId": "mod_mount_000" - }, - { - "_id": "66c93353dacb55c5f80375c7", - "_tpl": "5f2aa49f9b44de6b1b4e68d4", - "parentId": "66c93353dacb55c5f80375c1", - "slotId": "mod_mount" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375ca", - "_tpl": "5751496424597720a27126da", - "parentId": "66c93353dacb55c5f80375be", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803759a", + "Items": [ + { + "_id": "66c93353dacb55c5f803759a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80375cc", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "66c93353dacb55c5f80375be", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803759c", + "_tpl": "66b37f114410565a8f6789e2", + "parentId": "66c93353dacb55c5f803759a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803759e", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c93353dacb55c5f803759a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375ce", - "Items": [ - { - "_id": "66c93353dacb55c5f80375ce", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00429", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375d0", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66c93353dacb55c5f80375ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375d2", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c93353dacb55c5f80375ce", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375a0", + "Items": [ + { + "_id": "66c93353dacb55c5f80375a0", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375a2", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66c93353dacb55c5f80375a0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375a4", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66c93353dacb55c5f80375a0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375a6", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c93353dacb55c5f80375a0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375a8", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66c93353dacb55c5f80375a0", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00231", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375d4", - "Items": [ - { - "_id": "66c93353dacb55c5f80375d4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00499", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375d6", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c93353dacb55c5f80375d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375d8", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66c93353dacb55c5f80375d4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375aa", + "Items": [ + { + "_id": "66c93353dacb55c5f80375aa", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80375da", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66c93353dacb55c5f80375d4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80375ac", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66c93353dacb55c5f80375aa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375ae", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66c93353dacb55c5f80375aa", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375b0", + "_tpl": "60098b1705871270cd5352a1", + "parentId": "66c93353dacb55c5f80375aa", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00121", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375dc", - "Items": [ - { - "_id": "66c93353dacb55c5f80375dc", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375de", - "_tpl": "57347baf24597738002c6178", - "parentId": "66c93353dacb55c5f80375dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375e0", - "Items": [ - { - "_id": "66c93353dacb55c5f80375e0", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375e2", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c93353dacb55c5f80375e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375b2", + "Items": [ + { + "_id": "66c93353dacb55c5f80375b2", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80375e4", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c93353dacb55c5f80375e0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80375b4", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "66c93353dacb55c5f80375b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00062", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80375e6", - "Items": [ - { - "_id": "66c93353dacb55c5f80375e6", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00386", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375e8", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c93353dacb55c5f80375e6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1095 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375ea", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c93353dacb55c5f80375e6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 639 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375b6", + "Items": [ + { + "_id": "66c93353dacb55c5f80375b6", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375b8", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f80375b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375ec", - "Items": [ - { - "_id": "66c93353dacb55c5f80375ec", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00282", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375ee", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66c93353dacb55c5f80375ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375f0", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c93353dacb55c5f80375ec", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375ba", + "Items": [ + { + "_id": "66c93353dacb55c5f80375ba", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80375f2", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c93353dacb55c5f80375ec", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80375bc", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c93353dacb55c5f80375ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00014", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375f4", - "Items": [ - { - "_id": "66c93353dacb55c5f80375f4", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375f6", - "_tpl": "5c99f3592e221644fc633070", - "parentId": "66c93353dacb55c5f80375f4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00109", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80375f8", - "Items": [ - { - "_id": "66c93353dacb55c5f80375f8", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375fa", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66c93353dacb55c5f80375f8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375be", + "Items": [ + { + "_id": "66c93353dacb55c5f80375be", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80375fb", - "_tpl": "5ab8e4ed86f7742d8e50c7fa", - "parentId": "66c93353dacb55c5f80375f8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80375c0", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c93353dacb55c5f80375be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375c1", + "_tpl": "5f2a9575926fd9352339381f", + "parentId": "66c93353dacb55c5f80375be", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c93353dacb55c5f80375c2", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "66c93353dacb55c5f80375c1", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f80375c8", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66c93353dacb55c5f80375c2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 19.0 + } + }, + { + "_id": "66c93353dacb55c5f80375c3", + "_tpl": "5f2aa46b878ef416f538b567", + "parentId": "66c93353dacb55c5f80375c1", + "slotId": "mod_barrel" + }, + { + "_id": "66c93353dacb55c5f80375c4", + "_tpl": "5f2aa4464b50c14bcf07acdb", + "parentId": "66c93353dacb55c5f80375c3", + "slotId": "mod_muzzle" + }, + { + "_id": "66c93353dacb55c5f80375c5", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "parentId": "66c93353dacb55c5f80375c1", + "slotId": "mod_handguard" + }, + { + "_id": "66c93353dacb55c5f80375c6", + "_tpl": "5f2aa493cd375f14e15eea72", + "parentId": "66c93353dacb55c5f80375c5", + "slotId": "mod_mount_000" + }, + { + "_id": "66c93353dacb55c5f80375c7", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "parentId": "66c93353dacb55c5f80375c1", + "slotId": "mod_mount" + }, + { + "_id": "66c93353dacb55c5f80375ca", + "_tpl": "5751496424597720a27126da", + "parentId": "66c93353dacb55c5f80375be", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375cc", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "66c93353dacb55c5f80375be", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80375fc", - "_tpl": "657044e971369562b300ce9b", - "parentId": "66c93353dacb55c5f80375fb", - "slotId": "Soft_armor_front" - }, - { - "_id": "66c93353dacb55c5f80375fd", - "_tpl": "657045741bd9beedc40b7299", - "parentId": "66c93353dacb55c5f80375fb", - "slotId": "Soft_armor_back" - }, - { - "_id": "66c93353dacb55c5f80375fe", - "_tpl": "657045b97e80617cee095bda", - "parentId": "66c93353dacb55c5f80375fb", - "slotId": "Soft_armor_left" - }, - { - "_id": "66c93353dacb55c5f80375ff", - "_tpl": "6570460471369562b300ce9f", - "parentId": "66c93353dacb55c5f80375fb", - "slotId": "soft_armor_right" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037601", - "_tpl": "59e3596386f774176c10a2a2", - "parentId": "66c93353dacb55c5f80375f8", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375ce", + "Items": [ + { + "_id": "66c93353dacb55c5f80375ce", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375d0", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66c93353dacb55c5f80375ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375d2", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c93353dacb55c5f80375ce", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00392", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037603", - "Items": [ - { - "_id": "66c93353dacb55c5f8037603", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00231", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037605", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66c93353dacb55c5f8037603", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037607", - "_tpl": "5b4326435acfc433000ed01d", - "parentId": "66c93353dacb55c5f8037603", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375d4", + "Items": [ + { + "_id": "66c93353dacb55c5f80375d4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037609", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66c93353dacb55c5f8037603", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80375d6", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c93353dacb55c5f80375d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375d8", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66c93353dacb55c5f80375d4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375da", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66c93353dacb55c5f80375d4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00176", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803760b", - "Items": [ - { - "_id": "66c93353dacb55c5f803760b", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00121", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803760d", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c93353dacb55c5f803760b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803760f", - "_tpl": "5d010d1cd7ad1a59283b1ce7", - "parentId": "66c93353dacb55c5f803760b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375dc", + "Items": [ + { + "_id": "66c93353dacb55c5f80375dc", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80375de", + "_tpl": "57347baf24597738002c6178", + "parentId": "66c93353dacb55c5f80375dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037611", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66c93353dacb55c5f803760b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 48 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375e0", + "Items": [ + { + "_id": "66c93353dacb55c5f80375e0", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375e2", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c93353dacb55c5f80375e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375e4", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c93353dacb55c5f80375e0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00496", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037613", - "Items": [ - { - "_id": "66c93353dacb55c5f8037613", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00062", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037615", - "_tpl": "590a373286f774287540368b", - "parentId": "66c93353dacb55c5f8037613", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80375e6", + "Items": [ + { + "_id": "66c93353dacb55c5f80375e6", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375e8", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c93353dacb55c5f80375e6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1095 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80375ea", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c93353dacb55c5f80375e6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 639 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037617", - "_tpl": "5d40407c86f774318526545a", - "parentId": "66c93353dacb55c5f8037613", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375ec", + "Items": [ + { + "_id": "66c93353dacb55c5f80375ec", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375ee", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66c93353dacb55c5f80375ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375f0", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c93353dacb55c5f80375ec", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375f2", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c93353dacb55c5f80375ec", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037619", - "Items": [ - { - "_id": "66c93353dacb55c5f8037619", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00014", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803761b", - "_tpl": "5cbdaf89ae9215000e5b9c94", - "parentId": "66c93353dacb55c5f8037619", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375f4", + "Items": [ + { + "_id": "66c93353dacb55c5f80375f4", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80375f6", + "_tpl": "5c99f3592e221644fc633070", + "parentId": "66c93353dacb55c5f80375f4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00109", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803761c", - "_tpl": "5c0e5edb86f77461f55ed1f7", - "parentId": "66c93353dacb55c5f8037619", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803761d", - "_tpl": "6571dbd388ead79fcf091d71", - "parentId": "66c93353dacb55c5f803761c", - "slotId": "Soft_armor_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80375f8", + "Items": [ + { + "_id": "66c93353dacb55c5f80375f8", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375fa", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66c93353dacb55c5f80375f8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80375fb", + "_tpl": "5ab8e4ed86f7742d8e50c7fa", + "parentId": "66c93353dacb55c5f80375f8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c93353dacb55c5f80375fc", + "_tpl": "657044e971369562b300ce9b", + "parentId": "66c93353dacb55c5f80375fb", + "slotId": "Soft_armor_front" + }, + { + "_id": "66c93353dacb55c5f80375fd", + "_tpl": "657045741bd9beedc40b7299", + "parentId": "66c93353dacb55c5f80375fb", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c93353dacb55c5f80375fe", + "_tpl": "657045b97e80617cee095bda", + "parentId": "66c93353dacb55c5f80375fb", + "slotId": "Soft_armor_left" + }, + { + "_id": "66c93353dacb55c5f80375ff", + "_tpl": "6570460471369562b300ce9f", + "parentId": "66c93353dacb55c5f80375fb", + "slotId": "soft_armor_right" + }, + { + "_id": "66c93353dacb55c5f8037601", + "_tpl": "59e3596386f774176c10a2a2", + "parentId": "66c93353dacb55c5f80375f8", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00392", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803761e", - "_tpl": "6571dbda88ead79fcf091d75", - "parentId": "66c93353dacb55c5f803761c", - "slotId": "Soft_armor_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803761f", - "_tpl": "6571dbe07c02ae206002502e", - "parentId": "66c93353dacb55c5f803761c", - "slotId": "Soft_armor_left" - }, - { - "_id": "66c93353dacb55c5f8037620", - "_tpl": "6571dbeaee8ec43d520cf89e", - "parentId": "66c93353dacb55c5f803761c", - "slotId": "soft_armor_right" - }, - { - "_id": "66c93353dacb55c5f8037621", - "_tpl": "6571dbef88ead79fcf091d79", - "parentId": "66c93353dacb55c5f803761c", - "slotId": "Collar" - }, - { - "_id": "66c93353dacb55c5f8037622", - "_tpl": "656f57dc27aed95beb08f628", - "parentId": "66c93353dacb55c5f803761c", - "slotId": "Front_plate" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037603", + "Items": [ + { + "_id": "66c93353dacb55c5f8037603", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037605", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66c93353dacb55c5f8037603", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037607", + "_tpl": "5b4326435acfc433000ed01d", + "parentId": "66c93353dacb55c5f8037603", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037609", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66c93353dacb55c5f8037603", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00176", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037623", - "_tpl": "656fac30c6baea13cd07e10c", - "parentId": "66c93353dacb55c5f803761c", - "slotId": "Back_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037625", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66c93353dacb55c5f8037619", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803760b", + "Items": [ + { + "_id": "66c93353dacb55c5f803760b", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803760d", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c93353dacb55c5f803760b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803760f", + "_tpl": "5d010d1cd7ad1a59283b1ce7", + "parentId": "66c93353dacb55c5f803760b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037611", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66c93353dacb55c5f803760b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 48 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037627", - "Items": [ - { - "_id": "66c93353dacb55c5f8037627", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00496", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037629", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c93353dacb55c5f8037627", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037613", + "Items": [ + { + "_id": "66c93353dacb55c5f8037613", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037615", + "_tpl": "590a373286f774287540368b", + "parentId": "66c93353dacb55c5f8037613", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037617", + "_tpl": "5d40407c86f774318526545a", + "parentId": "66c93353dacb55c5f8037613", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00091", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803762b", - "Items": [ - { - "_id": "66c93353dacb55c5f803762b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803762d", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c93353dacb55c5f803762b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037619", + "Items": [ + { + "_id": "66c93353dacb55c5f8037619", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803761b", + "_tpl": "5cbdaf89ae9215000e5b9c94", + "parentId": "66c93353dacb55c5f8037619", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803761c", + "_tpl": "5c0e5edb86f77461f55ed1f7", + "parentId": "66c93353dacb55c5f8037619", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c93353dacb55c5f803761d", + "_tpl": "6571dbd388ead79fcf091d71", + "parentId": "66c93353dacb55c5f803761c", + "slotId": "Soft_armor_front" + }, + { + "_id": "66c93353dacb55c5f803761e", + "_tpl": "6571dbda88ead79fcf091d75", + "parentId": "66c93353dacb55c5f803761c", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c93353dacb55c5f803761f", + "_tpl": "6571dbe07c02ae206002502e", + "parentId": "66c93353dacb55c5f803761c", + "slotId": "Soft_armor_left" + }, + { + "_id": "66c93353dacb55c5f8037620", + "_tpl": "6571dbeaee8ec43d520cf89e", + "parentId": "66c93353dacb55c5f803761c", + "slotId": "soft_armor_right" + }, + { + "_id": "66c93353dacb55c5f8037621", + "_tpl": "6571dbef88ead79fcf091d79", + "parentId": "66c93353dacb55c5f803761c", + "slotId": "Collar" + }, + { + "_id": "66c93353dacb55c5f8037622", + "_tpl": "656f57dc27aed95beb08f628", + "parentId": "66c93353dacb55c5f803761c", + "slotId": "Front_plate" + }, + { + "_id": "66c93353dacb55c5f8037623", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "66c93353dacb55c5f803761c", + "slotId": "Back_plate" + }, + { + "_id": "66c93353dacb55c5f8037625", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66c93353dacb55c5f8037619", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00090", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803762f", - "Items": [ - { - "_id": "66c93353dacb55c5f803762f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037631", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c93353dacb55c5f803762f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037627", + "Items": [ + { + "_id": "66c93353dacb55c5f8037627", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037629", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c93353dacb55c5f8037627", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037633", - "Items": [ - { - "_id": "66c93353dacb55c5f8037633", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00091", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037635", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f8037633", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803762b", + "Items": [ + { + "_id": "66c93353dacb55c5f803762b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803762d", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c93353dacb55c5f803762b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00417", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037637", - "Items": [ - { - "_id": "66c93353dacb55c5f8037637", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00090", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803763b", - "_tpl": "57372fc52459776998772ca1", - "parentId": "66c93353dacb55c5f8037637", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803762f", + "Items": [ + { + "_id": "66c93353dacb55c5f803762f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037631", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c93353dacb55c5f803762f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803763c", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f803763b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803763d", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f803763b", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037633", + "Items": [ + { + "_id": "66c93353dacb55c5f8037633", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037635", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f8037633", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00165", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803763f", - "Items": [ - { - "_id": "66c93353dacb55c5f803763f", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00417", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037641", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c93353dacb55c5f803763f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037637", + "Items": [ + { + "_id": "66c93353dacb55c5f8037637", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803763b", + "_tpl": "57372fc52459776998772ca1", + "parentId": "66c93353dacb55c5f8037637", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803763c", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f803763b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c93353dacb55c5f803763d", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f803763b", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00165", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037643", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c93353dacb55c5f803763f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803763f", + "Items": [ + { + "_id": "66c93353dacb55c5f803763f", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037641", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c93353dacb55c5f803763f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037643", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c93353dacb55c5f803763f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00129", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037645", - "Items": [ - { - "_id": "66c93353dacb55c5f8037645", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00129", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037647", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66c93353dacb55c5f8037645", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037645", + "Items": [ + { + "_id": "66c93353dacb55c5f8037645", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037647", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66c93353dacb55c5f8037645", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00148", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037649", - "Items": [ - { - "_id": "66c93353dacb55c5f8037649", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00148", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803764b", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c93353dacb55c5f8037649", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00147", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803764d", - "Items": [ - { - "_id": "66c93353dacb55c5f803764d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803764f", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66c93353dacb55c5f803764d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037649", + "Items": [ + { + "_id": "66c93353dacb55c5f8037649", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803764b", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c93353dacb55c5f8037649", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00146", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037651", - "Items": [ - { - "_id": "66c93353dacb55c5f8037651", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00147", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037653", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66c93353dacb55c5f8037651", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00145", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037655", - "Items": [ - { - "_id": "66c93353dacb55c5f8037655", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037657", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c93353dacb55c5f8037655", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803764d", + "Items": [ + { + "_id": "66c93353dacb55c5f803764d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803764f", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66c93353dacb55c5f803764d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00483", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037659", - "Items": [ - { - "_id": "66c93353dacb55c5f8037659", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00146", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803765c", - "_tpl": "5737287724597765e1625ae2", - "parentId": "66c93353dacb55c5f8037659", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037651", + "Items": [ + { + "_id": "66c93353dacb55c5f8037651", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037653", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66c93353dacb55c5f8037651", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00145", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803765d", - "_tpl": "573720e02459776143012541", - "parentId": "66c93353dacb55c5f803765c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803765f", - "_tpl": "57a3459f245977764a01f703", - "parentId": "66c93353dacb55c5f8037659", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037655", + "Items": [ + { + "_id": "66c93353dacb55c5f8037655", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037661", - "_tpl": "5a0060fc86f7745793204432", - "parentId": "66c93353dacb55c5f8037659", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037657", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c93353dacb55c5f8037655", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00058", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037663", - "Items": [ - { - "_id": "66c93353dacb55c5f8037663", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00483", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037665", - "_tpl": "5448fee04bdc2dbc018b4567", - "parentId": "66c93353dacb55c5f8037663", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037667", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f8037663", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037659", + "Items": [ + { + "_id": "66c93353dacb55c5f8037659", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037669", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c93353dacb55c5f8037663", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803765c", + "_tpl": "5737287724597765e1625ae2", + "parentId": "66c93353dacb55c5f8037659", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803766b", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c93353dacb55c5f8037663", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803765d", + "_tpl": "573720e02459776143012541", + "parentId": "66c93353dacb55c5f803765c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803766d", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66c93353dacb55c5f8037663", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803765f", + "_tpl": "57a3459f245977764a01f703", + "parentId": "66c93353dacb55c5f8037659", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037661", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "66c93353dacb55c5f8037659", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_ProfileEditor_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803766f", - "Items": [ - { - "_id": "66c93353dacb55c5f803766f", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00058", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037671", - "_tpl": "5f0c892565703e5c461894e9", - "parentId": "66c93353dacb55c5f803766f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037673", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66c93353dacb55c5f803766f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037663", + "Items": [ + { + "_id": "66c93353dacb55c5f8037663", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037675", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66c93353dacb55c5f803766f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037665", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "66c93353dacb55c5f8037663", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 33 - } - }, - { - "_id": "66c93353dacb55c5f8037677", - "_tpl": "58d39b0386f77443380bf13c", - "parentId": "66c93353dacb55c5f803766f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037667", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f8037663", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037679", - "_tpl": "5a269f97c4a282000b151807", - "parentId": "66c93353dacb55c5f803766f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 14 + { + "_id": "66c93353dacb55c5f8037669", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c93353dacb55c5f8037663", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803766b", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c93353dacb55c5f8037663", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803766d", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66c93353dacb55c5f8037663", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803767b", - "Items": [ - { - "_id": "66c93353dacb55c5f803767b", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_ProfileEditor_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803767d", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c93353dacb55c5f803767b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00403", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803767f", - "Items": [ - { - "_id": "66c93353dacb55c5f803767f", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037681", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c93353dacb55c5f803767f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803766f", + "Items": [ + { + "_id": "66c93353dacb55c5f803766f", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037683", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c93353dacb55c5f803767f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037671", + "_tpl": "5f0c892565703e5c461894e9", + "parentId": "66c93353dacb55c5f803766f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037673", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66c93353dacb55c5f803766f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037675", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66c93353dacb55c5f803766f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 33 + } + }, + { + "_id": "66c93353dacb55c5f8037677", + "_tpl": "58d39b0386f77443380bf13c", + "parentId": "66c93353dacb55c5f803766f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037679", + "_tpl": "5a269f97c4a282000b151807", + "parentId": "66c93353dacb55c5f803766f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 14 + } } + ] + }, + { + "Id": "Lootable_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037685", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c93353dacb55c5f803767f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803767b", + "Items": [ + { + "_id": "66c93353dacb55c5f803767b", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803767d", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c93353dacb55c5f803767b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037687", - "Items": [ - { - "_id": "66c93353dacb55c5f8037687", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00403", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037689", - "_tpl": "5e2af00086f7746d3f3c33f7", - "parentId": "66c93353dacb55c5f8037687", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803767f", + "Items": [ + { + "_id": "66c93353dacb55c5f803767f", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037681", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c93353dacb55c5f803767f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037683", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c93353dacb55c5f803767f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037685", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c93353dacb55c5f803767f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803768b", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c93353dacb55c5f8037687", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00094", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803768d", - "Items": [ - { - "_id": "66c93353dacb55c5f803768d", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803768f", - "_tpl": "5b7d63cf5acfc4001876c8df", - "parentId": "66c93353dacb55c5f803768d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037687", + "Items": [ + { + "_id": "66c93353dacb55c5f8037687", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037689", + "_tpl": "5e2af00086f7746d3f3c33f7", + "parentId": "66c93353dacb55c5f8037687", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803768b", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c93353dacb55c5f8037687", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00284", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037691", - "Items": [ - { - "_id": "66c93353dacb55c5f8037691", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00094", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037693", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f8037691", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037695", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c93353dacb55c5f8037691", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803768d", + "Items": [ + { + "_id": "66c93353dacb55c5f803768d", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037697", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66c93353dacb55c5f8037691", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803768f", + "_tpl": "5b7d63cf5acfc4001876c8df", + "parentId": "66c93353dacb55c5f803768d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00106", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037699", - "Items": [ - { - "_id": "66c93353dacb55c5f8037699", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00284", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803769b", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c93353dacb55c5f8037699", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803769d", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c93353dacb55c5f8037699", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037691", + "Items": [ + { + "_id": "66c93353dacb55c5f8037691", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037693", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f8037691", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037695", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c93353dacb55c5f8037691", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037697", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66c93353dacb55c5f8037691", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00162", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803769f", - "Items": [ - { - "_id": "66c93353dacb55c5f803769f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00106", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376a1", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c93353dacb55c5f803769f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00161", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80376a3", - "Items": [ - { - "_id": "66c93353dacb55c5f80376a3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376a5", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c93353dacb55c5f80376a3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037699", + "Items": [ + { + "_id": "66c93353dacb55c5f8037699", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803769b", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c93353dacb55c5f8037699", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803769d", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c93353dacb55c5f8037699", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00160", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80376a7", - "Items": [ - { - "_id": "66c93353dacb55c5f80376a7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00162", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376a9", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f80376a7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00159", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80376ab", - "Items": [ - { - "_id": "66c93353dacb55c5f80376ab", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376ad", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c93353dacb55c5f80376ab", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803769f", + "Items": [ + { + "_id": "66c93353dacb55c5f803769f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376a1", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c93353dacb55c5f803769f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00175", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376af", - "Items": [ - { - "_id": "66c93353dacb55c5f80376af", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00161", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376b1", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c93353dacb55c5f80376af", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00119", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376b3", - "Items": [ - { - "_id": "66c93353dacb55c5f80376b3", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376b5", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c93353dacb55c5f80376b3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80376a3", + "Items": [ + { + "_id": "66c93353dacb55c5f80376a3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80376b7", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c93353dacb55c5f80376b3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80376a5", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c93353dacb55c5f80376a3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00132", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376b9", - "Items": [ - { - "_id": "66c93353dacb55c5f80376b9", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00160", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376bb", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c93353dacb55c5f80376b9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376bd", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c93353dacb55c5f80376b9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80376a7", + "Items": [ + { + "_id": "66c93353dacb55c5f80376a7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376a9", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f80376a7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00503", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376bf", - "Items": [ - { - "_id": "66c93353dacb55c5f80376bf", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00159", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376c1", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c93353dacb55c5f80376bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376c3", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f80376bf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80376ab", + "Items": [ + { + "_id": "66c93353dacb55c5f80376ab", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376ad", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c93353dacb55c5f80376ab", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00217", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376c5", - "Items": [ - { - "_id": "66c93353dacb55c5f80376c5", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00175", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376c7", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c93353dacb55c5f80376c5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376c9", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c93353dacb55c5f80376c5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376af", + "Items": [ + { + "_id": "66c93353dacb55c5f80376af", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376b1", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c93353dacb55c5f80376af", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "n1", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376cb", - "Items": [ - { - "_id": "66c93353dacb55c5f80376cb", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00119", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376cd", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c93353dacb55c5f80376cb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 40 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376cf", - "_tpl": "59e4cf5286f7741778269d8a", - "parentId": "66c93353dacb55c5f80376cb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376b3", + "Items": [ + { + "_id": "66c93353dacb55c5f80376b3", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 31 - } - }, - { - "_id": "66c93353dacb55c5f80376d2", - "_tpl": "657023bebfc87b3a34093207", - "parentId": "66c93353dacb55c5f80376cb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80376b5", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c93353dacb55c5f80376b3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80376b7", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c93353dacb55c5f80376b3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00132", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376d3", - "_tpl": "5fbe3ffdf8b6a877a729ea82", - "parentId": "66c93353dacb55c5f80376d2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376d6", - "_tpl": "573726d824597765d96be361", - "parentId": "66c93353dacb55c5f80376cb", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376b9", + "Items": [ + { + "_id": "66c93353dacb55c5f80376b9", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80376d7", - "_tpl": "57371f2b24597761224311f1", - "parentId": "66c93353dacb55c5f80376d6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + { + "_id": "66c93353dacb55c5f80376bb", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c93353dacb55c5f80376b9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376bd", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c93353dacb55c5f80376b9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00073", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376d9", - "Items": [ - { - "_id": "66c93353dacb55c5f80376d9", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00503", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376db", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66c93353dacb55c5f80376d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376dd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c93353dacb55c5f80376d9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376bf", + "Items": [ + { + "_id": "66c93353dacb55c5f80376bf", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 817 - } - }, - { - "_id": "66c93353dacb55c5f80376df", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c93353dacb55c5f80376d9", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80376c1", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c93353dacb55c5f80376bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376c3", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f80376bf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00056", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376e1", - "Items": [ - { - "_id": "66c93353dacb55c5f80376e1", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00217", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376e3", - "_tpl": "5448fee04bdc2dbc018b4567", - "parentId": "66c93353dacb55c5f80376e1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376e5", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f80376e1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376c5", + "Items": [ + { + "_id": "66c93353dacb55c5f80376c5", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80376e7", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c93353dacb55c5f80376e1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80376c7", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c93353dacb55c5f80376c5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80376e9", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c93353dacb55c5f80376e1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80376c9", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c93353dacb55c5f80376c5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00149", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376eb", - "Items": [ - { - "_id": "66c93353dacb55c5f80376eb", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "n1", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376ed", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66c93353dacb55c5f80376eb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376ef", - "_tpl": "57372140245977611f70ee91", - "parentId": "66c93353dacb55c5f80376eb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376cb", + "Items": [ + { + "_id": "66c93353dacb55c5f80376cb", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 22 - } - }, - { - "_id": "66c93353dacb55c5f80376f1", - "_tpl": "59e6927d86f77411da468256", - "parentId": "66c93353dacb55c5f80376eb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80376cd", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c93353dacb55c5f80376cb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } }, - "upd": { - "StackObjectsCount": 46 - } - }, - { - "_id": "66c93353dacb55c5f80376f3", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c93353dacb55c5f80376eb", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80376cf", + "_tpl": "59e4cf5286f7741778269d8a", + "parentId": "66c93353dacb55c5f80376cb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 31 + } + }, + { + "_id": "66c93353dacb55c5f80376d2", + "_tpl": "657023bebfc87b3a34093207", + "parentId": "66c93353dacb55c5f80376cb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376d3", + "_tpl": "5fbe3ffdf8b6a877a729ea82", + "parentId": "66c93353dacb55c5f80376d2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66c93353dacb55c5f80376d6", + "_tpl": "573726d824597765d96be361", + "parentId": "66c93353dacb55c5f80376cb", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376d7", + "_tpl": "57371f2b24597761224311f1", + "parentId": "66c93353dacb55c5f80376d6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00379", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376f5", - "Items": [ - { - "_id": "66c93353dacb55c5f80376f5", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00073", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376f7", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66c93353dacb55c5f80376f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376f9", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c93353dacb55c5f80376f5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376d9", + "Items": [ + { + "_id": "66c93353dacb55c5f80376d9", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80376fb", - "_tpl": "5d40419286f774318526545f", - "parentId": "66c93353dacb55c5f80376f5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80376db", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66c93353dacb55c5f80376d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376dd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c93353dacb55c5f80376d9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 817 + } + }, + { + "_id": "66c93353dacb55c5f80376df", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c93353dacb55c5f80376d9", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00150", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80376fd", - "Items": [ - { - "_id": "66c93353dacb55c5f80376fd", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00056", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80376ff", - "_tpl": "5e8488fa988a8701445df1e4", - "parentId": "66c93353dacb55c5f80376fd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037701", - "_tpl": "5a32aa0cc4a28232996e405f", - "parentId": "66c93353dacb55c5f80376fd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376e1", + "Items": [ + { + "_id": "66c93353dacb55c5f80376e1", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037703", - "_tpl": "5d40425986f7743185265461", - "parentId": "66c93353dacb55c5f80376fd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80376e3", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "66c93353dacb55c5f80376e1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376e5", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f80376e1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376e7", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c93353dacb55c5f80376e1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376e9", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c93353dacb55c5f80376e1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037705", - "Items": [ - { - "_id": "66c93353dacb55c5f8037705", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00149", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037707", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c93353dacb55c5f8037705", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037709", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c93353dacb55c5f8037705", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376eb", + "Items": [ + { + "_id": "66c93353dacb55c5f80376eb", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376ed", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66c93353dacb55c5f80376eb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376ef", + "_tpl": "57372140245977611f70ee91", + "parentId": "66c93353dacb55c5f80376eb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 22 + } + }, + { + "_id": "66c93353dacb55c5f80376f1", + "_tpl": "59e6927d86f77411da468256", + "parentId": "66c93353dacb55c5f80376eb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 46 + } + }, + { + "_id": "66c93353dacb55c5f80376f3", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c93353dacb55c5f80376eb", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_ProfileEditor_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803770b", - "Items": [ - { - "_id": "66c93353dacb55c5f803770b", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00379", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803770d", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c93353dacb55c5f803770b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803770f", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c93353dacb55c5f803770b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00172", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037711", - "Items": [ - { - "_id": "66c93353dacb55c5f8037711", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037713", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f8037711", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376f5", + "Items": [ + { + "_id": "66c93353dacb55c5f80376f5", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037715", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66c93353dacb55c5f8037711", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80376f7", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66c93353dacb55c5f80376f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 49 - } - }, - { - "_id": "66c93353dacb55c5f8037717", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66c93353dacb55c5f8037711", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80376f9", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c93353dacb55c5f80376f5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376fb", + "_tpl": "5d40419286f774318526545f", + "parentId": "66c93353dacb55c5f80376f5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00465", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037719", - "Items": [ - { - "_id": "66c93353dacb55c5f8037719", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00150", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803771b", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "parentId": "66c93353dacb55c5f8037719", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80376fd", + "Items": [ + { + "_id": "66c93353dacb55c5f80376fd", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80376ff", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "66c93353dacb55c5f80376fd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037701", + "_tpl": "5a32aa0cc4a28232996e405f", + "parentId": "66c93353dacb55c5f80376fd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037703", + "_tpl": "5d40425986f7743185265461", + "parentId": "66c93353dacb55c5f80376fd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803771d", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66c93353dacb55c5f8037719", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037705", + "Items": [ + { + "_id": "66c93353dacb55c5f8037705", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037707", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c93353dacb55c5f8037705", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037709", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c93353dacb55c5f8037705", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00114", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803771f", - "Items": [ - { - "_id": "66c93353dacb55c5f803771f", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_ProfileEditor_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037721", - "_tpl": "62a0a0bb621468534a797ad5", - "parentId": "66c93353dacb55c5f803771f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803770b", + "Items": [ + { + "_id": "66c93353dacb55c5f803770b", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803770d", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c93353dacb55c5f803770b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803770f", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c93353dacb55c5f803770b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00172", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037723", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66c93353dacb55c5f803771f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037711", + "Items": [ + { + "_id": "66c93353dacb55c5f8037711", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037713", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f8037711", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037715", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66c93353dacb55c5f8037711", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 49 + } + }, + { + "_id": "66c93353dacb55c5f8037717", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66c93353dacb55c5f8037711", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00478", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037725", - "Items": [ - { - "_id": "66c93353dacb55c5f8037725", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00465", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037727", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c93353dacb55c5f8037725", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037719", + "Items": [ + { + "_id": "66c93353dacb55c5f8037719", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803771b", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "parentId": "66c93353dacb55c5f8037719", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803771d", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66c93353dacb55c5f8037719", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00114", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037729", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c93353dacb55c5f8037725", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803771f", + "Items": [ + { + "_id": "66c93353dacb55c5f803771f", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037721", + "_tpl": "62a0a0bb621468534a797ad5", + "parentId": "66c93353dacb55c5f803771f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037723", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66c93353dacb55c5f803771f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00478", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803772b", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c93353dacb55c5f8037725", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037725", + "Items": [ + { + "_id": "66c93353dacb55c5f8037725", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037727", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c93353dacb55c5f8037725", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037729", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c93353dacb55c5f8037725", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803772b", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c93353dacb55c5f8037725", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803772d", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66c93353dacb55c5f8037725", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00497", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803772d", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66c93353dacb55c5f8037725", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803772f", + "Items": [ + { + "_id": "66c93353dacb55c5f803772f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037731", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c93353dacb55c5f803772f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037733", + "_tpl": "57513f07245977207e26a311", + "parentId": "66c93353dacb55c5f803772f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037735", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c93353dacb55c5f803772f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00497", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803772f", - "Items": [ - { - "_id": "66c93353dacb55c5f803772f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00033", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037731", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c93353dacb55c5f803772f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037737", + "Items": [ + { + "_id": "66c93353dacb55c5f8037737", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037739", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c93353dacb55c5f8037737", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037733", - "_tpl": "57513f07245977207e26a311", - "parentId": "66c93353dacb55c5f803772f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803773b", + "Items": [ + { + "_id": "66c93353dacb55c5f803773b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803773d", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f803773b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00122", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037735", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c93353dacb55c5f803772f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803773f", + "Items": [ + { + "_id": "66c93353dacb55c5f803773f", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037741", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c93353dacb55c5f803773f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037743", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c93353dacb55c5f803773f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00033", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037737", - "Items": [ - { - "_id": "66c93353dacb55c5f8037737", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00171", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037739", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c93353dacb55c5f8037737", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803773b", - "Items": [ - { - "_id": "66c93353dacb55c5f803773b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803773d", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f803773b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037745", + "Items": [ + { + "_id": "66c93353dacb55c5f8037745", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037747", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c93353dacb55c5f8037745", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037749", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c93353dacb55c5f8037745", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00122", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803773f", - "Items": [ - { - "_id": "66c93353dacb55c5f803773f", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00355", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037741", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c93353dacb55c5f803773f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037743", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c93353dacb55c5f803773f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803774b", + "Items": [ + { + "_id": "66c93353dacb55c5f803774b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803774d", + "_tpl": "59e0bdb186f774156f04ce82", + "parentId": "66c93353dacb55c5f803774b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803774e", + "_tpl": "5645bc214bdc2d363b8b4571", + "parentId": "66c93353dacb55c5f803774b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c93353dacb55c5f803774f", + "_tpl": "657bae18b7e9ca9a02045c0a", + "parentId": "66c93353dacb55c5f803774e", + "slotId": "Helmet_top" + }, + { + "_id": "66c93353dacb55c5f8037750", + "_tpl": "657baeaacfcf63c951052db3", + "parentId": "66c93353dacb55c5f803774e", + "slotId": "Helmet_back" + }, + { + "_id": "66c93353dacb55c5f8037751", + "_tpl": "657baecbc6f689d3a205b863", + "parentId": "66c93353dacb55c5f803774e", + "slotId": "Helmet_ears" } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00171", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037745", - "Items": [ - { - "_id": "66c93353dacb55c5f8037745", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00088", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037747", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c93353dacb55c5f8037745", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037749", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c93353dacb55c5f8037745", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037753", + "Items": [ + { + "_id": "66c93353dacb55c5f8037753", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037755", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f8037753", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00355", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803774b", - "Items": [ - { - "_id": "66c93353dacb55c5f803774b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00087", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803774d", - "_tpl": "59e0bdb186f774156f04ce82", - "parentId": "66c93353dacb55c5f803774b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803774e", - "_tpl": "5645bc214bdc2d363b8b4571", - "parentId": "66c93353dacb55c5f803774b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037757", + "Items": [ + { + "_id": "66c93353dacb55c5f8037757", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037759", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f8037757", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00086", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803774f", - "_tpl": "657bae18b7e9ca9a02045c0a", - "parentId": "66c93353dacb55c5f803774e", - "slotId": "Helmet_top" - }, - { - "_id": "66c93353dacb55c5f8037750", - "_tpl": "657baeaacfcf63c951052db3", - "parentId": "66c93353dacb55c5f803774e", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037751", - "_tpl": "657baecbc6f689d3a205b863", - "parentId": "66c93353dacb55c5f803774e", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00088", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037753", - "Items": [ - { - "_id": "66c93353dacb55c5f8037753", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803775b", + "Items": [ + { + "_id": "66c93353dacb55c5f803775b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803775d", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c93353dacb55c5f803775b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00085", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037755", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f8037753", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803775f", + "Items": [ + { + "_id": "66c93353dacb55c5f803775f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037761", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c93353dacb55c5f803775f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00087", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037757", - "Items": [ - { - "_id": "66c93353dacb55c5f8037757", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00074", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037759", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f8037757", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037763", + "Items": [ + { + "_id": "66c93353dacb55c5f8037763", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037765", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66c93353dacb55c5f8037763", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 12 + } + }, + { + "_id": "66c93353dacb55c5f8037767", + "_tpl": "5e8f3423fd7471236e6e3b64", + "parentId": "66c93353dacb55c5f8037763", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037769", + "_tpl": "5c3df7d588a4501f290594e5", + "parentId": "66c93353dacb55c5f8037763", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 24 + } + }, + { + "_id": "66c93353dacb55c5f803776b", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c93353dacb55c5f8037763", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00086", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803775b", - "Items": [ - { - "_id": "66c93353dacb55c5f803775b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00131", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803775d", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c93353dacb55c5f803775b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803776d", + "Items": [ + { + "_id": "66c93353dacb55c5f803776d", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803776f", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c93353dacb55c5f803776d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037771", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c93353dacb55c5f803776d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00085", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803775f", - "Items": [ - { - "_id": "66c93353dacb55c5f803775f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00104", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037761", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c93353dacb55c5f803775f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037773", + "Items": [ + { + "_id": "66c93353dacb55c5f8037773", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037775", + "_tpl": "57acb6222459771ec34b5cb0", + "parentId": "66c93353dacb55c5f8037773", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037777", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c93353dacb55c5f8037773", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00074", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037763", - "Items": [ - { - "_id": "66c93353dacb55c5f8037763", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00030", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037765", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66c93353dacb55c5f8037763", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037779", + "Items": [ + { + "_id": "66c93353dacb55c5f8037779", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 12 + { + "_id": "66c93353dacb55c5f803777b", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c93353dacb55c5f8037779", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00029", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037767", - "_tpl": "5e8f3423fd7471236e6e3b64", - "parentId": "66c93353dacb55c5f8037763", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803777d", + "Items": [ + { + "_id": "66c93353dacb55c5f803777d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803777f", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c93353dacb55c5f803777d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037769", - "_tpl": "5c3df7d588a4501f290594e5", - "parentId": "66c93353dacb55c5f8037763", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037781", + "Items": [ + { + "_id": "66c93353dacb55c5f8037781", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 24 + { + "_id": "66c93353dacb55c5f8037783", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c93353dacb55c5f8037781", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c93353dacb55c5f803776b", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c93353dacb55c5f8037763", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00131", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803776d", - "Items": [ - { - "_id": "66c93353dacb55c5f803776d", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803776f", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c93353dacb55c5f803776d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00112", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037771", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c93353dacb55c5f803776d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00104", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037773", - "Items": [ - { - "_id": "66c93353dacb55c5f8037773", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037775", - "_tpl": "57acb6222459771ec34b5cb0", - "parentId": "66c93353dacb55c5f8037773", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037785", + "Items": [ + { + "_id": "66c93353dacb55c5f8037785", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037777", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c93353dacb55c5f8037773", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00030", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037779", - "Items": [ - { - "_id": "66c93353dacb55c5f8037779", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803777b", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c93353dacb55c5f8037779", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037787", + "_tpl": "592c2d1a86f7746dbe2af32a", + "parentId": "66c93353dacb55c5f8037785", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00029", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803777d", - "Items": [ - { - "_id": "66c93353dacb55c5f803777d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00228", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803777f", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c93353dacb55c5f803777d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037781", - "Items": [ - { - "_id": "66c93353dacb55c5f8037781", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037783", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c93353dacb55c5f8037781", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037789", + "Items": [ + { + "_id": "66c93353dacb55c5f8037789", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803778b", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c93353dacb55c5f8037789", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803778d", + "_tpl": "66b37f114410565a8f6789e2", + "parentId": "66c93353dacb55c5f8037789", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00112", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037785", - "Items": [ - { - "_id": "66c93353dacb55c5f8037785", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00139", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037787", - "_tpl": "592c2d1a86f7746dbe2af32a", - "parentId": "66c93353dacb55c5f8037785", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00228", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037789", - "Items": [ - { - "_id": "66c93353dacb55c5f8037789", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803778b", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c93353dacb55c5f8037789", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803778f", + "Items": [ + { + "_id": "66c93353dacb55c5f803778f", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803778d", - "_tpl": "66b37f114410565a8f6789e2", - "parentId": "66c93353dacb55c5f8037789", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037791", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c93353dacb55c5f803778f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00139", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803778f", - "Items": [ - { - "_id": "66c93353dacb55c5f803778f", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00213", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037791", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c93353dacb55c5f803778f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00213", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037793", - "Items": [ - { - "_id": "66c93353dacb55c5f8037793", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037795", - "_tpl": "57514643245977207f2c2d09", - "parentId": "66c93353dacb55c5f8037793", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037793", + "Items": [ + { + "_id": "66c93353dacb55c5f8037793", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037795", + "_tpl": "57514643245977207f2c2d09", + "parentId": "66c93353dacb55c5f8037793", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00283", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037797", - "Items": [ - { - "_id": "66c93353dacb55c5f8037797", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00283", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037799", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c93353dacb55c5f8037797", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803779b", - "Items": [ - { - "_id": "66c93353dacb55c5f803779b", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803779c", - "_tpl": "57d14d2524597714373db789", - "parentId": "66c93353dacb55c5f803779b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037797", + "Items": [ + { + "_id": "66c93353dacb55c5f8037797", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037799", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c93353dacb55c5f8037797", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803779d", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66c93353dacb55c5f803779c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c93353dacb55c5f803779e", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66c93353dacb55c5f803779c", - "slotId": "mod_magazine" - }, - { - "_id": "66c93353dacb55c5f803779f", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66c93353dacb55c5f803779e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 27.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377a1", - "_tpl": "646f62fee779812413011ab7", - "parentId": "66c93353dacb55c5f803779b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803779b", + "Items": [ + { + "_id": "66c93353dacb55c5f803779b", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80377a3", - "_tpl": "5fb651dc85f90547f674b6f4", - "parentId": "66c93353dacb55c5f803779b", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + { + "_id": "66c93353dacb55c5f803779c", + "_tpl": "57d14d2524597714373db789", + "parentId": "66c93353dacb55c5f803779b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80377a5", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66c93353dacb55c5f803779b", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66c93353dacb55c5f803779d", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66c93353dacb55c5f803779c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c93353dacb55c5f803779e", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66c93353dacb55c5f803779c", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f803779f", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66c93353dacb55c5f803779e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 27.0 + } + }, + { + "_id": "66c93353dacb55c5f80377a1", + "_tpl": "646f62fee779812413011ab7", + "parentId": "66c93353dacb55c5f803779b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377a3", + "_tpl": "5fb651dc85f90547f674b6f4", + "parentId": "66c93353dacb55c5f803779b", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377a5", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66c93353dacb55c5f803779b", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377a6", + "_tpl": "63088377b5cd696784087147", + "parentId": "66c93353dacb55c5f803779b", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c93353dacb55c5f80377a7", + "_tpl": "630764fea987397c0816d219", + "parentId": "66c93353dacb55c5f80377a6", + "slotId": "mod_barrel" + }, + { + "_id": "66c93353dacb55c5f80377a8", + "_tpl": "63075cc5962d0247b029dc2a", + "parentId": "66c93353dacb55c5f80377a6", + "slotId": "mod_reciever" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80377a9", + "_tpl": "630765cb962d0247b029dc45", + "parentId": "66c93353dacb55c5f80377a8", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c93353dacb55c5f80377aa", + "_tpl": "630765777d50ff5e8a1ea718", + "parentId": "66c93353dacb55c5f80377a8", + "slotId": "mod_sight_front" + }, + { + "_id": "66c93353dacb55c5f80377ab", + "_tpl": "63076701a987397c0816d21b", + "parentId": "66c93353dacb55c5f80377a6", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f80377ac", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c93353dacb55c5f80377ab", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00439", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377a6", - "_tpl": "63088377b5cd696784087147", - "parentId": "66c93353dacb55c5f803779b", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80377ae", + "Items": [ + { + "_id": "66c93353dacb55c5f80377ae", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377b0", + "_tpl": "5dff77c759400025ea5150cf", + "parentId": "66c93353dacb55c5f80377ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377b2", + "_tpl": "623c2f4242aee3103f1c44b7", + "parentId": "66c93353dacb55c5f80377ae", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c93353dacb55c5f80377b4", + "_tpl": "5c17664f2e2216398b5a7e3c", + "parentId": "66c93353dacb55c5f80377ae", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00367", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377a7", - "_tpl": "630764fea987397c0816d219", - "parentId": "66c93353dacb55c5f80377a6", - "slotId": "mod_barrel" - }, - { - "_id": "66c93353dacb55c5f80377a8", - "_tpl": "63075cc5962d0247b029dc2a", - "parentId": "66c93353dacb55c5f80377a6", - "slotId": "mod_reciever" - }, - { - "_id": "66c93353dacb55c5f80377a9", - "_tpl": "630765cb962d0247b029dc45", - "parentId": "66c93353dacb55c5f80377a8", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c93353dacb55c5f80377aa", - "_tpl": "630765777d50ff5e8a1ea718", - "parentId": "66c93353dacb55c5f80377a8", - "slotId": "mod_sight_front" - }, - { - "_id": "66c93353dacb55c5f80377ab", - "_tpl": "63076701a987397c0816d21b", - "parentId": "66c93353dacb55c5f80377a6", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377ac", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c93353dacb55c5f80377ab", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80377b6", + "Items": [ + { + "_id": "66c93353dacb55c5f80377b6", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377b8", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c93353dacb55c5f80377b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377ba", + "_tpl": "619cbfccbedcde2f5b3f7bdd", + "parentId": "66c93353dacb55c5f80377b6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00439", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80377ae", - "Items": [ - { - "_id": "66c93353dacb55c5f80377ae", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377b0", - "_tpl": "5dff77c759400025ea5150cf", - "parentId": "66c93353dacb55c5f80377ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377b2", - "_tpl": "623c2f4242aee3103f1c44b7", - "parentId": "66c93353dacb55c5f80377ae", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80377bc", + "Items": [ + { + "_id": "66c93353dacb55c5f80377bc", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80377b4", - "_tpl": "5c17664f2e2216398b5a7e3c", - "parentId": "66c93353dacb55c5f80377ae", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80377be", + "_tpl": "59e7715586f7742ee5789605", + "parentId": "66c93353dacb55c5f80377bc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377c0", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66c93353dacb55c5f80377bc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00367", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80377b6", - "Items": [ - { - "_id": "66c93353dacb55c5f80377b6", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377b8", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c93353dacb55c5f80377b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377ba", - "_tpl": "619cbfccbedcde2f5b3f7bdd", - "parentId": "66c93353dacb55c5f80377b6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80377c2", + "Items": [ + { + "_id": "66c93353dacb55c5f80377c2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377c4", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c93353dacb55c5f80377c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80377bc", - "Items": [ - { - "_id": "66c93353dacb55c5f80377bc", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377be", - "_tpl": "59e7715586f7742ee5789605", - "parentId": "66c93353dacb55c5f80377bc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377c0", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66c93353dacb55c5f80377bc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80377c6", + "Items": [ + { + "_id": "66c93353dacb55c5f80377c6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377c8", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66c93353dacb55c5f80377c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80377c2", - "Items": [ - { - "_id": "66c93353dacb55c5f80377c2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377c4", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c93353dacb55c5f80377c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80377c6", - "Items": [ - { - "_id": "66c93353dacb55c5f80377c6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377c8", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66c93353dacb55c5f80377c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80377ca", + "Items": [ + { + "_id": "66c93353dacb55c5f80377ca", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377cc", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c93353dacb55c5f80377ca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80377ca", - "Items": [ - { - "_id": "66c93353dacb55c5f80377ca", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377cc", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c93353dacb55c5f80377ca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80377ce", - "Items": [ - { - "_id": "66c93353dacb55c5f80377ce", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377d0", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c93353dacb55c5f80377ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80377ce", + "Items": [ + { + "_id": "66c93353dacb55c5f80377ce", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377d0", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c93353dacb55c5f80377ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00338", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80377d2", - "Items": [ - { - "_id": "66c93353dacb55c5f80377d2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00338", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377d4", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f80377d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00168", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80377d6", - "Items": [ - { - "_id": "66c93353dacb55c5f80377d6", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377d8", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c93353dacb55c5f80377d6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80377d2", + "Items": [ + { + "_id": "66c93353dacb55c5f80377d2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80377da", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c93353dacb55c5f80377d6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80377d4", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f80377d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00113", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80377dc", - "Items": [ - { - "_id": "66c93353dacb55c5f80377dc", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00168", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377de", - "_tpl": "5a9fb739a2750c003215717f", - "parentId": "66c93353dacb55c5f80377dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80377d6", + "Items": [ + { + "_id": "66c93353dacb55c5f80377d6", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80377d8", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c93353dacb55c5f80377d6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377da", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c93353dacb55c5f80377d6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00113", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377e0", - "_tpl": "6113cce3d92c473c770200c7", - "parentId": "66c93353dacb55c5f80377dc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80377dc", + "Items": [ + { + "_id": "66c93353dacb55c5f80377dc", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377de", + "_tpl": "5a9fb739a2750c003215717f", + "parentId": "66c93353dacb55c5f80377dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377e0", + "_tpl": "6113cce3d92c473c770200c7", + "parentId": "66c93353dacb55c5f80377dc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80377e2", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c93353dacb55c5f80377dc", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377e4", + "_tpl": "58889c7324597754281f9439", + "parentId": "66c93353dacb55c5f80377dc", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00137", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377e2", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c93353dacb55c5f80377dc", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80377e6", + "Items": [ + { + "_id": "66c93353dacb55c5f80377e6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80377e8", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c93353dacb55c5f80377e6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00136", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377e4", - "_tpl": "58889c7324597754281f9439", - "parentId": "66c93353dacb55c5f80377dc", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80377ea", + "Items": [ + { + "_id": "66c93353dacb55c5f80377ea", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377ec", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c93353dacb55c5f80377ea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00137", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80377e6", - "Items": [ - { - "_id": "66c93353dacb55c5f80377e6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00135", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377e8", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c93353dacb55c5f80377e6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00136", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80377ea", - "Items": [ - { - "_id": "66c93353dacb55c5f80377ea", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377ec", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c93353dacb55c5f80377ea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80377ee", + "Items": [ + { + "_id": "66c93353dacb55c5f80377ee", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377f0", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c93353dacb55c5f80377ee", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00135", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80377ee", - "Items": [ - { - "_id": "66c93353dacb55c5f80377ee", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00134", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377f0", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c93353dacb55c5f80377ee", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00134", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80377f2", - "Items": [ - { - "_id": "66c93353dacb55c5f80377f2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377f4", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c93353dacb55c5f80377f2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80377f2", + "Items": [ + { + "_id": "66c93353dacb55c5f80377f2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377f4", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c93353dacb55c5f80377f2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00354", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80377f6", - "Items": [ - { - "_id": "66c93353dacb55c5f80377f6", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00354", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377f8", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66c93353dacb55c5f80377f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377fa", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66c93353dacb55c5f80377f6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 28 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80377f6", + "Items": [ + { + "_id": "66c93353dacb55c5f80377f6", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377f8", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66c93353dacb55c5f80377f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80377fa", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66c93353dacb55c5f80377f6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 28 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00342", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80377fc", - "Items": [ - { - "_id": "66c93353dacb55c5f80377fc", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00342", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80377fe", - "_tpl": "5d1b385e86f774252167b98a", - "parentId": "66c93353dacb55c5f80377fc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037800", - "_tpl": "5d40425986f7743185265461", - "parentId": "66c93353dacb55c5f80377fc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80377fc", + "Items": [ + { + "_id": "66c93353dacb55c5f80377fc", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037802", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c93353dacb55c5f80377fc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80377fe", + "_tpl": "5d1b385e86f774252167b98a", + "parentId": "66c93353dacb55c5f80377fc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037804", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66c93353dacb55c5f80377fc", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037800", + "_tpl": "5d40425986f7743185265461", + "parentId": "66c93353dacb55c5f80377fc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037806", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c93353dacb55c5f80377fc", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037802", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c93353dacb55c5f80377fc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037808", - "_tpl": "590c35a486f774273531c822", - "parentId": "66c93353dacb55c5f80377fc", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00486", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803780a", - "Items": [ - { - "_id": "66c93353dacb55c5f803780a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803780c", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c93353dacb55c5f803780a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037804", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66c93353dacb55c5f80377fc", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803780e", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c93353dacb55c5f803780a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_ProfileEditor_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037810", - "Items": [ - { - "_id": "66c93353dacb55c5f8037810", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037812", - "_tpl": "64b8ee384b75259c590fa89b", - "parentId": "66c93353dacb55c5f8037810", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037806", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c93353dacb55c5f80377fc", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037808", + "_tpl": "590c35a486f774273531c822", + "parentId": "66c93353dacb55c5f80377fc", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00402", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037814", - "Items": [ - { - "_id": "66c93353dacb55c5f8037814", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037815", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "66c93353dacb55c5f8037814", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c93353dacb55c5f8037816", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "66c93353dacb55c5f8037815", - "slotId": "mod_barrel" - }, - { - "_id": "66c93353dacb55c5f8037817", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "66c93353dacb55c5f8037815", - "slotId": "mod_reciever" - }, - { - "_id": "66c93353dacb55c5f8037818", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "66c93353dacb55c5f8037817", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c93353dacb55c5f8037819", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "66c93353dacb55c5f8037817", - "slotId": "mod_sight_front" - }, - { - "_id": "66c93353dacb55c5f803781a", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "66c93353dacb55c5f8037815", - "slotId": "mod_magazine" + { + "Id": "container_Sandbox_Design_Stuff_00486", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803781b", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c93353dacb55c5f803781a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803781d", - "_tpl": "5d6fc78386f77449d825f9dc", - "parentId": "66c93353dacb55c5f8037814", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803780a", + "Items": [ + { + "_id": "66c93353dacb55c5f803780a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803781e", - "_tpl": "57f4c844245977379d5c14d1", - "parentId": "66c93353dacb55c5f8037814", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c93353dacb55c5f803781f", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66c93353dacb55c5f803781e", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c93353dacb55c5f8037820", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66c93353dacb55c5f803781e", - "slotId": "mod_magazine" - }, - { - "_id": "66c93353dacb55c5f8037821", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66c93353dacb55c5f8037820", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10.0 - } - }, - { - "_id": "66c93353dacb55c5f8037822", - "_tpl": "66015072e9f84d5680039678", - "parentId": "66c93353dacb55c5f8037814", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66c93353dacb55c5f803780c", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c93353dacb55c5f803780a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c93353dacb55c5f803780e", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c93353dacb55c5f803780a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66c93353dacb55c5f8037823", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "66c93353dacb55c5f8037822", - "slotId": "mod_magazine" - }, - { - "_id": "66c93353dacb55c5f8037824", - "_tpl": "6601546f86889319850bd566", - "parentId": "66c93353dacb55c5f8037823", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10.0 - } - }, - { - "_id": "66c93353dacb55c5f8037826", - "_tpl": "558032614bdc2de7118b4585", - "parentId": "66c93353dacb55c5f8037814", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00179", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037828", - "Items": [ - { - "_id": "66c93353dacb55c5f8037828", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_ProfileEditor_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803782a", - "_tpl": "5d6fc78386f77449d825f9dc", - "parentId": "66c93353dacb55c5f8037828", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00173", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803782c", - "Items": [ - { - "_id": "66c93353dacb55c5f803782c", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803782e", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "66c93353dacb55c5f803782c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037810", + "Items": [ + { + "_id": "66c93353dacb55c5f8037810", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 46 - } - }, - { - "_id": "66c93353dacb55c5f803782f", - "_tpl": "5648a7494bdc2d9d488b4583", - "parentId": "66c93353dacb55c5f803782c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037812", + "_tpl": "64b8ee384b75259c590fa89b", + "parentId": "66c93353dacb55c5f8037810", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00402", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037830", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "66c93353dacb55c5f803782f", - "slotId": "Soft_armor_front" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037831", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "66c93353dacb55c5f803782f", - "slotId": "Soft_armor_back" - }, - { - "_id": "66c93353dacb55c5f8037832", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "66c93353dacb55c5f803782f", - "slotId": "Soft_armor_left" - }, - { - "_id": "66c93353dacb55c5f8037833", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "66c93353dacb55c5f803782f", - "slotId": "soft_armor_right" - }, - { - "_id": "66c93353dacb55c5f8037835", - "_tpl": "57347d9c245977448b40fa85", - "parentId": "66c93353dacb55c5f803782c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037814", + "Items": [ + { + "_id": "66c93353dacb55c5f8037814", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037837", - "_tpl": "6040de02647ad86262233012", - "parentId": "66c93353dacb55c5f803782c", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037815", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "66c93353dacb55c5f8037814", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c93353dacb55c5f8037816", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "66c93353dacb55c5f8037815", + "slotId": "mod_barrel" + }, + { + "_id": "66c93353dacb55c5f8037817", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "66c93353dacb55c5f8037815", + "slotId": "mod_reciever" + }, + { + "_id": "66c93353dacb55c5f8037818", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "66c93353dacb55c5f8037817", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c93353dacb55c5f8037819", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "66c93353dacb55c5f8037817", + "slotId": "mod_sight_front" + }, + { + "_id": "66c93353dacb55c5f803781a", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "66c93353dacb55c5f8037815", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f803781b", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c93353dacb55c5f803781a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66c93353dacb55c5f803781d", + "_tpl": "5d6fc78386f77449d825f9dc", + "parentId": "66c93353dacb55c5f8037814", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803781e", + "_tpl": "57f4c844245977379d5c14d1", + "parentId": "66c93353dacb55c5f8037814", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c93353dacb55c5f803781f", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66c93353dacb55c5f803781e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c93353dacb55c5f8037820", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66c93353dacb55c5f803781e", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f8037821", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66c93353dacb55c5f8037820", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10.0 + } + }, + { + "_id": "66c93353dacb55c5f8037822", + "_tpl": "66015072e9f84d5680039678", + "parentId": "66c93353dacb55c5f8037814", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c93353dacb55c5f8037823", + "_tpl": "66015dc4aaad2f54cb04c56a", + "parentId": "66c93353dacb55c5f8037822", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f8037824", + "_tpl": "6601546f86889319850bd566", + "parentId": "66c93353dacb55c5f8037823", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10.0 + } + }, + { + "_id": "66c93353dacb55c5f8037826", + "_tpl": "558032614bdc2de7118b4585", + "parentId": "66c93353dacb55c5f8037814", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00182", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037839", - "Items": [ - { - "_id": "66c93353dacb55c5f8037839", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00179", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803783b", - "_tpl": "6040de02647ad86262233012", - "parentId": "66c93353dacb55c5f8037839", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00472", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803783d", - "Items": [ - { - "_id": "66c93353dacb55c5f803783d", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803783f", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c93353dacb55c5f803783d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037828", + "Items": [ + { + "_id": "66c93353dacb55c5f8037828", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037841", - "_tpl": "5f994730c91ed922dd355de3", - "parentId": "66c93353dacb55c5f803783d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803782a", + "_tpl": "5d6fc78386f77449d825f9dc", + "parentId": "66c93353dacb55c5f8037828", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00366", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037843", - "Items": [ - { - "_id": "66c93353dacb55c5f8037843", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00173", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037845", - "_tpl": "59fafb5d86f774067a6f2084", - "parentId": "66c93353dacb55c5f8037843", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037847", - "_tpl": "5d1b31ce86f7742523398394", - "parentId": "66c93353dacb55c5f8037843", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803782c", + "Items": [ + { + "_id": "66c93353dacb55c5f803782c", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037849", - "_tpl": "5733279d245977289b77ec24", - "parentId": "66c93353dacb55c5f8037843", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + { + "_id": "66c93353dacb55c5f803782e", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "66c93353dacb55c5f803782c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 46 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803784b", - "_tpl": "5af04b6486f774195a3ebb49", - "parentId": "66c93353dacb55c5f8037843", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66c93353dacb55c5f803782f", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "66c93353dacb55c5f803782c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803784d", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c93353dacb55c5f8037843", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66c93353dacb55c5f8037830", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "66c93353dacb55c5f803782f", + "slotId": "Soft_armor_front" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803784f", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f8037843", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037831", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "66c93353dacb55c5f803782f", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c93353dacb55c5f8037832", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "66c93353dacb55c5f803782f", + "slotId": "Soft_armor_left" + }, + { + "_id": "66c93353dacb55c5f8037833", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "66c93353dacb55c5f803782f", + "slotId": "soft_armor_right" + }, + { + "_id": "66c93353dacb55c5f8037835", + "_tpl": "57347d9c245977448b40fa85", + "parentId": "66c93353dacb55c5f803782c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037837", + "_tpl": "6040de02647ad86262233012", + "parentId": "66c93353dacb55c5f803782c", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00365", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037851", - "Items": [ - { - "_id": "66c93353dacb55c5f8037851", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00182", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037853", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66c93353dacb55c5f8037851", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00133", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037855", - "Items": [ - { - "_id": "66c93353dacb55c5f8037855", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037857", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c93353dacb55c5f8037855", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037839", + "Items": [ + { + "_id": "66c93353dacb55c5f8037839", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037859", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c93353dacb55c5f8037855", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803783b", + "_tpl": "6040de02647ad86262233012", + "parentId": "66c93353dacb55c5f8037839", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00157", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803785b", - "Items": [ - { - "_id": "66c93353dacb55c5f803785b", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803785c", - "_tpl": "5b432d215acfc4771e1c6624", - "parentId": "66c93353dacb55c5f803785b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c93353dacb55c5f803785d", - "_tpl": "657bb92fa1c61ee0c303631f", - "parentId": "66c93353dacb55c5f803785c", - "slotId": "Helmet_top" + { + "Id": "container_Sandbox_Design_Stuff_00472", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803785e", - "_tpl": "657bb99db30eca976305117f", - "parentId": "66c93353dacb55c5f803785c", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037860", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c93353dacb55c5f803785b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803783d", + "Items": [ + { + "_id": "66c93353dacb55c5f803783d", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037862", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66c93353dacb55c5f803785b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803783f", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c93353dacb55c5f803783d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037841", + "_tpl": "5f994730c91ed922dd355de3", + "parentId": "66c93353dacb55c5f803783d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00366", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037864", - "_tpl": "5b40e5e25acfc4001a599bea", - "parentId": "66c93353dacb55c5f803785b", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037866", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "66c93353dacb55c5f803785b", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037843", + "Items": [ + { + "_id": "66c93353dacb55c5f8037843", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037845", + "_tpl": "59fafb5d86f774067a6f2084", + "parentId": "66c93353dacb55c5f8037843", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037847", + "_tpl": "5d1b31ce86f7742523398394", + "parentId": "66c93353dacb55c5f8037843", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037849", + "_tpl": "5733279d245977289b77ec24", + "parentId": "66c93353dacb55c5f8037843", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803784b", + "_tpl": "5af04b6486f774195a3ebb49", + "parentId": "66c93353dacb55c5f8037843", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803784d", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c93353dacb55c5f8037843", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803784f", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f8037843", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00066", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037868", - "Items": [ - { - "_id": "66c93353dacb55c5f8037868", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00365", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803786a", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66c93353dacb55c5f8037868", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037851", + "Items": [ + { + "_id": "66c93353dacb55c5f8037851", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 25 + { + "_id": "66c93353dacb55c5f8037853", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66c93353dacb55c5f8037851", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00133", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803786c", - "_tpl": "6259bdcabd28e4721447a2aa", - "parentId": "66c93353dacb55c5f8037868", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00210", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803786e", - "Items": [ - { - "_id": "66c93353dacb55c5f803786e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037870", - "_tpl": "5734758f24597738025ee253", - "parentId": "66c93353dacb55c5f803786e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037855", + "Items": [ + { + "_id": "66c93353dacb55c5f8037855", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037872", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66c93353dacb55c5f803786e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037857", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c93353dacb55c5f8037855", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037874", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66c93353dacb55c5f803786e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037859", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c93353dacb55c5f8037855", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00163", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037876", - "Items": [ - { - "_id": "66c93353dacb55c5f8037876", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00157", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037878", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c93353dacb55c5f8037876", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00504", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803787a", - "Items": [ - { - "_id": "66c93353dacb55c5f803787a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803787c", - "_tpl": "59e3577886f774176a362503", - "parentId": "66c93353dacb55c5f803787a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803785b", + "Items": [ + { + "_id": "66c93353dacb55c5f803785b", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803787e", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66c93353dacb55c5f803787a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803785c", + "_tpl": "5b432d215acfc4771e1c6624", + "parentId": "66c93353dacb55c5f803785b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037880", - "_tpl": "590c595c86f7747884343ad7", - "parentId": "66c93353dacb55c5f803787a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00349", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037882", - "Items": [ - { - "_id": "66c93353dacb55c5f8037882", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037884", - "_tpl": "5fbb978207e8a97d1f0902d3", - "parentId": "66c93353dacb55c5f8037882", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803785d", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "66c93353dacb55c5f803785c", + "slotId": "Helmet_top" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037886", - "_tpl": "572b7d8524597762b472f9d1", - "parentId": "66c93353dacb55c5f8037882", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803785e", + "_tpl": "657bb99db30eca976305117f", + "parentId": "66c93353dacb55c5f803785c", + "slotId": "Helmet_back" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037888", - "_tpl": "6513f0a194c72326990a3868", - "parentId": "66c93353dacb55c5f8037882", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037860", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c93353dacb55c5f803785b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803788a", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66c93353dacb55c5f8037882", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037862", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66c93353dacb55c5f803785b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803788c", - "_tpl": "5d10b49bd7ad1a1a560708b0", - "parentId": "66c93353dacb55c5f8037882", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037864", + "_tpl": "5b40e5e25acfc4001a599bea", + "parentId": "66c93353dacb55c5f803785b", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803788e", - "_tpl": "603618feffd42c541047f771", - "parentId": "66c93353dacb55c5f8037882", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00105", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037890", - "Items": [ - { - "_id": "66c93353dacb55c5f8037890", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037892", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c93353dacb55c5f8037890", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037866", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "66c93353dacb55c5f803785b", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00180", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037894", - "Items": [ - { - "_id": "66c93353dacb55c5f8037894", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00066", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037896", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c93353dacb55c5f8037894", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00433", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037898", - "Items": [ - { - "_id": "66c93353dacb55c5f8037898", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803789a", - "_tpl": "6516e9d7e239bd0c487e3766", - "parentId": "66c93353dacb55c5f8037898", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037868", + "Items": [ + { + "_id": "66c93353dacb55c5f8037868", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803789c", - "_tpl": "5f2aa43ba9b91d26f20ae6d2", - "parentId": "66c93353dacb55c5f8037898", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803786a", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66c93353dacb55c5f8037868", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 25 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803786c", + "_tpl": "6259bdcabd28e4721447a2aa", + "parentId": "66c93353dacb55c5f8037868", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00210", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803789e", - "_tpl": "5c5db6302e2216000e5e47f0", - "parentId": "66c93353dacb55c5f8037898", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378a0", - "_tpl": "57acb6222459771ec34b5cb0", - "parentId": "66c93353dacb55c5f8037898", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803786e", + "Items": [ + { + "_id": "66c93353dacb55c5f803786e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378a2", - "_tpl": "64b9cf0ac12b9c38db26923a", - "parentId": "66c93353dacb55c5f8037898", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66c93353dacb55c5f8037870", + "_tpl": "5734758f24597738025ee253", + "parentId": "66c93353dacb55c5f803786e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378a4", - "_tpl": "661e52415be02310ed07a07a", - "parentId": "66c93353dacb55c5f8037898", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66c93353dacb55c5f8037872", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66c93353dacb55c5f803786e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037874", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66c93353dacb55c5f803786e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00163", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378a6", - "_tpl": "5cc9a96cd7f00c011c04e04a", - "parentId": "66c93353dacb55c5f8037898", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378a8", - "_tpl": "576a5ed62459771e9c2096cb", - "parentId": "66c93353dacb55c5f8037898", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037876", + "Items": [ + { + "_id": "66c93353dacb55c5f8037876", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378aa", - "_tpl": "5ba26812d4351e003201fef1", - "parentId": "66c93353dacb55c5f8037898", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 22 + { + "_id": "66c93353dacb55c5f8037878", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c93353dacb55c5f8037876", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00467", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80378ac", - "Items": [ - { - "_id": "66c93353dacb55c5f80378ac", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00504", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378ae", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c93353dacb55c5f80378ac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 37 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378b1", - "_tpl": "6570259fcfc010a0f5006a32", - "parentId": "66c93353dacb55c5f80378ac", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803787a", + "Items": [ + { + "_id": "66c93353dacb55c5f803787a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378b2", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66c93353dacb55c5f80378b1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - }, - { - "_id": "66c93353dacb55c5f80378b5", - "_tpl": "64ace9ff03378853630da538", - "parentId": "66c93353dacb55c5f80378ac", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803787c", + "_tpl": "59e3577886f774176a362503", + "parentId": "66c93353dacb55c5f803787a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378b6", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c93353dacb55c5f80378b5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66c93353dacb55c5f80378b8", - "_tpl": "57372140245977611f70ee91", - "parentId": "66c93353dacb55c5f80378ac", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 30 + { + "_id": "66c93353dacb55c5f803787e", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66c93353dacb55c5f803787a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037880", + "_tpl": "590c595c86f7747884343ad7", + "parentId": "66c93353dacb55c5f803787a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80378ba", - "Items": [ - { - "_id": "66c93353dacb55c5f80378ba", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00349", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378bc", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c93353dacb55c5f80378ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378be", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f80378ba", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037882", + "Items": [ + { + "_id": "66c93353dacb55c5f8037882", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378c0", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66c93353dacb55c5f80378ba", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f8037884", + "_tpl": "5fbb978207e8a97d1f0902d3", + "parentId": "66c93353dacb55c5f8037882", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 28 - } - }, - { - "_id": "66c93353dacb55c5f80378c2", - "_tpl": "5aa2b9aee5b5b00015693121", - "parentId": "66c93353dacb55c5f80378ba", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + { + "_id": "66c93353dacb55c5f8037886", + "_tpl": "572b7d8524597762b472f9d1", + "parentId": "66c93353dacb55c5f8037882", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378c4", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66c93353dacb55c5f80378ba", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 20 + { + "_id": "66c93353dacb55c5f8037888", + "_tpl": "6513f0a194c72326990a3868", + "parentId": "66c93353dacb55c5f8037882", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803788a", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66c93353dacb55c5f8037882", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803788c", + "_tpl": "5d10b49bd7ad1a1a560708b0", + "parentId": "66c93353dacb55c5f8037882", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803788e", + "_tpl": "603618feffd42c541047f771", + "parentId": "66c93353dacb55c5f8037882", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80378c6", - "Items": [ - { - "_id": "66c93353dacb55c5f80378c6", - "_tpl": "658420d8085fea07e674cdb6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00105", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378c8", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c93353dacb55c5f80378c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378ca", - "_tpl": "5c12620d86f7743f8b198b72", - "parentId": "66c93353dacb55c5f80378c6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037890", + "Items": [ + { + "_id": "66c93353dacb55c5f8037890", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378cc", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66c93353dacb55c5f80378c6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037892", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c93353dacb55c5f8037890", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80378ce", - "Items": [ - { - "_id": "66c93353dacb55c5f80378ce", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00180", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378d0", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66c93353dacb55c5f80378ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80378d2", - "Items": [ - { - "_id": "66c93353dacb55c5f80378d2", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378d4", - "_tpl": "587e08ee245977446b4410cf", - "parentId": "66c93353dacb55c5f80378d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037894", + "Items": [ + { + "_id": "66c93353dacb55c5f8037894", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378d5", - "_tpl": "5a38e6bac4a2826c6e06d79b", - "parentId": "66c93353dacb55c5f80378d2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 + { + "_id": "66c93353dacb55c5f8037896", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c93353dacb55c5f8037894", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00433", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378d6", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "66c93353dacb55c5f80378d5", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378d9", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66c93353dacb55c5f80378d6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 1.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037898", + "Items": [ + { + "_id": "66c93353dacb55c5f8037898", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803789a", + "_tpl": "6516e9d7e239bd0c487e3766", + "parentId": "66c93353dacb55c5f8037898", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803789c", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "parentId": "66c93353dacb55c5f8037898", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803789e", + "_tpl": "5c5db6302e2216000e5e47f0", + "parentId": "66c93353dacb55c5f8037898", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378a0", + "_tpl": "57acb6222459771ec34b5cb0", + "parentId": "66c93353dacb55c5f8037898", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378a2", + "_tpl": "64b9cf0ac12b9c38db26923a", + "parentId": "66c93353dacb55c5f8037898", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378a4", + "_tpl": "661e52415be02310ed07a07a", + "parentId": "66c93353dacb55c5f8037898", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378a6", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "parentId": "66c93353dacb55c5f8037898", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378a8", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "66c93353dacb55c5f8037898", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378aa", + "_tpl": "5ba26812d4351e003201fef1", + "parentId": "66c93353dacb55c5f8037898", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 22 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00467", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378d7", - "_tpl": "5a38ef1fc4a282000b1521f6", - "parentId": "66c93353dacb55c5f80378d5", - "slotId": "mod_stock" - }, - { - "_id": "66c93353dacb55c5f80378d8", - "_tpl": "5a38eecdc4a282329a73b512", - "parentId": "66c93353dacb55c5f80378d7", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378db", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c93353dacb55c5f80378d2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80378ac", + "Items": [ + { + "_id": "66c93353dacb55c5f80378ac", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378dd", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66c93353dacb55c5f80378d2", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80378ae", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c93353dacb55c5f80378ac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 37 + } + }, + { + "_id": "66c93353dacb55c5f80378b1", + "_tpl": "6570259fcfc010a0f5006a32", + "parentId": "66c93353dacb55c5f80378ac", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378b2", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66c93353dacb55c5f80378b1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66c93353dacb55c5f80378b5", + "_tpl": "64ace9ff03378853630da538", + "parentId": "66c93353dacb55c5f80378ac", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378b6", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c93353dacb55c5f80378b5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c93353dacb55c5f80378b8", + "_tpl": "57372140245977611f70ee91", + "parentId": "66c93353dacb55c5f80378ac", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80378df", - "Items": [ - { - "_id": "66c93353dacb55c5f80378df", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378e1", - "_tpl": "5d2f213448f0355009199284", - "parentId": "66c93353dacb55c5f80378df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378e3", - "_tpl": "5f2aa4559b44de6b1b4e68d1", - "parentId": "66c93353dacb55c5f80378df", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80378ba", + "Items": [ + { + "_id": "66c93353dacb55c5f80378ba", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378e5", - "_tpl": "5d6e6911a4b9361bd5780d52", - "parentId": "66c93353dacb55c5f80378df", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 9 + { + "_id": "66c93353dacb55c5f80378bc", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c93353dacb55c5f80378ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378be", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f80378ba", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378c0", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66c93353dacb55c5f80378ba", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 28 + } + }, + { + "_id": "66c93353dacb55c5f80378c2", + "_tpl": "5aa2b9aee5b5b00015693121", + "parentId": "66c93353dacb55c5f80378ba", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378c4", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66c93353dacb55c5f80378ba", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00469", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80378e7", - "Items": [ - { - "_id": "66c93353dacb55c5f80378e7", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80378e8", - "_tpl": "5ac66d725acfc43b321d4b60", - "parentId": "66c93353dacb55c5f80378e7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c93353dacb55c5f80378e9", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66c93353dacb55c5f80378e8", - "slotId": "mod_gas_block" - }, - { - "_id": "66c93353dacb55c5f80378ea", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66c93353dacb55c5f80378e9", - "slotId": "mod_handguard" + { + "Id": "container_Sandbox_Design_Stuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378eb", - "_tpl": "5ac72e895acfc43b321d4bd5", - "parentId": "66c93353dacb55c5f80378e8", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378ec", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66c93353dacb55c5f80378e8", - "slotId": "mod_pistol_grip" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80378c6", + "Items": [ + { + "_id": "66c93353dacb55c5f80378c6", + "_tpl": "658420d8085fea07e674cdb6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378c8", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c93353dacb55c5f80378c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378ca", + "_tpl": "5c12620d86f7743f8b198b72", + "parentId": "66c93353dacb55c5f80378c6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378cc", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66c93353dacb55c5f80378c6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "Lootable_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378ed", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66c93353dacb55c5f80378e8", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378ee", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66c93353dacb55c5f80378e8", - "slotId": "mod_sight_rear" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80378ce", + "Items": [ + { + "_id": "66c93353dacb55c5f80378ce", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378d0", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66c93353dacb55c5f80378ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378ef", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66c93353dacb55c5f80378e8", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378f0", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66c93353dacb55c5f80378e8", - "slotId": "mod_magazine" - }, - { - "_id": "66c93353dacb55c5f80378f1", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66c93353dacb55c5f80378f0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 - } - }, - { - "_id": "66c93353dacb55c5f80378f3", - "_tpl": "5afd7e095acfc40017541f61", - "parentId": "66c93353dacb55c5f80378e7", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80378d2", + "Items": [ + { + "_id": "66c93353dacb55c5f80378d2", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378d4", + "_tpl": "587e08ee245977446b4410cf", + "parentId": "66c93353dacb55c5f80378d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378d5", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "parentId": "66c93353dacb55c5f80378d2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378d6", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "66c93353dacb55c5f80378d5", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f80378d9", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66c93353dacb55c5f80378d6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 1.0 + } + }, + { + "_id": "66c93353dacb55c5f80378d7", + "_tpl": "5a38ef1fc4a282000b1521f6", + "parentId": "66c93353dacb55c5f80378d5", + "slotId": "mod_stock" + }, + { + "_id": "66c93353dacb55c5f80378d8", + "_tpl": "5a38eecdc4a282329a73b512", + "parentId": "66c93353dacb55c5f80378d7", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c93353dacb55c5f80378db", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c93353dacb55c5f80378d2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378dd", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66c93353dacb55c5f80378d2", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00491", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80378f5", - "Items": [ - { - "_id": "66c93353dacb55c5f80378f5", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378f7", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c93353dacb55c5f80378f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378f9", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66c93353dacb55c5f80378f5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80378df", + "Items": [ + { + "_id": "66c93353dacb55c5f80378df", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378e1", + "_tpl": "5d2f213448f0355009199284", + "parentId": "66c93353dacb55c5f80378df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378e3", + "_tpl": "5f2aa4559b44de6b1b4e68d1", + "parentId": "66c93353dacb55c5f80378df", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378e5", + "_tpl": "5d6e6911a4b9361bd5780d52", + "parentId": "66c93353dacb55c5f80378df", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 9 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00399", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80378fb", - "Items": [ - { - "_id": "66c93353dacb55c5f80378fb", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00469", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80378fd", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66c93353dacb55c5f80378fb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00440", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80378ff", - "Items": [ - { - "_id": "66c93353dacb55c5f80378ff", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037901", - "_tpl": "5f6372e2865db925d54f3869", - "parentId": "66c93353dacb55c5f80378ff", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80378e7", + "Items": [ + { + "_id": "66c93353dacb55c5f80378e7", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037903", - "_tpl": "558032614bdc2de7118b4585", - "parentId": "66c93353dacb55c5f80378ff", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80378e8", + "_tpl": "5ac66d725acfc43b321d4b60", + "parentId": "66c93353dacb55c5f80378e7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037905", - "_tpl": "58c157c886f774032749fb06", - "parentId": "66c93353dacb55c5f80378ff", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80378e9", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66c93353dacb55c5f80378e8", + "slotId": "mod_gas_block" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037907", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "66c93353dacb55c5f80378ff", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f80378ea", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66c93353dacb55c5f80378e9", + "slotId": "mod_handguard" + }, + { + "_id": "66c93353dacb55c5f80378eb", + "_tpl": "5ac72e895acfc43b321d4bd5", + "parentId": "66c93353dacb55c5f80378e8", + "slotId": "mod_muzzle" + }, + { + "_id": "66c93353dacb55c5f80378ec", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66c93353dacb55c5f80378e8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c93353dacb55c5f80378ed", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66c93353dacb55c5f80378e8", + "slotId": "mod_reciever" + }, + { + "_id": "66c93353dacb55c5f80378ee", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66c93353dacb55c5f80378e8", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c93353dacb55c5f80378ef", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66c93353dacb55c5f80378e8", + "slotId": "mod_stock" + }, + { + "_id": "66c93353dacb55c5f80378f0", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66c93353dacb55c5f80378e8", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 34 + { + "_id": "66c93353dacb55c5f80378f1", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66c93353dacb55c5f80378f0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } + }, + { + "_id": "66c93353dacb55c5f80378f3", + "_tpl": "5afd7e095acfc40017541f61", + "parentId": "66c93353dacb55c5f80378e7", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00491", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037909", - "_tpl": "609b9e31506cf869cf3eaf41", - "parentId": "66c93353dacb55c5f80378ff", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80378f5", + "Items": [ + { + "_id": "66c93353dacb55c5f80378f5", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80378f7", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c93353dacb55c5f80378f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80378f9", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66c93353dacb55c5f80378f5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00399", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803790b", - "_tpl": "5c0d56a986f774449d5de529", - "parentId": "66c93353dacb55c5f80378ff", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80378fb", + "Items": [ + { + "_id": "66c93353dacb55c5f80378fb", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 19 + { + "_id": "66c93353dacb55c5f80378fd", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66c93353dacb55c5f80378fb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00440", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803790d", - "_tpl": "61c18db6dfd64163ea78fbb4", - "parentId": "66c93353dacb55c5f80378ff", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80378ff", + "Items": [ + { + "_id": "66c93353dacb55c5f80378ff", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037901", + "_tpl": "5f6372e2865db925d54f3869", + "parentId": "66c93353dacb55c5f80378ff", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037903", + "_tpl": "558032614bdc2de7118b4585", + "parentId": "66c93353dacb55c5f80378ff", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037905", + "_tpl": "58c157c886f774032749fb06", + "parentId": "66c93353dacb55c5f80378ff", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037907", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "66c93353dacb55c5f80378ff", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 34 + } + }, + { + "_id": "66c93353dacb55c5f8037909", + "_tpl": "609b9e31506cf869cf3eaf41", + "parentId": "66c93353dacb55c5f80378ff", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803790b", + "_tpl": "5c0d56a986f774449d5de529", + "parentId": "66c93353dacb55c5f80378ff", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 19 + } + }, + { + "_id": "66c93353dacb55c5f803790d", + "_tpl": "61c18db6dfd64163ea78fbb4", + "parentId": "66c93353dacb55c5f80378ff", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803790f", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66c93353dacb55c5f80378ff", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00187", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803790f", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66c93353dacb55c5f80378ff", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037911", + "Items": [ + { + "_id": "66c93353dacb55c5f8037911", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037913", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c93353dacb55c5f8037911", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037915", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66c93353dacb55c5f8037911", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037917", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c93353dacb55c5f8037911", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00187", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037911", - "Items": [ - { - "_id": "66c93353dacb55c5f8037911", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00144", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037913", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c93353dacb55c5f8037911", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037919", + "Items": [ + { + "_id": "66c93353dacb55c5f8037919", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803791b", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c93353dacb55c5f8037919", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00143", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037915", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66c93353dacb55c5f8037911", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803791d", + "Items": [ + { + "_id": "66c93353dacb55c5f803791d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803791f", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66c93353dacb55c5f803791d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00142", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037917", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c93353dacb55c5f8037911", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037921", + "Items": [ + { + "_id": "66c93353dacb55c5f8037921", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037923", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c93353dacb55c5f8037921", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00144", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037919", - "Items": [ - { - "_id": "66c93353dacb55c5f8037919", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00141", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803791b", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c93353dacb55c5f8037919", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00143", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803791d", - "Items": [ - { - "_id": "66c93353dacb55c5f803791d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803791f", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66c93353dacb55c5f803791d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037925", + "Items": [ + { + "_id": "66c93353dacb55c5f8037925", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037927", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c93353dacb55c5f8037925", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00142", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037921", - "Items": [ - { - "_id": "66c93353dacb55c5f8037921", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00065", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037923", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c93353dacb55c5f8037921", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00141", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037925", - "Items": [ - { - "_id": "66c93353dacb55c5f8037925", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037927", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c93353dacb55c5f8037925", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037929", + "Items": [ + { + "_id": "66c93353dacb55c5f8037929", + "_tpl": "6582e6d7b14c3f72eb071420", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803792b", + "_tpl": "5c5952732e2216398b5abda2", + "parentId": "66c93353dacb55c5f8037929", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803792d", + "_tpl": "5abcc328d8ce8700194394f3", + "parentId": "66c93353dacb55c5f8037929", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803792f", + "_tpl": "5afd7ded5acfc40017541f5e", + "parentId": "66c93353dacb55c5f8037929", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037931", + "_tpl": "59e770f986f7742cbe3164ef", + "parentId": "66c93353dacb55c5f8037929", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037932", + "_tpl": "56d59856d2720bd8418b456a", + "parentId": "66c93353dacb55c5f8037929", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + } + }, + { + "_id": "66c93353dacb55c5f8037933", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "66c93353dacb55c5f8037932", + "slotId": "mod_barrel" + }, + { + "_id": "66c93353dacb55c5f8037934", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "66c93353dacb55c5f8037932", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c93353dacb55c5f8037935", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "66c93353dacb55c5f8037932", + "slotId": "mod_reciever" + }, + { + "_id": "66c93353dacb55c5f8037936", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "66c93353dacb55c5f8037935", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c93353dacb55c5f8037937", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "66c93353dacb55c5f8037935", + "slotId": "mod_sight_front" + }, + { + "_id": "66c93353dacb55c5f8037938", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "66c93353dacb55c5f8037932", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f8037939", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c93353dacb55c5f8037938", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00065", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037929", - "Items": [ - { - "_id": "66c93353dacb55c5f8037929", - "_tpl": "6582e6d7b14c3f72eb071420", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00419", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803792b", - "_tpl": "5c5952732e2216398b5abda2", - "parentId": "66c93353dacb55c5f8037929", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803792d", - "_tpl": "5abcc328d8ce8700194394f3", - "parentId": "66c93353dacb55c5f8037929", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803793b", + "Items": [ + { + "_id": "66c93353dacb55c5f803793b", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803792f", - "_tpl": "5afd7ded5acfc40017541f5e", - "parentId": "66c93353dacb55c5f8037929", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + { + "_id": "66c93353dacb55c5f803793d", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66c93353dacb55c5f803793b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037931", - "_tpl": "59e770f986f7742cbe3164ef", - "parentId": "66c93353dacb55c5f8037929", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66c93353dacb55c5f803793f", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c93353dacb55c5f803793b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037932", - "_tpl": "56d59856d2720bd8418b456a", - "parentId": "66c93353dacb55c5f8037929", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66c93353dacb55c5f8037941", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66c93353dacb55c5f803793b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00395", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037933", - "_tpl": "56d5a1f7d2720bb3418b456a", - "parentId": "66c93353dacb55c5f8037932", - "slotId": "mod_barrel" - }, - { - "_id": "66c93353dacb55c5f8037934", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "66c93353dacb55c5f8037932", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c93353dacb55c5f8037935", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "66c93353dacb55c5f8037932", - "slotId": "mod_reciever" - }, - { - "_id": "66c93353dacb55c5f8037936", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "66c93353dacb55c5f8037935", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c93353dacb55c5f8037937", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "66c93353dacb55c5f8037935", - "slotId": "mod_sight_front" - }, - { - "_id": "66c93353dacb55c5f8037938", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "66c93353dacb55c5f8037932", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037939", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c93353dacb55c5f8037938", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037943", + "Items": [ + { + "_id": "66c93353dacb55c5f8037943", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037945", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66c93353dacb55c5f8037943", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037947", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c93353dacb55c5f8037943", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00419", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803793b", - "Items": [ - { - "_id": "66c93353dacb55c5f803793b", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00043", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803793d", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66c93353dacb55c5f803793b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803793f", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c93353dacb55c5f803793b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037949", + "Items": [ + { + "_id": "66c93353dacb55c5f8037949", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037941", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66c93353dacb55c5f803793b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803794b", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c93353dacb55c5f8037949", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00395", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037943", - "Items": [ - { - "_id": "66c93353dacb55c5f8037943", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00042", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037945", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66c93353dacb55c5f8037943", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037947", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c93353dacb55c5f8037943", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803794d", + "Items": [ + { + "_id": "66c93353dacb55c5f803794d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803794f", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c93353dacb55c5f803794d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00043", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037949", - "Items": [ - { - "_id": "66c93353dacb55c5f8037949", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00041", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803794b", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c93353dacb55c5f8037949", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00042", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803794d", - "Items": [ - { - "_id": "66c93353dacb55c5f803794d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803794f", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c93353dacb55c5f803794d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037951", + "Items": [ + { + "_id": "66c93353dacb55c5f8037951", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037953", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c93353dacb55c5f8037951", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00041", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037951", - "Items": [ - { - "_id": "66c93353dacb55c5f8037951", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037953", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c93353dacb55c5f8037951", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037955", + "Items": [ + { + "_id": "66c93353dacb55c5f8037955", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037957", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c93353dacb55c5f8037955", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037955", - "Items": [ - { - "_id": "66c93353dacb55c5f8037955", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00323", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037957", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c93353dacb55c5f8037955", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00323", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037959", - "Items": [ - { - "_id": "66c93353dacb55c5f8037959", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803795b", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c93353dacb55c5f8037959", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037959", + "Items": [ + { + "_id": "66c93353dacb55c5f8037959", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f803795d", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c93353dacb55c5f8037959", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c93353dacb55c5f803795b", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c93353dacb55c5f8037959", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803795d", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c93353dacb55c5f8037959", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803795f", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c93353dacb55c5f8037959", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00111", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803795f", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c93353dacb55c5f8037959", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037961", + "Items": [ + { + "_id": "66c93353dacb55c5f8037961", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037963", + "_tpl": "5734773724597737fd047c14", + "parentId": "66c93353dacb55c5f8037961", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037965", + "_tpl": "572b7fa124597762b472f9d2", + "parentId": "66c93353dacb55c5f8037961", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037967", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66c93353dacb55c5f8037961", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 48 + } + }, + { + "_id": "66c93353dacb55c5f8037969", + "_tpl": "5b4325355acfc40019478126", + "parentId": "66c93353dacb55c5f8037961", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00111", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037961", - "Items": [ - { - "_id": "66c93353dacb55c5f8037961", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037963", - "_tpl": "5734773724597737fd047c14", - "parentId": "66c93353dacb55c5f8037961", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803796b", + "Items": [ + { + "_id": "66c93353dacb55c5f803796b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803796d", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c93353dacb55c5f803796b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00083", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037965", - "_tpl": "572b7fa124597762b472f9d2", - "parentId": "66c93353dacb55c5f8037961", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803796f", + "Items": [ + { + "_id": "66c93353dacb55c5f803796f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037971", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c93353dacb55c5f803796f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037967", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66c93353dacb55c5f8037961", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037973", + "Items": [ + { + "_id": "66c93353dacb55c5f8037973", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 48 + { + "_id": "66c93353dacb55c5f8037975", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c93353dacb55c5f8037973", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037969", - "_tpl": "5b4325355acfc40019478126", - "parentId": "66c93353dacb55c5f8037961", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037977", + "Items": [ + { + "_id": "66c93353dacb55c5f8037977", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037979", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f8037977", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803796b", - "Items": [ - { - "_id": "66c93353dacb55c5f803796b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00290", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803796d", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c93353dacb55c5f803796b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803797b", + "Items": [ + { + "_id": "66c93353dacb55c5f803797b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803797d", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66c93353dacb55c5f803797b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00083", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803796f", - "Items": [ - { - "_id": "66c93353dacb55c5f803796f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00377", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037971", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c93353dacb55c5f803796f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803797f", + "Items": [ + { + "_id": "66c93353dacb55c5f803797f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037981", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f803797f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037983", + "_tpl": "57513fcc24597720a31c09a6", + "parentId": "66c93353dacb55c5f803797f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037985", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66c93353dacb55c5f803797f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037973", - "Items": [ - { - "_id": "66c93353dacb55c5f8037973", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00152", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037975", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c93353dacb55c5f8037973", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037987", + "Items": [ + { + "_id": "66c93353dacb55c5f8037987", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037989", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c93353dacb55c5f8037987", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 982 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037977", - "Items": [ - { - "_id": "66c93353dacb55c5f8037977", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00422", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037979", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f8037977", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803798b", + "Items": [ + { + "_id": "66c93353dacb55c5f803798b", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00290", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803797b", - "Items": [ - { - "_id": "66c93353dacb55c5f803797b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00252", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803797d", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66c93353dacb55c5f803797b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f803798d", + "Items": [ + { + "_id": "66c93353dacb55c5f803798d", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f803798f", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f803798d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037991", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c93353dacb55c5f803798d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00377", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803797f", - "Items": [ - { - "_id": "66c93353dacb55c5f803797f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00130", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037981", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f803797f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037993", + "Items": [ + { + "_id": "66c93353dacb55c5f8037993", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f8037995", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66c93353dacb55c5f8037993", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037997", + "_tpl": "590c311186f77424d1667482", + "parentId": "66c93353dacb55c5f8037993", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037983", - "_tpl": "57513fcc24597720a31c09a6", - "parentId": "66c93353dacb55c5f803797f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037999", + "Items": [ + { + "_id": "66c93353dacb55c5f8037999", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803799b", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f8037999", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Sandbox_Design_Stuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037985", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66c93353dacb55c5f803797f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00152", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037987", - "Items": [ - { - "_id": "66c93353dacb55c5f8037987", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037989", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c93353dacb55c5f8037987", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 982 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00422", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803798b", - "Items": [ - { - "_id": "66c93353dacb55c5f803798b", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00252", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f803798d", - "Items": [ - { - "_id": "66c93353dacb55c5f803798d", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803798f", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f803798d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f803799d", + "Items": [ + { + "_id": "66c93353dacb55c5f803799d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037991", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c93353dacb55c5f803798d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f803799f", + "_tpl": "61bf7c024770ee6f9c6b8b53", + "parentId": "66c93353dacb55c5f803799d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00130", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037993", - "Items": [ - { - "_id": "66c93353dacb55c5f8037993", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037995", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66c93353dacb55c5f8037993", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037997", - "_tpl": "590c311186f77424d1667482", - "parentId": "66c93353dacb55c5f8037993", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80379a1", + "Items": [ + { + "_id": "66c93353dacb55c5f80379a1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80379a3", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f80379a1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037999", - "Items": [ - { - "_id": "66c93353dacb55c5f8037999", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803799b", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f8037999", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f803799d", - "Items": [ - { - "_id": "66c93353dacb55c5f803799d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f803799f", - "_tpl": "61bf7c024770ee6f9c6b8b53", - "parentId": "66c93353dacb55c5f803799d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80379a5", + "Items": [ + { + "_id": "66c93353dacb55c5f80379a5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80379a7", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c93353dacb55c5f80379a5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80379a1", - "Items": [ - { - "_id": "66c93353dacb55c5f80379a1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00462", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80379a3", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f80379a1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80379a5", - "Items": [ - { - "_id": "66c93353dacb55c5f80379a5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80379a7", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c93353dacb55c5f80379a5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80379a9", + "Items": [ + { + "_id": "66c93353dacb55c5f80379a9", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80379ab", + "_tpl": "590c311186f77424d1667482", + "parentId": "66c93353dacb55c5f80379a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80379ad", + "_tpl": "5734795124597738002c6176", + "parentId": "66c93353dacb55c5f80379a9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80379af", + "_tpl": "590c311186f77424d1667482", + "parentId": "66c93353dacb55c5f80379a9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00462", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80379a9", - "Items": [ - { - "_id": "66c93353dacb55c5f80379a9", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00380", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80379ab", - "_tpl": "590c311186f77424d1667482", - "parentId": "66c93353dacb55c5f80379a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80379ad", - "_tpl": "5734795124597738002c6176", - "parentId": "66c93353dacb55c5f80379a9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80379b1", + "Items": [ + { + "_id": "66c93353dacb55c5f80379b1", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f80379af", - "_tpl": "590c311186f77424d1667482", - "parentId": "66c93353dacb55c5f80379a9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c93353dacb55c5f80379b3", + "_tpl": "590c311186f77424d1667482", + "parentId": "66c93353dacb55c5f80379b1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00380", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80379b1", - "Items": [ - { - "_id": "66c93353dacb55c5f80379b1", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Sandbox_Design_Stuff_00493", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80379b3", - "_tpl": "590c311186f77424d1667482", - "parentId": "66c93353dacb55c5f80379b1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Sandbox_Design_Stuff_00493", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f80379b5", - "Items": [ - { - "_id": "66c93353dacb55c5f80379b5", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80379b7", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66c93353dacb55c5f80379b5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "AGS_01", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f80379b8", - "Items": [ - { - "_id": "66c93353dacb55c5f80379b8", - "_tpl": "5d52cc5ba4b9367408500062", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f80379b5", + "Items": [ + { + "_id": "66c93353dacb55c5f80379b5", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f80379b7", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66c93353dacb55c5f80379b5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "AGS_01", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80379b9", - "_tpl": "5d52d479a4b936793d58c76b", - "parentId": "66c93353dacb55c5f80379b8", - "slotId": "mod_magazine" - }, - { - "_id": "66c93353dacb55c5f80379ba", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges" - }, - { - "_id": "66c93353dacb55c5f80379bb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66c93353dacb55c5f80379bc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 2 - }, - { - "_id": "66c93353dacb55c5f80379bd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66c93353dacb55c5f80379be", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 4 - }, - { - "_id": "66c93353dacb55c5f80379bf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66c93353dacb55c5f80379c0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 6 - }, - { - "_id": "66c93353dacb55c5f80379c1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66c93353dacb55c5f80379c2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 8 - }, - { - "_id": "66c93353dacb55c5f80379c3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66c93353dacb55c5f80379c4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 10 - }, - { - "_id": "66c93353dacb55c5f80379c5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66c93353dacb55c5f80379c6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 12 - }, - { - "_id": "66c93353dacb55c5f80379c7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66c93353dacb55c5f80379c8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 14 - }, - { - "_id": "66c93353dacb55c5f80379c9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66c93353dacb55c5f80379ca", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 16 - }, - { - "_id": "66c93353dacb55c5f80379cb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66c93353dacb55c5f80379cc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 18 - }, - { - "_id": "66c93353dacb55c5f80379cd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66c93353dacb55c5f80379ce", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 20 - }, - { - "_id": "66c93353dacb55c5f80379cf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66c93353dacb55c5f80379d0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 22 - }, - { - "_id": "66c93353dacb55c5f80379d1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66c93353dacb55c5f80379d2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 24 - }, - { - "_id": "66c93353dacb55c5f80379d3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66c93353dacb55c5f80379d4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 26 - }, - { - "_id": "66c93353dacb55c5f80379d5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 27 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f80379d6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 28 - }, - { - "_id": "66c93353dacb55c5f80379d7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66c93353dacb55c5f80379d8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 30 - }, - { - "_id": "66c93353dacb55c5f80379d9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66c93353dacb55c5f80379da", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 32 - }, - { - "_id": "66c93353dacb55c5f80379db", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66c93353dacb55c5f80379dc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 34 - }, - { - "_id": "66c93353dacb55c5f80379dd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66c93353dacb55c5f80379de", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 36 - }, - { - "_id": "66c93353dacb55c5f80379df", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66c93353dacb55c5f80379e0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 38 - }, - { - "_id": "66c93353dacb55c5f80379e1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66c93353dacb55c5f80379e2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 40 - }, - { - "_id": "66c93353dacb55c5f80379e3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66c93353dacb55c5f80379e4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 42 - }, - { - "_id": "66c93353dacb55c5f80379e5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66c93353dacb55c5f80379e6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 44 - }, - { - "_id": "66c93353dacb55c5f80379e7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66c93353dacb55c5f80379e8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 46 - }, - { - "_id": "66c93353dacb55c5f80379e9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66c93353dacb55c5f80379ea", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 48 - }, - { - "_id": "66c93353dacb55c5f80379eb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 49 - }, - { - "_id": "66c93353dacb55c5f80379ec", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 50 - }, - { - "_id": "66c93353dacb55c5f80379ed", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 51 - }, - { - "_id": "66c93353dacb55c5f80379ee", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 52 - }, - { - "_id": "66c93353dacb55c5f80379ef", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 53 - }, - { - "_id": "66c93353dacb55c5f80379f0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 54 - }, - { - "_id": "66c93353dacb55c5f80379f1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 55 - }, - { - "_id": "66c93353dacb55c5f80379f2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 56 - }, - { - "_id": "66c93353dacb55c5f80379f3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 57 - }, - { - "_id": "66c93353dacb55c5f80379f4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 58 - }, - { - "_id": "66c93353dacb55c5f80379f5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 59 - }, - { - "_id": "66c93353dacb55c5f80379f6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 60 - }, - { - "_id": "66c93353dacb55c5f80379f7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 61 - }, - { - "_id": "66c93353dacb55c5f80379f8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 62 - }, - { - "_id": "66c93353dacb55c5f80379f9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 63 - }, - { - "_id": "66c93353dacb55c5f80379fa", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 64 - }, - { - "_id": "66c93353dacb55c5f80379fb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 65 - }, - { - "_id": "66c93353dacb55c5f80379fc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 66 - }, - { - "_id": "66c93353dacb55c5f80379fd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 67 - }, - { - "_id": "66c93353dacb55c5f80379fe", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 68 - }, - { - "_id": "66c93353dacb55c5f80379ff", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 69 - }, - { - "_id": "66c93353dacb55c5f8037a00", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 70 - }, - { - "_id": "66c93353dacb55c5f8037a01", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 71 - }, - { - "_id": "66c93353dacb55c5f8037a02", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 72 - }, - { - "_id": "66c93353dacb55c5f8037a03", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 73 - }, - { - "_id": "66c93353dacb55c5f8037a04", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 74 - }, - { - "_id": "66c93353dacb55c5f8037a05", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 75 - }, - { - "_id": "66c93353dacb55c5f8037a06", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 76 - }, - { - "_id": "66c93353dacb55c5f8037a07", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 77 - }, - { - "_id": "66c93353dacb55c5f8037a08", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 78 - }, - { - "_id": "66c93353dacb55c5f8037a09", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 79 - }, - { - "_id": "66c93353dacb55c5f8037a0a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 80 - }, - { - "_id": "66c93353dacb55c5f8037a0b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 81 - }, - { - "_id": "66c93353dacb55c5f8037a0c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 82 - }, - { - "_id": "66c93353dacb55c5f8037a0d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 83 - }, - { - "_id": "66c93353dacb55c5f8037a0e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 84 - }, - { - "_id": "66c93353dacb55c5f8037a0f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 85 - }, - { - "_id": "66c93353dacb55c5f8037a10", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 86 - }, - { - "_id": "66c93353dacb55c5f8037a11", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 87 - }, - { - "_id": "66c93353dacb55c5f8037a12", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 88 - }, - { - "_id": "66c93353dacb55c5f8037a13", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 89 - }, - { - "_id": "66c93353dacb55c5f8037a14", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 90 - }, - { - "_id": "66c93353dacb55c5f8037a15", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 91 - }, - { - "_id": "66c93353dacb55c5f8037a16", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 92 - }, - { - "_id": "66c93353dacb55c5f8037a17", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 93 - }, - { - "_id": "66c93353dacb55c5f8037a18", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 94 - }, - { - "_id": "66c93353dacb55c5f8037a19", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 95 - }, - { - "_id": "66c93353dacb55c5f8037a1a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 96 - }, - { - "_id": "66c93353dacb55c5f8037a1b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 97 - }, - { - "_id": "66c93353dacb55c5f8037a1c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c93353dacb55c5f80379b9", - "slotId": "cartridges", - "location": 98 - }, - { - "_id": "66c93353dacb55c5f8037a1d", - "_tpl": "5d53f4b7a4b936793d58c780", - "parentId": "66c93353dacb55c5f80379b8", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "Utes_06", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c93353dacb55c5f8037a1e", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a1e", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f80379b8", + "Items": [ + { + "_id": "66c93353dacb55c5f80379b8", + "_tpl": "5d52cc5ba4b9367408500062", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } } - } - }, - { - "_id": "66c93353dacb55c5f8037a1f", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66c93353dacb55c5f8037a1e", - "slotId": "mod_magazine" - }, - { - "_id": "66c93353dacb55c5f8037a20", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a21", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66c93353dacb55c5f8037a22", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a23", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66c93353dacb55c5f8037a24", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a25", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66c93353dacb55c5f8037a26", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a27", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66c93353dacb55c5f8037a28", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a29", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66c93353dacb55c5f8037a2a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a2b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66c93353dacb55c5f8037a2c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a2d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66c93353dacb55c5f8037a2e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a2f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66c93353dacb55c5f8037a30", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a31", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66c93353dacb55c5f8037a32", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a33", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66c93353dacb55c5f8037a34", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a35", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66c93353dacb55c5f8037a36", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a37", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66c93353dacb55c5f8037a38", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a39", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66c93353dacb55c5f8037a3a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a3b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66c93353dacb55c5f8037a3c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a3d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66c93353dacb55c5f8037a3e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a3f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66c93353dacb55c5f8037a40", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a41", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66c93353dacb55c5f8037a42", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a43", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66c93353dacb55c5f8037a44", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a45", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66c93353dacb55c5f8037a46", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a47", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66c93353dacb55c5f8037a48", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a49", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66c93353dacb55c5f8037a4a", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a4b", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66c93353dacb55c5f8037a4c", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a4d", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66c93353dacb55c5f8037a4e", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a4f", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66c93353dacb55c5f8037a50", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c93353dacb55c5f8037a51", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c93353dacb55c5f8037a1f", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "AmmoBox 5.45x39_Leo_common (17) [1f9becea-4fa4-4e14-bae4-f9d168f19d09]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 60.954, - "y": 31.366, - "z": 128.586014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a54", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a54", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c93353dacb55c5f8037a55", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c93353dacb55c5f8037a54", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "canned_food_drink_Leo_Rare (2) [1b17d75c-394a-49f0-aa88-e8b4e6ce5244]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 123.633, - "y": 24.605999, - "z": 296.501984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a57", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a57", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "canned_food_drink_Leo_Rare (6) [996369cd-3e6b-4104-8b8c-b8ec3c248e62]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.516006, - "y": 24.605999, - "z": 291.664 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a59", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a59", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "canned_food_drink_Leo_Rare (7) [80cb3312-fb58-40d8-91ec-ee4c7949d91c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 125.726006, - "y": 24.605999, - "z": 290.569 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a5b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a5b", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "fast_food(small)_Leo_common (10) [a14101fd-b892-417d-8da8-6d0b1799e67e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 174.527, - "y": 22.041, - "z": 26.887001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a5d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a5d", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "fast_food(small)_Leo_common (19) [8f8a970a-3daf-4154-91e0-7fb3e6e1016c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 172.80899, - "y": 17.833, - "z": 28.9420013 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a5f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a5f", - "_tpl": "65815f0e647e3d7246384e14", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "fast_food(small)_Leo_common (2) [ef95a83b-aff1-4324-af7a-41a5816a3b99]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 175.984, - "y": 22.041, - "z": 21.34 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a61", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a61", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "fast_food(small)_Leo_common (22) [ef292c9b-7d3a-4ba5-a71c-c2a0da59c180]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 173.000992, - "y": 17.619, - "z": 26.2270012 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a63", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a63", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "fast_food(small)_Leo_common (3) [4fbe053f-d80b-4aee-b428-b99adff4fe8f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 174.888992, - "y": 22.041, - "z": 21.210001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a65", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a65", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "fast_food(small)_Leo_common (7) [ebc75653-b5cd-45fd-9f43-bc63e426e626]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 172.148, - "y": 22.041, - "z": 25.767 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a67", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a67", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (150) [e43520ab-5aae-489d-8513-afe3980081e0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 112.683, - "y": 25.757, - "z": 149.305008 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a69", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a69", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (152) [99b02d2a-e6ad-4a31-bf58-7f50de68ff15]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 113.376007, - "y": 25.757, - "z": 154.665009 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a6b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a6b", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (194) [0fd20dd1-5737-495d-9ca1-030a882bbb20]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 102.269005, - "y": 30.351, - "z": 157.119 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a6d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a6d", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (197) [70fb81e3-9618-4508-a816-f643bbe0c5b5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 102.08, - "y": 30.351, - "z": 161.645 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a6f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a6f", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (205) [c54ee6e5-1ffc-4e3f-a4b1-897c5b065297]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 121.62, - "y": 30.351, - "z": 157.529 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a71", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a71", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (206) [7db8daad-d92b-4ca4-b55c-43a84aca7857]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -5.14100075, - "y": 30.942, - "z": 62.5259972 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a73", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a73", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (210) [68724d50-8695-4a9b-84f1-180e53e57974]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 80.001, - "y": 23.97, - "z": 133.053009 - }, - "Rotation": { - "x": 0.0, - "y": 180.000015, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a75", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a75", - "_tpl": "57513f9324597720a7128161", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (240) [c01a8b59-83df-424b-9e96-b22f1abd64b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.108, - "y": 24.605999, - "z": 292.578 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a77", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a77", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (242) [82018973-6643-4b38-87a5-1c30afdc6a9c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.796005, - "y": 33.944, - "z": 277.205 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a79", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a79", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "item_barter_electr_hdd_meh_quest [e3e2f10b-1e00-4bd4-8343-0dadd675cf06]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -12.127326, - "y": 30.6906, - "z": 48.0432129 - }, - "Rotation": { - "x": 90.0, - "y": 143.941727, - "z": 0.0 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -12.127326, - "y": 30.6906, - "z": 48.0432129 }, - "Rotation": { - "x": 90, - "y": 143.941727, - "z": 0 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -11.9498663, - "y": 30.2254, - "z": 49.5850525 + { + "_id": "66c93353dacb55c5f80379b9", + "_tpl": "5d52d479a4b936793d58c76b", + "parentId": "66c93353dacb55c5f80379b8", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f80379ba", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges" + }, + { + "_id": "66c93353dacb55c5f80379bb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66c93353dacb55c5f80379bc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 2 + }, + { + "_id": "66c93353dacb55c5f80379bd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66c93353dacb55c5f80379be", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 4 + }, + { + "_id": "66c93353dacb55c5f80379bf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66c93353dacb55c5f80379c0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 6 + }, + { + "_id": "66c93353dacb55c5f80379c1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66c93353dacb55c5f80379c2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 8 + }, + { + "_id": "66c93353dacb55c5f80379c3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66c93353dacb55c5f80379c4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 10 + }, + { + "_id": "66c93353dacb55c5f80379c5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66c93353dacb55c5f80379c6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 12 + }, + { + "_id": "66c93353dacb55c5f80379c7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66c93353dacb55c5f80379c8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 14 + }, + { + "_id": "66c93353dacb55c5f80379c9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66c93353dacb55c5f80379ca", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 16 + }, + { + "_id": "66c93353dacb55c5f80379cb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66c93353dacb55c5f80379cc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 18 + }, + { + "_id": "66c93353dacb55c5f80379cd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66c93353dacb55c5f80379ce", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 20 + }, + { + "_id": "66c93353dacb55c5f80379cf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66c93353dacb55c5f80379d0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 22 + }, + { + "_id": "66c93353dacb55c5f80379d1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66c93353dacb55c5f80379d2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 24 + }, + { + "_id": "66c93353dacb55c5f80379d3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66c93353dacb55c5f80379d4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 26 + }, + { + "_id": "66c93353dacb55c5f80379d5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66c93353dacb55c5f80379d6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 28 + }, + { + "_id": "66c93353dacb55c5f80379d7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66c93353dacb55c5f80379d8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 30 + }, + { + "_id": "66c93353dacb55c5f80379d9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66c93353dacb55c5f80379da", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 32 + }, + { + "_id": "66c93353dacb55c5f80379db", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66c93353dacb55c5f80379dc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 34 + }, + { + "_id": "66c93353dacb55c5f80379dd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66c93353dacb55c5f80379de", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 36 + }, + { + "_id": "66c93353dacb55c5f80379df", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66c93353dacb55c5f80379e0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 38 + }, + { + "_id": "66c93353dacb55c5f80379e1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66c93353dacb55c5f80379e2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 40 + }, + { + "_id": "66c93353dacb55c5f80379e3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66c93353dacb55c5f80379e4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 42 + }, + { + "_id": "66c93353dacb55c5f80379e5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66c93353dacb55c5f80379e6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 44 + }, + { + "_id": "66c93353dacb55c5f80379e7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66c93353dacb55c5f80379e8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 46 + }, + { + "_id": "66c93353dacb55c5f80379e9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66c93353dacb55c5f80379ea", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 48 + }, + { + "_id": "66c93353dacb55c5f80379eb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 49 + }, + { + "_id": "66c93353dacb55c5f80379ec", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 50 + }, + { + "_id": "66c93353dacb55c5f80379ed", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 51 + }, + { + "_id": "66c93353dacb55c5f80379ee", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 52 + }, + { + "_id": "66c93353dacb55c5f80379ef", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 53 + }, + { + "_id": "66c93353dacb55c5f80379f0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 54 + }, + { + "_id": "66c93353dacb55c5f80379f1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 55 + }, + { + "_id": "66c93353dacb55c5f80379f2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 56 + }, + { + "_id": "66c93353dacb55c5f80379f3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 57 + }, + { + "_id": "66c93353dacb55c5f80379f4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 58 + }, + { + "_id": "66c93353dacb55c5f80379f5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 59 + }, + { + "_id": "66c93353dacb55c5f80379f6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 60 + }, + { + "_id": "66c93353dacb55c5f80379f7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 61 + }, + { + "_id": "66c93353dacb55c5f80379f8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 62 + }, + { + "_id": "66c93353dacb55c5f80379f9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 63 + }, + { + "_id": "66c93353dacb55c5f80379fa", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 64 + }, + { + "_id": "66c93353dacb55c5f80379fb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 65 + }, + { + "_id": "66c93353dacb55c5f80379fc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 66 + }, + { + "_id": "66c93353dacb55c5f80379fd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 67 + }, + { + "_id": "66c93353dacb55c5f80379fe", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 68 + }, + { + "_id": "66c93353dacb55c5f80379ff", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 69 + }, + { + "_id": "66c93353dacb55c5f8037a00", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 70 + }, + { + "_id": "66c93353dacb55c5f8037a01", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 71 + }, + { + "_id": "66c93353dacb55c5f8037a02", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 72 + }, + { + "_id": "66c93353dacb55c5f8037a03", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 73 + }, + { + "_id": "66c93353dacb55c5f8037a04", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 74 + }, + { + "_id": "66c93353dacb55c5f8037a05", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 75 + }, + { + "_id": "66c93353dacb55c5f8037a06", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 76 + }, + { + "_id": "66c93353dacb55c5f8037a07", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 77 + }, + { + "_id": "66c93353dacb55c5f8037a08", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 78 + }, + { + "_id": "66c93353dacb55c5f8037a09", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 79 + }, + { + "_id": "66c93353dacb55c5f8037a0a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 80 + }, + { + "_id": "66c93353dacb55c5f8037a0b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 81 + }, + { + "_id": "66c93353dacb55c5f8037a0c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 82 }, - "Rotation": { - "x": 90, - "y": 143.941727, - "z": 0 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -12.39983, - "y": 30.691, - "z": 49.0331726 - }, - "Rotation": { - "x": 90, - "y": 143.941727, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a7b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a7b", - "_tpl": "6575a6ca8778e96ded05a802", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "item_food_vine_quest [52e41e75-6cd3-44de-8d44-e60158e5c75c]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 128.2405, - "y": 24.0651, - "z": 25.1103 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 113.972, - "y": 24.1533, - "z": 27.846 + { + "_id": "66c93353dacb55c5f8037a0d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 83 }, - "Rotation": { - "x": 0, - "y": 277.821442, - "z": 0 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 126.018494, - "y": 23.708, - "z": 26.2228 + { + "_id": "66c93353dacb55c5f8037a0e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 84 }, - "Rotation": { - "x": 0, - "y": 195.241226, - "z": 0 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 119.667, - "y": 23.7096, - "z": 22.886 + { + "_id": "66c93353dacb55c5f8037a0f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 85 + }, + { + "_id": "66c93353dacb55c5f8037a10", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 86 + }, + { + "_id": "66c93353dacb55c5f8037a11", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 87 + }, + { + "_id": "66c93353dacb55c5f8037a12", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 88 }, - "Rotation": { - "x": 0, - "y": 194.950684, - "z": 0 + { + "_id": "66c93353dacb55c5f8037a13", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 89 + }, + { + "_id": "66c93353dacb55c5f8037a14", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 90 + }, + { + "_id": "66c93353dacb55c5f8037a15", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 91 + }, + { + "_id": "66c93353dacb55c5f8037a16", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 92 + }, + { + "_id": "66c93353dacb55c5f8037a17", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 93 + }, + { + "_id": "66c93353dacb55c5f8037a18", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 94 + }, + { + "_id": "66c93353dacb55c5f8037a19", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 95 + }, + { + "_id": "66c93353dacb55c5f8037a1a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 96 + }, + { + "_id": "66c93353dacb55c5f8037a1b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 97 + }, + { + "_id": "66c93353dacb55c5f8037a1c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c93353dacb55c5f80379b9", + "slotId": "cartridges", + "location": 98 + }, + { + "_id": "66c93353dacb55c5f8037a1d", + "_tpl": "5d53f4b7a4b936793d58c780", + "parentId": "66c93353dacb55c5f80379b8", + "slotId": "mod_scope" } + ] + }, + { + "Id": "Utes_06", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 128.2405, - "y": 24.0651, - "z": 25.1103 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c93353dacb55c5f8037a1e", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a1e", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66c93353dacb55c5f8037a1f", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66c93353dacb55c5f8037a1e", + "slotId": "mod_magazine" + }, + { + "_id": "66c93353dacb55c5f8037a20", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a21", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66c93353dacb55c5f8037a22", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a23", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66c93353dacb55c5f8037a24", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a25", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66c93353dacb55c5f8037a26", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a27", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66c93353dacb55c5f8037a28", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a29", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66c93353dacb55c5f8037a2a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a2b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66c93353dacb55c5f8037a2c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a2d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66c93353dacb55c5f8037a2e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a2f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66c93353dacb55c5f8037a30", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a31", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66c93353dacb55c5f8037a32", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a33", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66c93353dacb55c5f8037a34", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a35", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66c93353dacb55c5f8037a36", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a37", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66c93353dacb55c5f8037a38", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a39", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66c93353dacb55c5f8037a3a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a3b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66c93353dacb55c5f8037a3c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a3d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66c93353dacb55c5f8037a3e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a3f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66c93353dacb55c5f8037a40", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a41", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66c93353dacb55c5f8037a42", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a43", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66c93353dacb55c5f8037a44", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a45", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66c93353dacb55c5f8037a46", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a47", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66c93353dacb55c5f8037a48", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a49", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66c93353dacb55c5f8037a4a", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a4b", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66c93353dacb55c5f8037a4c", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a4d", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66c93353dacb55c5f8037a4e", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a4f", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 47 }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66c93353dacb55c5f8037a50", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c93353dacb55c5f8037a51", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c93353dacb55c5f8037a1f", + "slotId": "cartridges", + "location": 49 } + ] + }, + { + "Id": "AmmoBox 5.45x39_Leo_common (17) [1f9becea-4fa4-4e14-bae4-f9d168f19d09]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 60.954, + "y": 31.366, + "z": 128.586014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 130.274, - "y": 23.6646, - "z": 23.691 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a54", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a54", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 76.96393, - "z": 0 + { + "_id": "66c93353dacb55c5f8037a55", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c93353dacb55c5f8037a54", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "canned_food_drink_Leo_Rare (2) [1b17d75c-394a-49f0-aa88-e8b4e6ce5244]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 123.633, + "y": 24.605999, + "z": 296.501984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": 129.716, - "y": 23.283699, - "z": 25.152 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a7d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a7d", - "_tpl": "6582bd252b50c61c565828e2", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a57", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a57", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (1) [74daf8ec-7b02-488e-bcc1-32a12212f6e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.055, - "y": 23.472, - "z": 22.101 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a80", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a80", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "canned_food_drink_Leo_Rare (6) [996369cd-3e6b-4104-8b8c-b8ec3c248e62]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.516006, + "y": 24.605999, + "z": 291.664 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037a81", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c93353dacb55c5f8037a80", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a59", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a59", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (100) [716f11a2-5caa-4fd3-827e-40c4212a4a78]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -4.164, - "y": 25.051, - "z": 94.569 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a83", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a83", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "canned_food_drink_Leo_Rare (7) [80cb3312-fb58-40d8-91ec-ee4c7949d91c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 125.726006, + "y": 24.605999, + "z": 290.569 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a5b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a5b", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (104) [ff761b5b-2c03-4f56-bb5e-5d195a9fb9e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.961, - "y": 24.627, - "z": 94.467 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a87", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a87", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "fast_food(small)_Leo_common (10) [a14101fd-b892-417d-8da8-6d0b1799e67e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 174.527, + "y": 22.041, + "z": 26.887001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037a88", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037a87", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a5d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a5d", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "fast_food(small)_Leo_common (19) [8f8a970a-3daf-4154-91e0-7fb3e6e1016c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 172.80899, + "y": 17.833, + "z": 28.9420013 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037a89", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037a87", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a5f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a5f", + "_tpl": "65815f0e647e3d7246384e14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (108) [3c9205f4-13c2-4649-9910-226eda83d845]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 42.376, - "y": 24.627, - "z": 79.093 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a8c", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a8c", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "fast_food(small)_Leo_common (2) [ef95a83b-aff1-4324-af7a-41a5816a3b99]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 175.984, + "y": 22.041, + "z": 21.34 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037a8d", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c93353dacb55c5f8037a8c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a61", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a61", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (11) [b30cfad5-5061-4c42-874d-9423d198567f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 96.958, - "y": 23.913, - "z": 42.719 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a8f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a8f", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food(small)_Leo_common (22) [ef292c9b-7d3a-4ba5-a71c-c2a0da59c180]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 173.000992, + "y": 17.619, + "z": 26.2270012 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a63", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a63", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (113) [98896ec5-f0c8-42ef-a935-43e4e1e2b40e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.83, - "y": 24.57, - "z": 46.397 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a92", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a92", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "fast_food(small)_Leo_common (3) [4fbe053f-d80b-4aee-b428-b99adff4fe8f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 174.888992, + "y": 22.041, + "z": 21.210001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037a93", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c93353dacb55c5f8037a92", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a65", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a65", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (116) [4b4b708a-00bf-430d-b08e-e988bbd85c05]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 91.268, - "y": 23.768, - "z": 7.148 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a95", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a95", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fast_food(small)_Leo_common (7) [ebc75653-b5cd-45fd-9f43-bc63e426e626]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 172.148, + "y": 22.041, + "z": 25.767 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a67", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a67", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (117) [54c2c5a8-b48b-4844-b4a1-6a077dad635b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.829, - "y": 23.768, - "z": -18.335 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a98", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a98", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "food_zone_Leo_Rare (150) [e43520ab-5aae-489d-8513-afe3980081e0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 112.683, + "y": 25.757, + "z": 149.305008 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037a99", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c93353dacb55c5f8037a98", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a69", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a69", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (120) [156395e1-ba51-4b17-b243-7535c3283906]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 109.698, - "y": 23.334, - "z": -30.065 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037a9c", - "Items": [ - { - "_id": "66c93353dacb55c5f8037a9c", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "food_zone_Leo_Rare (152) [99b02d2a-e6ad-4a31-bf58-7f50de68ff15]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 113.376007, + "y": 25.757, + "z": 154.665009 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037a9d", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c93353dacb55c5f8037a9c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a6b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a6b", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (122) [83fb39c3-3da5-47ee-9eed-8c2c7d9e4a3d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 113.367004, - "y": 23.706, - "z": 172.12 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037aa0", - "Items": [ - { - "_id": "66c93353dacb55c5f8037aa0", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "food_zone_Leo_Rare (194) [0fd20dd1-5737-495d-9ca1-030a882bbb20]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 102.269005, + "y": 30.351, + "z": 157.119 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037aa1", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c93353dacb55c5f8037aa0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a6d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a6d", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (123) [eec50441-f5ca-4e4d-b955-d1d561beecce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 114.321, - "y": 23.706, - "z": 172.034 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037aa3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037aa3", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone_Leo_Rare (197) [70fb81e3-9618-4508-a816-f643bbe0c5b5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 102.08, + "y": 30.351, + "z": 161.645 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a6f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a6f", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (124) [d050b1a5-942c-4e80-84d7-868b30d1dee6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 104.741005, - "y": 19.191, - "z": 170.19 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037aa7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037aa7", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "food_zone_Leo_Rare (205) [c54ee6e5-1ffc-4e3f-a4b1-897c5b065297]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 121.62, + "y": 30.351, + "z": 157.529 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037aa8", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037aa7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a71", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a71", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food_zone_Leo_Rare (206) [7db8daad-d92b-4ca4-b55c-43a84aca7857]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -5.14100075, + "y": 30.942, + "z": 62.5259972 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037aa9", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037aa7", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a73", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a73", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (124) [d2b6d518-f45f-42a5-b837-8ac35e45e671]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.956, - "y": 23.749, - "z": -37.052 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037aad", - "Items": [ - { - "_id": "66c93353dacb55c5f8037aad", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "food_zone_Leo_Rare (210) [68724d50-8695-4a9b-84f1-180e53e57974]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 80.001, + "y": 23.97, + "z": 133.053009 + }, + "Rotation": { + "x": 0.0, + "y": 180.000015, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037aae", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037aad", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a75", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a75", + "_tpl": "57513f9324597720a7128161", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food_zone_Leo_Rare (240) [c01a8b59-83df-424b-9e96-b22f1abd64b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.108, + "y": 24.605999, + "z": 292.578 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037aaf", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037aad", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a77", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a77", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (125) [1c0a9e7f-8a61-45f0-b606-fd50e6517b0b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 103.792, - "y": 19.191, - "z": 170.168991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ab2", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ab2", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "food_zone_Leo_Rare (242) [82018973-6643-4b38-87a5-1c30afdc6a9c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.796005, + "y": 33.944, + "z": 277.205 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037ab3", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c93353dacb55c5f8037ab2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a79", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a79", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (128) [3ea50575-0d28-4355-9dd0-1f703438a112]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 108.276, - "y": 23.991, - "z": -45.344 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ab5", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ab5", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_barter_electr_hdd_meh_quest [e3e2f10b-1e00-4bd4-8343-0dadd675cf06]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -12.127326, + "y": 30.6906, + "z": 48.0432129 + }, + "Rotation": { + "x": 90.0, + "y": 143.941727, + "z": 0.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -12.127326, + "y": 30.6906, + "z": 48.0432129 + }, + "Rotation": { + "x": 90, + "y": 143.941727, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -11.9498663, + "y": 30.2254, + "z": 49.5850525 + }, + "Rotation": { + "x": 90, + "y": 143.941727, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -12.39983, + "y": 30.691, + "z": 49.0331726 + }, + "Rotation": { + "x": 90, + "y": 143.941727, + "z": 0 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (128) [7fed25d0-1077-46c1-8ccc-32efdbf0477d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.691, - "y": 15.008, - "z": 173.732 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ab7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ab7", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 885 + ], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a7b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a7b", + "_tpl": "6575a6ca8778e96ded05a802", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (13) [32728a49-6ebc-4045-9fd9-8ccfb8a2b6ef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.135, - "y": 23.903, - "z": 45.112 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ab9", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ab9", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_food_vine_quest [52e41e75-6cd3-44de-8d44-e60158e5c75c]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 128.2405, + "y": 24.0651, + "z": 25.1103 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 113.972, + "y": 24.1533, + "z": 27.846 + }, + "Rotation": { + "x": 0, + "y": 277.821442, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 126.018494, + "y": 23.708, + "z": 26.2228 + }, + "Rotation": { + "x": 0, + "y": 195.241226, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 119.667, + "y": 23.7096, + "z": 22.886 + }, + "Rotation": { + "x": 0, + "y": 194.950684, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 128.2405, + "y": 24.0651, + "z": 25.1103 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 130.274, + "y": 23.6646, + "z": 23.691 + }, + "Rotation": { + "x": 0, + "y": 76.96393, + "z": 0 + } + }, + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": 129.716, + "y": 23.283699, + "z": 25.152 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (130) [18798c58-b6f8-4969-9fc2-01c5c475e8c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 111.244995, - "y": 23.991, - "z": -45.2899971 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037abb", - "Items": [ - { - "_id": "66c93353dacb55c5f8037abb", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a7d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a7d", + "_tpl": "6582bd252b50c61c565828e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (134) [9861dca5-30c4-4a65-9308-c0e839f1ea21]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.918, - "y": 23.843, - "z": -37.1529961 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037abe", - "Items": [ - { - "_id": "66c93353dacb55c5f8037abe", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (1) [74daf8ec-7b02-488e-bcc1-32a12212f6e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.055, + "y": 23.472, + "z": 22.101 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a80", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a80", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037a81", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c93353dacb55c5f8037a80", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (100) [716f11a2-5caa-4fd3-827e-40c4212a4a78]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -4.164, + "y": 25.051, + "z": 94.569 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037abf", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c93353dacb55c5f8037abe", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a83", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a83", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (137) [3fcbdf1b-9c33-4bf1-b30e-b9baa593c32f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.964, - "y": 23.968, - "z": -42.426 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ac1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ac1", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (104) [ff761b5b-2c03-4f56-bb5e-5d195a9fb9e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.961, + "y": 24.627, + "z": 94.467 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a87", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a87", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037a88", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037a87", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c93353dacb55c5f8037a89", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037a87", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (14) [67340c5e-d494-46d4-8f20-7c8b3d21dd73]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.179, - "y": 23.903, - "z": 46.13 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ac3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ac3", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (108) [3c9205f4-13c2-4649-9910-226eda83d845]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 42.376, + "y": 24.627, + "z": 79.093 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a8c", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a8c", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037a8d", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c93353dacb55c5f8037a8c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (144) [1cbcb093-5d33-42ac-84f5-22b996355a9c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.684, - "y": 23.636, - "z": -42.7489967 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ac5", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ac5", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (11) [b30cfad5-5061-4c42-874d-9423d198567f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 96.958, + "y": 23.913, + "z": 42.719 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a8f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a8f", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (150) [700022e8-9433-4b44-bda1-a1019dea5092]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 199.571, - "y": 17.16, - "z": -47.962 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ac8", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ac8", - "_tpl": "64acea2c03378853630da53e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (113) [98896ec5-f0c8-42ef-a935-43e4e1e2b40e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.83, + "y": 24.57, + "z": 46.397 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037ac9", - "_tpl": "59e4d3d286f774176a36250a", - "parentId": "66c93353dacb55c5f8037ac8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a92", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a92", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037a93", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c93353dacb55c5f8037a92", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (152) [cb5be77f-8120-44a3-81f9-e813bada97d4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 191.58, - "y": 17.16, - "z": -25.83 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037acb", - "Items": [ - { - "_id": "66c93353dacb55c5f8037acb", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (116) [4b4b708a-00bf-430d-b08e-e988bbd85c05]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 91.268, + "y": 23.768, + "z": 7.148 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a95", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a95", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (153) [b77a0d74-91f8-477c-b980-d68e4a8b07f2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 190.643, - "y": 17.16, - "z": -25.758 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ace", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ace", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (117) [54c2c5a8-b48b-4844-b4a1-6a077dad635b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.829, + "y": 23.768, + "z": -18.335 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037acf", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c93353dacb55c5f8037ace", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a98", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a98", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037a99", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c93353dacb55c5f8037a98", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (154) [315fec3c-b9cb-4106-b220-3e939e37bcfa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 200.85, - "y": 17.16, - "z": -14.72 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ad1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ad1", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (120) [156395e1-ba51-4b17-b243-7535c3283906]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 109.698, + "y": 23.334, + "z": -30.065 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037a9c", + "Items": [ + { + "_id": "66c93353dacb55c5f8037a9c", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037a9d", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c93353dacb55c5f8037a9c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (158) [790260c0-60f5-4530-bcef-dcf522884646]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 194.145, - "y": 17.16, - "z": 29.3 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ad4", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ad4", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (122) [83fb39c3-3da5-47ee-9eed-8c2c7d9e4a3d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 113.367004, + "y": 23.706, + "z": 172.12 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037aa0", + "Items": [ + { + "_id": "66c93353dacb55c5f8037aa0", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037aa1", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c93353dacb55c5f8037aa0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (123) [eec50441-f5ca-4e4d-b955-d1d561beecce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 114.321, + "y": 23.706, + "z": 172.034 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037ad5", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c93353dacb55c5f8037ad4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037aa3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037aa3", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (160) [a4e7107f-bc67-4b85-b24f-0cf31405e56b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.697, - "y": 17.16, - "z": 29.191 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ad7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ad7", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (124) [d050b1a5-942c-4e80-84d7-868b30d1dee6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 104.741005, + "y": 19.191, + "z": 170.19 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037aa7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037aa7", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037aa8", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037aa7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c93353dacb55c5f8037aa9", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037aa7", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (164) [888cffc5-bb23-4d33-aaba-8fedc451e92b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 193.303, - "y": 17.16, - "z": 34.453 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ad9", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ad9", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (124) [d2b6d518-f45f-42a5-b837-8ac35e45e671]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.956, + "y": 23.749, + "z": -37.052 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037aad", + "Items": [ + { + "_id": "66c93353dacb55c5f8037aad", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037aae", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037aad", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c93353dacb55c5f8037aaf", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037aad", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (168) [c2c5a9c5-cc98-47e3-b77c-fffa60d1199d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 200.458008, - "y": 17.128, - "z": 27.7000027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037adb", - "Items": [ - { - "_id": "66c93353dacb55c5f8037adb", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (125) [1c0a9e7f-8a61-45f0-b606-fd50e6517b0b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 103.792, + "y": 19.191, + "z": 170.168991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ab2", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ab2", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037ab3", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c93353dacb55c5f8037ab2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (17) [11fa52c5-4e97-4f39-a11a-72dfc5cc6b4c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.543, - "y": 23.658, - "z": 46.801 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037add", - "Items": [ - { - "_id": "66c93353dacb55c5f8037add", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (128) [3ea50575-0d28-4355-9dd0-1f703438a112]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 108.276, + "y": 23.991, + "z": -45.344 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ab5", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ab5", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (175) [b1401047-ecfe-4c20-be1b-73561818d344]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 191.923, - "y": 17.128, - "z": 89.978 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037adf", - "Items": [ - { - "_id": "66c93353dacb55c5f8037adf", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (128) [7fed25d0-1077-46c1-8ccc-32efdbf0477d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.691, + "y": 15.008, + "z": 173.732 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ab7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ab7", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 885 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (177) [67a7a681-6f07-4a17-bc03-bccba8b93419]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 195.661987, - "y": 17.303, - "z": 140.905 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ae1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ae1", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (13) [32728a49-6ebc-4045-9fd9-8ccfb8a2b6ef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.135, + "y": 23.903, + "z": 45.112 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ab9", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ab9", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (177) [8eff31d0-ef16-484e-96df-f216f54eb769]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 200.374, - "y": 17.128, - "z": 98.299 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ae3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ae3", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (130) [18798c58-b6f8-4969-9fc2-01c5c475e8c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 111.244995, + "y": 23.991, + "z": -45.2899971 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037abb", + "Items": [ + { + "_id": "66c93353dacb55c5f8037abb", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (178) [8bc4a4a9-8248-4c06-b902-062f62d10979]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 200.33, - "y": 17.128, - "z": 105.04 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ae5", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ae5", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (134) [9861dca5-30c4-4a65-9308-c0e839f1ea21]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.918, + "y": 23.843, + "z": -37.1529961 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037abe", + "Items": [ + { + "_id": "66c93353dacb55c5f8037abe", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037abf", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c93353dacb55c5f8037abe", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (179) [05efcc64-3969-4db7-8e71-0e3e79fee5a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 195.69899, - "y": 17.303, - "z": 142.444 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ae7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ae7", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (137) [3fcbdf1b-9c33-4bf1-b30e-b9baa593c32f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.964, + "y": 23.968, + "z": -42.426 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ac1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ac1", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (179) [80c11434-d721-4a35-ae21-c88ea1fabf15]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 200.343, - "y": 17.128, - "z": 106.062 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037aea", - "Items": [ - { - "_id": "66c93353dacb55c5f8037aea", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (14) [67340c5e-d494-46d4-8f20-7c8b3d21dd73]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.179, + "y": 23.903, + "z": 46.13 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ac3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ac3", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (144) [1cbcb093-5d33-42ac-84f5-22b996355a9c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.684, + "y": 23.636, + "z": -42.7489967 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037aeb", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c93353dacb55c5f8037aea", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ac5", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ac5", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (181) [05c303b0-a9cd-4896-b299-643a9110d530]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 195.579, - "y": 17.303, - "z": 150.236984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037aef", - "Items": [ - { - "_id": "66c93353dacb55c5f8037aef", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (150) [700022e8-9433-4b44-bda1-a1019dea5092]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 199.571, + "y": 17.16, + "z": -47.962 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ac8", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ac8", + "_tpl": "64acea2c03378853630da53e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037ac9", + "_tpl": "59e4d3d286f774176a36250a", + "parentId": "66c93353dacb55c5f8037ac8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (152) [cb5be77f-8120-44a3-81f9-e813bada97d4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 191.58, + "y": 17.16, + "z": -25.83 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037af0", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037aef", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037acb", + "Items": [ + { + "_id": "66c93353dacb55c5f8037acb", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (153) [b77a0d74-91f8-477c-b980-d68e4a8b07f2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 190.643, + "y": 17.16, + "z": -25.758 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037af1", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037aef", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ace", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ace", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037acf", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c93353dacb55c5f8037ace", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (181) [cdf6f77a-7b0a-4139-a76c-63b7e128e3ec]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 195.147, - "y": 17.128, - "z": 113.167 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037af3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037af3", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (154) [315fec3c-b9cb-4106-b220-3e939e37bcfa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 200.85, + "y": 17.16, + "z": -14.72 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ad1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ad1", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (183) [8569e5ee-88f5-4ed9-9544-b23f28d75c71]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 192.819, - "y": 17.128, - "z": 113.725 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037af6", - "Items": [ - { - "_id": "66c93353dacb55c5f8037af6", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (158) [790260c0-60f5-4530-bcef-dcf522884646]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 194.145, + "y": 17.16, + "z": 29.3 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037af7", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c93353dacb55c5f8037af6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ad4", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ad4", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037ad5", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c93353dacb55c5f8037ad4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (192) [758ab456-8399-40e3-bc3f-bd6a6629d7ad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 190.918, - "y": 16.997, - "z": 102.919 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037afa", - "Items": [ - { - "_id": "66c93353dacb55c5f8037afa", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (160) [a4e7107f-bc67-4b85-b24f-0cf31405e56b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.697, + "y": 17.16, + "z": 29.191 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037afb", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c93353dacb55c5f8037afa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ad7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ad7", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (193) [ac9c97f1-b94d-4dbb-a088-d193bcbc9eb2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 194.162, - "y": 16.997, - "z": 101.036 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037afe", - "Items": [ - { - "_id": "66c93353dacb55c5f8037afe", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (164) [888cffc5-bb23-4d33-aaba-8fedc451e92b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 193.303, + "y": 17.16, + "z": 34.453 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037aff", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c93353dacb55c5f8037afe", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ad9", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ad9", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (194) [c0a147c5-a4a7-4e76-a537-39a83a9685c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 193.2, - "y": 16.997, - "z": 101.049 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b01", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b01", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (168) [c2c5a9c5-cc98-47e3-b77c-fffa60d1199d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 200.458008, + "y": 17.128, + "z": 27.7000027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037adb", + "Items": [ + { + "_id": "66c93353dacb55c5f8037adb", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (197) [1d013706-c708-4c6a-a482-d80acb58b2ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 179.388, - "y": 16.707, - "z": 116.666 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b04", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b04", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (17) [11fa52c5-4e97-4f39-a11a-72dfc5cc6b4c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.543, + "y": 23.658, + "z": 46.801 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b05", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c93353dacb55c5f8037b04", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037add", + "Items": [ + { + "_id": "66c93353dacb55c5f8037add", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (199) [10f3caea-0e3b-4f43-9949-754ab6789e0e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 179.898, - "y": 16.707, - "z": 117.201 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b07", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b07", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (175) [b1401047-ecfe-4c20-be1b-73561818d344]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 191.923, + "y": 17.128, + "z": 89.978 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037adf", + "Items": [ + { + "_id": "66c93353dacb55c5f8037adf", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (20) [ae5a4e6b-68d7-4993-9f8b-61006573dff4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 122.119, - "y": 23.658, - "z": 46.79 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b09", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b09", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (177) [67a7a681-6f07-4a17-bc03-bccba8b93419]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 195.661987, + "y": 17.303, + "z": 140.905 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ae1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ae1", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (202) [d67e1906-98ef-45b4-baf7-5b5a8891598e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.364, - "y": 16.707, - "z": 124.95 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b0b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b0b", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (177) [8eff31d0-ef16-484e-96df-f216f54eb769]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 200.374, + "y": 17.128, + "z": 98.299 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ae3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ae3", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (203) [3790a0b2-fdf6-4888-82db-3c6aef292ab4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.874, - "y": 16.707, - "z": 124.395996 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b0d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b0d", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (178) [8bc4a4a9-8248-4c06-b902-062f62d10979]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 200.33, + "y": 17.128, + "z": 105.04 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ae5", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ae5", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (204) [2f251026-d2aa-474e-917a-b7a721d5f05f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.928, - "y": 16.707, - "z": 125.587 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b10", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b10", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (179) [05efcc64-3969-4db7-8e71-0e3e79fee5a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 195.69899, + "y": 17.303, + "z": 142.444 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b11", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c93353dacb55c5f8037b10", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ae7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ae7", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (205) [7244370b-1739-4c0f-9b26-b907097fff2f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.013, - "y": 16.707, - "z": 131.802 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b13", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b13", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (179) [80c11434-d721-4a35-ae21-c88ea1fabf15]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 200.343, + "y": 17.128, + "z": 106.062 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037aea", + "Items": [ + { + "_id": "66c93353dacb55c5f8037aea", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037aeb", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c93353dacb55c5f8037aea", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (206) [7736c57e-e51d-43ea-89e0-415eec0bbb09]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.756, - "y": 16.707, - "z": 132.277 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b16", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b16", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (181) [05c303b0-a9cd-4896-b299-643a9110d530]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 195.579, + "y": 17.303, + "z": 150.236984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b17", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c93353dacb55c5f8037b16", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037aef", + "Items": [ + { + "_id": "66c93353dacb55c5f8037aef", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037af0", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037aef", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c93353dacb55c5f8037af1", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037aef", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (21) [ef0b1b78-0c1a-487f-824a-f9c9b88bb6c8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 134.305008, - "y": 23.658, - "z": 48.694 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b1a", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b1a", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (181) [cdf6f77a-7b0a-4139-a76c-63b7e128e3ec]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 195.147, + "y": 17.128, + "z": 113.167 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037af3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037af3", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (183) [8569e5ee-88f5-4ed9-9544-b23f28d75c71]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 192.819, + "y": 17.128, + "z": 113.725 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b1b", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c93353dacb55c5f8037b1a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037af6", + "Items": [ + { + "_id": "66c93353dacb55c5f8037af6", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037af7", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c93353dacb55c5f8037af6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (213) [35499a83-40ef-471b-b179-5cc5a2314498]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 95.614, - "y": 23.704, - "z": 191.627 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b1d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b1d", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (192) [758ab456-8399-40e3-bc3f-bd6a6629d7ad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 190.918, + "y": 16.997, + "z": 102.919 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037afa", + "Items": [ + { + "_id": "66c93353dacb55c5f8037afa", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037afb", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c93353dacb55c5f8037afa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (215) [acda1568-aa00-4fba-b32f-bb83fdb1567f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.628006, - "y": 23.704, - "z": 204.887009 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b1f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b1f", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (193) [ac9c97f1-b94d-4dbb-a088-d193bcbc9eb2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 194.162, + "y": 16.997, + "z": 101.036 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037afe", + "Items": [ + { + "_id": "66c93353dacb55c5f8037afe", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037aff", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c93353dacb55c5f8037afe", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (217) [57faf073-e95d-406b-bc05-e34c63e98cee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.8120041, - "y": 23.29, - "z": 225.588 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b21", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b21", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (194) [c0a147c5-a4a7-4e76-a537-39a83a9685c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 193.2, + "y": 16.997, + "z": 101.049 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b01", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b01", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (217) [8f4d0ae8-26f7-4072-b8c7-18b49a086434]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 72.049, - "y": 23.704, - "z": 226.243 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b23", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b23", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (197) [1d013706-c708-4c6a-a482-d80acb58b2ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 179.388, + "y": 16.707, + "z": 116.666 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b04", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b04", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b05", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c93353dacb55c5f8037b04", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (22) [bb365605-5624-4b09-8983-51d33180b84f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 135.447, - "y": 23.658, - "z": 48.744 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b25", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b25", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (199) [10f3caea-0e3b-4f43-9949-754ab6789e0e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 179.898, + "y": 16.707, + "z": 117.201 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b07", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b07", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (220) [68099b1c-5ae6-4eaf-9ada-284d34be52c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.61301, - "y": 23.29, - "z": 226.713 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b28", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b28", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (20) [ae5a4e6b-68d7-4993-9f8b-61006573dff4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 122.119, + "y": 23.658, + "z": 46.79 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b09", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b09", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (202) [d67e1906-98ef-45b4-baf7-5b5a8891598e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.364, + "y": 16.707, + "z": 124.95 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b29", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c93353dacb55c5f8037b28", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b0b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b0b", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (222) [24f6c585-8877-4480-9d5a-770e148ed4ce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.374, - "y": 23.29, - "z": 225.454 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b2b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b2b", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (203) [3790a0b2-fdf6-4888-82db-3c6aef292ab4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.874, + "y": 16.707, + "z": 124.395996 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b0d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b0d", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (230) [a5939f71-8845-429b-b7b2-30c03013ebe4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.396, - "y": 23.704, - "z": 260.517 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b2e", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b2e", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (204) [2f251026-d2aa-474e-917a-b7a721d5f05f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.928, + "y": 16.707, + "z": 125.587 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b2f", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c93353dacb55c5f8037b2e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b10", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b10", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b11", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c93353dacb55c5f8037b10", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (231) [73c747f2-2111-4bbe-883c-fc6d3e8f45ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 34.6, - "y": 23.704, - "z": 260.553 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b32", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b32", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (205) [7244370b-1739-4c0f-9b26-b907097fff2f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.013, + "y": 16.707, + "z": 131.802 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b33", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c93353dacb55c5f8037b32", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b13", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b13", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (232) [0c1d8435-ed4c-4dbc-ab63-bf432d26c472]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 42.98, - "y": 23.704, - "z": 260.57 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b36", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b36", - "_tpl": "64acea2c03378853630da53e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (206) [7736c57e-e51d-43ea-89e0-415eec0bbb09]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.756, + "y": 16.707, + "z": 132.277 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b37", - "_tpl": "59e4d3d286f774176a36250a", - "parentId": "66c93353dacb55c5f8037b36", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b16", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b16", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b17", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c93353dacb55c5f8037b16", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (236) [bc44ec9d-0fac-4014-be40-6c9888e8af35]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.707, - "y": 24.362, - "z": 123.724 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b39", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b39", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (21) [ef0b1b78-0c1a-487f-824a-f9c9b88bb6c8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 134.305008, + "y": 23.658, + "z": 48.694 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b1a", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b1a", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b1b", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c93353dacb55c5f8037b1a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (238) [f1a36968-10b5-46f8-b542-8d944c1ed13a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.667, - "y": 24.362, - "z": 123.759 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b3c", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b3c", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (213) [35499a83-40ef-471b-b179-5cc5a2314498]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 95.614, + "y": 23.704, + "z": 191.627 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b3d", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c93353dacb55c5f8037b3c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b1d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b1d", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (239) [46a7f3fe-67d0-49e4-8e86-7e16c05696ed]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 45.696, - "y": 24.362, - "z": 123.774 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b40", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b40", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (215) [acda1568-aa00-4fba-b32f-bb83fdb1567f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.628006, + "y": 23.704, + "z": 204.887009 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b41", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c93353dacb55c5f8037b40", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b1f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b1f", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (240) [3cf4bc2a-237c-4f40-849e-9a6351307a2a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 38.068, - "y": 24.362, - "z": 123.704 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b43", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b43", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (217) [57faf073-e95d-406b-bc05-e34c63e98cee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.8120041, + "y": 23.29, + "z": 225.588 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b21", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b21", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (243) [aac6f0e1-477d-43bf-b6f1-0d50334f38be]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.205, - "y": 24.362, - "z": 123.733 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b46", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b46", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (217) [8f4d0ae8-26f7-4072-b8c7-18b49a086434]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 72.049, + "y": 23.704, + "z": 226.243 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b47", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c93353dacb55c5f8037b46", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b23", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b23", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (244) [1c587836-24fa-4b5e-910c-23486dc9f991]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 27.665, - "y": 24.362, - "z": 123.67 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b49", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b49", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (22) [bb365605-5624-4b09-8983-51d33180b84f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 135.447, + "y": 23.658, + "z": 48.744 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b25", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b25", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (246) [037fed1e-b44f-43d5-8f95-c00726d2d883]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 14.41, - "y": 24.362, - "z": 123.66 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b4c", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b4c", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (220) [68099b1c-5ae6-4eaf-9ada-284d34be52c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.61301, + "y": 23.29, + "z": 226.713 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b28", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b28", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b29", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c93353dacb55c5f8037b28", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (222) [24f6c585-8877-4480-9d5a-770e148ed4ce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.374, + "y": 23.29, + "z": 225.454 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b4d", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c93353dacb55c5f8037b4c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b2b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b2b", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (248) [fe273d95-6c90-401e-9fa4-5cb5bd50652e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.247, - "y": 24.362, - "z": 123.72 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b4f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b4f", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (230) [a5939f71-8845-429b-b7b2-30c03013ebe4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.396, + "y": 23.704, + "z": 260.517 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b2e", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b2e", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b2f", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c93353dacb55c5f8037b2e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (255) [246f0fcb-959a-453f-b01d-422494a25447]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.251, - "y": 23.665, - "z": -18.154 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b51", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b51", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (231) [73c747f2-2111-4bbe-883c-fc6d3e8f45ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 34.6, + "y": 23.704, + "z": 260.553 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b32", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b32", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b33", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c93353dacb55c5f8037b32", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (256) [712f4492-b3af-4cd6-a291-0fdb55723cce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 37.358, - "y": 24.46, - "z": -52.355 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b54", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b54", - "_tpl": "64acea2c03378853630da53e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (232) [0c1d8435-ed4c-4dbc-ab63-bf432d26c472]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 42.98, + "y": 23.704, + "z": 260.57 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b36", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b36", + "_tpl": "64acea2c03378853630da53e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b37", + "_tpl": "59e4d3d286f774176a36250a", + "parentId": "66c93353dacb55c5f8037b36", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (236) [bc44ec9d-0fac-4014-be40-6c9888e8af35]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.707, + "y": 24.362, + "z": 123.724 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b55", - "_tpl": "59e4d3d286f774176a36250a", - "parentId": "66c93353dacb55c5f8037b54", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b39", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b39", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (260) [398d8a9c-f8d9-44a7-81d7-11fb6891eb19]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.3269958, - "y": 24.435997, - "z": -21.392 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b57", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b57", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (238) [f1a36968-10b5-46f8-b542-8d944c1ed13a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.667, + "y": 24.362, + "z": 123.759 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b3c", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b3c", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b3d", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c93353dacb55c5f8037b3c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (260) [946e7e4f-a181-4f95-822d-9b6319c49aaa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.99, - "y": 24.631, - "z": 11.69 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b59", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b59", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (239) [46a7f3fe-67d0-49e4-8e86-7e16c05696ed]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 45.696, + "y": 24.362, + "z": 123.774 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b40", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b40", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b41", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c93353dacb55c5f8037b40", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (261) [076ba862-0f69-4f94-9d7f-baf9be49ae81]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.525, - "y": 24.631, - "z": 12.297 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b5b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b5b", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (240) [3cf4bc2a-237c-4f40-849e-9a6351307a2a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 38.068, + "y": 24.362, + "z": 123.704 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b43", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b43", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (265) [2baa9cb7-f874-427e-b3c2-fa3a5b7a306c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 17.293, - "y": 24.4359989, - "z": -21.842 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b5d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b5d", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (243) [aac6f0e1-477d-43bf-b6f1-0d50334f38be]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.205, + "y": 24.362, + "z": 123.733 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b46", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b46", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b47", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c93353dacb55c5f8037b46", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (266) [f9959572-546e-410a-9638-7c61b32f8ed2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.868, - "y": 24.473, - "z": 31.255 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b60", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b60", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (244) [1c587836-24fa-4b5e-910c-23486dc9f991]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 27.665, + "y": 24.362, + "z": 123.67 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b61", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c93353dacb55c5f8037b60", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b49", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b49", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (269) [278b4dc3-35f8-4f6e-ab74-22b8ad724781]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.798, - "y": 24.473, - "z": 33.516 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b64", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b64", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (246) [037fed1e-b44f-43d5-8f95-c00726d2d883]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 14.41, + "y": 24.362, + "z": 123.66 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b65", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c93353dacb55c5f8037b64", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b4c", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b4c", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b4d", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c93353dacb55c5f8037b4c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (272) [b8cc6f7b-461e-4e23-b002-520200ace2ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.868, - "y": 24.473, - "z": 33.492 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b68", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b68", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (248) [fe273d95-6c90-401e-9fa4-5cb5bd50652e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.247, + "y": 24.362, + "z": 123.72 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b69", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c93353dacb55c5f8037b68", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b4f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b4f", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (274) [55f4b076-897a-4439-a42c-8f9819d615d7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.619, - "y": 24.473, - "z": 33.504 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b6b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b6b", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (255) [246f0fcb-959a-453f-b01d-422494a25447]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.251, + "y": 23.665, + "z": -18.154 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b51", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b51", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (276) [9c89ed5b-bf48-49a3-9456-80b16d3b45db]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.513, - "y": 24.473, - "z": 46.623 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b6d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b6d", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 702 + { + "Id": "Loot_street_Leo_common (256) [712f4492-b3af-4cd6-a291-0fdb55723cce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 37.358, + "y": 24.46, + "z": -52.355 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b54", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b54", + "_tpl": "64acea2c03378853630da53e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b55", + "_tpl": "59e4d3d286f774176a36250a", + "parentId": "66c93353dacb55c5f8037b54", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (277) [0592325b-2243-42f1-aa21-8508c3a45378]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.249, - "y": 24.473, - "z": 47.786 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b6f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b6f", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (260) [398d8a9c-f8d9-44a7-81d7-11fb6891eb19]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.3269958, + "y": 24.435997, + "z": -21.392 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b57", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b57", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (278) [3230fb92-d4e2-4fb7-be6a-546cdf71e43e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 6.57699966, - "y": 24.473, - "z": 33.2579956 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b71", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b71", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (260) [946e7e4f-a181-4f95-822d-9b6319c49aaa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.99, + "y": 24.631, + "z": 11.69 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b59", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b59", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (282) [b440bfdc-3cc0-4bba-a8c1-cd26eb19bb41]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 2.441, - "y": 24.473, - "z": 33.322 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b74", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b74", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (261) [076ba862-0f69-4f94-9d7f-baf9be49ae81]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.525, + "y": 24.631, + "z": 12.297 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b75", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c93353dacb55c5f8037b74", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b5b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b5b", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (286) [0cb951f8-e42e-4f5d-9389-b3dc63ade897]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 4.50799942, - "y": 24.473, - "z": 31.0199966 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b77", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b77", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (265) [2baa9cb7-f874-427e-b3c2-fa3a5b7a306c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 17.293, + "y": 24.4359989, + "z": -21.842 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b5d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b5d", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (289) [cef0a98d-a7ef-496f-a796-e2749a460647]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 1.397999, - "y": 24.473, - "z": 30.9539986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b79", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b79", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (266) [f9959572-546e-410a-9638-7c61b32f8ed2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.868, + "y": 24.473, + "z": 31.255 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b60", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b60", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b61", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c93353dacb55c5f8037b60", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (29) [ad0fbfde-97e0-4aae-82ca-1ec5c6d481d5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 153.443, - "y": 23.658, - "z": 48.693 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b7b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b7b", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (269) [278b4dc3-35f8-4f6e-ab74-22b8ad724781]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.798, + "y": 24.473, + "z": 33.516 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b64", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b64", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b65", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c93353dacb55c5f8037b64", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (291) [8cb6bdb7-ffd4-4426-8bcd-71e8457d580f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 0.574, - "y": 24.649, - "z": 18.568 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b7e", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b7e", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (272) [b8cc6f7b-461e-4e23-b002-520200ace2ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.868, + "y": 24.473, + "z": 33.492 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b7f", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c93353dacb55c5f8037b7e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b68", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b68", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b69", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c93353dacb55c5f8037b68", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (292) [44c334e0-85dd-4b9f-abdc-f8ff80268ef5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -2.136, - "y": 24.649, - "z": 17.057 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b81", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b81", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (274) [55f4b076-897a-4439-a42c-8f9819d615d7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.619, + "y": 24.473, + "z": 33.504 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b6b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b6b", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (293) [63f3766f-f7c1-46b2-8793-a529893c02d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -1.825, - "y": 24.649, - "z": 16.164 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b84", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b84", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (276) [9c89ed5b-bf48-49a3-9456-80b16d3b45db]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.513, + "y": 24.473, + "z": 46.623 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b85", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c93353dacb55c5f8037b84", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b6d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b6d", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 702 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (296) [6d1ef215-9c3d-4c0c-9dab-1c4c3ca5961e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 4.41799974, - "y": 24.649, - "z": 2.197 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b87", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b87", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (277) [0592325b-2243-42f1-aa21-8508c3a45378]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.249, + "y": 24.473, + "z": 47.786 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b6f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b6f", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (299) [da21d26a-c4c9-4bcd-8d00-96c0cb643262]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 7.759, - "y": 24.649, - "z": -5.304 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b89", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b89", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (278) [3230fb92-d4e2-4fb7-be6a-546cdf71e43e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 6.57699966, + "y": 24.473, + "z": 33.2579956 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b71", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b71", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (3) [903a30ae-f925-4bff-afe8-2afe1575ca2e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.453, - "y": 23.472, - "z": 19.836 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b8b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b8b", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (282) [b440bfdc-3cc0-4bba-a8c1-cd26eb19bb41]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 2.441, + "y": 24.473, + "z": 33.322 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b74", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b74", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b75", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c93353dacb55c5f8037b74", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (303) [bf6f23e4-246d-4afc-9200-4a787d6460dc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -4.419, - "y": 24.663, - "z": 82.22 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b8e", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b8e", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (286) [0cb951f8-e42e-4f5d-9389-b3dc63ade897]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 4.50799942, + "y": 24.473, + "z": 31.0199966 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b77", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b77", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (289) [cef0a98d-a7ef-496f-a796-e2749a460647]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 1.397999, + "y": 24.473, + "z": 30.9539986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b8f", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c93353dacb55c5f8037b8e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b79", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b79", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (306) [64c92b1c-71c0-4bae-861c-6e9bf6a10245]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 79.1590042, - "y": 23.189, - "z": 4.50999928 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b91", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b91", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (29) [ad0fbfde-97e0-4aae-82ca-1ec5c6d481d5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 153.443, + "y": 23.658, + "z": 48.693 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b7b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b7b", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (309) [7b847a3c-9fb9-42e1-b626-f2a51a4afbc9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 69.251, - "y": 23.189, - "z": 10.87 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b94", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b94", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (291) [8cb6bdb7-ffd4-4426-8bcd-71e8457d580f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 0.574, + "y": 24.649, + "z": 18.568 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b7e", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b7e", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b7f", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c93353dacb55c5f8037b7e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (292) [44c334e0-85dd-4b9f-abdc-f8ff80268ef5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -2.136, + "y": 24.649, + "z": 17.057 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b95", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c93353dacb55c5f8037b94", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b81", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b81", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (310) [40ccfbf8-7e9a-4818-a1fd-76ae608335da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.374, - "y": 23.189, - "z": 11.244 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b97", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b97", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (293) [63f3766f-f7c1-46b2-8793-a529893c02d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -1.825, + "y": 24.649, + "z": 16.164 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b84", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b84", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b85", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c93353dacb55c5f8037b84", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (317) [ea2bbd29-f3e4-48b7-b04c-ed03c3481d69]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.028, - "y": 22.933, - "z": 3.664 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b99", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b99", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (296) [6d1ef215-9c3d-4c0c-9dab-1c4c3ca5961e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 4.41799974, + "y": 24.649, + "z": 2.197 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b87", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b87", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (318) [630e322e-012f-4650-8516-c0189b7fce19]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.014, - "y": 22.933, - "z": 3.035 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b9b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b9b", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (299) [da21d26a-c4c9-4bcd-8d00-96c0cb643262]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 7.759, + "y": 24.649, + "z": -5.304 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b89", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b89", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (323) [49b6c758-c117-4e42-a435-0b27c0662ead]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 48.436, - "y": 24.687, - "z": -29.34 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037b9e", - "Items": [ - { - "_id": "66c93353dacb55c5f8037b9e", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (3) [903a30ae-f925-4bff-afe8-2afe1575ca2e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.453, + "y": 23.472, + "z": 19.836 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037b9f", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c93353dacb55c5f8037b9e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b8b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b8b", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (324) [af7213ea-3200-4460-b746-473d1a65a001]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 48.078, - "y": 24.687, - "z": -28.314 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ba1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ba1", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 778 + { + "Id": "Loot_street_Leo_common (303) [bf6f23e4-246d-4afc-9200-4a787d6460dc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -4.419, + "y": 24.663, + "z": 82.22 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b8e", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b8e", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b8f", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c93353dacb55c5f8037b8e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (35) [9763289a-b9c6-43c7-9520-83b15d3a80a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 163.154, - "y": 23.658, - "z": 46.799 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ba3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ba3", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (306) [64c92b1c-71c0-4bae-861c-6e9bf6a10245]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 79.1590042, + "y": 23.189, + "z": 4.50999928 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b91", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b91", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (37) [da05f8cd-b4bc-44db-a129-47837ef241a0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 18.24, - "y": 24.631, - "z": -6.66 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ba6", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ba6", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (309) [7b847a3c-9fb9-42e1-b626-f2a51a4afbc9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 69.251, + "y": 23.189, + "z": 10.87 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037ba7", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c93353dacb55c5f8037ba6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b94", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b94", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b95", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c93353dacb55c5f8037b94", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (38) [8d6de6f0-5213-445d-badb-ffc8ebde04b6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 17.562, - "y": 24.631, - "z": -7.008 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ba9", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ba9", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (310) [40ccfbf8-7e9a-4818-a1fd-76ae608335da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.374, + "y": 23.189, + "z": 11.244 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b97", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b97", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (4) [696ce78b-ddbc-41f9-ae69-190815ba1d85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.783, - "y": 23.472, - "z": 12.698 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bab", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bab", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (317) [ea2bbd29-f3e4-48b7-b04c-ed03c3481d69]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.028, + "y": 22.933, + "z": 3.664 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b99", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b99", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (42) [4562c5b0-d6f2-42a4-ac3e-4deadca22cad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 20.361, - "y": 24.631, - "z": -11.127 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bad", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bad", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (318) [630e322e-012f-4650-8516-c0189b7fce19]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.014, + "y": 22.933, + "z": 3.035 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b9b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b9b", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (49) [74cc9b31-7d00-4c0d-9ac6-41dd58668f64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 28.2069988, - "y": 24.966, - "z": 8.295 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037baf", - "Items": [ - { - "_id": "66c93353dacb55c5f8037baf", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (323) [49b6c758-c117-4e42-a435-0b27c0662ead]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 48.436, + "y": 24.687, + "z": -29.34 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037b9e", + "Items": [ + { + "_id": "66c93353dacb55c5f8037b9e", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037b9f", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c93353dacb55c5f8037b9e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (5) [885f9d20-d57c-49f8-92e0-922dac378b15]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.368, - "y": 23.472, - "z": 12.427 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bb2", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bb2", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (324) [af7213ea-3200-4460-b746-473d1a65a001]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 48.078, + "y": 24.687, + "z": -28.314 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bb3", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c93353dacb55c5f8037bb2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ba1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ba1", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 778 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (52) [465c0205-83e9-4460-92cd-cbff9928f8a5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.671999, - "y": 24.966, - "z": 10.763 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bb6", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bb6", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (35) [9763289a-b9c6-43c7-9520-83b15d3a80a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 163.154, + "y": 23.658, + "z": 46.799 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bb7", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c93353dacb55c5f8037bb6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ba3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ba3", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (55) [7657e2dc-280e-4df9-b567-4cf823bf4e2a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 43.172, - "y": 24.557, - "z": -12.498 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bba", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bba", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (37) [da05f8cd-b4bc-44db-a129-47837ef241a0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 18.24, + "y": 24.631, + "z": -6.66 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ba6", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ba6", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037ba7", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c93353dacb55c5f8037ba6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (38) [8d6de6f0-5213-445d-badb-ffc8ebde04b6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 17.562, + "y": 24.631, + "z": -7.008 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bbb", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c93353dacb55c5f8037bba", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ba9", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ba9", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (56) [df2a6ff7-241a-47f5-a024-77e6b311fcf5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 43.483, - "y": 24.44, - "z": 9.218 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bbd", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bbd", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 1101 + { + "Id": "Loot_street_Leo_common (4) [696ce78b-ddbc-41f9-ae69-190815ba1d85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.783, + "y": 23.472, + "z": 12.698 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bab", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bab", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (61) [54cf03d7-8f14-4836-9107-ba4e39d17151]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.82, - "y": 23.403, - "z": 10.6720009 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bbf", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bbf", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (42) [4562c5b0-d6f2-42a4-ac3e-4deadca22cad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 20.361, + "y": 24.631, + "z": -11.127 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bad", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bad", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (627) [ba4f57b4-37b7-4bc6-8bd3-fe4944e5a50a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 124.431, - "y": 23.378, - "z": 17.735 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bc1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bc1", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (49) [74cc9b31-7d00-4c0d-9ac6-41dd58668f64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 28.2069988, + "y": 24.966, + "z": 8.295 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037baf", + "Items": [ + { + "_id": "66c93353dacb55c5f8037baf", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (629) [974075c7-fde4-4a0e-8895-edcf7b88a0b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.474007, - "y": 23.378, - "z": 15.804 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bc4", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bc4", - "_tpl": "64acea2c03378853630da53e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (5) [885f9d20-d57c-49f8-92e0-922dac378b15]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.368, + "y": 23.472, + "z": 12.427 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bb2", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bb2", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bb3", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c93353dacb55c5f8037bb2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (52) [465c0205-83e9-4460-92cd-cbff9928f8a5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.671999, + "y": 24.966, + "z": 10.763 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bc5", - "_tpl": "59e4d3d286f774176a36250a", - "parentId": "66c93353dacb55c5f8037bc4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bb6", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bb6", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bb7", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c93353dacb55c5f8037bb6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (63) [5f44b5c6-24e8-4aae-bb55-ebcb7624bde0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.042, - "y": 23.403, - "z": 8.642 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bc7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bc7", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 590 + { + "Id": "Loot_street_Leo_common (55) [7657e2dc-280e-4df9-b567-4cf823bf4e2a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 43.172, + "y": 24.557, + "z": -12.498 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bba", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bba", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bbb", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c93353dacb55c5f8037bba", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (632) [587b6b86-8ba3-4e5e-b772-958a6ce59689]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 123.911, - "y": 23.378, - "z": 9.653999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bca", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bca", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (56) [df2a6ff7-241a-47f5-a024-77e6b311fcf5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 43.483, + "y": 24.44, + "z": 9.218 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bcb", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c93353dacb55c5f8037bca", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bbd", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bbd", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 1101 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (633) [555901c0-916f-49c0-afe3-b67fa09b00da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 123.511, - "y": 23.378, - "z": 9.632 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bcd", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bcd", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (61) [54cf03d7-8f14-4836-9107-ba4e39d17151]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.82, + "y": 23.403, + "z": 10.6720009 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bbf", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bbf", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (638) [d0e105ba-502c-4a9a-9f40-d5e0125af115]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 119.942, - "y": 23.378, - "z": 6.976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bcf", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bcf", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (627) [ba4f57b4-37b7-4bc6-8bd3-fe4944e5a50a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 124.431, + "y": 23.378, + "z": 17.735 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bc1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bc1", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (639) [459d8ee2-7c55-4f89-8d6a-66f11e6a43b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 114.304, - "y": 23.378, - "z": 8.032 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bd2", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bd2", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (629) [974075c7-fde4-4a0e-8895-edcf7b88a0b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.474007, + "y": 23.378, + "z": 15.804 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bd3", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c93353dacb55c5f8037bd2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bc4", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bc4", + "_tpl": "64acea2c03378853630da53e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bc5", + "_tpl": "59e4d3d286f774176a36250a", + "parentId": "66c93353dacb55c5f8037bc4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (640) [a994b6db-9bf5-4db1-b125-323b8a12dd7c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 114.256004, - "y": 23.378, - "z": 8.636999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bd5", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bd5", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 886 + { + "Id": "Loot_street_Leo_common (63) [5f44b5c6-24e8-4aae-bb55-ebcb7624bde0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.042, + "y": 23.403, + "z": 8.642 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bc7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bc7", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 590 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (641) [67b9172e-8ef8-4d7f-bcab-f1ac0fc4cd41]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 114.082, - "y": 23.378, - "z": 9.125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bd8", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bd8", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (632) [587b6b86-8ba3-4e5e-b772-958a6ce59689]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 123.911, + "y": 23.378, + "z": 9.653999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bd9", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c93353dacb55c5f8037bd8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bca", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bca", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bcb", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c93353dacb55c5f8037bca", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (643) [d8e656b3-cb61-4834-a6e2-75107dfe94aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.255005, - "y": 23.378, - "z": 2.223999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bdc", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bdc", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (633) [555901c0-916f-49c0-afe3-b67fa09b00da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 123.511, + "y": 23.378, + "z": 9.632 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bdd", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c93353dacb55c5f8037bdc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bcd", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bcd", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (647) [6e7232ea-6730-4855-8c1f-1fbd10659040]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 117.808006, - "y": 23.378, - "z": -13.9150009 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bdf", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bdf", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (638) [d0e105ba-502c-4a9a-9f40-d5e0125af115]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 119.942, + "y": 23.378, + "z": 6.976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bcf", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bcf", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (650) [cadce619-08c1-4cbf-beb6-a53abbf37f62]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 112.487, - "y": 23.378, - "z": -9.444 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037be1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037be1", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (639) [459d8ee2-7c55-4f89-8d6a-66f11e6a43b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 114.304, + "y": 23.378, + "z": 8.032 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bd2", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bd2", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bd3", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c93353dacb55c5f8037bd2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (651) [ea3f09ac-d427-4348-a121-7391ff38afdc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 108.318, - "y": 23.378, - "z": 3.48900032 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037be4", - "Items": [ - { - "_id": "66c93353dacb55c5f8037be4", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (640) [a994b6db-9bf5-4db1-b125-323b8a12dd7c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 114.256004, + "y": 23.378, + "z": 8.636999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037be5", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c93353dacb55c5f8037be4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bd5", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bd5", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 886 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (653) [16f1949f-f01e-4720-a108-85ce8f19d05d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 106.706, - "y": 23.378, - "z": 3.494999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037be7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037be7", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (641) [67b9172e-8ef8-4d7f-bcab-f1ac0fc4cd41]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 114.082, + "y": 23.378, + "z": 9.125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bd8", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bd8", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bd9", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c93353dacb55c5f8037bd8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (659) [06d8a4f9-e526-4e17-9b79-f62ee3c423ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 133.481, - "y": 23.378, - "z": -11.4630013 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037beb", - "Items": [ - { - "_id": "66c93353dacb55c5f8037beb", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (643) [d8e656b3-cb61-4834-a6e2-75107dfe94aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.255005, + "y": 23.378, + "z": 2.223999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bec", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037beb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bdc", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bdc", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bdd", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c93353dacb55c5f8037bdc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (647) [6e7232ea-6730-4855-8c1f-1fbd10659040]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 117.808006, + "y": 23.378, + "z": -13.9150009 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bed", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037beb", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bdf", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bdf", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (66) [829f11fc-b252-4d87-a0bd-04dec26c0373]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 70.832, - "y": 23.564, - "z": 49.577 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bf0", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bf0", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (650) [cadce619-08c1-4cbf-beb6-a53abbf37f62]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 112.487, + "y": 23.378, + "z": -9.444 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bf1", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c93353dacb55c5f8037bf0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037be1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037be1", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (662) [17013362-b9c6-415d-94fa-1e255670a226]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 135.386, - "y": 17.784, - "z": -6.087002 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bf4", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bf4", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (651) [ea3f09ac-d427-4348-a121-7391ff38afdc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 108.318, + "y": 23.378, + "z": 3.48900032 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bf5", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c93353dacb55c5f8037bf4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037be4", + "Items": [ + { + "_id": "66c93353dacb55c5f8037be4", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037be5", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c93353dacb55c5f8037be4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (663) [42e2b881-1820-4157-a051-a9273f3dca18]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 134.228, - "y": 17.784, - "z": -7.11399841 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bf8", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bf8", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (653) [16f1949f-f01e-4720-a108-85ce8f19d05d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 106.706, + "y": 23.378, + "z": 3.494999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bf9", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c93353dacb55c5f8037bf8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037be7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037be7", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (665) [2395722b-b355-4462-a365-612cc6d474e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 134.25, - "y": 17.784, - "z": -9.208 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bfc", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bfc", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (659) [06d8a4f9-e526-4e17-9b79-f62ee3c423ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 133.481, + "y": 23.378, + "z": -11.4630013 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037bfd", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c93353dacb55c5f8037bfc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037beb", + "Items": [ + { + "_id": "66c93353dacb55c5f8037beb", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bec", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037beb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c93353dacb55c5f8037bed", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037beb", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (671) [96c3a138-8146-413e-956d-863d006dbed7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 141.094009, - "y": 17.67, - "z": -11.2470016 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037bff", - "Items": [ - { - "_id": "66c93353dacb55c5f8037bff", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (66) [829f11fc-b252-4d87-a0bd-04dec26c0373]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 70.832, + "y": 23.564, + "z": 49.577 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bf0", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bf0", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bf1", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c93353dacb55c5f8037bf0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (672) [e3b31db5-5fea-4ce0-b1d1-629a6e8ab9c4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 141.899, - "y": 17.67, - "z": -11.2389984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c01", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c01", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (662) [17013362-b9c6-415d-94fa-1e255670a226]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 135.386, + "y": 17.784, + "z": -6.087002 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bf4", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bf4", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bf5", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c93353dacb55c5f8037bf4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (673) [16bcdb1e-fbf3-4549-93fe-a400a54e6130]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 142.466, - "y": 17.67, - "z": -11.2099991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c03", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c03", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (663) [42e2b881-1820-4157-a051-a9273f3dca18]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 134.228, + "y": 17.784, + "z": -7.11399841 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bf8", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bf8", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bf9", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c93353dacb55c5f8037bf8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (676) [d9504db4-0699-4233-82c8-126b08a6cbbe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 147.322, - "y": 17.67, - "z": -11.7470016 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c05", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c05", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (665) [2395722b-b355-4462-a365-612cc6d474e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 134.25, + "y": 17.784, + "z": -9.208 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bfc", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bfc", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037bfd", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c93353dacb55c5f8037bfc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (677) [503c15a8-a7e7-4778-bbb4-9a3c80c43b9a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 147.668, - "y": 17.67, - "z": -11.3300018 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c07", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c07", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (671) [96c3a138-8146-413e-956d-863d006dbed7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 141.094009, + "y": 17.67, + "z": -11.2470016 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037bff", + "Items": [ + { + "_id": "66c93353dacb55c5f8037bff", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (679) [a2053ce0-709a-4448-a04f-8e8fdaf2ee23]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 147.873, - "y": 17.67, - "z": -9.38100052 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c09", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c09", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (672) [e3b31db5-5fea-4ce0-b1d1-629a6e8ab9c4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 141.899, + "y": 17.67, + "z": -11.2389984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c01", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c01", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (681) [5af9215f-f125-4890-b47c-98dcd08a0de8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 150.799011, - "y": 17.67, - "z": -11.6339989 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c0b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c0b", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (673) [16bcdb1e-fbf3-4549-93fe-a400a54e6130]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 142.466, + "y": 17.67, + "z": -11.2099991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c03", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c03", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (685) [93600a02-20a7-4580-a9b5-6461f1d88549]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 148.567, - "y": 17.67, - "z": -7.04600143 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c0d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c0d", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (676) [d9504db4-0699-4233-82c8-126b08a6cbbe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 147.322, + "y": 17.67, + "z": -11.7470016 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c05", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c05", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (686) [15e2850f-1b5d-407e-861b-7ee0c47d3f85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 148.766, - "y": 17.67, - "z": -6.31900024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c10", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c10", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (677) [503c15a8-a7e7-4778-bbb4-9a3c80c43b9a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 147.668, + "y": 17.67, + "z": -11.3300018 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c11", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c93353dacb55c5f8037c10", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c07", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c07", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (688) [790c9272-2eca-4e0a-8862-faf55fb45ff4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 148.245, - "y": 17.67, - "z": -4.970001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c13", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c13", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (679) [a2053ce0-709a-4448-a04f-8e8fdaf2ee23]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 147.873, + "y": 17.67, + "z": -9.38100052 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c09", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c09", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (690) [2f9ff8a9-bb31-447c-a8d3-5d0dbb2d6a90]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 152.462, - "y": 17.67, - "z": 1.67000008 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c16", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c16", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (681) [5af9215f-f125-4890-b47c-98dcd08a0de8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 150.799011, + "y": 17.67, + "z": -11.6339989 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c17", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c93353dacb55c5f8037c16", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c0b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c0b", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (693) [64071b93-e909-4a41-bd8f-b44b5a4167e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 156.134, - "y": 17.67, - "z": -1.02400017 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c1a", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c1a", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (685) [93600a02-20a7-4580-a9b5-6461f1d88549]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 148.567, + "y": 17.67, + "z": -7.04600143 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c1b", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c93353dacb55c5f8037c1a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c0d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c0d", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (694) [672f8067-3c76-4084-bcc4-21d0a6ae5558]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 156.768, - "y": 17.67, - "z": -1.13800049 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c1e", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c1e", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (686) [15e2850f-1b5d-407e-861b-7ee0c47d3f85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 148.766, + "y": 17.67, + "z": -6.31900024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c1f", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c93353dacb55c5f8037c1e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c10", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c10", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c11", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c93353dacb55c5f8037c10", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (696) [599b8f6f-0a4c-4cc4-bb32-004842fab211]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 166.892, - "y": 17.67, - "z": -1.4679985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c21", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c21", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 964 + { + "Id": "Loot_street_Leo_common (688) [790c9272-2eca-4e0a-8862-faf55fb45ff4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 148.245, + "y": 17.67, + "z": -4.970001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c13", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c13", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (697) [ad4bd954-ac22-488e-9ed4-756284224788]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 167.538, - "y": 17.67, - "z": -1.52400208 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c24", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c24", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (690) [2f9ff8a9-bb31-447c-a8d3-5d0dbb2d6a90]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 152.462, + "y": 17.67, + "z": 1.67000008 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c25", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c93353dacb55c5f8037c24", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c16", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c16", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c17", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c93353dacb55c5f8037c16", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (698) [011110a1-590a-45dc-843a-162855d3b2f8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 176.655, - "y": 17.389, - "z": 12.6919994 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c27", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c27", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (693) [64071b93-e909-4a41-bd8f-b44b5a4167e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 156.134, + "y": 17.67, + "z": -1.02400017 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c1a", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c1a", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c1b", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c93353dacb55c5f8037c1a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (70) [72502024-6015-4f3e-8505-b31ad4248e00]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.185, - "y": 24.654, - "z": 59.567 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c2a", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c2a", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (694) [672f8067-3c76-4084-bcc4-21d0a6ae5558]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 156.768, + "y": 17.67, + "z": -1.13800049 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c2b", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c93353dacb55c5f8037c2a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c1e", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c1e", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c1f", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c93353dacb55c5f8037c1e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (703) [c8e6ace6-fb55-47a3-becf-d9175f6ca96e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 132.474, - "y": 29.097, - "z": 289.737 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c2e", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c2e", - "_tpl": "64acea2c03378853630da53e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (696) [599b8f6f-0a4c-4cc4-bb32-004842fab211]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 166.892, + "y": 17.67, + "z": -1.4679985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c21", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c21", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 964 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (697) [ad4bd954-ac22-488e-9ed4-756284224788]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 167.538, + "y": 17.67, + "z": -1.52400208 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c2f", - "_tpl": "59e4d3d286f774176a36250a", - "parentId": "66c93353dacb55c5f8037c2e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c24", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c24", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c25", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c93353dacb55c5f8037c24", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (71) [a8d211b3-3d96-44aa-860f-03c34fa474ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 31.46, - "y": 24.654, - "z": 58.648 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c31", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c31", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (698) [011110a1-590a-45dc-843a-162855d3b2f8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 176.655, + "y": 17.389, + "z": 12.6919994 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c27", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c27", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (710) [5f2195de-81b3-4350-a678-a9657e2e4616]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 114.380005, - "y": 33.285, - "z": 262.630981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c33", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c33", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (70) [72502024-6015-4f3e-8505-b31ad4248e00]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.185, + "y": 24.654, + "z": 59.567 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c2a", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c2a", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c2b", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c93353dacb55c5f8037c2a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (712) [7a3a423e-dece-44be-ad6d-b4ea863b7a3b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 114.083, - "y": 33.285, - "z": 270.438 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c35", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c35", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (703) [c8e6ace6-fb55-47a3-becf-d9175f6ca96e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 132.474, + "y": 29.097, + "z": 289.737 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c2e", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c2e", + "_tpl": "64acea2c03378853630da53e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c2f", + "_tpl": "59e4d3d286f774176a36250a", + "parentId": "66c93353dacb55c5f8037c2e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (714) [f869dd2e-5fb4-437b-ba91-0ddae84ab25f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 112.060005, - "y": 33.285, - "z": 269.968 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c38", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c38", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (71) [a8d211b3-3d96-44aa-860f-03c34fa474ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 31.46, + "y": 24.654, + "z": 58.648 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c31", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c31", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (710) [5f2195de-81b3-4350-a678-a9657e2e4616]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 114.380005, + "y": 33.285, + "z": 262.630981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c39", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c93353dacb55c5f8037c38", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c33", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c33", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (718) [e9ef8081-2e38-42ac-872b-0c619a5b3a93]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.195, - "y": 15.2619991, - "z": 40.4260025 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c3b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c3b", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (712) [7a3a423e-dece-44be-ad6d-b4ea863b7a3b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 114.083, + "y": 33.285, + "z": 270.438 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c35", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c35", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (72) [59121680-2ed9-48be-b1dc-feb895daa061]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 18.408, - "y": 24.654, - "z": 83.644 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c3d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c3d", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (714) [f869dd2e-5fb4-437b-ba91-0ddae84ab25f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 112.060005, + "y": 33.285, + "z": 269.968 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c38", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c38", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c39", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c93353dacb55c5f8037c38", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (722) [d1329976-f6a1-4137-bdf8-4ca8638be0b6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -29.0710011, - "y": 30.434, - "z": 88.095 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c40", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c40", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (718) [e9ef8081-2e38-42ac-872b-0c619a5b3a93]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.195, + "y": 15.2619991, + "z": 40.4260025 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c41", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c93353dacb55c5f8037c40", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c3b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c3b", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (724) [70e84cb7-e805-410f-a58f-a21e6d528584]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 116.133995, - "y": 15.257, - "z": 49.5230026 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c43", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c43", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (72) [59121680-2ed9-48be-b1dc-feb895daa061]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 18.408, + "y": 24.654, + "z": 83.644 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c3d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c3d", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (725) [f2683e5d-04b4-4927-9a88-41218faa16b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -29.276001, - "y": 30.434, - "z": 85.6609955 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c47", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c47", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (722) [d1329976-f6a1-4137-bdf8-4ca8638be0b6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -29.0710011, + "y": 30.434, + "z": 88.095 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c48", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037c47", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c40", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c40", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c41", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c93353dacb55c5f8037c40", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (724) [70e84cb7-e805-410f-a58f-a21e6d528584]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 116.133995, + "y": 15.257, + "z": 49.5230026 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c49", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037c47", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c43", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c43", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (726) [77da8b2a-c328-4bbd-917d-a6093b8d16f5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -25.4180012, - "y": 30.434, - "z": 85.384 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c4b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c4b", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (725) [f2683e5d-04b4-4927-9a88-41218faa16b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -29.276001, + "y": 30.434, + "z": 85.6609955 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c47", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c47", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c48", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037c47", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c93353dacb55c5f8037c49", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037c47", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (728) [8cdd843b-e44b-427a-a2b0-6aaba57bf9ed]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -25.398, - "y": 30.434, - "z": 74.351 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c4d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c4d", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (726) [77da8b2a-c328-4bbd-917d-a6093b8d16f5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -25.4180012, + "y": 30.434, + "z": 85.384 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c4b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c4b", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (730) [18d0018b-e3a2-446c-8ba1-52d33796e73e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 70.808, - "y": 15.073, - "z": 65.905 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c4f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c4f", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (728) [8cdd843b-e44b-427a-a2b0-6aaba57bf9ed]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -25.398, + "y": 30.434, + "z": 74.351 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c4d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c4d", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (731) [7ccf44eb-8392-4f03-86e1-3654fa72b8f5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.0069, - "y": 30.564, - "z": 62.941803 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c51", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c51", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (730) [18d0018b-e3a2-446c-8ba1-52d33796e73e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 70.808, + "y": 15.073, + "z": 65.905 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c4f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c4f", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (733) [feee682f-4616-4419-99f9-bfaaac5669f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 71.891, - "y": 14.7389994, - "z": 65.139 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c53", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c53", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (731) [7ccf44eb-8392-4f03-86e1-3654fa72b8f5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.0069, + "y": 30.564, + "z": 62.941803 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c51", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c51", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (734) [696f3f81-7422-446d-b1e1-808d9fb76a72]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -26.391, - "y": 30.564, - "z": 62.063 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c55", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c55", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (733) [feee682f-4616-4419-99f9-bfaaac5669f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 71.891, + "y": 14.7389994, + "z": 65.139 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c53", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c53", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (736) [3308fe67-6d77-4edc-9c8f-f946d3e63729]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 70.919, - "y": 14.7389994, - "z": 61.95 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c58", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c58", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (734) [696f3f81-7422-446d-b1e1-808d9fb76a72]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -26.391, + "y": 30.564, + "z": 62.063 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c59", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c93353dacb55c5f8037c58", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c55", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c55", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (736) [48e68905-d904-4936-a4d9-8e037be4231b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -37.1490021, - "y": 25.153, - "z": 44.04 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c5b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c5b", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (736) [3308fe67-6d77-4edc-9c8f-f946d3e63729]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 70.919, + "y": 14.7389994, + "z": 61.95 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c58", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c58", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c59", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c93353dacb55c5f8037c58", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (737) [993b5aca-1b37-40dc-a145-b273ff56dd82]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -38.299, - "y": 25.153, - "z": 43.991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c5e", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c5e", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (736) [48e68905-d904-4936-a4d9-8e037be4231b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -37.1490021, + "y": 25.153, + "z": 44.04 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c5f", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c93353dacb55c5f8037c5e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c5b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c5b", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (739) [588c4034-91ab-4e12-a605-0fb19aa39271]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -47.52, - "y": 25.153, - "z": 44.2 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c62", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c62", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (737) [993b5aca-1b37-40dc-a145-b273ff56dd82]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -38.299, + "y": 25.153, + "z": 43.991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c63", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c93353dacb55c5f8037c62", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c5e", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c5e", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c5f", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c93353dacb55c5f8037c5e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (74) [dd64db8f-5489-4943-be35-3c769d88a59e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.753, - "y": 24.654, - "z": 84.571 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c66", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c66", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (739) [588c4034-91ab-4e12-a605-0fb19aa39271]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -47.52, + "y": 25.153, + "z": 44.2 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c67", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c93353dacb55c5f8037c66", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c62", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c62", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c63", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c93353dacb55c5f8037c62", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (740) [20394bdb-406f-4853-bf3e-0ea72dac5077]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -48.38, - "y": 25.153, - "z": 44.12 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c6a", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c6a", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (74) [dd64db8f-5489-4943-be35-3c769d88a59e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.753, + "y": 24.654, + "z": 84.571 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c66", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c66", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c67", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c93353dacb55c5f8037c66", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (740) [20394bdb-406f-4853-bf3e-0ea72dac5077]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -48.38, + "y": 25.153, + "z": 44.12 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c6b", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c93353dacb55c5f8037c6a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c6a", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c6a", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c6b", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c93353dacb55c5f8037c6a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (741) [5fdf7fd8-3928-46b2-8830-5e4c46afc8be]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.7309952, - "y": 14.6399994, - "z": 96.361 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c6d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c6d", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 991 + { + "Id": "Loot_street_Leo_common (741) [5fdf7fd8-3928-46b2-8830-5e4c46afc8be]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.7309952, + "y": 14.6399994, + "z": 96.361 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c6d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c6d", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 991 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (743) [9a279440-c5aa-41c3-ba0f-c4e43be66eaf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 90.698, - "y": 14.6399994, - "z": 93.114 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c6f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c6f", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (743) [9a279440-c5aa-41c3-ba0f-c4e43be66eaf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 90.698, + "y": 14.6399994, + "z": 93.114 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c6f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c6f", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (746) [3b7f311c-0643-4e34-9524-2cc811a35f70]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 88.321, - "y": 14.481, - "z": 108.559006 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c71", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c71", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (746) [3b7f311c-0643-4e34-9524-2cc811a35f70]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 88.321, + "y": 14.481, + "z": 108.559006 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c71", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c71", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (748) [a7c97c8d-38cf-4274-a0d9-57d44f95eb31]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 82.17, - "y": 15.3399992, - "z": 120.662994 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c73", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c73", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (748) [a7c97c8d-38cf-4274-a0d9-57d44f95eb31]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 82.17, + "y": 15.3399992, + "z": 120.662994 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c73", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c73", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (749) [a39c4abe-cd94-472d-a62b-93ba8e6756b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 81.45, - "y": 15.3399992, - "z": 120.365005 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c75", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c75", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (749) [a39c4abe-cd94-472d-a62b-93ba8e6756b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 81.45, + "y": 15.3399992, + "z": 120.365005 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c75", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c75", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (75) [d49b2d1f-0bcf-4644-a41e-5864215a93ed]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 16.334, - "y": 24.654, - "z": 85.309 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c77", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c77", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (75) [d49b2d1f-0bcf-4644-a41e-5864215a93ed]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 16.334, + "y": 24.654, + "z": 85.309 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c77", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c77", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (754) [c35c9f79-6a7d-4671-bd4f-e76ece639f94]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 70.6759949, - "y": 14.542, - "z": 152.781 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c79", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c79", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (754) [c35c9f79-6a7d-4671-bd4f-e76ece639f94]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 70.6759949, + "y": 14.542, + "z": 152.781 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c79", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c79", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (79) [ffaa7379-2c9a-40f0-a0dc-5527aead5de6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 9.593999, - "y": 24.762, - "z": 74.11 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c7b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c7b", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (79) [ffaa7379-2c9a-40f0-a0dc-5527aead5de6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 9.593999, + "y": 24.762, + "z": 74.11 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c7b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c7b", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (83) [3bea6b32-915e-48ac-9290-1115253f5b88]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 12.007, - "y": 24.729, - "z": 59.547 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c7e", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c7e", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (83) [3bea6b32-915e-48ac-9290-1115253f5b88]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 12.007, + "y": 24.729, + "z": 59.547 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c7f", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c93353dacb55c5f8037c7e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c7e", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c7e", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c7f", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c93353dacb55c5f8037c7e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (84) [52378d78-dcf1-4f23-8f36-f4a15b0038ac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 13.812, - "y": 24.893, - "z": 57.763 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c81", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c81", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (84) [52378d78-dcf1-4f23-8f36-f4a15b0038ac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 13.812, + "y": 24.893, + "z": 57.763 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c81", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c81", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (9) [e96ae36f-d843-48fc-8745-b09f2bcbf10e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.716, - "y": 23.768, - "z": 15.252 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c85", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c85", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (9) [e96ae36f-d843-48fc-8745-b09f2bcbf10e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.716, + "y": 23.768, + "z": 15.252 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c86", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037c85", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c85", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c85", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c86", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037c85", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c93353dacb55c5f8037c87", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c93353dacb55c5f8037c85", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (91) [1affec3a-42ce-4c78-a873-de6622fd33b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -5.047, + "y": 24.663, + "z": 84.915 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c87", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c93353dacb55c5f8037c85", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c8a", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c8a", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c93353dacb55c5f8037c8b", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c93353dacb55c5f8037c8a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (91) [1affec3a-42ce-4c78-a873-de6622fd33b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -5.047, - "y": 24.663, - "z": 84.915 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c8a", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c8a", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (96) [a272e3d3-c132-4868-a7d2-1c7d9a2665f5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -0.601, + "y": 24.987, + "z": 94.592 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c93353dacb55c5f8037c8b", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c93353dacb55c5f8037c8a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c8d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c8d", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (96) [a272e3d3-c132-4868-a7d2-1c7d9a2665f5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -0.601, - "y": 24.987, - "z": 94.592 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c8d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c8d", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "LootGarbage (35) [13040763-651a-4335-9c8e-e5ec2fdddecd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 40.1242561, - "y": 23.5128574, - "z": 329.95047 - }, - "Rotation": { - "x": -1.08847689e-5, - "y": 337.314331, - "z": -2.170455e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c8f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c8f", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (35) [13040763-651a-4335-9c8e-e5ec2fdddecd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 40.1242561, + "y": 23.5128574, + "z": 329.95047 + }, + "Rotation": { + "x": -1.08847689e-5, + "y": 337.314331, + "z": -2.170455e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c8f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c8f", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (35) [2ba7e68c-0c4b-4c54-96b5-fc6e6fd0981c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 86.934, - "y": 23.526001, - "z": 202.08 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c91", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c91", - "_tpl": "5751a25924597722c463c472", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "LootGarbage (35) [e160c1a8-c0b2-43f0-a434-76205c724b9e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 85.66975, - "y": 14.8319988, - "z": 85.9805756 - }, - "Rotation": { - "x": -2.009239e-5, - "y": 345.0001, - "z": 4.36748e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c93", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c93", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "LootGarbage (37) [4a5881d9-6876-49fd-a037-39e67541b636]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 121.209953, - "y": 23.5446148, - "z": 219.047577 - }, - "Rotation": { - "x": 2.331682e-5, - "y": 144.795288, - "z": -3.08696917e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c95", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c95", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (35) [2ba7e68c-0c4b-4c54-96b5-fc6e6fd0981c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 86.934, + "y": 23.526001, + "z": 202.08 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c91", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c91", + "_tpl": "5751a25924597722c463c472", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (37) [7574b477-f334-4d82-a3d6-2f5928ee1f7b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 212.528, - "y": 16.9320011, - "z": 100.315 - }, - "Rotation": { - "x": -5.33654429e-7, - "y": 146.448883, - "z": 1.60871423e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c97", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c97", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootGarbage (35) [e160c1a8-c0b2-43f0-a434-76205c724b9e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 85.66975, + "y": 14.8319988, + "z": 85.9805756 + }, + "Rotation": { + "x": -2.009239e-5, + "y": 345.0001, + "z": 4.36748e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c93", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c93", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies_Leo_Common (12) [f0bb8ae7-4ceb-4b3c-b92f-a878aca7a3ed]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 152.413, - "y": 23.488, - "z": -83.784 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c99", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c99", - "_tpl": "6389c6c7dbfd5e4b95197e68", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (37) [4a5881d9-6876-49fd-a037-39e67541b636]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 121.209953, + "y": 23.5446148, + "z": 219.047577 + }, + "Rotation": { + "x": 2.331682e-5, + "y": 144.795288, + "z": -3.08696917e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c95", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c95", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies_Leo_Rare (1) [353115b8-e889-4645-a5c3-84dffa11830b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 153.902, - "y": 23.867, - "z": -83.768 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c9b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c9b", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (37) [7574b477-f334-4d82-a3d6-2f5928ee1f7b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 212.528, + "y": 16.9320011, + "z": 100.315 + }, + "Rotation": { + "x": -5.33654429e-7, + "y": 146.448883, + "z": 1.60871423e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c97", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c97", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all_Leo_Rare (24) [f1fd170e-60ca-4801-b790-11fd9e2a487d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -12.6830006, - "y": 30.942, - "z": 66.798996 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c9d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c9d", - "_tpl": "590c678286f77426c9660122", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all&suplies_Leo_Common (12) [f0bb8ae7-4ceb-4b3c-b92f-a878aca7a3ed]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 152.413, + "y": 23.488, + "z": -83.784 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c99", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c99", + "_tpl": "6389c6c7dbfd5e4b95197e68", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all_Leo_Rare (26) [b498f32c-1008-4154-8394-e1fefb9d9f33]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -12.541, - "y": 30.942, - "z": 67.2 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037c9f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037c9f", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all&suplies_Leo_Rare (1) [353115b8-e889-4645-a5c3-84dffa11830b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 153.902, + "y": 23.867, + "z": -83.768 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c9b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c9b", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Money_evro_dollar_Leo_Rare (23) [304a8eea-2720-4379-9f68-76bd0bf4338b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 55.9224, - "y": 23.832, - "z": 170.3145 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ca1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ca1", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 92 + { + "Id": "Medical_all_Leo_Rare (24) [f1fd170e-60ca-4801-b790-11fd9e2a487d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -12.6830006, + "y": 30.942, + "z": 66.798996 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c9d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c9d", + "_tpl": "590c678286f77426c9660122", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (115) [60a86f2e-7ebc-479f-b41f-58a672984f6a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 104.253006, - "y": 23.639, - "z": 24.074 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ca3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ca3", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all_Leo_Rare (26) [b498f32c-1008-4154-8394-e1fefb9d9f33]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -12.541, + "y": 30.942, + "z": 67.2 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037c9f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037c9f", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (116) [5be4362d-2fec-43c1-8728-962913496e3e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 104.358, - "y": 23.639, - "z": 24.885 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ca5", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ca5", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Money_evro_dollar_Leo_Rare (23) [304a8eea-2720-4379-9f68-76bd0bf4338b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 55.9224, + "y": 23.832, + "z": 170.3145 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ca1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ca1", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 92 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (122) [5014f01b-3dcd-4c4a-8385-9fc47f9dc112]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 172.779, - "y": 18.3660011, - "z": 1.93300056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ca7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ca7", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (115) [60a86f2e-7ebc-479f-b41f-58a672984f6a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 104.253006, + "y": 23.639, + "z": 24.074 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ca3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ca3", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (123) [550bf26b-9a04-4aea-afaa-2c6e723529f2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 171.865, - "y": 18.3660011, - "z": 2.76199913 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ca9", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ca9", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (116) [5be4362d-2fec-43c1-8728-962913496e3e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 104.358, + "y": 23.639, + "z": 24.885 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ca5", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ca5", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (125) [f3d575ac-2e14-4621-83d8-7043a50291c8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 173.06601, - "y": 17.934, - "z": -9.740002 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cab", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cab", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (122) [5014f01b-3dcd-4c4a-8385-9fc47f9dc112]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 172.779, + "y": 18.3660011, + "z": 1.93300056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ca7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ca7", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (126) [fe9a46f2-8bfc-4d1a-abe1-363324756d66]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 175.718, - "y": 17.934, - "z": -9.666 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cad", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cad", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (123) [550bf26b-9a04-4aea-afaa-2c6e723529f2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 171.865, + "y": 18.3660011, + "z": 2.76199913 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ca9", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ca9", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (128) [baab447d-d738-4f18-af7a-36bf1d72c03e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 178.821, - "y": 17.925, - "z": -9.61199951 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037caf", - "Items": [ - { - "_id": "66c93353dacb55c5f8037caf", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (125) [f3d575ac-2e14-4621-83d8-7043a50291c8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 173.06601, + "y": 17.934, + "z": -9.740002 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cab", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cab", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (132) [97c323dc-a9a4-47a0-a79f-6e1ad401252d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 185.63, - "y": 17.925, - "z": -6.58100128 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cb1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cb1", - "_tpl": "62a0a043cf4a99369e2624a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (126) [fe9a46f2-8bfc-4d1a-abe1-363324756d66]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 175.718, + "y": 17.934, + "z": -9.666 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cad", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cad", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (133) [3115b26f-1a40-47ee-bf52-2a4f6b1fdb57]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -12.0580006, - "y": 30.826, - "z": 53.7590027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cb3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cb3", - "_tpl": "59e361e886f774176c10a2a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (128) [baab447d-d738-4f18-af7a-36bf1d72c03e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 178.821, + "y": 17.925, + "z": -9.61199951 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037caf", + "Items": [ + { + "_id": "66c93353dacb55c5f8037caf", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (133) [9f409771-47a4-464a-9a87-cabab26c26e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 196.444992, - "y": 17.575, - "z": 137.196 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cb5", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cb5", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (132) [97c323dc-a9a4-47a0-a79f-6e1ad401252d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 185.63, + "y": 17.925, + "z": -6.58100128 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cb1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cb1", + "_tpl": "62a0a043cf4a99369e2624a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (135) [6c42fa62-449d-4ea2-8e6f-3dca6f7bd868]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -11.453001, - "y": 30.826, - "z": 54.392 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cb7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cb7", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (133) [3115b26f-1a40-47ee-bf52-2a4f6b1fdb57]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -12.0580006, + "y": 30.826, + "z": 53.7590027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cb3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cb3", + "_tpl": "59e361e886f774176c10a2a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (135) [8844f2a0-a8a3-4e1f-85a0-f9b431071f6f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 192.443985, - "y": 17.421, - "z": 134.551987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cb9", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cb9", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (133) [9f409771-47a4-464a-9a87-cabab26c26e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 196.444992, + "y": 17.575, + "z": 137.196 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cb5", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cb5", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (135) [ceef219b-b099-458c-b072-93fa917c7b94]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 116.042, - "y": 24.72, - "z": 288.158 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cbb", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cbb", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (135) [6c42fa62-449d-4ea2-8e6f-3dca6f7bd868]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -11.453001, + "y": 30.826, + "z": 54.392 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cb7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cb7", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (137) [4105d936-36f2-4b8e-825e-1c4763fac5e8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 192.299, - "y": 17.421, - "z": 132.122 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cbd", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cbd", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (135) [8844f2a0-a8a3-4e1f-85a0-f9b431071f6f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 192.443985, + "y": 17.421, + "z": 134.551987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cb9", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cb9", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (137) [ddaf2c92-e725-4cb9-9be8-063622d7dbcd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -8.484001, - "y": 30.826, - "z": 52.947998 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cbf", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cbf", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (135) [ceef219b-b099-458c-b072-93fa917c7b94]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 116.042, + "y": 24.72, + "z": 288.158 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cbb", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cbb", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (139) [f3206fdc-60db-4f66-a366-13f96aa8e7e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.825989, - "y": 17.421, - "z": 132.204 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cc1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cc1", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (137) [4105d936-36f2-4b8e-825e-1c4763fac5e8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 192.299, + "y": 17.421, + "z": 132.122 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cbd", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cbd", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (140) [e4aee5a4-dfb9-40e6-99e4-20414db81dad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.717, - "y": 17.421, - "z": 133.123 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cc3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cc3", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (137) [ddaf2c92-e725-4cb9-9be8-063622d7dbcd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -8.484001, + "y": 30.826, + "z": 52.947998 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cbf", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cbf", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (140) [ec34b304-be41-45b9-8d47-b436955370ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -6.474001, - "y": 31.0789986, - "z": 57.7180023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cc5", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cc5", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (139) [f3206fdc-60db-4f66-a366-13f96aa8e7e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.825989, + "y": 17.421, + "z": 132.204 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cc1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cc1", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (141) [2721dbca-8422-477b-a88a-01e2cda1de91]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 116.084, - "y": 24.765, - "z": 269.708984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cc7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cc7", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (140) [e4aee5a4-dfb9-40e6-99e4-20414db81dad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.717, + "y": 17.421, + "z": 133.123 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cc3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cc3", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (142) [3bce3aa7-546d-4915-95e2-bebdf0b0c8db]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 106.549, - "y": 24.385, - "z": 286.406982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cc9", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cc9", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (140) [ec34b304-be41-45b9-8d47-b436955370ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -6.474001, + "y": 31.0789986, + "z": 57.7180023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cc5", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cc5", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (145) [5bbc80b7-daa0-4593-8291-d34a8315f3de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 102.840004, - "y": 24.743, - "z": 290.664 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ccb", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ccb", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (141) [2721dbca-8422-477b-a88a-01e2cda1de91]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 116.084, + "y": 24.765, + "z": 269.708984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cc7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cc7", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (146) [3f9096f9-3166-42fb-87f2-0d491995a923]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -19.537, - "y": 30.827, - "z": 53.887 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ccd", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ccd", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (142) [3bce3aa7-546d-4915-95e2-bebdf0b0c8db]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 106.549, + "y": 24.385, + "z": 286.406982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cc9", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cc9", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (148) [ce4afa04-6bfd-4829-bf2a-276e52f37b93]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -19.4460011, - "y": 30.827, - "z": 47.225 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ccf", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ccf", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (145) [5bbc80b7-daa0-4593-8291-d34a8315f3de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 102.840004, + "y": 24.743, + "z": 290.664 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ccb", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ccb", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (148) [f54b3d24-fdf8-48fe-9d16-364af53e9af1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 124.723, - "y": 24.362999, - "z": 297.774 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cd1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cd1", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (146) [3f9096f9-3166-42fb-87f2-0d491995a923]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -19.537, + "y": 30.827, + "z": 53.887 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ccd", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ccd", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (149) [0d68ceb9-9f34-49ba-be99-3f4cdf42155f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.15, - "y": 24.362999, - "z": 294.491 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cd3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cd3", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (148) [ce4afa04-6bfd-4829-bf2a-276e52f37b93]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -19.4460011, + "y": 30.827, + "z": 47.225 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ccf", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ccf", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (149) [59bdc003-ec54-4b6b-ba4c-839eddd10a43]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -18.578001, - "y": 30.827, - "z": 47.918 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] + }, + { + "Id": "office_food_and_staff_Leo_common (148) [f54b3d24-fdf8-48fe-9d16-364af53e9af1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 124.723, + "y": 24.362999, + "z": 297.774 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cd1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cd1", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cd5", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cd5", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (149) [0d68ceb9-9f34-49ba-be99-3f4cdf42155f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.15, + "y": 24.362999, + "z": 294.491 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cd3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cd3", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (153) [662764f5-30c9-4888-a626-2ab33d144cce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -5.146, - "y": 30.942, - "z": 70.193 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cd7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cd7", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (149) [59bdc003-ec54-4b6b-ba4c-839eddd10a43]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -18.578001, + "y": 30.827, + "z": 47.918 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cd5", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cd5", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (153) [af09cdd7-1d4c-4d40-942e-b486df34b242]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 121.532005, - "y": 24.605999, - "z": 292.85 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cd9", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cd9", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (153) [662764f5-30c9-4888-a626-2ab33d144cce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -5.146, + "y": 30.942, + "z": 70.193 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cd7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cd7", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (154) [ee9aa8fb-1d01-421a-a4f2-e7dd34611d84]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 121.176, - "y": 24.605999, - "z": 293.462982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cdb", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cdb", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (153) [af09cdd7-1d4c-4d40-942e-b486df34b242]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 121.532005, + "y": 24.605999, + "z": 292.85 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cd9", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cd9", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (157) [41d8046e-c38c-4850-9273-8da15532f5e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -13.137001, - "y": 30.942, - "z": 78.362 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cdd", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cdd", - "_tpl": "59e358a886f7741776641ac3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (154) [ee9aa8fb-1d01-421a-a4f2-e7dd34611d84]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 121.176, + "y": 24.605999, + "z": 293.462982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cdb", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cdb", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (158) [b7acb367-3cc6-45b4-a9d2-cac7fab75215]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 123.943, - "y": 29.328, - "z": 287.632 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cdf", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cdf", - "_tpl": "65815f0e647e3d7246384e14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (157) [41d8046e-c38c-4850-9273-8da15532f5e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -13.137001, + "y": 30.942, + "z": 78.362 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cdd", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cdd", + "_tpl": "59e358a886f7741776641ac3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (159) [15f31d63-04a1-4468-a39c-4d79fe94cce1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -17.4760017, - "y": 30.942, - "z": 74.022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ce1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ce1", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (158) [b7acb367-3cc6-45b4-a9d2-cac7fab75215]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 123.943, + "y": 29.328, + "z": 287.632 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cdf", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cdf", + "_tpl": "65815f0e647e3d7246384e14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (162) [7d30c5a0-b063-4ab7-94d5-aec0f29a5bb2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -22.3900013, - "y": 30.643, - "z": 76.43 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ce3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ce3", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (159) [15f31d63-04a1-4468-a39c-4d79fe94cce1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -17.4760017, + "y": 30.942, + "z": 74.022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ce1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ce1", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (164) [1a597351-bfc2-4529-8eb7-575a60a32c64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.099, - "y": 31.13, - "z": 85.634 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ce5", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ce5", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (162) [7d30c5a0-b063-4ab7-94d5-aec0f29a5bb2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -22.3900013, + "y": 30.643, + "z": 76.43 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ce3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ce3", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (166) [7aaec487-a5a2-4e35-873f-828c47f9c262]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -24.431, - "y": 30.734, - "z": 97.487 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ce7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ce7", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (164) [1a597351-bfc2-4529-8eb7-575a60a32c64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.099, + "y": 31.13, + "z": 85.634 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ce5", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ce5", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (169) [170e154d-9399-45dd-872a-b00f9031b6c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.482, - "y": 29.04, - "z": 296.014984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ce9", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ce9", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (166) [7aaec487-a5a2-4e35-873f-828c47f9c262]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -24.431, + "y": 30.734, + "z": 97.487 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ce7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ce7", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (171) [bd82d8b9-3577-4c3b-b28c-2d51d4972151]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 124.252, - "y": 29.097, - "z": 294.349 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ceb", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ceb", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (169) [170e154d-9399-45dd-872a-b00f9031b6c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.482, + "y": 29.04, + "z": 296.014984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ce9", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ce9", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (172) [9073d1f7-7f14-4983-88a3-9211b6bc893b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 128.841, - "y": 29.097, - "z": 282.58 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037ced", - "Items": [ - { - "_id": "66c93353dacb55c5f8037ced", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (171) [bd82d8b9-3577-4c3b-b28c-2d51d4972151]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 124.252, + "y": 29.097, + "z": 294.349 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ceb", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ceb", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (173) [433a0bf1-e6ef-4584-bca0-e042077d7797]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.276, - "y": 29.097, - "z": 282.600983 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cef", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cef", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (172) [9073d1f7-7f14-4983-88a3-9211b6bc893b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 128.841, + "y": 29.097, + "z": 282.58 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037ced", + "Items": [ + { + "_id": "66c93353dacb55c5f8037ced", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (178) [276f099a-e217-44a3-9afd-8402f096cec3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 106.057, - "y": 33.999, - "z": 266.607 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cf1", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cf1", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (173) [433a0bf1-e6ef-4584-bca0-e042077d7797]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.276, + "y": 29.097, + "z": 282.600983 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cef", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cef", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (180) [dc50cbd3-d4e5-4c87-89ff-ec156ae99d95]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -52.575, - "y": 30.838, - "z": 94.481 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cf3", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cf3", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (178) [276f099a-e217-44a3-9afd-8402f096cec3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 106.057, + "y": 33.999, + "z": 266.607 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cf1", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cf1", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (181) [ec0faf66-e59e-4767-922b-696ccb0d634f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 114.985, - "y": 24.416, - "z": 197.033 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cf5", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cf5", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (180) [dc50cbd3-d4e5-4c87-89ff-ec156ae99d95]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -52.575, + "y": 30.838, + "z": 94.481 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cf3", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cf3", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (182) [0890a2bb-7e57-42b0-b4d5-5d16de47b999]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 105.717, - "y": 33.999, - "z": 260.175 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cf7", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cf7", - "_tpl": "59e358a886f7741776641ac3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (181) [ec0faf66-e59e-4767-922b-696ccb0d634f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 114.985, + "y": 24.416, + "z": 197.033 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cf5", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cf5", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (183) [927e8a57-8289-4b61-8a14-e6cc2acf5096]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -37.6280022, - "y": 31.126, - "z": 66.543 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cf9", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cf9", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (182) [0890a2bb-7e57-42b0-b4d5-5d16de47b999]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 105.717, + "y": 33.999, + "z": 260.175 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cf7", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cf7", + "_tpl": "59e358a886f7741776641ac3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (184) [2f289fb3-23b2-4c9c-997b-24ed1115afce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 106.435005, - "y": 33.999, - "z": 260.886 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cfb", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cfb", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (183) [927e8a57-8289-4b61-8a14-e6cc2acf5096]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -37.6280022, + "y": 31.126, + "z": 66.543 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cf9", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cf9", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (185) [85dbb5c9-c9c9-45dd-8344-b86ebc2231e7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -45.3290024, - "y": 30.527, - "z": 66.61 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cfd", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cfd", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (184) [2f289fb3-23b2-4c9c-997b-24ed1115afce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 106.435005, + "y": 33.999, + "z": 260.886 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cfb", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cfb", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (186) [1dfca5c7-8275-44fd-b896-868b0fb1d2c1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 109.306, - "y": 33.999, - "z": 261.809 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037cff", - "Items": [ - { - "_id": "66c93353dacb55c5f8037cff", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (185) [85dbb5c9-c9c9-45dd-8344-b86ebc2231e7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -45.3290024, + "y": 30.527, + "z": 66.61 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cfd", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cfd", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (187) [4e40a0a3-4865-41e1-9ca1-8adcc50fd074]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 110.205, - "y": 33.999, - "z": 261.057 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d01", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d01", - "_tpl": "59e358a886f7741776641ac3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (186) [1dfca5c7-8275-44fd-b896-868b0fb1d2c1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 109.306, + "y": 33.999, + "z": 261.809 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037cff", + "Items": [ + { + "_id": "66c93353dacb55c5f8037cff", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (187) [806f455d-7c17-40bb-9c43-f157137dd933]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 120.885, - "y": 24.2799988, - "z": 193.124008 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d03", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d03", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (187) [4e40a0a3-4865-41e1-9ca1-8adcc50fd074]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 110.205, + "y": 33.999, + "z": 261.057 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d01", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d01", + "_tpl": "59e358a886f7741776641ac3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (187) [da0e6f82-b5f7-40d7-8be0-c612c947baa1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -28.2270012, - "y": 30.527, - "z": 73.8269958 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d05", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d05", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (187) [806f455d-7c17-40bb-9c43-f157137dd933]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 120.885, + "y": 24.2799988, + "z": 193.124008 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d03", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d03", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (188) [b4438a1c-4ae7-4e28-8c06-87119784d60b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 113.617004, - "y": 33.999, - "z": 261.538 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d07", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d07", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (187) [da0e6f82-b5f7-40d7-8be0-c612c947baa1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -28.2270012, + "y": 30.527, + "z": 73.8269958 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d05", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d05", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (189) [af4829c1-7195-4b9e-a13e-34ce029a1ace]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -28.7340012, - "y": 25.385, - "z": 48.767 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d09", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d09", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (188) [b4438a1c-4ae7-4e28-8c06-87119784d60b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 113.617004, + "y": 33.999, + "z": 261.538 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d07", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d07", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (190) [952b3296-ecb7-4ad0-9433-7026b438f8d3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.183, - "y": 24.2799988, - "z": 189.49 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d0b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d0b", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (189) [af4829c1-7195-4b9e-a13e-34ce029a1ace]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -28.7340012, + "y": 25.385, + "z": 48.767 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d09", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d09", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (190) [d184b918-c2d0-4460-a107-69fce9bdc3cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -30.627, - "y": 25.302, - "z": 33.9409981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d0d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d0d", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (190) [952b3296-ecb7-4ad0-9433-7026b438f8d3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.183, + "y": 24.2799988, + "z": 189.49 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d0b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d0b", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (190) [d99e41ab-b874-4828-bcd8-df1eb93f20b9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 109.636, - "y": 33.999, - "z": 273.527985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d0f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d0f", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (190) [d184b918-c2d0-4460-a107-69fce9bdc3cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -30.627, + "y": 25.302, + "z": 33.9409981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d0d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d0d", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (191) [2a880eab-4aa8-4ba0-b002-912a202881c3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -30.627, - "y": 25.302, - "z": 32.648 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d11", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d11", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (190) [d99e41ab-b874-4828-bcd8-df1eb93f20b9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 109.636, + "y": 33.999, + "z": 273.527985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d0f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d0f", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (192) [1326552b-8420-49fb-a522-9a347c9c947f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 120.946, - "y": 24.2799988, - "z": 186.685 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d13", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d13", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (191) [2a880eab-4aa8-4ba0-b002-912a202881c3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -30.627, + "y": 25.302, + "z": 32.648 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d11", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d11", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (192) [500b3b1a-4ab7-4aa9-923f-ea57001516b2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 105.855, - "y": 33.828, - "z": 282.348 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d15", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d15", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (192) [1326552b-8420-49fb-a522-9a347c9c947f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 120.946, + "y": 24.2799988, + "z": 186.685 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d13", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d13", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (194) [8e70f5b2-d087-4aee-9e30-a2e5b888ebd7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -30.8800011, - "y": 25.124, - "z": 29.534 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d17", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d17", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (192) [500b3b1a-4ab7-4aa9-923f-ea57001516b2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 105.855, + "y": 33.828, + "z": 282.348 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d15", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d15", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (194) [d722694f-55a6-4e1c-a341-961fdfb86f61]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 121.106, - "y": 24.2799988, - "z": 184.711 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d19", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d19", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (194) [8e70f5b2-d087-4aee-9e30-a2e5b888ebd7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -30.8800011, + "y": 25.124, + "z": 29.534 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d17", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d17", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (199) [ceefa711-497d-4d0e-b39f-7510aaaeccdd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 129.392, - "y": 24.187, - "z": 195.387009 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d1b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d1b", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (194) [d722694f-55a6-4e1c-a341-961fdfb86f61]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 121.106, + "y": 24.2799988, + "z": 184.711 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d19", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d19", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (200) [80681459-2d00-4993-9b9c-860ef0ab9468]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 128.962, - "y": 24.187, - "z": 194.64 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d1d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d1d", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (199) [ceefa711-497d-4d0e-b39f-7510aaaeccdd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 129.392, + "y": 24.187, + "z": 195.387009 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d1b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d1b", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (204) [d3eedae6-aba7-490f-92cc-d329067adc90]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 129.381, - "y": 24.187, - "z": 187.578 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d1f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d1f", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (200) [80681459-2d00-4993-9b9c-860ef0ab9468]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 128.962, + "y": 24.187, + "z": 194.64 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d1d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d1d", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (205) [f7cfca7e-59e6-4b6a-8b10-b5abc686992b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 102.654, - "y": 34.002, - "z": 278.645 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d21", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d21", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (204) [d3eedae6-aba7-490f-92cc-d329067adc90]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 129.381, + "y": 24.187, + "z": 187.578 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d1f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d1f", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (208) [65963c18-78c0-4d36-88fe-bc14bd194a16]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 104.802, - "y": 34.002, - "z": 274.393982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d23", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d23", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (205) [f7cfca7e-59e6-4b6a-8b10-b5abc686992b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 102.654, + "y": 34.002, + "z": 278.645 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d21", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d21", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (208) [71da2690-9642-408f-8a1f-44c7c588536b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.11, - "y": 24.488, - "z": 152.054 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d25", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d25", - "_tpl": "577e1c9d2459773cd707c525", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (208) [65963c18-78c0-4d36-88fe-bc14bd194a16]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 104.802, + "y": 34.002, + "z": 274.393982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d23", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d23", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (209) [d00eddd7-97ad-477f-bafb-e5d35f00a8a7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 103.974, - "y": 34.002, - "z": 271.557983 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d27", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d27", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (208) [71da2690-9642-408f-8a1f-44c7c588536b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.11, + "y": 24.488, + "z": 152.054 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d25", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d25", + "_tpl": "577e1c9d2459773cd707c525", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (210) [e537baf6-a61c-42f2-af67-793f05ed8dc2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 103.679, - "y": 34.002, - "z": 269.731 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d29", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d29", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (209) [d00eddd7-97ad-477f-bafb-e5d35f00a8a7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 103.974, + "y": 34.002, + "z": 271.557983 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d27", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d27", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (213) [c85a592d-a8cd-46b4-85c9-415cfdd2e19c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 108.591, - "y": 34.002, - "z": 273.048981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d2b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d2b", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (210) [e537baf6-a61c-42f2-af67-793f05ed8dc2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 103.679, + "y": 34.002, + "z": 269.731 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d29", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d29", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (214) [b6033b4e-e199-484e-88ff-81e9bf480839]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 108.272, - "y": 34.002, - "z": 274.326 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d2d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d2d", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (213) [c85a592d-a8cd-46b4-85c9-415cfdd2e19c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 108.591, + "y": 34.002, + "z": 273.048981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d2b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d2b", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (217) [fc234ffc-c8af-4f4c-b7ed-028c9409b450]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 54.562, - "y": 24.117, - "z": 149.715 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d2f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d2f", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (214) [b6033b4e-e199-484e-88ff-81e9bf480839]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 108.272, + "y": 34.002, + "z": 274.326 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d2d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d2d", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (218) [47fefd7a-2781-44f0-98e9-2917d432cd3b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 115.835, - "y": 33.816, - "z": 272.695984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d31", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d31", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (217) [fc234ffc-c8af-4f4c-b7ed-028c9409b450]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 54.562, + "y": 24.117, + "z": 149.715 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d2f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d2f", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (229) [e1a66ae6-96ad-4ad8-a306-60b467ef274f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 60.455, - "y": 32.021, - "z": 136.169 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d33", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d33", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (218) [47fefd7a-2781-44f0-98e9-2917d432cd3b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 115.835, + "y": 33.816, + "z": 272.695984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d31", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d31", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (231) [a920f6d2-56f4-4458-a131-f2bc11657a78]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.4229965, - "y": 32.021, - "z": 137.01001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d35", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d35", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (229) [e1a66ae6-96ad-4ad8-a306-60b467ef274f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 60.455, + "y": 32.021, + "z": 136.169 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d33", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d33", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (237) [4599ddad-61e3-4b81-b680-7d23f329b785]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.667, - "y": 32.021, - "z": 147.036011 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d37", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d37", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (231) [a920f6d2-56f4-4458-a131-f2bc11657a78]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.4229965, + "y": 32.021, + "z": 137.01001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d35", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d35", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (243) [103b97a7-fe45-4ebf-898b-37b018db0a70]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 60.038002, - "y": 31.962, - "z": 139.393 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d39", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d39", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (237) [4599ddad-61e3-4b81-b680-7d23f329b785]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.667, + "y": 32.021, + "z": 147.036011 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d37", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d37", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (245) [f69f8a6f-0d36-4b25-99c6-328b50d36786]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -43.403, - "y": 25.025, - "z": 22.121 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d3b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d3b", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (243) [103b97a7-fe45-4ebf-898b-37b018db0a70]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 60.038002, + "y": 31.962, + "z": 139.393 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d39", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d39", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (51) [99c481f6-dc92-450a-ab40-aaed8e7bec72]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 120.531, - "y": 25.491, - "z": 105.846 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d3d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d3d", - "_tpl": "60b0f561c4449e4cb624c1d7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (245) [f69f8a6f-0d36-4b25-99c6-328b50d36786]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -43.403, + "y": 25.025, + "z": 22.121 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d3b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d3b", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (52) [9e7e51ad-dcef-40f5-a281-814dac4cc512]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 120.176, - "y": 25.491, - "z": 106.194 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d3f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d3f", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (51) [99c481f6-dc92-450a-ab40-aaed8e7bec72]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 120.531, + "y": 25.491, + "z": 105.846 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d3d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d3d", + "_tpl": "60b0f561c4449e4cb624c1d7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (53) [754ce77f-4104-4c46-8ea1-83a5e1364a28]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.621, - "y": 25.491, - "z": 108.866 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d41", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d41", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (52) [9e7e51ad-dcef-40f5-a281-814dac4cc512]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 120.176, + "y": 25.491, + "z": 106.194 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d3f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d3f", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (54) [d27b3e4f-73b0-4c49-ac6c-f24cbb636039]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 106.741005, - "y": 25.491, - "z": 118.642 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d43", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d43", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (53) [754ce77f-4104-4c46-8ea1-83a5e1364a28]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.621, + "y": 25.491, + "z": 108.866 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d41", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d41", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (55) [20e502f9-c94b-4c0d-afed-356df694380d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 103.111, - "y": 29.807, - "z": 108.48 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d45", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d45", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (54) [d27b3e4f-73b0-4c49-ac6c-f24cbb636039]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 106.741005, + "y": 25.491, + "z": 118.642 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d43", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d43", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (58) [6fc8af48-acbd-43de-890f-98a110cbeecc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 121.566, - "y": 25.583, - "z": 130.842 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d47", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d47", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (55) [20e502f9-c94b-4c0d-afed-356df694380d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 103.111, + "y": 29.807, + "z": 108.48 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d45", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d45", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (61) [e8d2bb5d-41f7-4016-bdd6-e975f02accbb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 113.265, - "y": 24.047, - "z": -4.354 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d49", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d49", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (58) [6fc8af48-acbd-43de-890f-98a110cbeecc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 121.566, + "y": 25.583, + "z": 130.842 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d47", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d47", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (62) [04c2978d-8765-48a9-a5c9-36ba07937233]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.04, - "y": 25.229, - "z": 94.969 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d4b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d4b", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (61) [e8d2bb5d-41f7-4016-bdd6-e975f02accbb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 113.265, + "y": 24.047, + "z": -4.354 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d49", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d49", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (66) [6abb6e77-7e0c-4323-88c9-315c5d73e7dd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 131.17, - "y": 25.229, - "z": 94.881 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d4d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d4d", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (62) [04c2978d-8765-48a9-a5c9-36ba07937233]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.04, + "y": 25.229, + "z": 94.969 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d4b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d4b", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (67) [c8272de7-a88d-4940-a9b4-ae68dea32899]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 111.024994, - "y": 23.358, - "z": 5.95999956 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d4f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d4f", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (66) [6abb6e77-7e0c-4323-88c9-315c5d73e7dd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 131.17, + "y": 25.229, + "z": 94.881 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d4d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d4d", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (69) [7a268d76-d8f3-416b-bd22-f6b28141f4f2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 102.095, - "y": 25.491, - "z": 118.411 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d51", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d51", - "_tpl": "577e1c9d2459773cd707c525", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (67) [c8272de7-a88d-4940-a9b4-ae68dea32899]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 111.024994, + "y": 23.358, + "z": 5.95999956 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d4f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d4f", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (69) [c91af30f-1830-4c5f-8c2d-bf34d50e645b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 100.128006, - "y": 24.03, - "z": 220.11499 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d53", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d53", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (69) [7a268d76-d8f3-416b-bd22-f6b28141f4f2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 102.095, + "y": 25.491, + "z": 118.411 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d51", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d51", + "_tpl": "577e1c9d2459773cd707c525", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (70) [adad215c-fcca-42f7-8c26-b93e0e28d74f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.332, - "y": 25.491, - "z": 118.416 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d55", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d55", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (69) [c91af30f-1830-4c5f-8c2d-bf34d50e645b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 100.128006, + "y": 24.03, + "z": 220.11499 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d53", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d53", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (71) [f24038e3-6d78-4d95-a1b0-d39b05ffd8d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 102.394, - "y": 23.358, - "z": 1.815 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d57", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d57", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (70) [adad215c-fcca-42f7-8c26-b93e0e28d74f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.332, + "y": 25.491, + "z": 118.416 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d55", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d55", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (73) [9e15010c-3760-4fb2-aea0-43a26c09974a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 130.778, - "y": 25.229, - "z": 88.8390045 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d59", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d59", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (71) [f24038e3-6d78-4d95-a1b0-d39b05ffd8d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 102.394, + "y": 23.358, + "z": 1.815 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d57", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d57", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (102) [9e907fe4-2b0b-4611-b69f-a16f675542b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.3999939, - "y": 14.898, - "z": 45.291 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d5b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d5b", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (73) [9e15010c-3760-4fb2-aea0-43a26c09974a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 130.778, + "y": 25.229, + "z": 88.8390045 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d59", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d59", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (105) [dbdd0fec-6814-404d-9854-00b5cf2ab0e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 78.823, - "y": 14.467, - "z": 133.672 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d5d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d5d", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (102) [9e907fe4-2b0b-4611-b69f-a16f675542b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.3999939, + "y": 14.898, + "z": 45.291 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d5b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d5b", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (106) [d560776d-a64a-44f1-9132-6b97513ef3ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 79.127, - "y": 14.467, - "z": 134.848 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] + }, + { + "Id": "tools&building_Leo_Rare (105) [dbdd0fec-6814-404d-9854-00b5cf2ab0e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 78.823, + "y": 14.467, + "z": 133.672 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d5d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d5d", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d5f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d5f", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (106) [d560776d-a64a-44f1-9132-6b97513ef3ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 79.127, + "y": 14.467, + "z": 134.848 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d5f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d5f", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (108) [837e7073-4824-439c-b676-d2af3cc6470d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 79.21999, - "y": 14.467, - "z": 136.382 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d61", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d61", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (108) [837e7073-4824-439c-b676-d2af3cc6470d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 79.21999, + "y": 14.467, + "z": 136.382 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d61", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d61", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (109) [508e52f9-344f-4316-85e1-b620ff69e76b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 90.432, - "y": 14.467, - "z": 175.496 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d63", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d63", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (109) [508e52f9-344f-4316-85e1-b620ff69e76b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 90.432, + "y": 14.467, + "z": 175.496 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d63", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d63", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (110) [5560e3e3-c0f4-47b7-9e03-55fe29eba335]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 89.974, - "y": 14.908, - "z": 175.947 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d65", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d65", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (110) [5560e3e3-c0f4-47b7-9e03-55fe29eba335]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 89.974, + "y": 14.908, + "z": 175.947 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d65", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d65", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (111) [6130e3bd-a3a9-4288-ad2a-40a6f3006cc8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 103.311, - "y": 14.7389994, - "z": 6.93500137 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d67", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d67", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (111) [6130e3bd-a3a9-4288-ad2a-40a6f3006cc8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 103.311, + "y": 14.7389994, + "z": 6.93500137 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d67", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d67", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (113) [e102d827-d5d8-4ab4-b26e-00356ea43400]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 56.0039978, - "y": 16.404, - "z": 166.324 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d69", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d69", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (113) [e102d827-d5d8-4ab4-b26e-00356ea43400]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 56.0039978, + "y": 16.404, + "z": 166.324 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d69", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d69", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (115) [fd3590f6-0258-4ea0-9540-0d8742b4b611]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 63.058, - "y": 15.417, - "z": 161.969 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d6b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d6b", - "_tpl": "5d1b327086f7742525194449", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (115) [fd3590f6-0258-4ea0-9540-0d8742b4b611]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 63.058, + "y": 15.417, + "z": 161.969 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d6b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d6b", + "_tpl": "5d1b327086f7742525194449", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (116) [57699c0b-1627-4a42-8ad8-48ddae98ee99]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 62.5949974, - "y": 15.417, - "z": 162.38 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d6d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d6d", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (116) [57699c0b-1627-4a42-8ad8-48ddae98ee99]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 62.5949974, + "y": 15.417, + "z": 162.38 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d6d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d6d", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (118) [2d1caadc-813e-424e-a0f6-279ba314e30c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 109.975, - "y": 28.5539989, - "z": 178.338013 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d6f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d6f", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (118) [2d1caadc-813e-424e-a0f6-279ba314e30c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 109.975, + "y": 28.5539989, + "z": 178.338013 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d6f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d6f", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (122) [edfd38f8-487c-4287-9d74-3a0d35d07402]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 99.765, - "y": 15.2619991, - "z": 39.539 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d71", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d71", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (122) [edfd38f8-487c-4287-9d74-3a0d35d07402]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 99.765, + "y": 15.2619991, + "z": 39.539 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d71", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d71", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (124) [09d26fea-bc9a-4278-8e95-8ae27843dcc3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.213, - "y": 15.4819994, - "z": 98.483 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d73", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d73", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (124) [09d26fea-bc9a-4278-8e95-8ae27843dcc3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.213, + "y": 15.4819994, + "z": 98.483 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d73", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d73", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (125) [9a3e6afe-c9b5-41b3-a951-1ae6fe0ec7f6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.195, - "y": 14.7389994, - "z": 92.801 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d75", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d75", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (125) [9a3e6afe-c9b5-41b3-a951-1ae6fe0ec7f6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.195, + "y": 14.7389994, + "z": 92.801 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d75", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d75", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (86) [ca447215-50cc-40bd-b7fc-b4b97fad3beb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 22.53, - "y": 24.898, - "z": 77.718 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d77", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d77", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (86) [ca447215-50cc-40bd-b7fc-b4b97fad3beb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 22.53, + "y": 24.898, + "z": 77.718 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d77", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d77", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (89) [92f703f7-a3f5-4b79-aa14-c524f78f4d40]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 136.247009, - "y": 28.264, - "z": 106.957 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d79", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d79", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (89) [92f703f7-a3f5-4b79-aa14-c524f78f4d40]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 136.247009, + "y": 28.264, + "z": 106.957 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d79", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d79", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (90) [d3a1fa89-0362-424c-9435-8507af944199]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 129.602, - "y": 25.152, - "z": 164.733 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d7b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d7b", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (90) [d3a1fa89-0362-424c-9435-8507af944199]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 129.602, + "y": 25.152, + "z": 164.733 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d7b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d7b", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (90) [ee9c0120-c781-4fa0-ae9e-c8d98b26684e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 161.415, - "y": 24.465, - "z": -45.996 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d7d", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d7d", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (90) [ee9c0120-c781-4fa0-ae9e-c8d98b26684e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 161.415, + "y": 24.465, + "z": -45.996 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d7d", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d7d", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (91) [0e5718c1-eef9-49f3-9c80-e3fcd4ccaf19]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 129.327, - "y": 25.152, - "z": 164.366 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d7f", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d7f", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (91) [0e5718c1-eef9-49f3-9c80-e3fcd4ccaf19]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 129.327, + "y": 25.152, + "z": 164.366 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d7f", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d7f", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (91) [7506a041-403c-4489-8ef8-4a718729512e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 93.198, - "y": 14.893, - "z": -11.3739967 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d81", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d81", - "_tpl": "61bf7b6302b3924be92fa8c3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (91) [7506a041-403c-4489-8ef8-4a718729512e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 93.198, + "y": 14.893, + "z": -11.3739967 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d81", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d81", + "_tpl": "61bf7b6302b3924be92fa8c3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (91) [a9193a13-c8bb-4f4b-b620-9558be8ebe10]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 160.736, - "y": 24.465, - "z": -45.228 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d83", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d83", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (91) [a9193a13-c8bb-4f4b-b620-9558be8ebe10]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 160.736, + "y": 24.465, + "z": -45.228 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d83", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d83", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (92) [3f23e543-c691-4d92-9625-c1dfe22348b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 148.405, - "y": 17.894001, - "z": -8.422001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d85", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d85", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (92) [3f23e543-c691-4d92-9625-c1dfe22348b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 148.405, + "y": 17.894001, + "z": -8.422001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d85", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d85", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (92) [3fcf35c6-d7f2-4512-b823-4f397a19c215]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 114.929, - "y": 25.152, - "z": 163.483 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d87", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d87", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (92) [3fcf35c6-d7f2-4512-b823-4f397a19c215]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 114.929, + "y": 25.152, + "z": 163.483 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d87", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d87", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (98) [1f7aafb7-3ffc-408c-99da-6624c7762ffc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.822, - "y": 15.2169991, - "z": 23.7440014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d89", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d89", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (98) [1f7aafb7-3ffc-408c-99da-6624c7762ffc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.822, + "y": 15.2169991, + "z": 23.7440014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d89", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d89", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (99) [a38816d7-e5db-453b-b0e6-33febc1494f2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 91.8299942, - "y": 14.898, - "z": 19.7940025 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c93353dacb55c5f8037d8b", - "Items": [ - { - "_id": "66c93353dacb55c5f8037d8b", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (99) [a38816d7-e5db-453b-b0e6-33febc1494f2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 91.8299942, + "y": 14.898, + "z": 19.7940025 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c93353dacb55c5f8037d8b", + "Items": [ + { + "_id": "66c93353dacb55c5f8037d8b", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - } - ], - "Banners": [] + ] + } + ], + "Banners": [] + } } } \ No newline at end of file diff --git a/Fuyu.Platform.Server/embedded/database/locations/shorline.json b/Fuyu.Platform.Server/embedded/database/locations/shorline.json index f004c145..76017d68 100644 --- a/Fuyu.Platform.Server/embedded/database/locations/shorline.json +++ b/Fuyu.Platform.Server/embedded/database/locations/shorline.json @@ -1,55945 +1,55948 @@ { - "serverId": "PVE_OFFLINE_659885_26_08_2024_02_45_16", - "serverSettings": { - "TraderServerSettings": { - "TraderServices": { - "ExUsecLoyalty": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ExUsecLoyalty", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966ff54c3ef01b6f3ffad8" + "err": 0, + "data": { + "serverId": "PVE_OFFLINE_659885_26_08_2024_02_45_16", + "serverSettings": { + "TraderServerSettings": { + "TraderServices": { + "ExUsecLoyalty": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ExUsecLoyalty", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966ff54c3ef01b6f3ffad8" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.09 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.09 + }, + "ServiceItemCost": { + "569668774bdc2da2298b4568": { + "Count": 2500 + }, + "61bf7c024770ee6f9c6b8b53": { + "Count": 2 } - } - }, - "ServiceItemCost": { - "569668774bdc2da2298b4568": { - "Count": 2500 }, - "61bf7c024770ee6f9c6b8b53": { - "Count": 2 - } - }, - "UniqueItems": [] - }, - "ZryachiyAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ZryachiyAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "6396701b9113f06a7c3b2379" + "UniqueItems": [] + }, + "ZryachiyAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ZryachiyAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "6396701b9113f06a7c3b2379" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.18 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.18 + }, + "ServiceItemCost": { + "62a0a16d0b9d3c46de5b6e97": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 2000 } - } - }, - "ServiceItemCost": { - "62a0a16d0b9d3c46de5b6e97": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 2000 - } - }, - "UniqueItems": [] - }, - "CultistsAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "CultistsAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966fccac6f8f3c677b9d89" + "UniqueItems": [] + }, + "CultistsAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "CultistsAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966fccac6f8f3c677b9d89" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.03 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.03 + }, + "ServiceItemCost": { + "5c12613b86f7743bbe2c3f76": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 1000 } - } - }, - "ServiceItemCost": { - "5c12613b86f7743bbe2c3f76": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 1000 - } - }, - "UniqueItems": [ - "64d0b40fbe2eed70e254e2d4" - ] - }, - "PlayerTaxi": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "PlayerTaxi", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrBotCover": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrBotCover", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "TransitItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "TransitItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + "UniqueItems": [ + "64d0b40fbe2eed70e254e2d4" + ] + }, + "PlayerTaxi": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "PlayerTaxi", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrBotCover": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrBotCover", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "TransitItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "TransitItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + } } - } - }, - "BTRServerSettings": { - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.77, - "BodySwingIntensity": 0.506, - "ServerMapBTRSettings": { - "Develop": { - "MapID": "develop", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "TarkovStreets": { - "MapID": "TarkovStreets", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "Woods": { - "MapID": "Woods", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 180.0, - "y": 360.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 + "BTRServerSettings": { + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.77, + "BodySwingIntensity": 0.506, + "ServerMapBTRSettings": { + "Develop": { + "MapID": "develop", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "TarkovStreets": { + "MapID": "TarkovStreets", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "Woods": { + "MapID": "Woods", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 180.0, + "y": 360.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + } } } - } - }, - "profile": { - "insuredItems": [] - }, - "locationLoot": { - "Enabled": true, - "EnableCoop": true, - "ForceOnlineRaidInPVE": false, - "Locked": false, - "Insurance": true, - "SafeLocation": false, - "Name": "Shoreline", - "Description": "The coastline that leads to the port.", - "Scene": { - "path": "maps\/shoreline_preset.bundle", - "rcid": "shoreline.scenespreset.asset" - }, - "Area": 0.0, - "RequiredPlayerLevelMin": 0, - "RequiredPlayerLevelMax": 100, - "PmcMaxPlayersInGroup": 5, - "ScavMaxPlayersInGroup": 4, - "MinPlayers": 10, - "MaxPlayers": 14, - "MaxCoopGroup": 13, - "exit_count": 1, - "exit_access_time": 10, - "exit_time": 90, - "Preview": { - "path": "", - "rcid": "" - }, - "IconX": 220, - "IconY": 300, - "filter_ex": [], - "waves": [ - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 1, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneIsland", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 2, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "ZoneGasStation", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 3, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "ZoneMeteoStation", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 4, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZonePowerStation", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 5, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneBusStation", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 6, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneRailWays", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 7, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 2, - "SpawnPoints": "ZonePort", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 9, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 1, - "SpawnPoints": "ZonePowerStationSniper", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "marksman", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 10, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 1, - "SpawnPoints": "ZoneBunkeSniper", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "marksman", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 11, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZonePort", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 12, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneIsland", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 13, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneForestTruck", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 14, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneForestSpawn", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 15, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "easy", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 16, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 17, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 18, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 19, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 20, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 21, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 22, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "easy", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 23, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 24, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 25, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneSanatorium1", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 26, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneSanatorium2", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 27, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "ZoneSanatorium1", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 28, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 3, - "SpawnPoints": "ZoneSanatorium2", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "pve" - ] - } - ], - "limits": [ - { - "items": [], - "min": 0, - "max": 0 - } - ], - "AveragePlayTime": 35, - "AveragePlayerLevel": 25, - "EscapeTimeLimit": 45, - "EscapeTimeLimitPVE": 45, - "EscapeTimeLimitCoop": 35, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 30, - "MaxDistToFreePoint": 200, - "MinDistToFreePoint": 60, - "MaxBotPerZone": 4, - "OpenZones": "ZoneSanatorium1,ZoneSanatorium2,ZoneIsland,ZoneGasStation,ZoneMeteoStation,ZonePowerStation,ZoneBusStation,ZoneRailWays,ZonePort,ZoneBunkeSniper,ZonePowerStationSniper,ZoneForestTruck,ZoneForestSpawn,ZoneSmuglers", - "OcculsionCullingEnabled": true, - "GlobalLootChanceModifier": 0.25, - "GlobalLootChanceModifierPvE": 0.55, - "OldSpawn": true, - "OfflineOldSpawn": true, - "NewSpawn": true, - "OfflineNewSpawn": true, - "BotMax": 31, - "BotMaxPvE": 31, - "BotStart": 20, - "BotStartPlayer": 0, - "BotStop": 2700, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 260, - "BotSpawnTimeOnMax": 320, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOffMax": 30, - "BotMaxPlayer": 0, - "BotEasy": 10, - "BotNormal": 50, - "BotHard": 40, - "BotImpossible": 0, - "BotAssault": 80, - "BotMarksman": 20, - "DisabledScavExits": "", - "MinPlayerLvlAccessKeys": 0, - "AccessKeys": [], - "UnixDateTime": 1636379143, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "sav_summon_seconds": 60, - "matching_min_seconds": 60, - "GenerateLocalLootCache": true, - "PlayersRequestCount": -1, - "NonWaveGroupScenario": { - "MinToBeGroup": 2, - "MaxToBeGroup": 3, - "Chance": 50.0, - "Enabled": true }, - "BotSpawnCountStep": 4, - "BotSpawnPeriodCheck": 15, - "GlobalContainerChanceModifier": 1.0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 1.0, - "Scattering": 0.8, - "GainSight": 1.1, - "MarksmanAccuratyCoef": 1.0, - "VisibleDistance": 1.2, - "DistToSleep": 300.0, - "DistToActivate": 260.0, - "MagnetPower": 40.0, - "DistToPersueAxemanCoef": 1.1, - "KhorovodChance": 0, - "MinExfiltrationTime": 1500.0, - "MaxExfiltrationTime": 2000.0, - "DistToActivatePvE": 260.0, - "DistToSleepPvE": 300.0, - "AdditionalHostilitySettings": [ - { - "BotRole": "pmcBEAR", - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 90 - }, - { - "BotRole": "pmcUSEC", - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 75 - } - ] + "profile": { + "insuredItems": [] }, - "exits": [ - { - "Name": "Tunnel", - "EntryPoints": "Riverside", - "Chance": 100.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "RequirementTip": "", - "EventAvailable": false, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Rock Passage", - "EntryPoints": "Riverside,Village", - "Chance": 0.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "RequirementTip": "", - "EventAvailable": false, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 0.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Pier Boat", - "EntryPoints": "Riverside,Village", - "Chance": 50.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 30.0, - "RequirementTip": "", - "EventAvailable": false, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 50.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 30.0, - "PlayersCountPVE": 0 - }, - { - "Name": "CCP Temporary", - "EntryPoints": "Village", - "Chance": 50.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "RequirementTip": "", - "EventAvailable": false, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 50.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Road to Customs", - "EntryPoints": "Village", - "Chance": 100.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "RequirementTip": "", - "EventAvailable": false, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Lighthouse_pass", - "EntryPoints": "Riverside,Village", - "Chance": 100.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "RequirementTip": "", - "EventAvailable": false, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Road_at_railbridge", - "EntryPoints": "Village", - "Chance": 100.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "RequirementTip": "", - "EventAvailable": false, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Shorl_V-Ex", - "EntryPoints": "Riverside,Village", - "Chance": 100.0, - "Id": "5449016a4bdc2d6f028b456f", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 60.0, - "RequirementTip": "EXFIL_Item", - "EventAvailable": false, - "PassageRequirement": "TransferItem", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Count": 5000, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 5000, - "ExfiltrationTimePVE": 60.0, - "PlayersCountPVE": 0 - }, - { - "Name": "RedRebel_alp", - "EntryPoints": "Riverside,Village", - "Chance": 100.0, - "Id": "Alpinist", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "RequirementTip": "", - "EventAvailable": false, - "PassageRequirement": "Reference", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Smugglers_Trail_coop", - "EntryPoints": "Riverside,Village", - "Chance": 100.0, - "Id": "", - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "RequirementTip": "EXFIL_Cooperate", - "EventAvailable": false, - "PassageRequirement": "ScavCooperation", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Count": 0, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - } - ], - "DisabledForScav": false, - "BossLocationSpawn": [ - { - "BossName": "bossPartisan", - "BossChance": 10.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": true, - "DependKarmaPVE": false - }, - { - "BossName": "bossKnight", - "BossChance": 25.0, - "BossZone": "ZoneMeteoStation", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2", - "Time": -1.0, - "Supports": [ - { - "BossEscortType": "followerBigPipe", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "1" - }, - { - "BossEscortType": "followerBirdEye", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "1" - }, - { - "BossEscortType": "followerGluharScout", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "0" - } - ], - "RandomTimeSpawn": true, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "bossSanitar", - "BossChance": 25.0, - "BossZone": "ZoneGreenHouses,ZoneSanatorium1,ZoneGreenHouses,ZoneSanatorium2,ZonePort", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "followerSanitar", - "BossEscortDifficult": "normal", - "BossEscortAmount": "3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "sectantPriest", - "BossChance": 10.0, - "BossZone": "ZoneSanatorium1,ZoneSanatorium2,ZoneForestSpawn,ZoneForestSpawn,ZoneForestSpawn", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossEscortDifficult": "normal", - "BossEscortAmount": "3,4", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,2,2,2,1,1,1,1,1", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 30.0, - "BossZone": "ZoneSmuglers", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,1,2", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "TriggerId": "", - "TriggerName": "", - "IgnoreMaxBots": true, - "ForceSpawn": false, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - } - ], - "SpawnPointParams": [ - { - "Id": "012debaa-649e-4aae-bcd1-c479bf8efbe0", - "Position": { - "x": -917.4199, - "y": -58.32, - "z": 254.24 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "04a50f48-34c2-4e5d-9714-06988624c36a", - "Position": { - "x": -936.449951, - "y": -55.47, - "z": 163.39003 - }, - "Rotation": 28.5099983, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0706f78c-9b04-45b9-bcfe-405ea09a68e6", - "Position": { - "x": -295.389984, - "y": -5.134326, - "z": -127.259995 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 8 - }, - { - "Id": "07a58e70-dbfe-4226-8b2e-237c3e3675f5", - "Position": { - "x": 183.65, - "y": -46.69635, - "z": 44.0399933 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + "locationLoot": { + "Enabled": true, + "EnableCoop": true, + "ForceOnlineRaidInPVE": false, + "Locked": false, + "Insurance": true, + "SafeLocation": false, + "Name": "Shoreline", + "Description": "The coastline that leads to the port.", + "Scene": { + "path": "maps\/shoreline_preset.bundle", + "rcid": "shoreline.scenespreset.asset" + }, + "Area": 0.0, + "RequiredPlayerLevelMin": 0, + "RequiredPlayerLevelMax": 100, + "PmcMaxPlayersInGroup": 5, + "ScavMaxPlayersInGroup": 4, + "MinPlayers": 10, + "MaxPlayers": 14, + "MaxCoopGroup": 13, + "exit_count": 1, + "exit_access_time": 10, + "exit_time": 90, + "Preview": { + "path": "", + "rcid": "" + }, + "IconX": 220, + "IconY": 300, + "filter_ex": [], + "waves": [ + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "08475ee7-0dfb-4e8e-82c8-e40283ee7d6c", - "Position": { - "x": 452.730042, - "y": -54.49, - "z": 190.86 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 1, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneIsland", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "085a9fa8-472e-4928-aa1e-ddb8f766e9a0", - "Position": { - "x": 409.830139, - "y": -54.32, - "z": 90.91002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 2, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "ZoneGasStation", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "08eb4844-1742-4e80-ad4c-34133be10b53", - "Position": { - "x": 345.330139, - "y": -64.34, - "z": 333.19 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 3, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "ZoneMeteoStation", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0a656c0b-40b8-4dfb-9821-eaf053da5bd8", - "Position": { - "x": 420.5501, - "y": -54.49, - "z": 153.660019 - }, - "Rotation": 230.53, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 4, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZonePowerStation", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0baf5b66-31b0-4c2f-8f2e-4f4320a25243", - "Position": { - "x": 338.3902, - "y": -41.93, - "z": -272.38 - }, - "Rotation": 349.17, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 5, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneBusStation", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0cd882b4-e077-4f54-8d63-e368eb600ba7", - "Position": { - "x": 336.5401, - "y": -41.72, - "z": -269.62 - }, - "Rotation": 349.17, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 6, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneRailWays", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0d4d2d64-9c67-4369-92c6-993bdcc2745f", - "Position": { - "x": -872.579956, - "y": -43.98, - "z": 5.260025 - }, - "Rotation": 319.98, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 7, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 2, + "SpawnPoints": "ZonePort", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0e75428d-8a9e-468b-ba73-1275cd67171d", - "Position": { - "x": -837.809937, - "y": -55.4400024, - "z": 279.81 - }, - "Rotation": 316.25, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 9, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 1, + "SpawnPoints": "ZonePowerStationSniper", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "marksman", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0f1035bf-0342-4430-8b92-e463f896fc94", - "Position": { - "x": 328.860016, - "y": -64.65135, - "z": 326.53 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 220 - } + { + "number": 10, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 1, + "SpawnPoints": "ZoneBunkeSniper", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "marksman", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneTunnel", - "CorePointId": 19 - }, - { - "Id": "0f334893-a01d-44f4-a684-0040c05f7029", - "Position": { - "x": -58.0944748, - "y": -17.9813957, - "z": -189.791611 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 11, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZonePort", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0fa17404-2e01-429c-846b-783becee6163", - "Position": { - "x": -156.265991, - "y": -3.644, - "z": -82.5099945 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 12, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneIsland", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 7 - }, - { - "Id": "10914095-ef6a-448c-b03a-ec69c3c6bba0", - "Position": { - "x": 351.770081, - "y": -64.33, - "z": 334.900024 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 13, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneForestTruck", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "10b6c3eb-78df-4487-9e83-ac0240062165", - "Position": { - "x": -847.959961, - "y": -55.86, - "z": 372.850037 - }, - "Rotation": 212.59, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 14, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneForestSpawn", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "11941eb6-c3a3-4386-b873-8afa20560fcf", - "Position": { - "x": -876.2899, - "y": -44.89, - "z": 6.17002869 - }, - "Rotation": 2.969004, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 15, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "easy", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "12a9fde9-327d-4822-9f39-a77589cc8e6e", - "Position": { - "x": 447.020081, - "y": -54.3, - "z": 103.070023 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 16, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "12c16199-687e-4ad7-a6e6-1ae437d0e676", - "Position": { - "x": -810.4599, - "y": -59.17, - "z": 458.040039 - }, - "Rotation": 198.48, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 17, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "13b9c174-67fb-4657-a020-34bd04140295", - "Position": { - "x": -54.6084747, - "y": -18.2693958, - "z": -191.1216 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 18, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "147b236f-de32-4086-8f95-00ca3ab4714b", - "Position": { - "x": -443.9, - "y": -25.962225, - "z": 259.87 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } + { + "number": 19, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneMeteoStation", - "CorePointId": 5 - }, - { - "Id": "153e740f-bdd1-4bd7-8a6c-668b14616343", - "Position": { - "x": -780.16, - "y": -40.2, - "z": 3.82002258 - }, - "Rotation": 12.65, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 20, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "17c35797-5dff-4662-b4d1-ccfea505387a", - "Position": { - "x": 27.3945618, - "y": -20.5940456, - "z": -211.800018 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } + { + "number": 21, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneForestTruck", - "CorePointId": 11 - }, - { - "Id": "19e44d79-d199-444b-97e7-89e4b6a48ca2", - "Position": { - "x": -891.31, - "y": -46.061348, - "z": 2.02999878 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 175 - } + { + "number": 22, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "easy", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZonePassClose", - "CorePointId": 18 - }, - { - "Id": "1a879937-4315-42ca-92f4-4b56d45e3c69", - "Position": { - "x": -697.6, - "y": -59.5997047, - "z": 497.7 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "number": 23, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneRailWays", - "CorePointId": 4 - }, - { - "Id": "1af5e649-023c-44a3-b55b-29bf555cd816", - "Position": { - "x": -220.86, - "y": -29.7583351, - "z": 189.53 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 1700.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "number": 24, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZonePowerStationSniper", - "CorePointId": 10 - }, - { - "Id": "1aff115b-65d6-4b27-bbe1-4f147541caad", - "Position": { - "x": 269.370178, - "y": -56.42, - "z": 188.090012 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 25, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneSanatorium1", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1c009c5c-0593-443b-8ae3-3ecf3bcf89ed", - "Position": { - "x": 434.240051, - "y": -54.28, - "z": 70.2500153 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 26, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneSanatorium2", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1c0dbe2f-d873-4ae8-9505-43a0f777aef9", - "Position": { - "x": -134.798325, - "y": -10.67804, - "z": -351.499146 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 98.1 - } + { + "number": 27, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "ZoneSanatorium1", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneBunker", - "CorePointId": 15 - }, - { - "Id": "1d8bfebb-e39d-4bf4-9f24-9275e754b857", - "Position": { - "x": 433.95, - "y": -54.33, - "z": 67.82002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + { + "number": 28, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 3, + "SpawnPoints": "ZoneSanatorium2", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "pve" + ] + } + ], + "limits": [ + { + "items": [], + "min": 0, + "max": 0 + } + ], + "AveragePlayTime": 35, + "AveragePlayerLevel": 25, + "EscapeTimeLimit": 45, + "EscapeTimeLimitPVE": 45, + "EscapeTimeLimitCoop": 35, + "Rules": "Normal", + "IsSecret": false, + "doors": [], + "tmp_location_field_remove_me": 0, + "MinDistToExitPoint": 30, + "MaxDistToFreePoint": 200, + "MinDistToFreePoint": 60, + "MaxBotPerZone": 4, + "OpenZones": "ZoneSanatorium1,ZoneSanatorium2,ZoneIsland,ZoneGasStation,ZoneMeteoStation,ZonePowerStation,ZoneBusStation,ZoneRailWays,ZonePort,ZoneBunkeSniper,ZonePowerStationSniper,ZoneForestTruck,ZoneForestSpawn,ZoneSmuglers", + "OcculsionCullingEnabled": true, + "GlobalLootChanceModifier": 0.25, + "GlobalLootChanceModifierPvE": 0.55, + "OldSpawn": true, + "OfflineOldSpawn": true, + "NewSpawn": true, + "OfflineNewSpawn": true, + "BotMax": 31, + "BotMaxPvE": 31, + "BotStart": 20, + "BotStartPlayer": 0, + "BotStop": 2700, + "BotMaxTimePlayer": 0, + "BotSpawnTimeOnMin": 260, + "BotSpawnTimeOnMax": 320, + "BotSpawnTimeOffMin": 20, + "BotSpawnTimeOffMax": 30, + "BotMaxPlayer": 0, + "BotEasy": 10, + "BotNormal": 50, + "BotHard": 40, + "BotImpossible": 0, + "BotAssault": 80, + "BotMarksman": 20, + "DisabledScavExits": "", + "MinPlayerLvlAccessKeys": 0, + "AccessKeys": [], + "UnixDateTime": 1636379143, + "users_gather_seconds": 0, + "users_spawn_seconds_n": 120, + "users_spawn_seconds_n2": 200, + "users_summon_seconds": 0, + "sav_summon_seconds": 60, + "matching_min_seconds": 60, + "GenerateLocalLootCache": true, + "PlayersRequestCount": -1, + "NonWaveGroupScenario": { + "MinToBeGroup": 2, + "MaxToBeGroup": 3, + "Chance": 50.0, + "Enabled": true + }, + "BotSpawnCountStep": 4, + "BotSpawnPeriodCheck": 15, + "GlobalContainerChanceModifier": 1.0, + "MinMaxBots": [], + "BotLocationModifier": { + "AccuracySpeed": 1.0, + "Scattering": 0.8, + "GainSight": 1.1, + "MarksmanAccuratyCoef": 1.0, + "VisibleDistance": 1.2, + "DistToSleep": 300.0, + "DistToActivate": 260.0, + "MagnetPower": 40.0, + "DistToPersueAxemanCoef": 1.1, + "KhorovodChance": 0, + "MinExfiltrationTime": 1500.0, + "MaxExfiltrationTime": 2000.0, + "DistToActivatePvE": 260.0, + "DistToSleepPvE": 300.0, + "AdditionalHostilitySettings": [ + { + "BotRole": "pmcBEAR", + "AlwaysEnemies": [ + "pmcBot", + "exUsec", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar", + "bossKnight" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcUSEC" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 75, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 90 + }, + { + "BotRole": "pmcUSEC", + "AlwaysEnemies": [ + "pmcBot", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcBEAR" + }, + { + "EnemyChance": 15, + "Role": "exUsec" + }, + { + "EnemyChance": 15, + "Role": "bossKnight" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 90, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 75 } - }, - "BotZoneName": "", - "CorePointId": 0 + ] }, - { - "Id": "1e6d24f0-05d1-400b-bfff-a901d0c1dfab", - "Position": { - "x": 160.559982, - "y": -48.30135, - "z": 62.09999 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 112 - } + "exits": [ + { + "Name": "Tunnel", + "EntryPoints": "Riverside", + "Chance": 100.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "RequirementTip": "", + "EventAvailable": false, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "1e9215b0-eca7-43e9-a098-750d3a1d0718", - "Position": { - "x": -151.93, - "y": -4.86000061, - "z": -268.55 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 1700.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Name": "Rock Passage", + "EntryPoints": "Riverside,Village", + "Chance": 0.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "RequirementTip": "", + "EventAvailable": false, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 0.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneBunkeSniper", - "CorePointId": 12 - }, - { - "Id": "220a409b-6d31-4223-b3b6-21b6ba5e5d95", - "Position": { - "x": -27.5484772, - "y": -21.1193962, - "z": -129.1916 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Name": "Pier Boat", + "EntryPoints": "Riverside,Village", + "Chance": 50.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 30.0, + "RequirementTip": "", + "EventAvailable": false, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 50.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 30.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2231842f-d5f9-411a-ab01-02072fb11297", - "Position": { - "x": -61.54648, - "y": -18.0833969, - "z": -193.42662 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "CCP Temporary", + "EntryPoints": "Village", + "Chance": 50.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "RequirementTip": "", + "EventAvailable": false, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 50.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2510bd08-e90c-4d01-9d63-2fd9115851bc", - "Position": { - "x": 459.89, - "y": -54.4532776, - "z": 92.4900055 - }, - "Rotation": 277.9801, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Name": "Road to Customs", + "EntryPoints": "Village", + "Chance": 100.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "RequirementTip": "", + "EventAvailable": false, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneStartVillage", - "CorePointId": 6 - }, - { - "Id": "28048da3-ecaa-45a6-8c3c-ff5c2956fe7c", - "Position": { - "x": 342.230042, - "y": -56.29, - "z": 116.64003 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "Lighthouse_pass", + "EntryPoints": "Riverside,Village", + "Chance": 100.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "RequirementTip": "", + "EventAvailable": false, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2912d83e-b7a3-404e-8cc2-5a801c64e524", - "Position": { - "x": -55.58847, - "y": -18.5793972, - "z": -187.481613 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "Road_at_railbridge", + "EntryPoints": "Village", + "Chance": 100.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "RequirementTip": "", + "EventAvailable": false, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2c11e954-f7e5-4a67-845c-54328c8b9c27", - "Position": { - "x": -916.209961, - "y": -58.34, - "z": 252.64003 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "Shorl_V-Ex", + "EntryPoints": "Riverside,Village", + "Chance": 100.0, + "Id": "5449016a4bdc2d6f028b456f", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 60.0, + "RequirementTip": "EXFIL_Item", + "EventAvailable": false, + "PassageRequirement": "TransferItem", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Count": 5000, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 5000, + "ExfiltrationTimePVE": 60.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2cff2324-432f-4e6e-bf5a-d15bff5354d1", - "Position": { - "x": 110.25, - "y": -48.48343, - "z": 138.139984 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 112 - } + { + "Name": "RedRebel_alp", + "EntryPoints": "Riverside,Village", + "Chance": 100.0, + "Id": "Alpinist", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "RequirementTip": "", + "EventAvailable": false, + "PassageRequirement": "Reference", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "2dbe2a68-dcba-4334-8e7f-04c5b77e2288", - "Position": { - "x": -490.86, - "y": -24.1813488, - "z": 203.33 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Name": "Smugglers_Trail_coop", + "EntryPoints": "Riverside,Village", + "Chance": 100.0, + "Id": "", + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "RequirementTip": "EXFIL_Cooperate", + "EventAvailable": false, + "PassageRequirement": "ScavCooperation", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Count": 0, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 + } + ], + "DisabledForScav": false, + "BossLocationSpawn": [ + { + "BossName": "bossPartisan", + "BossChance": 10.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "sectantWarrior", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "PARTISAN_TRIGGER", + "TriggerName": "botEvent", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": true, + "DependKarmaPVE": false }, - "BotZoneName": "ZoneMeteoStation", - "CorePointId": 5 - }, - { - "Id": "2dd04c2a-7e3e-426f-b6eb-9cf99ae0f01e", - "Position": { - "x": -469.34845, - "y": -27.859396, - "z": -96.37161 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "BossName": "bossKnight", + "BossChance": 25.0, + "BossZone": "ZoneMeteoStation", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2", + "Time": -1.0, + "Supports": [ + { + "BossEscortType": "followerBigPipe", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "1" + }, + { + "BossEscortType": "followerBirdEye", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "1" + }, + { + "BossEscortType": "followerGluharScout", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "0" + } + ], + "RandomTimeSpawn": true, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2e857187-f38e-4479-a6b8-19edbe9f1c50", - "Position": { - "x": -254.633, - "y": -45.5623474, - "z": 218.166992 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "BossName": "bossSanitar", + "BossChance": 25.0, + "BossZone": "ZoneGreenHouses,ZoneSanatorium1,ZoneGreenHouses,ZoneSanatorium2,ZonePort", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "followerSanitar", + "BossEscortDifficult": "normal", + "BossEscortAmount": "3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "ZonePowerStation", - "CorePointId": 16 - }, - { - "Id": "30d699d9-b86d-4d75-b894-ad7f7d2396ed", - "Position": { - "x": -225.588989, - "y": -40.7633476, - "z": 167.765 - }, - "Rotation": 84.57507, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } + { + "BossName": "sectantPriest", + "BossChance": 10.0, + "BossZone": "ZoneSanatorium1,ZoneSanatorium2,ZoneForestSpawn,ZoneForestSpawn,ZoneForestSpawn", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "sectantWarrior", + "BossEscortDifficult": "normal", + "BossEscortAmount": "3,4", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "ZonePowerStation", - "CorePointId": 2 - }, - { - "Id": "320348b2-0ef0-4df1-9643-4fb2be5c21c0", - "Position": { - "x": -72.17, - "y": -21.967, - "z": 10.4600067 - }, - "Rotation": 233.659576, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "ZoneBusStation", - "CorePointId": 14 - }, - { - "Id": "33cc2001-9b63-41bd-8f70-4c5406990171", - "Position": { - "x": 459.31, - "y": -54.17835, - "z": 55.7920074 - }, - "Rotation": 266.625641, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,2,2,2,1,1,1,1,1", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "ZoneStartVillage", - "CorePointId": 6 - }, - { - "Id": "349818b4-45de-4996-8c10-364391288c5c", - "Position": { - "x": -87.8699951, - "y": -42.39235, - "z": 272.28 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "ZoneForestGasStation", - "CorePointId": 2 - }, - { - "Id": "34ac29bf-3a27-4e1f-816c-0731442834a2", - "Position": { - "x": 346.95, - "y": -64.76, - "z": 335.49 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3667563e-7a11-4b78-8343-2d1c16a34616", - "Position": { - "x": 203.769989, - "y": -64.57, - "z": 441.370026 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "ZoneIsland", - "CorePointId": 17 - }, - { - "Id": "37094848-6ca3-4b9f-9b06-4abc64e144bf", - "Position": { - "x": 447.750061, - "y": -54.46, - "z": 145.64003 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "373f1d18-1627-415d-8f9f-0acf5d415f4b", - "Position": { - "x": -932.7399, - "y": -54.97, - "z": 160.74 - }, - "Rotation": 30.89, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "382b4a79-0a0f-4242-b444-0bdaf7f1b52b", - "Position": { - "x": -55.1084747, - "y": -18.2493973, - "z": -189.201614 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3854290b-d134-402f-bf5a-0255dd0639bd", - "Position": { - "x": 13.6999817, - "y": -26.2264748, - "z": -163.839981 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } + { + "BossName": "pmcUSEC", + "BossChance": 30.0, + "BossZone": "ZoneSmuglers", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,1,2", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "TriggerId": "", + "TriggerName": "", + "IgnoreMaxBots": true, + "ForceSpawn": false, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false + } + ], + "SpawnPointParams": [ + { + "Id": "012debaa-649e-4aae-bcd1-c479bf8efbe0", + "Position": { + "x": -917.4199, + "y": -58.32, + "z": 254.24 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneForestTruck", - "CorePointId": 11 - }, - { - "Id": "398cd48f-d699-4073-9878-2d699fbe76aa", - "Position": { - "x": -581.0, - "y": -59.3917923, - "z": 499.800018 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "04a50f48-34c2-4e5d-9714-06988624c36a", + "Position": { + "x": -936.449951, + "y": -55.47, + "z": 163.39003 + }, + "Rotation": 28.5099983, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRailWays", - "CorePointId": 4 - }, - { - "Id": "3a50464e-38ed-483d-8945-8c43ab5850e6", - "Position": { - "x": -597.399963, - "y": -45.4100037, - "z": 155.610031 - }, - "Rotation": 88.89, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0706f78c-9b04-45b9-bcfe-405ea09a68e6", + "Position": { + "x": -295.389984, + "y": -5.134326, + "z": -127.259995 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3ca7c6e3-3fb2-4a6d-ac4b-1eb77a32b9ac", - "Position": { - "x": -326.03, - "y": -4.52999973, - "z": -105.619995 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "07a58e70-dbfe-4226-8b2e-237c3e3675f5", + "Position": { + "x": 183.65, + "y": -46.69635, + "z": 44.0399933 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 7 - }, - { - "Id": "3d50c926-5b75-4541-af13-f8c0e730e72d", - "Position": { - "x": -296.3232, - "y": -62.0376167, - "z": 490.1558 - }, - "Rotation": 197.8742, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } + { + "Id": "08475ee7-0dfb-4e8e-82c8-e40283ee7d6c", + "Position": { + "x": 452.730042, + "y": -54.49, + "z": 190.86 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZonePort", - "CorePointId": 13 - }, - { - "Id": "3eddbe61-12b7-4bc2-aa73-2087c2eb9f2b", - "Position": { - "x": 448.879944, - "y": -54.46, - "z": 188.720016 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "085a9fa8-472e-4928-aa1e-ddb8f766e9a0", + "Position": { + "x": 409.830139, + "y": -54.32, + "z": 90.91002 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3fd55f19-ef15-4017-b468-cff2d9fe9b35", - "Position": { - "x": -932.111938, - "y": -54.481, - "z": 162.864029 - }, - "Rotation": 33.26, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "08eb4844-1742-4e80-ad4c-34133be10b53", + "Position": { + "x": 345.330139, + "y": -64.34, + "z": 333.19 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "408efa74-7257-4ffe-87f2-da4e05bacc23", - "Position": { - "x": 206.450012, - "y": -64.8, - "z": 443.370026 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } + { + "Id": "0a656c0b-40b8-4dfb-9821-eaf053da5bd8", + "Position": { + "x": 420.5501, + "y": -54.49, + "z": 153.660019 + }, + "Rotation": 230.53, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneIsland", - "CorePointId": 17 - }, - { - "Id": "4161383c-4c28-487c-a858-7733e662bec4", - "Position": { - "x": 341.460022, - "y": -56.29, - "z": 122.720016 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0baf5b66-31b0-4c2f-8f2e-4f4320a25243", + "Position": { + "x": 338.3902, + "y": -41.93, + "z": -272.38 + }, + "Rotation": 349.17, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "41baa266-6cd1-4990-ad73-443f9102cddf", - "Position": { - "x": -520.37, - "y": -25.6599045, - "z": 284.63 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } + { + "Id": "0cd882b4-e077-4f54-8d63-e368eb600ba7", + "Position": { + "x": 336.5401, + "y": -41.72, + "z": -269.62 + }, + "Rotation": 349.17, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneMeteoStation", - "CorePointId": 5 - }, - { - "Id": "4221f0c0-6158-4e35-9a72-cb10c741706f", - "Position": { - "x": -292.6332, - "y": -62.0376167, - "z": 493.6858 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.2 - } + { + "Id": "0d4d2d64-9c67-4369-92c6-993bdcc2745f", + "Position": { + "x": -872.579956, + "y": -43.98, + "z": 5.260025 + }, + "Rotation": 319.98, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZonePort", - "CorePointId": 13 - }, - { - "Id": "4349ecfb-ccd5-4a68-be17-d7fc1fe7cbb8", - "Position": { - "x": 335.399963, - "y": -41.8500023, - "z": -273.149963 - }, - "Rotation": 349.17, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0e75428d-8a9e-468b-ba73-1275cd67171d", + "Position": { + "x": -837.809937, + "y": -55.4400024, + "z": 279.81 + }, + "Rotation": 316.25, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "438f6b11-098b-4b8a-96ed-954766b846e3", - "Position": { - "x": 282.750061, - "y": -56.24, - "z": 172.330032 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0f1035bf-0342-4430-8b92-e463f896fc94", + "Position": { + "x": 328.860016, + "y": -64.65135, + "z": 326.53 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 220 + } + }, + "BotZoneName": "ZoneTunnel", + "CorePointId": 19 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "43bffd59-d912-4815-8999-33b995da8646", - "Position": { - "x": -632.42, - "y": -26.8423481, - "z": -240.12 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0f334893-a01d-44f4-a684-0040c05f7029", + "Position": { + "x": -58.0944748, + "y": -17.9813957, + "z": -189.791611 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSmuglers", - "CorePointId": 26 - }, - { - "Id": "4463561f-1ba3-4a5c-afdc-3981a4fd9642", - "Position": { - "x": -443.47998, - "y": -25.283453, - "z": 248.040009 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } + { + "Id": "0fa17404-2e01-429c-846b-783becee6163", + "Position": { + "x": -156.265991, + "y": -3.644, + "z": -82.5099945 + }, + "Rotation": 19.4150581, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 7 }, - "BotZoneName": "ZoneMeteoStation", - "CorePointId": 5 - }, - { - "Id": "4514864e-beb2-4e98-aa1e-c39d9da1db0c", - "Position": { - "x": -596.4799, - "y": -45.4100037, - "z": 157.780045 - }, - "Rotation": 108.770004, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "10914095-ef6a-448c-b03a-ec69c3c6bba0", + "Position": { + "x": 351.770081, + "y": -64.33, + "z": 334.900024 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "46825a63-3cc2-4652-a14d-f0ef49bd72b3", - "Position": { - "x": -156.61, - "y": -13.4983215, - "z": -343.31 - }, - "Rotation": 44.298996, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 98.1 - } + { + "Id": "10b6c3eb-78df-4487-9e83-ac0240062165", + "Position": { + "x": -847.959961, + "y": -55.86, + "z": 372.850037 + }, + "Rotation": 212.59, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBunker", - "CorePointId": 15 - }, - { - "Id": "46f4c17a-b7f5-4240-b591-78f776dcfd6d", - "Position": { - "x": -217.540009, - "y": -41.0012, - "z": 166.4 - }, - "Rotation": 276.228271, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "11941eb6-c3a3-4386-b873-8afa20560fcf", + "Position": { + "x": -876.2899, + "y": -44.89, + "z": 6.17002869 + }, + "Rotation": 2.969004, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZonePowerStation", - "CorePointId": 2 - }, - { - "Id": "4726b2e5-f64a-46b4-835a-f766f19ba25c", - "Position": { - "x": 357.550018, - "y": -59.62579, - "z": 328.87 - }, - "Rotation": 222.77774, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 212 - } + { + "Id": "12a9fde9-327d-4822-9f39-a77589cc8e6e", + "Position": { + "x": 447.020081, + "y": -54.3, + "z": 103.070023 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneTunnel", - "CorePointId": 19 - }, - { - "Id": "474b3d06-7368-4b8d-9a4d-2c9c223b71b2", - "Position": { - "x": 442.0301, - "y": -54.3, - "z": 103.970016 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "12c16199-687e-4ad7-a6e6-1ae437d0e676", + "Position": { + "x": -810.4599, + "y": -59.17, + "z": 458.040039 + }, + "Rotation": 198.48, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "47b2c388-edcf-4366-ad4b-f323db229951", - "Position": { - "x": 235.570114, - "y": -56.13, - "z": 129.720016 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "13b9c174-67fb-4657-a020-34bd04140295", + "Position": { + "x": -54.6084747, + "y": -18.2693958, + "z": -191.1216 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "47ea469e-314d-4d28-b095-32517d782669", - "Position": { - "x": -358.3532, - "y": -62.0151253, - "z": 555.8658 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "147b236f-de32-4086-8f95-00ca3ab4714b", + "Position": { + "x": -443.9, + "y": -25.962225, + "z": 259.87 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 170 + } + }, + "BotZoneName": "ZoneMeteoStation", + "CorePointId": 5 }, - "BotZoneName": "ZonePort", - "CorePointId": 13 - }, - { - "Id": "47f2d197-7e3e-49b6-803b-66fea4a4f34e", - "Position": { - "x": -776.879944, - "y": -40.06, - "z": 2.35002136 - }, - "Rotation": 17.1399956, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "153e740f-bdd1-4bd7-8a6c-668b14616343", + "Position": { + "x": -780.16, + "y": -40.2, + "z": 3.82002258 + }, + "Rotation": 12.65, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4b2a193c-2749-4497-93ba-75a8f6a3e218", - "Position": { - "x": -816.4799, - "y": -41.13, - "z": 2.33000183 - }, - "Rotation": 3.259948, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "17c35797-5dff-4662-b4d1-ccfea505387a", + "Position": { + "x": 27.3945618, + "y": -20.5940456, + "z": -211.800018 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 165 + } + }, + "BotZoneName": "ZoneForestTruck", + "CorePointId": 11 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4cf56dad-70f1-457c-824a-1628a508933a", - "Position": { - "x": -218.900024, - "y": -55.6409073, - "z": 379.015839 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "19e44d79-d199-444b-97e7-89e4b6a48ca2", + "Position": { + "x": -891.31, + "y": -46.061348, + "z": 2.02999878 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 175 + } + }, + "BotZoneName": "ZonePassClose", + "CorePointId": 18 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 20 - }, - { - "Id": "4d45d646-18b4-4602-b06d-128c933eb919", - "Position": { - "x": -693.9699, - "y": -59.57, - "z": 497.599976 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1a879937-4315-42ca-92f4-4b56d45e3c69", + "Position": { + "x": -697.6, + "y": -59.5997047, + "z": 497.7 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRailWays", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4e3a2705-96a2-467a-af09-a6f9b4a67f3e", - "Position": { - "x": 441.909973, - "y": -54.3, - "z": 106.030014 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1af5e649-023c-44a3-b55b-29bf555cd816", + "Position": { + "x": -220.86, + "y": -29.7583351, + "z": 189.53 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 1700.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZonePowerStationSniper", + "CorePointId": 10 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4f340491-d43e-4fd5-8447-65c925eacce6", - "Position": { - "x": -808.54, - "y": -59.17, - "z": 457.39 - }, - "Rotation": 199.92, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1aff115b-65d6-4b27-bbe1-4f147541caad", + "Position": { + "x": 269.370178, + "y": -56.42, + "z": 188.090012 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "50953d91-6601-4bca-ae2b-84708e1eff5d", - "Position": { - "x": 408.960022, - "y": -54.33, - "z": 168.61 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1c009c5c-0593-443b-8ae3-3ecf3bcf89ed", + "Position": { + "x": 434.240051, + "y": -54.28, + "z": 70.2500153 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "512349e6-7fbe-4f54-9234-59bcdb913d84", - "Position": { - "x": -309.5032, - "y": -62.0376167, - "z": 505.5958 - }, - "Rotation": 197.8742, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } + { + "Id": "1c0dbe2f-d873-4ae8-9505-43a0f777aef9", + "Position": { + "x": -134.798325, + "y": -10.67804, + "z": -351.499146 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 98.1 + } + }, + "BotZoneName": "ZoneBunker", + "CorePointId": 15 }, - "BotZoneName": "ZonePort", - "CorePointId": 13 - }, - { - "Id": "524d3dd3-fc54-4252-a2d6-3796462f47ab", - "Position": { - "x": -116.02, - "y": -10.0, - "z": -360.64 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 98.1 - } + { + "Id": "1d8bfebb-e39d-4bf4-9f24-9275e754b857", + "Position": { + "x": 433.95, + "y": -54.33, + "z": 67.82002 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBunker", - "CorePointId": 15 - }, - { - "Id": "525f08d2-b663-480c-8544-3c04e8be3067", - "Position": { - "x": -472.628479, - "y": -27.5093975, - "z": -97.03162 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "1e6d24f0-05d1-400b-bfff-a901d0c1dfab", + "Position": { + "x": 160.559982, + "y": -48.30135, + "z": 62.09999 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 112 + } + }, + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "54093830-8555-41f4-929f-2faa687aedd7", - "Position": { - "x": -62.58747, - "y": -17.7573967, - "z": -187.3036 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1e9215b0-eca7-43e9-a098-750d3a1d0718", + "Position": { + "x": -151.93, + "y": -4.86000061, + "z": -268.55 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 1700.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZoneBunkeSniper", + "CorePointId": 12 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "54571ae3-8329-4326-a812-678b5ead1d2e", - "Position": { - "x": -667.779968, - "y": -54.45, - "z": 324.839966 - }, - "Rotation": 120.843109, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "220a409b-6d31-4223-b3b6-21b6ba5e5d95", + "Position": { + "x": -27.5484772, + "y": -21.1193962, + "z": -129.1916 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5479a2e2-883c-4371-86a2-01098fb73d45", - "Position": { - "x": -318.789978, - "y": -5.134326, - "z": -173.12999 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "2231842f-d5f9-411a-ab01-02072fb11297", + "Position": { + "x": -61.54648, + "y": -18.0833969, + "z": -193.42662 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 8 - }, - { - "Id": "554075de-18c4-468b-9145-4bc8421fa158", - "Position": { - "x": -197.609985, - "y": -5.05, - "z": -169.939987 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "2510bd08-e90c-4d01-9d63-2fd9115851bc", + "Position": { + "x": 459.89, + "y": -54.4532776, + "z": 92.4900055 + }, + "Rotation": 277.9801, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneStartVillage", + "CorePointId": 6 }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 8 - }, - { - "Id": "56a56015-97cc-46fc-8940-03dd1d9dd3ea", - "Position": { - "x": -846.319946, - "y": -56.0, - "z": 372.789978 - }, - "Rotation": 218.2, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "28048da3-ecaa-45a6-8c3c-ff5c2956fe7c", + "Position": { + "x": 342.230042, + "y": -56.29, + "z": 116.64003 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "56d35730-0f36-4396-858d-b2128289b72a", - "Position": { - "x": -837.1699, - "y": -55.5, - "z": 276.69 - }, - "Rotation": 123.109993, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2912d83e-b7a3-404e-8cc2-5a801c64e524", + "Position": { + "x": -55.58847, + "y": -18.5793972, + "z": -187.481613 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "57664e55-8b30-470e-9835-b0a782b742ea", - "Position": { - "x": 123.419983, - "y": -48.44106, - "z": 55.3199921 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 112 - } + { + "Id": "2c11e954-f7e5-4a67-845c-54328c8b9c27", + "Position": { + "x": -916.209961, + "y": -58.34, + "z": 252.64003 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "58474a2e-3915-4fd5-b6e1-5fc4a581c2f2", - "Position": { - "x": 453.490051, - "y": -54.46, - "z": 188.680008 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2cff2324-432f-4e6e-bf5a-d15bff5354d1", + "Position": { + "x": 110.25, + "y": -48.48343, + "z": 138.139984 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 112 + } + }, + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "58a5c474-0e2f-4f65-98d0-50106e504300", - "Position": { - "x": -783.529968, - "y": -40.16, - "z": 4.92002869 - }, - "Rotation": 9.06, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2dbe2a68-dcba-4334-8e7f-04c5b77e2288", + "Position": { + "x": -490.86, + "y": -24.1813488, + "z": 203.33 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZoneMeteoStation", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "594acb82-cc88-43b0-bff1-0199e4195afb", - "Position": { - "x": -58.1954727, - "y": -18.2153969, - "z": -191.7256 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2dd04c2a-7e3e-426f-b6eb-9cf99ae0f01e", + "Position": { + "x": -469.34845, + "y": -27.859396, + "z": -96.37161 + }, + "Rotation": 83.38443, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5a7bf62c-c61b-45b5-9ac1-bbfa945c9718", - "Position": { - "x": 122.47, - "y": -48.44106, - "z": 92.81999 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 5 - } + { + "Id": "2e857187-f38e-4479-a6b8-19edbe9f1c50", + "Position": { + "x": -254.633, + "y": -45.5623474, + "z": 218.166992 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZonePowerStation", + "CorePointId": 16 }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "5b19b22a-c04f-4370-b653-6c6b80247016", - "Position": { - "x": -153.28, - "y": -4.86000061, - "z": -269.44 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 1700.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "30d699d9-b86d-4d75-b894-ad7f7d2396ed", + "Position": { + "x": -225.588989, + "y": -40.7633476, + "z": 167.765 + }, + "Rotation": 84.57507, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 15 + } + }, + "BotZoneName": "ZonePowerStation", + "CorePointId": 2 }, - "BotZoneName": "ZoneBunkeSniper", - "CorePointId": 12 - }, - { - "Id": "5c2478d1-5fbb-4750-9fbd-90ebe67cd81b", - "Position": { - "x": -474.9485, - "y": -29.2193966, - "z": -88.5516052 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "320348b2-0ef0-4df1-9643-4fb2be5c21c0", + "Position": { + "x": -72.17, + "y": -21.967, + "z": 10.4600067 + }, + "Rotation": 233.659576, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneBusStation", + "CorePointId": 14 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5c28c68f-15eb-4a21-98ae-29e4f6439d09", - "Position": { - "x": -550.27, - "y": -29.54135, - "z": -211.32 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "33cc2001-9b63-41bd-8f70-4c5406990171", + "Position": { + "x": 459.31, + "y": -54.17835, + "z": 55.7920074 + }, + "Rotation": 266.625641, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneStartVillage", + "CorePointId": 6 }, - "BotZoneName": "ZoneSmuglers", - "CorePointId": 27 - }, - { - "Id": "5dea0b6d-5d17-4cb0-bc82-a411e87cc99b", - "Position": { - "x": -232.69, - "y": -29.7583351, - "z": 192.980011 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 1700.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "349818b4-45de-4996-8c10-364391288c5c", + "Position": { + "x": -87.8699951, + "y": -42.39235, + "z": 272.28 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneForestGasStation", + "CorePointId": 2 }, - "BotZoneName": "ZonePowerStationSniper", - "CorePointId": 10 - }, - { - "Id": "5deae6e8-5819-4896-a198-3e5b42e3e863", - "Position": { - "x": -58.4224777, - "y": -18.4503975, - "z": -194.120621 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "34ac29bf-3a27-4e1f-816c-0731442834a2", + "Position": { + "x": 346.95, + "y": -64.76, + "z": 335.49 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5e1f7e2e-90b3-4dd8-bc05-5d708d558f4b", - "Position": { - "x": -837.819946, - "y": -55.170002, - "z": 281.51 - }, - "Rotation": 22.96, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3667563e-7a11-4b78-8343-2d1c16a34616", + "Position": { + "x": 203.769989, + "y": -64.57, + "z": 441.370026 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 117 + } + }, + "BotZoneName": "ZoneIsland", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5ed61a3a-1479-4875-af7a-9d4110220734", - "Position": { - "x": 447.0501, - "y": -54.3, - "z": 104.86 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "37094848-6ca3-4b9f-9b06-4abc64e144bf", + "Position": { + "x": 447.750061, + "y": -54.46, + "z": 145.64003 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5f737470-952a-4e02-88dc-1804c4f07bba", - "Position": { - "x": 418.5, - "y": -47.68135, - "z": 255.329987 - }, - "Rotation": 200.381073, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "373f1d18-1627-415d-8f9f-0acf5d415f4b", + "Position": { + "x": -932.7399, + "y": -54.97, + "z": 160.74 + }, + "Rotation": 30.89, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneTunnel", - "CorePointId": 19 - }, - { - "Id": "5fe5b3c3-0f56-44b9-b96e-36654b033117", - "Position": { - "x": -689.09, - "y": -59.57, - "z": 497.410034 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "382b4a79-0a0f-4242-b444-0bdaf7f1b52b", + "Position": { + "x": -55.1084747, + "y": -18.2493973, + "z": -189.201614 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6107b7f0-6ea8-4317-82d6-d67f696a8183", - "Position": { - "x": -472.438477, - "y": -27.0293961, - "z": -103.4716 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "3854290b-d134-402f-bf5a-0255dd0639bd", + "Position": { + "x": 13.6999817, + "y": -26.2264748, + "z": -163.839981 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 165 + } + }, + "BotZoneName": "ZoneForestTruck", + "CorePointId": 11 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "61421812-9ef3-4ca3-88bb-ca526149814d", - "Position": { - "x": -58.6384735, - "y": -18.609396, - "z": -195.821609 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "398cd48f-d699-4073-9878-2d699fbe76aa", + "Position": { + "x": -581.0, + "y": -59.3917923, + "z": 499.800018 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRailWays", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6203ef1f-8baf-42d9-b96e-c3fa79742ba8", - "Position": { - "x": -527.13, - "y": -26.95135, - "z": 287.35 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "3a50464e-38ed-483d-8945-8c43ab5850e6", + "Position": { + "x": -597.399963, + "y": -45.4100037, + "z": 155.610031 + }, + "Rotation": 88.89, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneMeteoStation", - "CorePointId": 5 - }, - { - "Id": "62462903-f1aa-4951-9e5b-5316a1eb11a0", - "Position": { - "x": -836.779968, - "y": -55.56, - "z": 275.040039 - }, - "Rotation": 199.74, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3ca7c6e3-3fb2-4a6d-ac4b-1eb77a32b9ac", + "Position": { + "x": -326.03, + "y": -4.52999973, + "z": -105.619995 + }, + "Rotation": 19.4150581, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "62b19ad5-4171-4dd7-88ea-f8682e2e9516", - "Position": { - "x": 244.94, - "y": -64.2984848, - "z": 442.58 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } + { + "Id": "3d50c926-5b75-4541-af13-f8c0e730e72d", + "Position": { + "x": -296.3232, + "y": -62.0376167, + "z": 490.1558 + }, + "Rotation": 197.8742, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 95 + } + }, + "BotZoneName": "ZonePort", + "CorePointId": 13 }, - "BotZoneName": "ZoneIsland", - "CorePointId": 17 - }, - { - "Id": "632f1f2d-5a02-4e51-8997-d5171fa26a32", - "Position": { - "x": 459.38, - "y": -54.585, - "z": 181.860016 - }, - "Rotation": 91.269104, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "3eddbe61-12b7-4bc2-aa73-2087c2eb9f2b", + "Position": { + "x": 448.879944, + "y": -54.46, + "z": 188.720016 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStartVillage", - "CorePointId": 6 - }, - { - "Id": "635421ff-68db-4d8c-b45d-c79704789dd5", - "Position": { - "x": -468.9585, - "y": -27.5993958, - "z": -99.65161 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "3fd55f19-ef15-4017-b468-cff2d9fe9b35", + "Position": { + "x": -932.111938, + "y": -54.481, + "z": 162.864029 + }, + "Rotation": 33.26, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6394c2ff-a787-497a-a82b-89bf528f0009", - "Position": { - "x": -893.32, - "y": -47.8613472, - "z": 35.4900055 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } + { + "Id": "408efa74-7257-4ffe-87f2-da4e05bacc23", + "Position": { + "x": 206.450012, + "y": -64.8, + "z": 443.370026 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 117 + } + }, + "BotZoneName": "ZoneIsland", + "CorePointId": 17 }, - "BotZoneName": "ZonePassClose", - "CorePointId": 18 - }, - { - "Id": "6420bc23-31ab-4b72-9149-90c6405f9852", - "Position": { - "x": -665.9699, - "y": -54.56, - "z": 326.3 - }, - "Rotation": 120.843109, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4161383c-4c28-487c-a858-7733e662bec4", + "Position": { + "x": 341.460022, + "y": -56.29, + "z": 122.720016 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6433d24d-cd7b-45a9-9383-04971236e848", - "Position": { - "x": 391.45, - "y": -60.17, - "z": 254.159988 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "41baa266-6cd1-4990-ad73-443f9102cddf", + "Position": { + "x": -520.37, + "y": -25.6599045, + "z": 284.63 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 170 + } + }, + "BotZoneName": "ZoneMeteoStation", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "653b1a4b-8863-496d-89cf-0bfd8393ba61", - "Position": { - "x": 199.670013, - "y": -64.42, - "z": 436.79 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } + { + "Id": "4221f0c0-6158-4e35-9a72-cb10c741706f", + "Position": { + "x": -292.6332, + "y": -62.0376167, + "z": 493.6858 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 131.2 + } + }, + "BotZoneName": "ZonePort", + "CorePointId": 13 }, - "BotZoneName": "ZoneIsland", - "CorePointId": 17 - }, - { - "Id": "653c7454-bcd7-41f9-9fab-8b978009c83b", - "Position": { - "x": -919.329956, - "y": -58.25, - "z": 258.969971 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4349ecfb-ccd5-4a68-be17-d7fc1fe7cbb8", + "Position": { + "x": 335.399963, + "y": -41.8500023, + "z": -273.149963 + }, + "Rotation": 349.17, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6581da65-0aa5-44da-a2cb-9bacb0ce7657", - "Position": { - "x": -695.57, - "y": -59.57, - "z": 497.68 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "438f6b11-098b-4b8a-96ed-954766b846e3", + "Position": { + "x": 282.750061, + "y": -56.24, + "z": 172.330032 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "65e6d797-7fed-4ffa-918d-e85d30ffe1d2", - "Position": { - "x": -638.28, - "y": -59.2350578, - "z": 423.48 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "43bffd59-d912-4815-8999-33b995da8646", + "Position": { + "x": -632.42, + "y": -26.8423481, + "z": -240.12 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSmuglers", + "CorePointId": 26 }, - "BotZoneName": "ZoneRailWays", - "CorePointId": 4 - }, - { - "Id": "697c5025-1260-44de-8473-a3603fcee3d1", - "Position": { - "x": -464.853973, - "y": -25.3133488, - "z": 272.68 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "4463561f-1ba3-4a5c-afdc-3981a4fd9642", + "Position": { + "x": -443.47998, + "y": -25.283453, + "z": 248.040009 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 170 + } + }, + "BotZoneName": "ZoneMeteoStation", + "CorePointId": 5 }, - "BotZoneName": "ZoneMeteoStation", - "CorePointId": 5 - }, - { - "Id": "698b0cea-682d-44e8-9e5e-35bbcb29acb9", - "Position": { - "x": 454.710022, - "y": -54.56, - "z": 191.99 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4514864e-beb2-4e98-aa1e-c39d9da1db0c", + "Position": { + "x": -596.4799, + "y": -45.4100037, + "z": 157.780045 + }, + "Rotation": 108.770004, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6a9699f3-46c0-4c72-bcb0-2075ffe2a777", - "Position": { - "x": -62.4834747, - "y": -18.0183964, - "z": -190.145615 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "46825a63-3cc2-4652-a14d-f0ef49bd72b3", + "Position": { + "x": -156.61, + "y": -13.4983215, + "z": -343.31 + }, + "Rotation": 44.298996, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 98.1 + } + }, + "BotZoneName": "ZoneBunker", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6b5f3dea-8c56-4203-a688-fc19b973ccc8", - "Position": { - "x": 408.480042, - "y": -54.44, - "z": 163.520035 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "46f4c17a-b7f5-4240-b591-78f776dcfd6d", + "Position": { + "x": -217.540009, + "y": -41.0012, + "z": 166.4 + }, + "Rotation": 276.228271, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZonePowerStation", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6bd9ae1b-dfdc-486a-b3fa-8ea43dafd480", - "Position": { - "x": -623.65, - "y": -26.7413483, - "z": -224.44 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4726b2e5-f64a-46b4-835a-f766f19ba25c", + "Position": { + "x": 357.550018, + "y": -59.62579, + "z": 328.87 + }, + "Rotation": 222.77774, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 212 + } + }, + "BotZoneName": "ZoneTunnel", + "CorePointId": 19 }, - "BotZoneName": "ZoneSmuglers", - "CorePointId": 26 - }, - { - "Id": "6cae38ee-8013-49e2-83e6-74e038360c5e", - "Position": { - "x": -817.199951, - "y": -41.24, - "z": 3.97001648 - }, - "Rotation": 340.76, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "474b3d06-7368-4b8d-9a4d-2c9c223b71b2", + "Position": { + "x": 442.0301, + "y": -54.3, + "z": 103.970016 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6dcbdea1-20f6-4b76-afcb-b286e5bc139a", - "Position": { - "x": 388.870178, - "y": -58.39, - "z": 252.770035 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "47b2c388-edcf-4366-ad4b-f323db229951", + "Position": { + "x": 235.570114, + "y": -56.13, + "z": 129.720016 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6fd75375-cc0d-4878-8a20-b0570b76e685", - "Position": { - "x": -323.5232, - "y": -62.0376167, - "z": 498.4858 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } + { + "Id": "47ea469e-314d-4d28-b095-32517d782669", + "Position": { + "x": -358.3532, + "y": -62.0151253, + "z": 555.8658 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZonePort", + "CorePointId": 13 }, - "BotZoneName": "ZonePort", - "CorePointId": 13 - }, - { - "Id": "7046c91c-594b-40ef-87d9-2e7201f5637b", - "Position": { - "x": -143.76, - "y": -11.7710037, - "z": -343.349976 - }, - "Rotation": 27.9957886, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } + { + "Id": "47f2d197-7e3e-49b6-803b-66fea4a4f34e", + "Position": { + "x": -776.879944, + "y": -40.06, + "z": 2.35002136 + }, + "Rotation": 17.1399956, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBunker", - "CorePointId": 15 - }, - { - "Id": "743b4654-92d0-419c-9a67-ba4ceaf8d76d", - "Position": { - "x": -131.652, - "y": -5.080117, - "z": -103.83 - }, - "Rotation": 301.760071, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "4b2a193c-2749-4497-93ba-75a8f6a3e218", + "Position": { + "x": -816.4799, + "y": -41.13, + "z": 2.33000183 + }, + "Rotation": 3.259948, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 7 - }, - { - "Id": "754e02fa-b297-4522-82bc-809ed153f6a2", - "Position": { - "x": -350.31, - "y": -5.134326, - "z": -175.090012 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "4cf56dad-70f1-457c-824a-1628a508933a", + "Position": { + "x": -218.900024, + "y": -55.6409073, + "z": 379.015839 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 20 }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 7 - }, - { - "Id": "75c38946-8152-4995-9d27-92bf29808f66", - "Position": { - "x": 235.570114, - "y": -56.12, - "z": 131.48 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4d45d646-18b4-4602-b06d-128c933eb919", + "Position": { + "x": -693.9699, + "y": -59.57, + "z": 497.599976 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "765e1313-ab5f-49a5-a13c-d7e54a32f8dc", - "Position": { - "x": -874.03, - "y": -44.55135, - "z": 6.779999 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } + { + "Id": "4e3a2705-96a2-467a-af09-a6f9b4a67f3e", + "Position": { + "x": 441.909973, + "y": -54.3, + "z": 106.030014 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZonePassClose", - "CorePointId": 18 - }, - { - "Id": "76f61bd4-adb9-4376-9295-1806c79e4cd6", - "Position": { - "x": -692.32, - "y": -59.57, - "z": 497.57 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4f340491-d43e-4fd5-8447-65c925eacce6", + "Position": { + "x": -808.54, + "y": -59.17, + "z": 457.39 + }, + "Rotation": 199.92, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7873d881-5bb9-4f2b-a0c4-35302ec1d706", - "Position": { - "x": 318.4002, - "y": -54.56, - "z": -144.009979 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "50953d91-6601-4bca-ae2b-84708e1eff5d", + "Position": { + "x": 408.960022, + "y": -54.33, + "z": 168.61 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "78e220d5-bedf-49b0-b637-1f6f19a13fd3", - "Position": { - "x": -358.7232, - "y": -62.0376167, - "z": 523.105835 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 71.23 - } + { + "Id": "512349e6-7fbe-4f54-9234-59bcdb913d84", + "Position": { + "x": -309.5032, + "y": -62.0376167, + "z": 505.5958 + }, + "Rotation": 197.8742, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 95 + } + }, + "BotZoneName": "ZonePort", + "CorePointId": 13 }, - "BotZoneName": "ZonePort", - "CorePointId": 13 - }, - { - "Id": "7bbe3e83-685a-4fac-950c-64edb79e9573", - "Position": { - "x": 446.350159, - "y": -53.9, - "z": -74.739975 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "524d3dd3-fc54-4252-a2d6-3796462f47ab", + "Position": { + "x": -116.02, + "y": -10.0, + "z": -360.64 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 98.1 + } + }, + "BotZoneName": "ZoneBunker", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7c5203e0-f239-41b6-be4e-93366faaf857", - "Position": { - "x": -62.5794754, - "y": -17.7573967, - "z": -188.904617 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "525f08d2-b663-480c-8544-3c04e8be3067", + "Position": { + "x": -472.628479, + "y": -27.5093975, + "z": -97.03162 + }, + "Rotation": 83.38443, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7e1a96fa-8003-40a0-96bb-381e7ae9c00c", - "Position": { - "x": -604.62, - "y": -29.8313484, - "z": -176.88 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "54093830-8555-41f4-929f-2faa687aedd7", + "Position": { + "x": -62.58747, + "y": -17.7573967, + "z": -187.3036 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSmuglers", - "CorePointId": 26 - }, - { - "Id": "7f1651f7-d0c1-4a6d-a436-c2a425aa226c", - "Position": { - "x": -23.7584686, - "y": -21.1193962, - "z": -137.621613 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "54571ae3-8329-4326-a812-678b5ead1d2e", + "Position": { + "x": -667.779968, + "y": -54.45, + "z": 324.839966 + }, + "Rotation": 120.843109, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7f6f6ea4-f3eb-45d2-9028-2ec37ee7e0de", - "Position": { - "x": 450.850159, - "y": -54.46, - "z": 139.42 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5479a2e2-883c-4371-86a2-01098fb73d45", + "Position": { + "x": -318.789978, + "y": -5.134326, + "z": -173.12999 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7fa214c7-fc29-4dff-99a3-bb155d815c4a", - "Position": { - "x": 445.590149, - "y": -53.65, - "z": -71.33998 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "554075de-18c4-468b-9145-4bc8421fa158", + "Position": { + "x": -197.609985, + "y": -5.05, + "z": -169.939987 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7fd13404-5b44-4bff-b18b-b42ff698b52c", - "Position": { - "x": -876.529968, - "y": -43.85, - "z": 1.32002258 - }, - "Rotation": 305.88, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "56a56015-97cc-46fc-8940-03dd1d9dd3ea", + "Position": { + "x": -846.319946, + "y": -56.0, + "z": 372.789978 + }, + "Rotation": 218.2, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8003226b-ab94-41da-81c7-aef012c52444", - "Position": { - "x": -598.2299, - "y": -45.15, - "z": 154.060013 - }, - "Rotation": 94.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "56d35730-0f36-4396-858d-b2128289b72a", + "Position": { + "x": -837.1699, + "y": -55.5, + "z": 276.69 + }, + "Rotation": 123.109993, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8165dd60-fec8-493f-a745-5761aead7580", - "Position": { - "x": -248.72998, - "y": -40.9998665, - "z": 158.86 - }, - "Rotation": 200.5934, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "57664e55-8b30-470e-9835-b0a782b742ea", + "Position": { + "x": 123.419983, + "y": -48.44106, + "z": 55.3199921 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 112 + } + }, + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 }, - "BotZoneName": "ZonePowerStation", - "CorePointId": 2 - }, - { - "Id": "81edf0dc-9ee0-4483-a76e-a80dfc7ed31e", - "Position": { - "x": 433.7801, - "y": -54.31, - "z": 65.31001 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "58474a2e-3915-4fd5-b6e1-5fc4a581c2f2", + "Position": { + "x": 453.490051, + "y": -54.46, + "z": 188.680008 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "842e293c-842b-482b-a9df-8bf374a6811e", - "Position": { - "x": -815.569946, - "y": -59.17, - "z": 458.469971 - }, - "Rotation": 162.78, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "58a5c474-0e2f-4f65-98d0-50106e504300", + "Position": { + "x": -783.529968, + "y": -40.16, + "z": 4.92002869 + }, + "Rotation": 9.06, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "84a96df9-883b-496e-b44d-9fef512b29a0", - "Position": { - "x": -851.179932, - "y": -56.17, - "z": 372.7 - }, - "Rotation": 209.65, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "594acb82-cc88-43b0-bff1-0199e4195afb", + "Position": { + "x": -58.1954727, + "y": -18.2153969, + "z": -191.7256 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8526c84a-ce86-463a-9ea4-4acc7ce6a97b", - "Position": { - "x": 431.3902, - "y": -54.3, - "z": 66.68001 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5a7bf62c-c61b-45b5-9ac1-bbfa945c9718", + "Position": { + "x": 122.47, + "y": -48.44106, + "z": 92.81999 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 5 + } + }, + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "85c38e4d-b7d2-4ae6-8a0f-cda5d0596d54", - "Position": { - "x": 233.840134, - "y": -56.14, - "z": 130.820023 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5b19b22a-c04f-4370-b653-6c6b80247016", + "Position": { + "x": -153.28, + "y": -4.86000061, + "z": -269.44 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 1700.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZoneBunkeSniper", + "CorePointId": 12 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "86cc6aa6-add6-4214-a5c4-bf38417556d9", - "Position": { - "x": -604.48, - "y": -29.8313484, - "z": -179.41 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5c2478d1-5fbb-4750-9fbd-90ebe67cd81b", + "Position": { + "x": -474.9485, + "y": -29.2193966, + "z": -88.5516052 + }, + "Rotation": 83.38443, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSmuglers", - "CorePointId": 26 - }, - { - "Id": "86f7377d-a5a1-4b38-b15e-57a94d708490", - "Position": { - "x": 143.34, - "y": -33.54049, - "z": -288.24 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } + { + "Id": "5c28c68f-15eb-4a21-98ae-29e4f6439d09", + "Position": { + "x": -550.27, + "y": -29.54135, + "z": -211.32 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneSmuglers", + "CorePointId": 27 }, - "BotZoneName": "ZoneForestSpawn", - "CorePointId": 9 - }, - { - "Id": "885ee204-a09a-447e-a771-75a29f89c972", - "Position": { - "x": -621.76, - "y": -59.59, - "z": 496.840027 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "5dea0b6d-5d17-4cb0-bc82-a411e87cc99b", + "Position": { + "x": -232.69, + "y": -29.7583351, + "z": 192.980011 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 1700.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZonePowerStationSniper", + "CorePointId": 10 }, - "BotZoneName": "ZoneRailWays", - "CorePointId": 4 - }, - { - "Id": "89c56336-22f0-47ea-91e5-6a3866c9c0ed", - "Position": { - "x": 342.320129, - "y": -56.29, - "z": 114.560013 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5deae6e8-5819-4896-a198-3e5b42e3e863", + "Position": { + "x": -58.4224777, + "y": -18.4503975, + "z": -194.120621 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "89cfc8eb-1c43-4866-ba5e-39b520e7f838", - "Position": { - "x": -231.303, - "y": -4.1430006, - "z": -136.390991 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "5e1f7e2e-90b3-4dd8-bc05-5d708d558f4b", + "Position": { + "x": -837.819946, + "y": -55.170002, + "z": 281.51 + }, + "Rotation": 22.96, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 8 - }, - { - "Id": "8a734ba8-6fa0-4d55-aa5c-ab260a307087", - "Position": { - "x": -23.70848, - "y": -21.1193962, - "z": -130.091614 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "5ed61a3a-1479-4875-af7a-9d4110220734", + "Position": { + "x": 447.0501, + "y": -54.3, + "z": 104.86 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8b1ffc39-37ae-4544-ada6-98a0fbd23742", - "Position": { - "x": 228.1, - "y": -64.56713, - "z": 425.740021 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } + { + "Id": "5f737470-952a-4e02-88dc-1804c4f07bba", + "Position": { + "x": 418.5, + "y": -47.68135, + "z": 255.329987 + }, + "Rotation": 200.381073, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "ZoneTunnel", + "CorePointId": 19 }, - "BotZoneName": "ZoneIsland", - "CorePointId": 17 - }, - { - "Id": "8b3b39ba-1662-4d2f-9757-9ceca0a1d311", - "Position": { - "x": -818.1099, - "y": -41.2, - "z": 2.36000061 - }, - "Rotation": 341.800049, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5fe5b3c3-0f56-44b9-b96e-36654b033117", + "Position": { + "x": -689.09, + "y": -59.57, + "z": 497.410034 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8ba4ba4f-d64c-4df4-83cf-0187acea72ac", - "Position": { - "x": -195.01, - "y": -5.16733074, - "z": -113.72 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "6107b7f0-6ea8-4317-82d6-d67f696a8183", + "Position": { + "x": -472.438477, + "y": -27.0293961, + "z": -103.4716 + }, + "Rotation": 83.38443, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 8 - }, - { - "Id": "8d3e2d25-b7a0-4900-a0d1-a009e8e8aeae", - "Position": { - "x": -622.62, - "y": -29.7413483, - "z": -172.66 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "61421812-9ef3-4ca3-88bb-ca526149814d", + "Position": { + "x": -58.6384735, + "y": -18.609396, + "z": -195.821609 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSmuglers", - "CorePointId": 26 - }, - { - "Id": "8d725d25-76b6-4ced-99ab-f5992222ad85", - "Position": { - "x": -291.389984, - "y": -5.84999943, - "z": -54.5399933 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6203ef1f-8baf-42d9-b96e-c3fa79742ba8", + "Position": { + "x": -527.13, + "y": -26.95135, + "z": 287.35 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZoneMeteoStation", + "CorePointId": 5 }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 7 - }, - { - "Id": "8e586434-022a-4995-a3af-7afd333b4771", - "Position": { - "x": -135.68, - "y": -5.13, - "z": -171.279984 - }, - "Rotation": 359.157959, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "62462903-f1aa-4951-9e5b-5316a1eb11a0", + "Position": { + "x": -836.779968, + "y": -55.56, + "z": 275.040039 + }, + "Rotation": 199.74, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 7 - }, - { - "Id": "8e938d6c-9539-4e49-8b89-9cc43fe7312e", - "Position": { - "x": -96.84, - "y": -41.01888, - "z": 211.62999 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "62b19ad5-4171-4dd7-88ea-f8682e2e9516", + "Position": { + "x": 244.94, + "y": -64.2984848, + "z": 442.58 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 117 + } + }, + "BotZoneName": "ZoneIsland", + "CorePointId": 17 }, - "BotZoneName": "ZoneForestGasStation", - "CorePointId": 2 - }, - { - "Id": "8fbb5192-327b-4529-aee0-736d4768a6b9", - "Position": { - "x": -342.65, - "y": -3.711999, - "z": -82.83 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "632f1f2d-5a02-4e51-8997-d5171fa26a32", + "Position": { + "x": 459.38, + "y": -54.585, + "z": 181.860016 + }, + "Rotation": 91.269104, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneStartVillage", + "CorePointId": 6 }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 7 - }, - { - "Id": "8fdd3b42-e9d6-4423-98af-8e20428693d9", - "Position": { - "x": -215.5632, - "y": -55.7550659, - "z": 407.585815 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "635421ff-68db-4d8c-b45d-c79704789dd5", + "Position": { + "x": -468.9585, + "y": -27.5993958, + "z": -99.65161 + }, + "Rotation": 83.38443, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 20 - }, - { - "Id": "914d1a86-0305-4e7c-b9ab-913ca92c1233", - "Position": { - "x": -873.889954, - "y": -44.58, - "z": 8.420029 - }, - "Rotation": 328.44, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6394c2ff-a787-497a-a82b-89bf528f0009", + "Position": { + "x": -893.32, + "y": -47.8613472, + "z": 35.4900055 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 170 + } + }, + "BotZoneName": "ZonePassClose", + "CorePointId": 18 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "91ecd38d-841e-49fa-8c2c-8edae515393f", - "Position": { - "x": 388.31012, - "y": -59.16, - "z": 261.210022 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6420bc23-31ab-4b72-9149-90c6405f9852", + "Position": { + "x": -665.9699, + "y": -54.56, + "z": 326.3 + }, + "Rotation": 120.843109, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "92163c32-233b-42a0-ba3a-be10554ac266", - "Position": { - "x": -62.2004776, - "y": -18.0833969, - "z": -191.572617 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6433d24d-cd7b-45a9-9383-04971236e848", + "Position": { + "x": 391.45, + "y": -60.17, + "z": 254.159988 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9234a0bc-67f9-4015-98f8-faed8d6377b1", - "Position": { - "x": -23.70848, - "y": -21.1193962, - "z": -133.741608 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "653b1a4b-8863-496d-89cf-0bfd8393ba61", + "Position": { + "x": 199.670013, + "y": -64.42, + "z": 436.79 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 117 + } + }, + "BotZoneName": "ZoneIsland", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9236eae8-6d72-4ac9-94b2-f75a282c53f5", - "Position": { - "x": 404.909973, - "y": -54.3, - "z": 83.58003 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "653c7454-bcd7-41f9-9fab-8b978009c83b", + "Position": { + "x": -919.329956, + "y": -58.25, + "z": 258.969971 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "92c3485f-0cf2-40f4-8b30-a7bed149d5c1", - "Position": { - "x": -814.779968, - "y": -41.08, - "z": 2.33000183 - }, - "Rotation": 42.29, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6581da65-0aa5-44da-a2cb-9bacb0ce7657", + "Position": { + "x": -695.57, + "y": -59.57, + "z": 497.68 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "92d8e295-31b6-49ed-a345-0d527f169f8c", - "Position": { - "x": -683.5899, - "y": -40.09, - "z": 122.38002 - }, - "Rotation": 26.4700012, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "65e6d797-7fed-4ffa-918d-e85d30ffe1d2", + "Position": { + "x": -638.28, + "y": -59.2350578, + "z": 423.48 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRailWays", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "93324554-5b5c-4e70-af80-a3c1dcaab6c9", - "Position": { - "x": 122.43399, - "y": -48.48343, - "z": 136.44 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "697c5025-1260-44de-8473-a3603fcee3d1", + "Position": { + "x": -464.853973, + "y": -25.3133488, + "z": 272.68 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZoneMeteoStation", + "CorePointId": 5 }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "93778564-febf-4ca2-a846-a8ca4bbec91d", - "Position": { - "x": 128.37, - "y": -48.44106, - "z": 76.78 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 5 - } + { + "Id": "698b0cea-682d-44e8-9e5e-35bbcb29acb9", + "Position": { + "x": 454.710022, + "y": -54.56, + "z": 191.99 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "9387b94c-8b30-473b-9b51-ed923ac35abc", - "Position": { - "x": -343.06, - "y": -5.16733074, - "z": -113.16 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "6a9699f3-46c0-4c72-bcb0-2075ffe2a777", + "Position": { + "x": -62.4834747, + "y": -18.0183964, + "z": -190.145615 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 7 - }, - { - "Id": "963adbd1-9af1-4b86-ad81-c184ce1e88ea", - "Position": { - "x": -23.7184753, - "y": -21.1193962, - "z": -131.591614 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "6b5f3dea-8c56-4203-a688-fc19b973ccc8", + "Position": { + "x": 408.480042, + "y": -54.44, + "z": 163.520035 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "97dfda16-2fa5-4511-baf7-da5833763b90", - "Position": { - "x": -27.48848, - "y": -21.1193962, - "z": -125.871613 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "6bd9ae1b-dfdc-486a-b3fa-8ea43dafd480", + "Position": { + "x": -623.65, + "y": -26.7413483, + "z": -224.44 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSmuglers", + "CorePointId": 26 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "97f3983b-e39a-44b8-85b1-ec54a9a82e5b", - "Position": { - "x": -644.133, - "y": -26.85735, - "z": -230.226013 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6cae38ee-8013-49e2-83e6-74e038360c5e", + "Position": { + "x": -817.199951, + "y": -41.24, + "z": 3.97001648 + }, + "Rotation": 340.76, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSmuglers", - "CorePointId": 26 - }, - { - "Id": "98684f29-1a14-4872-bfe7-ad4832881a44", - "Position": { - "x": -849.509949, - "y": -56.24, - "z": 372.45 - }, - "Rotation": 208.52, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6dcbdea1-20f6-4b76-afcb-b286e5bc139a", + "Position": { + "x": 388.870178, + "y": -58.39, + "z": 252.770035 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "986d0d12-464b-4d21-beab-1dc3ca37017d", - "Position": { - "x": 282.600159, - "y": -56.24, - "z": 174.13002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6fd75375-cc0d-4878-8a20-b0570b76e685", + "Position": { + "x": -323.5232, + "y": -62.0376167, + "z": 498.4858 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 95 + } + }, + "BotZoneName": "ZonePort", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "989704c5-1c3a-4ea2-9a53-4482b17a1faa", - "Position": { - "x": -806.57, - "y": -59.24, - "z": 457.170044 - }, - "Rotation": 189.35, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7046c91c-594b-40ef-87d9-2e7201f5637b", + "Position": { + "x": -143.76, + "y": -11.7710037, + "z": -343.349976 + }, + "Rotation": 27.9957886, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 + } + }, + "BotZoneName": "ZoneBunker", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "993e3fea-466e-4e80-ace0-9ead90996f1d", - "Position": { - "x": 340.8001, - "y": -42.05, - "z": -271.269958 - }, - "Rotation": 349.17, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "743b4654-92d0-419c-9a67-ba4ceaf8d76d", + "Position": { + "x": -131.652, + "y": -5.080117, + "z": -103.83 + }, + "Rotation": 301.760071, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9945fa3e-bcf2-4174-98d4-462d5eb0082c", - "Position": { - "x": -284.300018, - "y": -34.408, - "z": 195.3 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "754e02fa-b297-4522-82bc-809ed153f6a2", + "Position": { + "x": -350.31, + "y": -5.134326, + "z": -175.090012 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 7 }, - "BotZoneName": "ZonePowerStation", - "CorePointId": 16 - }, - { - "Id": "9970036b-c1af-4840-83b9-1e31b4e6cf77", - "Position": { - "x": 235.649948, - "y": -56.12, - "z": 133.270035 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "75c38946-8152-4995-9d27-92bf29808f66", + "Position": { + "x": 235.570114, + "y": -56.12, + "z": 131.48 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9a5a8591-005c-4ab0-8231-3d3ed8480ebb", - "Position": { - "x": -667.629944, - "y": -54.4, - "z": 326.170044 - }, - "Rotation": 120.843109, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "765e1313-ab5f-49a5-a13c-d7e54a32f8dc", + "Position": { + "x": -874.03, + "y": -44.55135, + "z": 6.779999 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 165 + } + }, + "BotZoneName": "ZonePassClose", + "CorePointId": 18 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9c7c5171-f30e-4d4a-958e-04787fcaed11", - "Position": { - "x": 447.090149, - "y": -54.46, - "z": 143.48 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "76f61bd4-adb9-4376-9295-1806c79e4cd6", + "Position": { + "x": -692.32, + "y": -59.57, + "z": 497.57 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9de2af3e-cc42-4b8e-bc90-4c9591a8b6ab", - "Position": { - "x": -340.0132, - "y": -62.021347, - "z": 500.8758 - }, - "Rotation": 55.15233, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 71.23 - } + { + "Id": "7873d881-5bb9-4f2b-a0c4-35302ec1d706", + "Position": { + "x": 318.4002, + "y": -54.56, + "z": -144.009979 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZonePort", - "CorePointId": 13 - }, - { - "Id": "9f4a8692-feee-433b-96ad-e01829182d9e", - "Position": { - "x": 442.659973, - "y": -53.73, - "z": -72.3899841 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "78e220d5-bedf-49b0-b637-1f6f19a13fd3", + "Position": { + "x": -358.7232, + "y": -62.0376167, + "z": 523.105835 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 71.23 + } + }, + "BotZoneName": "ZonePort", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9fcd3f72-046c-4c1e-a22c-5d07a395f52d", - "Position": { - "x": -918.179932, - "y": -58.3, - "z": 255.88002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7bbe3e83-685a-4fac-950c-64edb79e9573", + "Position": { + "x": 446.350159, + "y": -53.9, + "z": -74.739975 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a00348b8-05c3-4ce5-a471-69ced43de90e", - "Position": { - "x": 444.1402, - "y": -53.76, - "z": -67.969986 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7c5203e0-f239-41b6-be4e-93366faaf857", + "Position": { + "x": -62.5794754, + "y": -17.7573967, + "z": -188.904617 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a0b13bdb-28fc-48d7-a823-e3308a1f1e1f", - "Position": { - "x": -897.18, - "y": -48.50135, - "z": 44.3399963 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } + { + "Id": "7e1a96fa-8003-40a0-96bb-381e7ae9c00c", + "Position": { + "x": -604.62, + "y": -29.8313484, + "z": -176.88 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSmuglers", + "CorePointId": 26 }, - "BotZoneName": "ZonePassClose", - "CorePointId": 18 - }, - { - "Id": "a1087f16-1d66-46f6-be69-7e1c7f50c684", - "Position": { - "x": -667.9299, - "y": -54.7, - "z": 323.56 - }, - "Rotation": 120.843109, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7f1651f7-d0c1-4a6d-a436-c2a425aa226c", + "Position": { + "x": -23.7584686, + "y": -21.1193962, + "z": -137.621613 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a16c0809-6476-48e9-8d18-cb005c3c79b5", - "Position": { - "x": -846.319946, - "y": -56.11, - "z": 371.19 - }, - "Rotation": 181.54, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7f6f6ea4-f3eb-45d2-9028-2ec37ee7e0de", + "Position": { + "x": 450.850159, + "y": -54.46, + "z": 139.42 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a21768bc-7a14-447d-a682-90715c7e6f7f", - "Position": { - "x": 342.230042, - "y": -56.29, - "z": 118.64003 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7fa214c7-fc29-4dff-99a3-bb155d815c4a", + "Position": { + "x": 445.590149, + "y": -53.65, + "z": -71.33998 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a31a56f9-193b-4e89-84ab-86ab0f7ff509", - "Position": { - "x": -166.7232, - "y": -55.6530457, - "z": 368.7158 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "7fd13404-5b44-4bff-b18b-b42ff698b52c", + "Position": { + "x": -876.529968, + "y": -43.85, + "z": 1.32002258 + }, + "Rotation": 305.88, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 20 - }, - { - "Id": "a4da313e-6e8c-4a25-b770-783791b1c38a", - "Position": { - "x": 347.340149, - "y": -63.89, - "z": 331.36 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8003226b-ab94-41da-81c7-aef012c52444", + "Position": { + "x": -598.2299, + "y": -45.15, + "z": 154.060013 + }, + "Rotation": 94.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a53d95b3-84f3-431a-8436-830ea88578e8", - "Position": { - "x": -812.959961, - "y": -59.21, - "z": 458.43 - }, - "Rotation": 192.16, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8165dd60-fec8-493f-a745-5761aead7580", + "Position": { + "x": -248.72998, + "y": -40.9998665, + "z": 158.86 + }, + "Rotation": 200.5934, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZonePowerStation", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a595d41d-bd59-4bb4-a70d-3f81e4ae223b", - "Position": { - "x": 448.06012, - "y": -54.46, - "z": 138.100021 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "81edf0dc-9ee0-4483-a76e-a80dfc7ed31e", + "Position": { + "x": 433.7801, + "y": -54.31, + "z": 65.31001 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a59d52cb-e92a-4e80-9000-eb2211045742", - "Position": { - "x": -58.1184769, - "y": -18.3203964, - "z": -187.752609 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "842e293c-842b-482b-a9df-8bf374a6811e", + "Position": { + "x": -815.569946, + "y": -59.17, + "z": 458.469971 + }, + "Rotation": 162.78, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a6d117b3-c753-4848-b654-84a0eff51cf9", - "Position": { - "x": -175.86319, - "y": -55.7017365, - "z": 394.2658 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "84a96df9-883b-496e-b44d-9fef512b29a0", + "Position": { + "x": -851.179932, + "y": -56.17, + "z": 372.7 + }, + "Rotation": 209.65, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 20 - }, - { - "Id": "a78644ff-720f-45a5-b31f-c4d13a96d3c4", - "Position": { - "x": -251.06, - "y": -40.9783936, - "z": 195.32 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "8526c84a-ce86-463a-9ea4-4acc7ce6a97b", + "Position": { + "x": 431.3902, + "y": -54.3, + "z": 66.68001 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZonePowerStation", - "CorePointId": 2 - }, - { - "Id": "a7bdd115-0387-42f5-8e08-abb08cd5d365", - "Position": { - "x": -23.5684814, - "y": -21.1193962, - "z": -125.551605 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "85c38e4d-b7d2-4ae6-8a0f-cda5d0596d54", + "Position": { + "x": 233.840134, + "y": -56.14, + "z": 130.820023 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a7c7a365-ea94-481f-b15a-c880eb6df6e6", - "Position": { - "x": -684.5699, - "y": -39.27, - "z": 123.930008 - }, - "Rotation": 10.1100016, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "86cc6aa6-add6-4214-a5c4-bf38417556d9", + "Position": { + "x": -604.48, + "y": -29.8313484, + "z": -179.41 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSmuglers", + "CorePointId": 26 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a8f40aef-a808-4b51-9961-9d3f9914d22b", - "Position": { - "x": -690.6999, - "y": -59.57, - "z": 497.469971 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "86f7377d-a5a1-4b38-b15e-57a94d708490", + "Position": { + "x": 143.34, + "y": -33.54049, + "z": -288.24 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 165 + } + }, + "BotZoneName": "ZoneForestSpawn", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a9fe2b24-041d-4f60-823b-1daa2c58a2d7", - "Position": { - "x": -146.11, - "y": -3.644, - "z": -82.6199951 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "885ee204-a09a-447e-a771-75a29f89c972", + "Position": { + "x": -621.76, + "y": -59.59, + "z": 496.840027 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRailWays", + "CorePointId": 4 }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 7 - }, - { - "Id": "aa0a2c1f-ad7d-4109-b629-1007e8b0698c", - "Position": { - "x": -52.42148, - "y": -19.0333958, - "z": -186.9706 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "89c56336-22f0-47ea-91e5-6a3866c9c0ed", + "Position": { + "x": 342.320129, + "y": -56.29, + "z": 114.560013 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "aaeee0f3-0a91-46b0-bc4a-9c6bcc31d097", - "Position": { - "x": -683.379944, - "y": -39.88, - "z": 119.13002 - }, - "Rotation": 79.99, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "89cfc8eb-1c43-4866-ba5e-39b520e7f838", + "Position": { + "x": -231.303, + "y": -4.1430006, + "z": -136.390991 + }, + "Rotation": 19.4150581, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ab31a334-dc31-4113-96d5-7fdd00a7a84b", - "Position": { - "x": 235.780075, - "y": -55.98, - "z": 125.530014 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8a734ba8-6fa0-4d55-aa5c-ab260a307087", + "Position": { + "x": -23.70848, + "y": -21.1193962, + "z": -130.091614 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b0a92ac1-3af8-4fd0-92ae-1e34bc84fae6", - "Position": { - "x": 148.15, - "y": -37.44359, - "z": -256.349976 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } + { + "Id": "8b1ffc39-37ae-4544-ada6-98a0fbd23742", + "Position": { + "x": 228.1, + "y": -64.56713, + "z": 425.740021 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 117 + } + }, + "BotZoneName": "ZoneIsland", + "CorePointId": 17 }, - "BotZoneName": "ZoneForestSpawn", - "CorePointId": 9 - }, - { - "Id": "b0ca8c3f-6d94-4e03-8e1f-5b3996478e2f", - "Position": { - "x": -666.1799, - "y": -54.56, - "z": 324.74 - }, - "Rotation": 120.843109, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8b3b39ba-1662-4d2f-9757-9ceca0a1d311", + "Position": { + "x": -818.1099, + "y": -41.2, + "z": 2.36000061 + }, + "Rotation": 341.800049, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b135a5e9-ed2e-4050-a17e-e9cbebcec1d2", - "Position": { - "x": 451.240051, - "y": -54.46, - "z": 188.780014 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8ba4ba4f-d64c-4df4-83cf-0187acea72ac", + "Position": { + "x": -195.01, + "y": -5.16733074, + "z": -113.72 + }, + "Rotation": 19.4150581, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b1f26a54-31e6-448e-a890-706cbc56420d", - "Position": { - "x": -683.039856, - "y": -40.03, - "z": 120.710007 - }, - "Rotation": 39.11, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8d3e2d25-b7a0-4900-a0d1-a009e8e8aeae", + "Position": { + "x": -622.62, + "y": -29.7413483, + "z": -172.66 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSmuglers", + "CorePointId": 26 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b2ea260b-dceb-44cc-b764-ddd328da57fd", - "Position": { - "x": 433.669983, - "y": -54.3, - "z": 62.7100067 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8d725d25-76b6-4ced-99ab-f5992222ad85", + "Position": { + "x": -291.389984, + "y": -5.84999943, + "z": -54.5399933 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b39110f2-aac6-4c71-9020-b2783420ced7", - "Position": { - "x": 450.5401, - "y": -54.46, - "z": 143.450027 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8e586434-022a-4995-a3af-7afd333b4771", + "Position": { + "x": -135.68, + "y": -5.13, + "z": -171.279984 + }, + "Rotation": 359.157959, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b3c955bd-b0a1-43eb-8141-16d30fb0a07d", - "Position": { - "x": 78.95999, - "y": -48.4015732, - "z": 91.57999 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 112 - } + { + "Id": "8e938d6c-9539-4e49-8b89-9cc43fe7312e", + "Position": { + "x": -96.84, + "y": -41.01888, + "z": 211.62999 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneForestGasStation", + "CorePointId": 2 }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "b4bff76c-3f49-49d7-9db4-61cf3a1b9269", - "Position": { - "x": -659.261, - "y": -26.8373489, - "z": -162.341 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "8fbb5192-327b-4529-aee0-736d4768a6b9", + "Position": { + "x": -342.65, + "y": -3.711999, + "z": -82.83 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 7 }, - "BotZoneName": "ZoneSmuglers", - "CorePointId": 26 - }, - { - "Id": "b7c84f7e-ea0b-471b-8608-df2186e054e0", - "Position": { - "x": 412.359924, - "y": -54.43, - "z": 154.73 - }, - "Rotation": 248.009979, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8fdd3b42-e9d6-4423-98af-8e20428693d9", + "Position": { + "x": -215.5632, + "y": -55.7550659, + "z": 407.585815 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 20 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b7da9272-2a76-4bc4-862f-c9e5dae5918d", - "Position": { - "x": -100.12, - "y": -22.2816, - "z": 10.7100067 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "914d1a86-0305-4e7c-b9ab-913ca92c1233", + "Position": { + "x": -873.889954, + "y": -44.58, + "z": 8.420029 + }, + "Rotation": 328.44, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBusStation", - "CorePointId": 14 - }, - { - "Id": "b90ace25-5546-4bf4-9670-b6ac0ac3c476", - "Position": { - "x": 404.830139, - "y": -54.3, - "z": 90.04002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "91ecd38d-841e-49fa-8c2c-8edae515393f", + "Position": { + "x": 388.31012, + "y": -59.16, + "z": 261.210022 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ba3c832a-23bc-4a83-ac4d-483c86999d0a", - "Position": { - "x": -615.14, - "y": -29.7413483, - "z": -177.85 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "92163c32-233b-42a0-ba3a-be10554ac266", + "Position": { + "x": -62.2004776, + "y": -18.0833969, + "z": -191.572617 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSmuglers", - "CorePointId": 26 - }, - { - "Id": "ba72e3de-9971-429d-9235-3f1803bb9a4a", - "Position": { - "x": -62.5414734, - "y": -17.5703964, - "z": -186.0136 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9234a0bc-67f9-4015-98f8-faed8d6377b1", + "Position": { + "x": -23.70848, + "y": -21.1193962, + "z": -133.741608 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bc626601-5b59-423c-a3b6-fcaf7f841bd9", - "Position": { - "x": -192.393188, - "y": -55.693428, - "z": 367.8458 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "9236eae8-6d72-4ac9-94b2-f75a282c53f5", + "Position": { + "x": 404.909973, + "y": -54.3, + "z": 83.58003 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 20 - }, - { - "Id": "bf0c91c9-6ee4-4fd3-8f03-9c02d79355ce", - "Position": { - "x": -934.569946, - "y": -54.56, - "z": 164.200027 - }, - "Rotation": 33.75, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "92c3485f-0cf2-40f4-8b30-a7bed149d5c1", + "Position": { + "x": -814.779968, + "y": -41.08, + "z": 2.33000183 + }, + "Rotation": 42.29, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bf77b78e-1f10-45f9-9f56-022636656e57", - "Position": { - "x": -918.779968, - "y": -58.27, - "z": 257.420044 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "92d8e295-31b6-49ed-a345-0d527f169f8c", + "Position": { + "x": -683.5899, + "y": -40.09, + "z": 122.38002 + }, + "Rotation": 26.4700012, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bf83503c-7a7f-4e43-8626-dbb8121e0443", - "Position": { - "x": -23.6084747, - "y": -21.1193962, - "z": -127.801605 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "93324554-5b5c-4e70-af80-a3c1dcaab6c9", + "Position": { + "x": 122.43399, + "y": -48.48343, + "z": 136.44 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c018a1cc-6aca-45bf-80b6-b0dacc6b796f", - "Position": { - "x": 388.8001, - "y": -60.23, - "z": 249.969986 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "93778564-febf-4ca2-a846-a8ca4bbec91d", + "Position": { + "x": 128.37, + "y": -48.44106, + "z": 76.78 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 5 + } + }, + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c0cfd064-a695-45d7-8be9-e1af339c58b1", - "Position": { - "x": 415.18, - "y": -54.41, - "z": 154.680008 - }, - "Rotation": 220.55, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9387b94c-8b30-473b-9b51-ed923ac35abc", + "Position": { + "x": -343.06, + "y": -5.16733074, + "z": -113.16 + }, + "Rotation": 19.4150581, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c0f12c99-a339-46f3-be4b-fa6dbb58184d", - "Position": { - "x": -681.379944, - "y": -40.92, - "z": 120.08 - }, - "Rotation": 32.49001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "963adbd1-9af1-4b86-ad81-c184ce1e88ea", + "Position": { + "x": -23.7184753, + "y": -21.1193962, + "z": -131.591614 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c10525ce-aa6d-4077-98a6-b7580b0acff0", - "Position": { - "x": 162.59, - "y": -34.96685, - "z": -296.289978 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } + { + "Id": "97dfda16-2fa5-4511-baf7-da5833763b90", + "Position": { + "x": -27.48848, + "y": -21.1193962, + "z": -125.871613 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneForestSpawn", - "CorePointId": 9 - }, - { - "Id": "c2b1f531-0bb7-48f1-9ec8-9adf34f5260e", - "Position": { - "x": -872.259949, - "y": -44.01, - "z": 7.96000671 - }, - "Rotation": 319.63, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "97f3983b-e39a-44b8-85b1-ec54a9a82e5b", + "Position": { + "x": -644.133, + "y": -26.85735, + "z": -230.226013 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSmuglers", + "CorePointId": 26 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c5425f62-ced4-4198-9a77-dc186b09fee9", - "Position": { - "x": -934.2699, - "y": -55.26, - "z": 162.39003 - }, - "Rotation": 30.3, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "98684f29-1a14-4872-bfe7-ad4832881a44", + "Position": { + "x": -849.509949, + "y": -56.24, + "z": 372.45 + }, + "Rotation": 208.52, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c5666fb4-802b-4968-bdf8-b32c06ebb168", - "Position": { - "x": -320.104218, - "y": -61.55635, - "z": 487.7708 - }, - "Rotation": 55.15233, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 71.23 - } + { + "Id": "986d0d12-464b-4d21-beab-1dc3ca37017d", + "Position": { + "x": 282.600159, + "y": -56.24, + "z": 174.13002 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZonePort", - "CorePointId": 13 - }, - { - "Id": "c5d9e312-8420-4e93-895b-edb98bd378e2", - "Position": { - "x": -52.20047, - "y": -18.7573967, - "z": -191.817612 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "989704c5-1c3a-4ea2-9a53-4482b17a1faa", + "Position": { + "x": -806.57, + "y": -59.24, + "z": 457.170044 + }, + "Rotation": 189.35, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c65fa07d-bbea-4dbc-a1a8-de4e6cc58a38", - "Position": { - "x": 315.970032, - "y": -54.56, - "z": -138.359985 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "993e3fea-466e-4e80-ace0-9ead90996f1d", + "Position": { + "x": 340.8001, + "y": -42.05, + "z": -271.269958 + }, + "Rotation": 349.17, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c7cb0954-dda5-42e0-9b79-a46147072046", - "Position": { - "x": -470.378479, - "y": -29.2793961, - "z": -88.11162 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "9945fa3e-bcf2-4174-98d4-462d5eb0082c", + "Position": { + "x": -284.300018, + "y": -34.408, + "z": 195.3 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZonePowerStation", + "CorePointId": 16 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c8604a7e-7edf-4ca6-bd3b-15b1c2a7610c", - "Position": { - "x": 458.95, - "y": -54.54093, - "z": 159.47 - }, - "Rotation": 89.74151, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "9970036b-c1af-4840-83b9-1e31b4e6cf77", + "Position": { + "x": 235.649948, + "y": -56.12, + "z": 133.270035 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStartVillage", - "CorePointId": 6 - }, - { - "Id": "c9cf5a12-0263-4478-8f0d-f6c73e39080a", - "Position": { - "x": -471.468445, - "y": -28.7993965, - "z": -91.53162 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "9a5a8591-005c-4ab0-8231-3d3ed8480ebb", + "Position": { + "x": -667.629944, + "y": -54.4, + "z": 326.170044 + }, + "Rotation": 120.843109, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "caa3664a-b205-46fa-b474-4a427ec98b4b", - "Position": { - "x": -655.188, - "y": -26.8373489, - "z": -164.215 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "9c7c5171-f30e-4d4a-958e-04787fcaed11", + "Position": { + "x": 447.090149, + "y": -54.46, + "z": 143.48 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSmuglers", - "CorePointId": 26 - }, - { - "Id": "cbc9edea-585f-441b-bc7d-e1e7ea1b9a7e", - "Position": { - "x": -170.957, - "y": -5.131999, - "z": -129.347992 - }, - "Rotation": 359.157959, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "9de2af3e-cc42-4b8e-bc90-4c9591a8b6ab", + "Position": { + "x": -340.0132, + "y": -62.021347, + "z": 500.8758 + }, + "Rotation": 55.15233, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 71.23 + } + }, + "BotZoneName": "ZonePort", + "CorePointId": 13 }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 8 - }, - { - "Id": "cc29cf79-1cb2-4d59-9f51-8b28ab60fe92", - "Position": { - "x": -312.623, - "y": -3.711999, - "z": -83.31999 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9f4a8692-feee-433b-96ad-e01829182d9e", + "Position": { + "x": 442.659973, + "y": -53.73, + "z": -72.3899841 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 7 - }, - { - "Id": "cc63cf8a-19b7-4e28-a00d-daee97f7744f", - "Position": { - "x": -325.729, - "y": -3.711999, - "z": -82.48799 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9fcd3f72-046c-4c1e-a22c-5d07a395f52d", + "Position": { + "x": -918.179932, + "y": -58.3, + "z": 255.88002 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 7 - }, - { - "Id": "cd50d306-1cfa-4829-a915-043e547288af", - "Position": { - "x": -595.16, - "y": -45.0700035, - "z": 159.190018 - }, - "Rotation": 96.22, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a00348b8-05c3-4ce5-a471-69ced43de90e", + "Position": { + "x": 444.1402, + "y": -53.76, + "z": -67.969986 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d08c5d12-e998-4805-a39a-072bc774b59f", - "Position": { - "x": -665.5697, - "y": -53.87608, - "z": 420.347137 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "a0b13bdb-28fc-48d7-a823-e3308a1f1e1f", + "Position": { + "x": -897.18, + "y": -48.50135, + "z": 44.3399963 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 170 + } + }, + "BotZoneName": "ZonePassClose", + "CorePointId": 18 }, - "BotZoneName": "ZoneRailWays", - "CorePointId": 4 - }, - { - "Id": "d2eada9d-956f-4f1a-bf87-5c1cc813719c", - "Position": { - "x": -139.86, - "y": -21.86, - "z": 5.12001038 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } + { + "Id": "a1087f16-1d66-46f6-be69-7e1c7f50c684", + "Position": { + "x": -667.9299, + "y": -54.7, + "z": 323.56 + }, + "Rotation": 120.843109, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBusStation", - "CorePointId": 14 - }, - { - "Id": "d3134c35-d002-4460-8770-4521bff63908", - "Position": { - "x": -51.72548, - "y": -18.7543964, - "z": -189.127609 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a16c0809-6476-48e9-8d18-cb005c3c79b5", + "Position": { + "x": -846.319946, + "y": -56.11, + "z": 371.19 + }, + "Rotation": 181.54, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d3a45967-46a2-4797-83bd-658ed2863db8", - "Position": { - "x": 72.59999, - "y": -31.1844521, - "z": -156.3 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } + { + "Id": "a21768bc-7a14-447d-a682-90715c7e6f7f", + "Position": { + "x": 342.230042, + "y": -56.29, + "z": 118.64003 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneForestTruck", - "CorePointId": 11 - }, - { - "Id": "d4c51ca2-1d8e-496c-9340-ab1d9c4abc31", - "Position": { - "x": 374.68, - "y": -59.69135, - "z": 314.669983 - }, - "Rotation": 277.5449, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "a31a56f9-193b-4e89-84ab-86ab0f7ff509", + "Position": { + "x": -166.7232, + "y": -55.6530457, + "z": 368.7158 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 20 }, - "BotZoneName": "ZoneTunnel", - "CorePointId": 19 - }, - { - "Id": "d635ccc7-2aea-4e5a-aa3d-2418daa3b472", - "Position": { - "x": -468.298462, - "y": -27.5993958, - "z": -101.861618 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "a4da313e-6e8c-4a25-b770-783791b1c38a", + "Position": { + "x": 347.340149, + "y": -63.89, + "z": 331.36 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d64497e5-aa96-44cd-8d36-18e11a777b0a", - "Position": { - "x": 181.433884, - "y": -37.2266273, - "z": -268.557648 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } + { + "Id": "a53d95b3-84f3-431a-8436-830ea88578e8", + "Position": { + "x": -812.959961, + "y": -59.21, + "z": 458.43 + }, + "Rotation": 192.16, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneForestSpawn", - "CorePointId": 9 - }, - { - "Id": "d78fdf91-d022-41d3-b595-5076e00d5517", - "Position": { - "x": 462.4, - "y": -54.4639664, - "z": 119.560013 - }, - "Rotation": 195.821518, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "a595d41d-bd59-4bb4-a70d-3f81e4ae223b", + "Position": { + "x": 448.06012, + "y": -54.46, + "z": 138.100021 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStartVillage", - "CorePointId": 6 - }, - { - "Id": "d80093d9-1dee-4d90-8438-38d5f9425ef4", - "Position": { - "x": 420.2, - "y": -47.58135, - "z": 243.54 - }, - "Rotation": 195.719528, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "a59d52cb-e92a-4e80-9000-eb2211045742", + "Position": { + "x": -58.1184769, + "y": -18.3203964, + "z": -187.752609 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneTunnel", - "CorePointId": 19 - }, - { - "Id": "d848ab74-083b-4454-94d3-3f5cb54b6f7a", - "Position": { - "x": 350.5401, - "y": -63.69, - "z": 332.75 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a6d117b3-c753-4848-b654-84a0eff51cf9", + "Position": { + "x": -175.86319, + "y": -55.7017365, + "z": 394.2658 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneGasStation", + "CorePointId": 20 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d8d720fb-ade2-4fbf-89ab-c448c9676322", - "Position": { - "x": -227.107, - "y": -5.082999, - "z": -54.086 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a78644ff-720f-45a5-b31f-c4d13a96d3c4", + "Position": { + "x": -251.06, + "y": -40.9783936, + "z": 195.32 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZonePowerStation", + "CorePointId": 2 }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 8 - }, - { - "Id": "d92df5a8-fe9d-4a40-839f-5f6652251b7d", - "Position": { - "x": 443.570129, - "y": -53.71, - "z": -75.58998 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a7bdd115-0387-42f5-8e08-abb08cd5d365", + "Position": { + "x": -23.5684814, + "y": -21.1193962, + "z": -125.551605 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "da195f7e-31b2-4e7b-850c-5d107efe3606", - "Position": { - "x": 125.065, - "y": -48.48343, - "z": 136.388 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 112 - } + { + "Id": "a7c7a365-ea94-481f-b15a-c880eb6df6e6", + "Position": { + "x": -684.5699, + "y": -39.27, + "z": 123.930008 + }, + "Rotation": 10.1100016, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "da3996f5-837c-4663-8182-ec3d78615404", - "Position": { - "x": -451.626526, - "y": -25.96373, - "z": 286.029572 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } + { + "Id": "a8f40aef-a808-4b51-9961-9d3f9914d22b", + "Position": { + "x": -690.6999, + "y": -59.57, + "z": 497.469971 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneMeteoStation", - "CorePointId": 5 - }, - { - "Id": "da7f0704-9a32-4743-9249-c0d140624733", - "Position": { - "x": -54.4034729, - "y": -18.5393963, - "z": -192.3936 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a9fe2b24-041d-4f60-823b-1daa2c58a2d7", + "Position": { + "x": -146.11, + "y": -3.644, + "z": -82.6199951 + }, + "Rotation": 19.4150581, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dba2b2cf-a399-4193-926d-17dd61d15435", - "Position": { - "x": 315.740051, - "y": -54.56, - "z": -142.139984 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "aa0a2c1f-ad7d-4109-b629-1007e8b0698c", + "Position": { + "x": -52.42148, + "y": -19.0333958, + "z": -186.9706 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dd45d07f-ac7b-4aaa-9a2f-643365a0b3d3", - "Position": { - "x": -815.559937, - "y": -41.19, - "z": 3.92002869 - }, - "Rotation": 1.4, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "aaeee0f3-0a91-46b0-bc4a-9c6bcc31d097", + "Position": { + "x": -683.379944, + "y": -39.88, + "z": 119.13002 + }, + "Rotation": 79.99, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ddad0594-dea6-446e-8b1e-1de3b7f43677", - "Position": { - "x": -61.2084732, - "y": -18.0833969, - "z": -196.8716 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "ab31a334-dc31-4113-96d5-7fdd00a7a84b", + "Position": { + "x": 235.780075, + "y": -55.98, + "z": 125.530014 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "df0eb3d7-47e4-4d21-8225-fd64893ff772", - "Position": { - "x": 442.0301, - "y": -54.3, - "z": 101.810013 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b0a92ac1-3af8-4fd0-92ae-1e34bc84fae6", + "Position": { + "x": 148.15, + "y": -37.44359, + "z": -256.349976 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 165 + } + }, + "BotZoneName": "ZoneForestSpawn", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e019f4bd-bb0b-44f1-b0b8-fe93384b2974", - "Position": { - "x": 267.3902, - "y": -56.24, - "z": 187.12001 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b0ca8c3f-6d94-4e03-8e1f-5b3996478e2f", + "Position": { + "x": -666.1799, + "y": -54.56, + "z": 324.74 + }, + "Rotation": 120.843109, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e0216058-7361-4809-9c05-245ab15728b5", - "Position": { - "x": -470.748474, - "y": -27.9993973, - "z": -93.9116058 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "b135a5e9-ed2e-4050-a17e-e9cbebcec1d2", + "Position": { + "x": 451.240051, + "y": -54.46, + "z": 188.780014 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e0dfb1f3-189b-4da7-bf05-8e68e4346f13", - "Position": { - "x": -778.56, - "y": -40.27, - "z": 2.97001648 - }, - "Rotation": 6.340001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e1cdf1a6-dd67-4e18-8b00-97556fd2b670", - "Position": { - "x": -663.53, - "y": -59.5880241, - "z": 496.900024 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "BotZoneName": "ZoneRailWays", - "CorePointId": 4 - }, - { - "Id": "e1e1d1e1-2dd3-4d48-9580-9077114da3c0", - "Position": { - "x": 446.610016, - "y": -48.09135, - "z": 235.079987 - }, - "Rotation": 210.132233, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "BotZoneName": "ZoneTunnel", - "CorePointId": 6 - }, - { - "Id": "e2a13b2e-16d3-420f-af05-905069917b66", - "Position": { - "x": 280.770081, - "y": -56.24, - "z": 175.250015 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e528890a-7517-4c9b-85c8-807986bc4ca8", - "Position": { - "x": -473.378479, - "y": -27.0293961, - "z": -100.101608 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e57506c3-0cb9-43b1-9ac9-7d2f5732fc0f", - "Position": { - "x": -143.63, - "y": -21.7317162, - "z": -21.1499939 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "BotZoneName": "ZoneBusStation", - "CorePointId": 14 - }, - { - "Id": "e815c01c-4f47-4a3e-9f36-b4ace91d79b4", - "Position": { - "x": 404.980042, - "y": -54.3, - "z": 85.5200043 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e85eb615-6087-411a-830e-dece6f8591a3", - "Position": { - "x": 212.299988, - "y": -64.98019, - "z": 443.23 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } - }, - "BotZoneName": "ZoneIsland", - "CorePointId": 17 - }, - { - "Id": "e9ed4b8b-1d3b-451e-b2a5-3b3ae705bb45", - "Position": { - "x": 134.297, - "y": -48.55235, - "z": 53.0139923 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "ea5c5ca2-148f-4ca4-a428-b0a7ce84921d", - "Position": { - "x": -837.7199, - "y": -55.47, - "z": 278.280029 - }, - "Rotation": 302.84, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "eaa395e8-9bb9-4412-ad91-85c116492f3e", - "Position": { - "x": -23.86847, - "y": -20.8793964, - "z": -139.7216 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ebc1a9f2-c27b-49fc-bf03-c3ea42356d9b", - "Position": { - "x": -234.599991, - "y": -5.16861629, - "z": -174.900009 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 8 - }, - { - "Id": "ec25a1ad-30c5-412d-bc4f-9d36ced86ee0", - "Position": { - "x": 109.22998, - "y": -48.30135, - "z": 95.87999 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 5 - } - }, - "BotZoneName": "ZoneGreenHouses", - "CorePointId": 1 - }, - { - "Id": "ec5cc227-6c8b-43aa-a247-78f47ac5d91d", - "Position": { - "x": -188.5232, - "y": -65.00135, - "z": 447.6358 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } - }, - "BotZoneName": "ZoneGasStation", - "CorePointId": 20 - }, - { - "Id": "ec61521c-c1c7-4337-b1d8-f3c61f250dfd", - "Position": { - "x": -356.953217, - "y": -61.85135, - "z": 528.2658 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "BotZoneName": "ZonePort", - "CorePointId": 13 - }, - { - "Id": "ef2f2161-0120-46af-8fe6-06fcf8bbb5f7", - "Position": { - "x": 341.990051, - "y": -42.16, - "z": -267.94 - }, - "Rotation": 349.17, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ef4e1953-ed0d-42c5-b1e8-6b58db5c6f44", - "Position": { - "x": 387.879944, - "y": -60.33, - "z": 263.87 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "eff6da9e-20f3-460c-96c8-b78f445f8190", - "Position": { - "x": -168.695984, - "y": -3.644, - "z": -83.987 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "ZoneSanatorium1", - "CorePointId": 8 - }, - { - "Id": "f02a9792-7ea5-451c-bb2c-1bab854912d3", - "Position": { - "x": -122.083717, - "y": -9.238266, - "z": -356.685 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "BotZoneName": "ZoneBunker", - "CorePointId": 15 - }, - { - "Id": "f1853db8-4c6f-41f8-9998-e8984ff1d71e", - "Position": { - "x": -78.19, - "y": -21.8066673, - "z": -6.08999634 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "BotZoneName": "ZoneBusStation", - "CorePointId": 14 - }, - { - "Id": "f2cce129-3b6d-4d74-a6f7-a7e909b33814", - "Position": { - "x": 407.19, - "y": -54.31, - "z": 90.13002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f3dc2121-5ac2-418c-8907-a8917c3a09b2", - "Position": { - "x": -23.6084747, - "y": -21.1193962, - "z": -135.5216 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f3fab340-0d6e-49d3-abf9-609f10262382", - "Position": { - "x": -598.55, - "y": -44.6400032, - "z": 152.14003 - }, - "Rotation": 111.609993, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f451a986-9344-43f7-a6cd-4c2c25993bd6", - "Position": { - "x": -781.769958, - "y": -40.22, - "z": 4.45002747 - }, - "Rotation": 15.250001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Riverside", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f79c4cad-9e70-4da7-bae8-19c2ff9bd403", - "Position": { - "x": -53.22348, - "y": -18.7573967, - "z": -195.6136 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f7d9fd21-aa76-4c4f-ac8e-5019ad44fbed", - "Position": { - "x": -54.0254822, - "y": -18.7153969, - "z": -193.853622 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f883d201-beea-44b0-981b-3e5416ca1d3d", - "Position": { - "x": 316.06012, - "y": -54.56, - "z": -144.089981 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fa5ef3eb-f86a-4f3d-a4b4-11105d318930", - "Position": { - "x": 315.860168, - "y": -54.56, - "z": -140.279984 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fa73db25-31b0-4f1d-8a91-b2ae6f08154c", - "Position": { - "x": -299.15, - "y": -5.134326, - "z": -151.41 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 8 - }, - { - "Id": "fb7bd71f-8177-4417-8e29-916904ca2d8a", - "Position": { - "x": 341.460022, - "y": -56.29, - "z": 120.560013 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Village", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fc83f4a2-9434-46ba-828b-d54c8421a6a6", - "Position": { - "x": -272.846, - "y": -4.152999, - "z": -133.515 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "BotZoneName": "ZoneSanatorium2", - "CorePointId": 8 - }, - { - "Id": "fcbbf53a-b5ab-4de4-bb5b-0fe490d1614b", - "Position": { - "x": -105.990021, - "y": -40.13835, - "z": 244.969986 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "BotZoneName": "ZoneForestGasStation", - "CorePointId": 2 - }, - { - "Id": "fdd4ffb4-45df-40eb-8375-074071893683", - "Position": { - "x": -308.7532, - "y": -62.0376167, - "z": 477.2958 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 71.23 - } - }, - "BotZoneName": "ZonePort", - "CorePointId": 13 - } - ], - "maxItemCountInLocation": [ - { - "Value": 1, - "TemplateId": "57347ca924597744596b4e71" - } - ], - "AirdropParameters": [ - { - "PlaneAirdropStartMin": 300, - "PlaneAirdropStartMax": 900, - "PlaneAirdropEnd": 1800, - "PlaneAirdropChance": 0.2, - "PlaneAirdropMax": 1, - "PlaneAirdropCooldownMin": 900, - "PlaneAirdropCooldownMax": 1000, - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "UnsuccessfulTryPenalty": 600 - } - ], - "MatchMakerMinPlayersByWaitTime": [ - { - "time": 60, - "minPlayers": 7 - }, - { - "time": 70, - "minPlayers": 6 - }, - { - "time": 120, - "minPlayers": 5 - }, - { - "time": 180, - "minPlayers": 4 - }, - { - "time": 250, - "minPlayers": 3 - }, - { - "time": 330, - "minPlayers": 2 - }, - { - "time": 420, - "minPlayers": 1 - } - ], - "transits": [ - { - "id": 24, - "active": false, - "name": "SHO_TRANSIT_24", - "location": "Lighthouse", - "description": "SHO_TRANSIT_24_DESC", - "activateAfterSec": 420, - "target": "5704e4dad2720bb55b8b4567", - "time": 30, - "conditions": "SHO_TRANSIT_24_COND" - }, - { - "id": 25, - "active": false, - "name": "SHO_TRANSIT_25", - "location": "Terminal", - "description": "SHO_TRANSIT_25_DESC", - "activateAfterSec": 420, - "target": "5704e5a4d2720bb45b8b4567", - "time": 30, - "conditions": "SHO_TRANSIT_25_COND" - } - ], - "Id": "Shoreline", - "_Id": "5704e554d2720bac5b8b456e", - "Loot": [ - { - "Id": "container_shoreline_DesignStuff_00189", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510ab", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510ab", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "b1f26a54-31e6-448e-a890-706cbc56420d", + "Position": { + "x": -683.039856, + "y": -40.03, + "z": 120.710007 + }, + "Rotation": 39.11, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510ad", - "_tpl": "5e54f6af86f7742199090bf3", - "parentId": "66cbc20b9e95fdffc10510ab", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "b2ea260b-dceb-44cc-b764-ddd328da57fd", + "Position": { + "x": 433.669983, + "y": -54.3, + "z": 62.7100067 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510af", - "_tpl": "5e54f6af86f7742199090bf3", - "parentId": "66cbc20b9e95fdffc10510ab", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00176", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510b1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510b1", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 + { + "Id": "b39110f2-aac6-4c71-9020-b2783420ced7", + "Position": { + "x": 450.5401, + "y": -54.46, + "z": 143.450027 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510b3", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc10510b1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00202", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10510b5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510b5", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "b3c955bd-b0a1-43eb-8141-16d30fb0a07d", + "Position": { + "x": 78.95999, + "y": -48.4015732, + "z": 91.57999 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 112 } }, - { - "_id": "66cbc20b9e95fdffc10510b7", - "_tpl": "560d657b4bdc2da74d8b4572", - "parentId": "66cbc20b9e95fdffc10510b5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 + }, + { + "Id": "b4bff76c-3f49-49d7-9db4-61cf3a1b9269", + "Position": { + "x": -659.261, + "y": -26.8373489, + "z": -162.341 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbc20b9e95fdffc10510b9", - "_tpl": "5eea21647547d6330471b3c9", - "parentId": "66cbc20b9e95fdffc10510b5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00177", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSmuglers", + "CorePointId": 26 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510bb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510bb", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 + { + "Id": "b7c84f7e-ea0b-471b-8608-df2186e054e0", + "Position": { + "x": 412.359924, + "y": -54.43, + "z": 154.73 + }, + "Rotation": 248.009979, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510bd", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbc20b9e95fdffc10510bb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00165", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510bf", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510bf", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 + { + "Id": "b7da9272-2a76-4bc4-862f-c9e5dae5918d", + "Position": { + "x": -100.12, + "y": -22.2816, + "z": 10.7100067 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbc20b9e95fdffc10510c1", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbc20b9e95fdffc10510bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00612", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBusStation", + "CorePointId": 14 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510c3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510c3", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "b90ace25-5546-4bf4-9670-b6ac0ac3c476", + "Position": { + "x": 404.830139, + "y": -54.3, + "z": 90.04002 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510c5", - "_tpl": "5a01c29586f77474660c694c", - "parentId": "66cbc20b9e95fdffc10510c3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00721", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510c7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510c7", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ba3c832a-23bc-4a83-ac4d-483c86999d0a", + "Position": { + "x": -615.14, + "y": -29.7413483, + "z": -177.85 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510c9", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbc20b9e95fdffc10510c7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneSmuglers", + "CorePointId": 26 + }, + { + "Id": "ba72e3de-9971-429d-9235-3f1803bb9a4a", + "Position": { + "x": -62.5414734, + "y": -17.5703964, + "z": -186.0136 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510cb", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbc20b9e95fdffc10510c7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00624", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510cd", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510cd", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "bc626601-5b59-423c-a3b6-fcaf7f841bd9", + "Position": { + "x": -192.393188, + "y": -55.693428, + "z": 367.8458 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbc20b9e95fdffc10510cf", - "_tpl": "63f4da90f31d4a33b87bd054", - "parentId": "66cbc20b9e95fdffc10510cd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00173", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneGasStation", + "CorePointId": 20 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510d1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510d1", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 + { + "Id": "bf0c91c9-6ee4-4fd3-8f03-9c02d79355ce", + "Position": { + "x": -934.569946, + "y": -54.56, + "z": 164.200027 + }, + "Rotation": 33.75, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510d3", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbc20b9e95fdffc10510d1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "bf77b78e-1f10-45f9-9f56-022636656e57", + "Position": { + "x": -918.779968, + "y": -58.27, + "z": 257.420044 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00146", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510d5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510d5", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "bf83503c-7a7f-4e43-8626-dbb8121e0443", + "Position": { + "x": -23.6084747, + "y": -21.1193962, + "z": -127.801605 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbc20b9e95fdffc10510d7", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbc20b9e95fdffc10510d5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00112", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10510d9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510d9", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c018a1cc-6aca-45bf-80b6-b0dacc6b796f", + "Position": { + "x": 388.8001, + "y": -60.23, + "z": 249.969986 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510db", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc10510d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1143 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "c0cfd064-a695-45d7-8be9-e1af339c58b1", + "Position": { + "x": 415.18, + "y": -54.41, + "z": 154.680008 + }, + "Rotation": 220.55, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510dd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc10510d9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 994 - } - } - ] - }, - { - "Id": "Lootable_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510df", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510df", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c0f12c99-a339-46f3-be4b-fa6dbb58184d", + "Position": { + "x": -681.379944, + "y": -40.92, + "z": 120.08 + }, + "Rotation": 32.49001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510e1", - "_tpl": "62a09e08de7ac81993580532", - "parentId": "66cbc20b9e95fdffc10510df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10510e3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510e3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c10525ce-aa6d-4077-98a6-b7580b0acff0", + "Position": { + "x": 162.59, + "y": -34.96685, + "z": -296.289978 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 170 } }, - { - "_id": "66cbc20b9e95fdffc10510e5", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66cbc20b9e95fdffc10510e3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00067", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneForestSpawn", + "CorePointId": 9 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10510e7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510e7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c2b1f531-0bb7-48f1-9ec8-9adf34f5260e", + "Position": { + "x": -872.259949, + "y": -44.01, + "z": 7.96000671 + }, + "Rotation": 319.63, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510e9", - "_tpl": "59136f6f86f774447a1ed173", - "parentId": "66cbc20b9e95fdffc10510e7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00066", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10510eb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510eb", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c5425f62-ced4-4198-9a77-dc186b09fee9", + "Position": { + "x": -934.2699, + "y": -55.26, + "z": 162.39003 + }, + "Rotation": 30.3, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510ed", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbc20b9e95fdffc10510eb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00065", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10510ef", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510ef", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c5666fb4-802b-4968-bdf8-b32c06ebb168", + "Position": { + "x": -320.104218, + "y": -61.55635, + "z": 487.7708 + }, + "Rotation": 55.15233, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 71.23 } }, - { - "_id": "66cbc20b9e95fdffc10510f1", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbc20b9e95fdffc10510ef", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00108", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZonePort", + "CorePointId": 13 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10510f3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510f3", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c5d9e312-8420-4e93-895b-edb98bd378e2", + "Position": { + "x": -52.20047, + "y": -18.7573967, + "z": -191.817612 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510f5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc10510f3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 847 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "c65fa07d-bbea-4dbc-a1a8-de4e6cc58a38", + "Position": { + "x": 315.970032, + "y": -54.56, + "z": -138.359985 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10510f7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc10510f3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 703 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00636", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10510f9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10510f9", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "c7cb0954-dda5-42e0-9b79-a46147072046", + "Position": { + "x": -470.378479, + "y": -29.2793961, + "z": -88.11162 + }, + "Rotation": 83.38443, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbc20b9e95fdffc10510fc", - "_tpl": "5649ed104bdc2d3d1c8b458b", - "parentId": "66cbc20b9e95fdffc10510f9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "c8604a7e-7edf-4ca6-bd3b-15b1c2a7610c", + "Position": { + "x": 458.95, + "y": -54.54093, + "z": 159.47 + }, + "Rotation": 89.74151, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbc20b9e95fdffc10510fd", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbc20b9e95fdffc10510fc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "BotZoneName": "ZoneStartVillage", + "CorePointId": 6 + }, + { + "Id": "c9cf5a12-0263-4478-8f0d-f6c73e39080a", + "Position": { + "x": -471.468445, + "y": -28.7993965, + "z": -91.53162 + }, + "Rotation": 83.38443, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbc20b9e95fdffc10510ff", - "_tpl": "587e0531245977466077a0f7", - "parentId": "66cbc20b9e95fdffc10510f9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "caa3664a-b205-46fa-b474-4a427ec98b4b", + "Position": { + "x": -655.188, + "y": -26.8373489, + "z": -164.215 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbc20b9e95fdffc1051101", - "_tpl": "573718ba2459775a75491131", - "parentId": "66cbc20b9e95fdffc10510f9", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 24 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00279", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSmuglers", + "CorePointId": 26 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051103", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051103", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "cbc9edea-585f-441b-bc7d-e1e7ea1b9a7e", + "Position": { + "x": -170.957, + "y": -5.131999, + "z": -129.347992 + }, + "Rotation": 359.157959, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbc20b9e95fdffc1051104", - "_tpl": "62e14904c2699c0ec93adc47", - "parentId": "66cbc20b9e95fdffc1051103", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "Foldable": { - "Folded": false + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 8 + }, + { + "Id": "cc29cf79-1cb2-4d59-9f51-8b28ab60fe92", + "Position": { + "x": -312.623, + "y": -3.711999, + "z": -83.31999 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 }, - "FireMode": { - "FireMode": "single" - } + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051105", - "_tpl": "633a98eab8b0506e48497c1a", - "parentId": "66cbc20b9e95fdffc1051104", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc105110c", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbc20b9e95fdffc1051105", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 7 + }, + { + "Id": "cc63cf8a-19b7-4e28-a00d-daee97f7744f", + "Position": { + "x": -325.729, + "y": -3.711999, + "z": -82.48799 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051106", - "_tpl": "62e2a754b6c0ee2f230cee0f", - "parentId": "66cbc20b9e95fdffc1051104", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051107", - "_tpl": "62e292e7b6c0ee2f230cee00", - "parentId": "66cbc20b9e95fdffc1051104", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051108", - "_tpl": "62e27a7865f0b1592a49e17b", - "parentId": "66cbc20b9e95fdffc1051104", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051109", - "_tpl": "62e15547db1a5c41971c1b5e", - "parentId": "66cbc20b9e95fdffc1051104", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc105110a", - "_tpl": "62ed189fb3608410ef5a2bfc", - "parentId": "66cbc20b9e95fdffc1051109", - "slotId": "mod_mount_001" - }, - { - "_id": "66cbc20b9e95fdffc105110b", - "_tpl": "637b9c37b7e3bc41b21ce71a", - "parentId": "66cbc20b9e95fdffc1051104", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbc20b9e95fdffc105110e", - "_tpl": "5aa2ba71e5b5b000137b758f", - "parentId": "66cbc20b9e95fdffc1051103", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00034", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 7 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051110", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051110", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 + { + "Id": "cd50d306-1cfa-4829-a915-043e547288af", + "Position": { + "x": -595.16, + "y": -45.0700035, + "z": 159.190018 + }, + "Rotation": 96.22, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051112", - "_tpl": "5e54f6af86f7742199090bf3", - "parentId": "66cbc20b9e95fdffc1051110", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d08c5d12-e998-4805-a39a-072bc774b59f", + "Position": { + "x": -665.5697, + "y": -53.87608, + "z": 420.347137 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbc20b9e95fdffc1051113", - "_tpl": "61a4c8884f95bc3b2c5dc96f", - "parentId": "66cbc20b9e95fdffc1051110", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "FireMode": { - "FireMode": "single" - } + "BotZoneName": "ZoneRailWays", + "CorePointId": 4 + }, + { + "Id": "d2eada9d-956f-4f1a-bf87-5c1cc813719c", + "Position": { + "x": -139.86, + "y": -21.86, + "z": 5.12001038 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 } }, - { - "_id": "66cbc20b9e95fdffc1051114", - "_tpl": "619f54a1d25cbd424731fb99", - "parentId": "66cbc20b9e95fdffc1051113", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051118", - "_tpl": "62330b3ed4dc74626d570b95", - "parentId": "66cbc20b9e95fdffc1051114", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 + "BotZoneName": "ZoneBusStation", + "CorePointId": 14 + }, + { + "Id": "d3134c35-d002-4460-8770-4521bff63908", + "Position": { + "x": -51.72548, + "y": -18.7543964, + "z": -189.127609 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051115", - "_tpl": "619f4cee4c58466fe1228435", - "parentId": "66cbc20b9e95fdffc1051113", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051116", - "_tpl": "619f4d304c58466fe1228437", - "parentId": "66cbc20b9e95fdffc1051113", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbc20b9e95fdffc1051117", - "_tpl": "619f4bffd25cbd424731fb97", - "parentId": "66cbc20b9e95fdffc1051113", - "slotId": "mod_pistol_grip" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00587", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105111a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105111a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d3a45967-46a2-4797-83bd-658ed2863db8", + "Position": { + "x": 72.59999, + "y": -31.1844521, + "z": -156.3 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 170 } }, - { - "_id": "66cbc20b9e95fdffc105111c", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbc20b9e95fdffc105111a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneForestTruck", + "CorePointId": 11 + }, + { + "Id": "d4c51ca2-1d8e-496c-9340-ab1d9c4abc31", + "Position": { + "x": 374.68, + "y": -59.69135, + "z": 314.669983 + }, + "Rotation": 277.5449, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbc20b9e95fdffc105111e", - "_tpl": "5d40425986f7743185265461", - "parentId": "66cbc20b9e95fdffc105111a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneTunnel", + "CorePointId": 19 + }, + { + "Id": "d635ccc7-2aea-4e5a-aa3d-2418daa3b472", + "Position": { + "x": -468.298462, + "y": -27.5993958, + "z": -101.861618 + }, + "Rotation": 83.38443, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbc20b9e95fdffc1051120", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbc20b9e95fdffc105111a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00728", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051122", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051122", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d64497e5-aa96-44cd-8d36-18e11a777b0a", + "Position": { + "x": 181.433884, + "y": -37.2266273, + "z": -268.557648 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 165 } }, - { - "_id": "66cbc20b9e95fdffc1051124", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66cbc20b9e95fdffc1051122", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneForestSpawn", + "CorePointId": 9 + }, + { + "Id": "d78fdf91-d022-41d3-b595-5076e00d5517", + "Position": { + "x": 462.4, + "y": -54.4639664, + "z": 119.560013 + }, + "Rotation": 195.821518, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbc20b9e95fdffc1051126", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbc20b9e95fdffc1051122", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00398", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneStartVillage", + "CorePointId": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051128", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051128", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d80093d9-1dee-4d90-8438-38d5f9425ef4", + "Position": { + "x": 420.2, + "y": -47.58135, + "z": 243.54 + }, + "Rotation": 195.719528, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 } }, - { - "_id": "66cbc20b9e95fdffc105112a", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbc20b9e95fdffc1051128", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneTunnel", + "CorePointId": 19 + }, + { + "Id": "d848ab74-083b-4454-94d3-3f5cb54b6f7a", + "Position": { + "x": 350.5401, + "y": -63.69, + "z": 332.75 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105112c", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbc20b9e95fdffc1051128", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d8d720fb-ade2-4fbf-89ab-c448c9676322", + "Position": { + "x": -227.107, + "y": -5.082999, + "z": -54.086 + }, + "Rotation": 19.4150581, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbc20b9e95fdffc105112e", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbc20b9e95fdffc1051128", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00671", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 8 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051130", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051130", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d92df5a8-fe9d-4a40-839f-5f6652251b7d", + "Position": { + "x": 443.570129, + "y": -53.71, + "z": -75.58998 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051132", - "_tpl": "5bc9c377d4351e3bac12251b", - "parentId": "66cbc20b9e95fdffc1051130", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "da195f7e-31b2-4e7b-850c-5d107efe3606", + "Position": { + "x": 125.065, + "y": -48.48343, + "z": 136.388 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 112 } }, - { - "_id": "66cbc20b9e95fdffc1051134", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbc20b9e95fdffc1051130", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 + }, + { + "Id": "da3996f5-837c-4663-8182-ec3d78615404", + "Position": { + "x": -451.626526, + "y": -25.96373, + "z": 286.029572 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 170 } }, - { - "_id": "66cbc20b9e95fdffc1051136", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbc20b9e95fdffc1051130", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneMeteoStation", + "CorePointId": 5 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051138", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051138", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "da7f0704-9a32-4743-9249-c0d140624733", + "Position": { + "x": -54.4034729, + "y": -18.5393963, + "z": -192.3936 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105113a", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbc20b9e95fdffc1051138", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "dba2b2cf-a399-4193-926d-17dd61d15435", + "Position": { + "x": 315.740051, + "y": -54.56, + "z": -142.139984 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105113c", - "_tpl": "5b432b2f5acfc4771e1c6622", - "parentId": "66cbc20b9e95fdffc1051138", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "dd45d07f-ac7b-4aaa-9a2f-643365a0b3d3", + "Position": { + "x": -815.559937, + "y": -41.19, + "z": 3.92002869 + }, + "Rotation": 1.4, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105113e", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbc20b9e95fdffc1051138", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ddad0594-dea6-446e-8b1e-1de3b7f43677", + "Position": { + "x": -61.2084732, + "y": -18.0833969, + "z": -196.8716 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051140", - "_tpl": "60b0f93284c20f0feb453da7", - "parentId": "66cbc20b9e95fdffc1051138", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00201", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051142", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051142", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "df0eb3d7-47e4-4d21-8225-fd64893ff772", + "Position": { + "x": 442.0301, + "y": -54.3, + "z": 101.810013 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051144", - "_tpl": "56e33634d2720bd8058b456b", - "parentId": "66cbc20b9e95fdffc1051142", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e019f4bd-bb0b-44f1-b0b8-fe93384b2974", + "Position": { + "x": 267.3902, + "y": -56.24, + "z": 187.12001 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051146", - "_tpl": "5aa2b89be5b5b0001569311f", - "parentId": "66cbc20b9e95fdffc1051142", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00272", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051148", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051148", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e0216058-7361-4809-9c05-245ab15728b5", + "Position": { + "x": -470.748474, + "y": -27.9993973, + "z": -93.9116058 + }, + "Rotation": 83.38443, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbc20b9e95fdffc105114a", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbc20b9e95fdffc1051148", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00571", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105114c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105114c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e0dfb1f3-189b-4da7-bf05-8e68e4346f13", + "Position": { + "x": -778.56, + "y": -40.27, + "z": 2.97001648 + }, + "Rotation": 6.340001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105114e", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc105114c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e1cdf1a6-dd67-4e18-8b00-97556fd2b670", + "Position": { + "x": -663.53, + "y": -59.5880241, + "z": 496.900024 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbc20b9e95fdffc1051150", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbc20b9e95fdffc105114c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneRailWays", + "CorePointId": 4 + }, + { + "Id": "e1e1d1e1-2dd3-4d48-9580-9077114da3c0", + "Position": { + "x": 446.610016, + "y": -48.09135, + "z": 235.079987 + }, + "Rotation": 210.132233, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbc20b9e95fdffc1051152", - "_tpl": "5d1b39a386f774252339976f", - "parentId": "66cbc20b9e95fdffc105114c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00628", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneTunnel", + "CorePointId": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051154", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051154", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e2a13b2e-16d3-420f-af05-905069917b66", + "Position": { + "x": 280.770081, + "y": -56.24, + "z": 175.250015 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051156", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbc20b9e95fdffc1051154", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e528890a-7517-4c9b-85c8-807986bc4ca8", + "Position": { + "x": -473.378479, + "y": -27.0293961, + "z": -100.101608 + }, + "Rotation": 83.38443, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbc20b9e95fdffc1051158", - "_tpl": "5efaf417aeb21837e749c7f2", - "parentId": "66cbc20b9e95fdffc1051154", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00621", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105115a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105115a", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e57506c3-0cb9-43b1-9ac9-7d2f5732fc0f", + "Position": { + "x": -143.63, + "y": -21.7317162, + "z": -21.1499939 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 130 } }, - { - "_id": "66cbc20b9e95fdffc105115b", - "_tpl": "587e02ff24597743df3deaeb", - "parentId": "66cbc20b9e95fdffc105115a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + "BotZoneName": "ZoneBusStation", + "CorePointId": 14 + }, + { + "Id": "e815c01c-4f47-4a3e-9f36-b4ace91d79b4", + "Position": { + "x": 404.980042, + "y": -54.3, + "z": 85.5200043 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 }, - "FireMode": { - "FireMode": "single" - } + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105115c", - "_tpl": "587e0531245977466077a0f7", - "parentId": "66cbc20b9e95fdffc105115b", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc105115d", - "_tpl": "634eff66517ccc8a960fc735", - "parentId": "66cbc20b9e95fdffc105115b", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc105115e", - "_tpl": "634f05a21f9f536910079b56", - "parentId": "66cbc20b9e95fdffc105115d", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbc20b9e95fdffc105115f", - "_tpl": "634f036a517ccc8a960fc746", - "parentId": "66cbc20b9e95fdffc105115e", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051160", - "_tpl": "634f03d40384a3ba4f06f874", - "parentId": "66cbc20b9e95fdffc105115f", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbc20b9e95fdffc1051161", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "66cbc20b9e95fdffc105115e", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051162", - "_tpl": "587df3a12459772c28142567", - "parentId": "66cbc20b9e95fdffc105115b", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051164", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66cbc20b9e95fdffc1051162", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e85eb615-6087-411a-830e-dece6f8591a3", + "Position": { + "x": 212.299988, + "y": -64.98019, + "z": 443.23 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 117 } }, - { - "_id": "66cbc20b9e95fdffc1051163", - "_tpl": "634f06262e5def262d0b30ca", - "parentId": "66cbc20b9e95fdffc105115b", - "slotId": "mod_reciever" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00344", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneIsland", + "CorePointId": 17 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051166", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051166", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e9ed4b8b-1d3b-451e-b2a5-3b3ae705bb45", + "Position": { + "x": 134.297, + "y": -48.55235, + "z": 53.0139923 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 } }, - { - "_id": "66cbc20b9e95fdffc1051168", - "_tpl": "5755383e24597772cb798966", - "parentId": "66cbc20b9e95fdffc1051166", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 + }, + { + "Id": "ea5c5ca2-148f-4ca4-a428-b0a7ce84921d", + "Position": { + "x": -837.7199, + "y": -55.47, + "z": 278.280029 + }, + "Rotation": 302.84, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105116a", - "_tpl": "635a758bfefc88a93f021b8a", - "parentId": "66cbc20b9e95fdffc1051166", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "eaa395e8-9bb9-4412-ad91-85c116492f3e", + "Position": { + "x": -23.86847, + "y": -20.8793964, + "z": -139.7216 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbc20b9e95fdffc105116c", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66cbc20b9e95fdffc1051166", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00208", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105116e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105116e", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ebc1a9f2-c27b-49fc-bf03-c3ea42356d9b", + "Position": { + "x": -234.599991, + "y": -5.16861629, + "z": -174.900009 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbc20b9e95fdffc1051170", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbc20b9e95fdffc105116e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 72 + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 8 + }, + { + "Id": "ec25a1ad-30c5-412d-bc4f-9d36ced86ee0", + "Position": { + "x": 109.22998, + "y": -48.30135, + "z": 95.87999 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 5 } }, - { - "_id": "66cbc20b9e95fdffc1051172", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbc20b9e95fdffc105116e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 98 + "BotZoneName": "ZoneGreenHouses", + "CorePointId": 1 + }, + { + "Id": "ec5cc227-6c8b-43aa-a247-78f47ac5d91d", + "Position": { + "x": -188.5232, + "y": -65.00135, + "z": 447.6358 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 170 } }, - { - "_id": "66cbc20b9e95fdffc1051174", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105116e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 894 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00696", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneGasStation", + "CorePointId": 20 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051176", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051176", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ec61521c-c1c7-4337-b1d8-f3c61f250dfd", + "Position": { + "x": -356.953217, + "y": -61.85135, + "z": 528.2658 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66cbc20b9e95fdffc1051178", - "_tpl": "602286df23506e50807090c6", - "parentId": "66cbc20b9e95fdffc1051176", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZonePort", + "CorePointId": 13 + }, + { + "Id": "ef2f2161-0120-46af-8fe6-06fcf8bbb5f7", + "Position": { + "x": 341.990051, + "y": -42.16, + "z": -267.94 + }, + "Rotation": 349.17, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105117a", - "_tpl": "634eff66517ccc8a960fc735", - "parentId": "66cbc20b9e95fdffc1051176", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ef4e1953-ed0d-42c5-b1e8-6b58db5c6f44", + "Position": { + "x": 387.879944, + "y": -60.33, + "z": 263.87 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105117c", - "_tpl": "60658776f2cb2e02a42ace2b", - "parentId": "66cbc20b9e95fdffc1051176", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "eff6da9e-20f3-460c-96c8-b78f445f8190", + "Position": { + "x": -168.695984, + "y": -3.644, + "z": -83.987 + }, + "Rotation": 19.4150581, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105117e", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbc20b9e95fdffc1051176", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneSanatorium1", + "CorePointId": 8 + }, + { + "Id": "f02a9792-7ea5-451c-bb2c-1bab854912d3", + "Position": { + "x": -122.083717, + "y": -9.238266, + "z": -356.685 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 120 } }, - { - "_id": "66cbc20b9e95fdffc1051180", - "_tpl": "615d8d878004cc50514c3233", - "parentId": "66cbc20b9e95fdffc1051176", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00713", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBunker", + "CorePointId": 15 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051182", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051182", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f1853db8-4c6f-41f8-9998-e8984ff1d71e", + "Position": { + "x": -78.19, + "y": -21.8066673, + "z": -6.08999634 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbc20b9e95fdffc1051184", - "_tpl": "5c1a1cc52e221602b3136e3d", - "parentId": "66cbc20b9e95fdffc1051182", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00550", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBusStation", + "CorePointId": 14 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051186", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051186", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f2cce129-3b6d-4d74-a6f7-a7e909b33814", + "Position": { + "x": 407.19, + "y": -54.31, + "z": 90.13002 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051188", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbc20b9e95fdffc1051186", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f3dc2121-5ac2-418c-8907-a8917c3a09b2", + "Position": { + "x": -23.6084747, + "y": -21.1193962, + "z": -135.5216 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbc20b9e95fdffc105118a", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbc20b9e95fdffc1051186", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f3fab340-0d6e-49d3-abf9-609f10262382", + "Position": { + "x": -598.55, + "y": -44.6400032, + "z": 152.14003 + }, + "Rotation": 111.609993, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105118c", - "_tpl": "590c657e86f77412b013051d", - "parentId": "66cbc20b9e95fdffc1051186", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00602", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105118e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105118e", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f451a986-9344-43f7-a6cd-4c2c25993bd6", + "Position": { + "x": -781.769958, + "y": -40.22, + "z": 4.45002747 + }, + "Rotation": 15.250001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Riverside", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051190", - "_tpl": "5a7c74b3e899ef0014332c29", - "parentId": "66cbc20b9e95fdffc105118e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f79c4cad-9e70-4da7-bae8-19c2ff9bd403", + "Position": { + "x": -53.22348, + "y": -18.7573967, + "z": -195.6136 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051192", - "_tpl": "5c1bc7752e221602b1779b34", - "parentId": "66cbc20b9e95fdffc105118e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f7d9fd21-aa76-4c4f-ac8e-5019ad44fbed", + "Position": { + "x": -54.0254822, + "y": -18.7153969, + "z": -193.853622 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051194", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbc20b9e95fdffc105118e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 19 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00556", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051196", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051196", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f883d201-beea-44b0-981b-3e5416ca1d3d", + "Position": { + "x": 316.06012, + "y": -54.56, + "z": -144.089981 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc1051198", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbc20b9e95fdffc1051196", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "fa5ef3eb-f86a-4f3d-a4b4-11105d318930", + "Position": { + "x": 315.860168, + "y": -54.56, + "z": -140.279984 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc105119a", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbc20b9e95fdffc1051196", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "fa73db25-31b0-4f1d-8a91-b2ae6f08154c", + "Position": { + "x": -299.15, + "y": -5.134326, + "z": -151.41 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbc20b9e95fdffc105119c", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66cbc20b9e95fdffc1051196", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00284", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 8 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105119e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105119e", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fb7bd71f-8177-4417-8e29-916904ca2d8a", + "Position": { + "x": 341.460022, + "y": -56.29, + "z": 120.560013 + }, + "Rotation": 271.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Village", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbc20b9e95fdffc10511a0", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66cbc20b9e95fdffc105119e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "fc83f4a2-9434-46ba-828b-d54c8421a6a6", + "Position": { + "x": -272.846, + "y": -4.152999, + "z": -133.515 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 } }, - { - "_id": "66cbc20b9e95fdffc10511a2", - "_tpl": "5cbdaf89ae9215000e5b9c94", - "parentId": "66cbc20b9e95fdffc105119e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneSanatorium2", + "CorePointId": 8 + }, + { + "Id": "fcbbf53a-b5ab-4de4-bb5b-0fe490d1614b", + "Position": { + "x": -105.990021, + "y": -40.13835, + "z": 244.969986 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbc20b9e95fdffc10511a4", - "_tpl": "5649d9a14bdc2d79388b4580", - "parentId": "66cbc20b9e95fdffc105119e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneForestGasStation", + "CorePointId": 2 + }, + { + "Id": "fdd4ffb4-45df-40eb-8375-074071893683", + "Position": { + "x": -308.7532, + "y": -62.0376167, + "z": 477.2958 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 71.23 } }, - { - "_id": "66cbc20b9e95fdffc10511a6", - "_tpl": "64b9e265c94d0d15c5027e35", - "parentId": "66cbc20b9e95fdffc105119e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZonePort", + "CorePointId": 13 + } + ], + "maxItemCountInLocation": [ + { + "Value": 1, + "TemplateId": "57347ca924597744596b4e71" + } + ], + "AirdropParameters": [ + { + "PlaneAirdropStartMin": 300, + "PlaneAirdropStartMax": 900, + "PlaneAirdropEnd": 1800, + "PlaneAirdropChance": 0.2, + "PlaneAirdropMax": 1, + "PlaneAirdropCooldownMin": 900, + "PlaneAirdropCooldownMax": 1000, + "AirdropPointDeactivateDistance": 50, + "MinPlayersCountToSpawnAirdrop": 6, + "UnsuccessfulTryPenalty": 600 + } + ], + "MatchMakerMinPlayersByWaitTime": [ + { + "time": 60, + "minPlayers": 7 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 70, + "minPlayers": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10511a8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511a8", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "time": 120, + "minPlayers": 5 + }, + { + "time": 180, + "minPlayers": 4 + }, + { + "time": 250, + "minPlayers": 3 + }, + { + "time": 330, + "minPlayers": 2 + }, + { + "time": 420, + "minPlayers": 1 + } + ], + "transits": [ + { + "id": 24, + "active": false, + "name": "SHO_TRANSIT_24", + "location": "Lighthouse", + "description": "SHO_TRANSIT_24_DESC", + "activateAfterSec": 420, + "target": "5704e4dad2720bb55b8b4567", + "time": 30, + "conditions": "SHO_TRANSIT_24_COND" + }, + { + "id": 25, + "active": false, + "name": "SHO_TRANSIT_25", + "location": "Terminal", + "description": "SHO_TRANSIT_25_DESC", + "activateAfterSec": 420, + "target": "5704e5a4d2720bb45b8b4567", + "time": 30, + "conditions": "SHO_TRANSIT_25_COND" + } + ], + "Id": "Shoreline", + "_Id": "5704e554d2720bac5b8b456e", + "Loot": [ + { + "Id": "container_shoreline_DesignStuff_00189", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511aa", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66cbc20b9e95fdffc10511a8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511ac", - "_tpl": "59e3596386f774176c10a2a2", - "parentId": "66cbc20b9e95fdffc10511a8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510ab", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510ab", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10511ae", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbc20b9e95fdffc10511a8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10510ad", + "_tpl": "5e54f6af86f7742199090bf3", + "parentId": "66cbc20b9e95fdffc10510ab", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10510af", + "_tpl": "5e54f6af86f7742199090bf3", + "parentId": "66cbc20b9e95fdffc10510ab", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00176", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511af", - "_tpl": "669fa3f88abd2662d80eee77", - "parentId": "66cbc20b9e95fdffc10511a8", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510b1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510b1", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbc20b9e95fdffc10510b3", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc10510b1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00202", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511b0", - "_tpl": "669fa4ba1bd4416eaa09b3c6", - "parentId": "66cbc20b9e95fdffc10511af", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511b1", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbc20b9e95fdffc10511b0", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbc20b9e95fdffc10511b2", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66cbc20b9e95fdffc10511af", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbc20b9e95fdffc10511b3", - "_tpl": "669fa5019aa2a422600442f6", - "parentId": "66cbc20b9e95fdffc10511af", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc10511b4", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbc20b9e95fdffc10511b3", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc10511b5", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbc20b9e95fdffc10511af", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc10511b6", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66cbc20b9e95fdffc10511b5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10510b5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510b5", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510b7", + "_tpl": "560d657b4bdc2da74d8b4572", + "parentId": "66cbc20b9e95fdffc10510b5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510b9", + "_tpl": "5eea21647547d6330471b3c9", + "parentId": "66cbc20b9e95fdffc10510b5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00100", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10511b8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511b8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00177", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511ba", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbc20b9e95fdffc10511b8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00099", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10511bc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511bc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511be", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbc20b9e95fdffc10511bc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510bb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510bb", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510bd", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbc20b9e95fdffc10510bb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00098", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10511c0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511c0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00165", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511c2", - "_tpl": "62a09e73af34e73a266d932a", - "parentId": "66cbc20b9e95fdffc10511c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10511c4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511c4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511c6", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbc20b9e95fdffc10511c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510bf", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510bf", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510c1", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbc20b9e95fdffc10510bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00192", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10511c8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511c8", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00612", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511ca", - "_tpl": "5b3f7bf05acfc433000ecf6b", - "parentId": "66cbc20b9e95fdffc10511c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510c3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510c3", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10510c5", + "_tpl": "5a01c29586f77474660c694c", + "parentId": "66cbc20b9e95fdffc10510c3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00721", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511cb", - "_tpl": "5c07c60e0db834002330051f", - "parentId": "66cbc20b9e95fdffc10511c8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510c7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510c7", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510c9", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbc20b9e95fdffc10510c7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbc20b9e95fdffc10510cb", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbc20b9e95fdffc10510c7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00624", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511cc", - "_tpl": "5c0e2ff6d174af02a1659d4a", - "parentId": "66cbc20b9e95fdffc10511cb", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc10511cd", - "_tpl": "5aaa5e60e5b5b000140293d6", - "parentId": "66cbc20b9e95fdffc10511cb", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511d5", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbc20b9e95fdffc10511cd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510cd", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510cd", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510cf", + "_tpl": "63f4da90f31d4a33b87bd054", + "parentId": "66cbc20b9e95fdffc10510cd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00173", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511ce", - "_tpl": "5c0e2f26d174af02a9625114", - "parentId": "66cbc20b9e95fdffc10511cb", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511cf", - "_tpl": "5c0e2f94d174af029f650d56", - "parentId": "66cbc20b9e95fdffc10511ce", - "slotId": "mod_barrel" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510d1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510d1", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510d3", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbc20b9e95fdffc10510d1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00146", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511d0", - "_tpl": "5c0fafb6d174af02a96260ba", - "parentId": "66cbc20b9e95fdffc10511cf", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511d1", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "66cbc20b9e95fdffc10511cf", - "slotId": "mod_gas_block" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510d5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510d5", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510d7", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbc20b9e95fdffc10510d5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00112", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511d2", - "_tpl": "5c0e2f5cd174af02a012cfc9", - "parentId": "66cbc20b9e95fdffc10511ce", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511d3", - "_tpl": "5c0faeddd174af02a962601f", - "parentId": "66cbc20b9e95fdffc10511cb", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10510d9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510d9", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510db", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc10510d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1143 + } + }, + { + "_id": "66cbc20b9e95fdffc10510dd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc10510d9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 994 + } + } + ] + }, + { + "Id": "Lootable_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511d4", - "_tpl": "5c0faf68d174af02a96260b8", - "parentId": "66cbc20b9e95fdffc10511cb", - "slotId": "mod_charge" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511d7", - "_tpl": "622f14e899892a7f9e08f6c5", - "parentId": "66cbc20b9e95fdffc10511c8", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510df", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510df", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510e1", + "_tpl": "62a09e08de7ac81993580532", + "parentId": "66cbc20b9e95fdffc10510df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00174", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10511d9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511d9", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511db", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbc20b9e95fdffc10511d9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10510e3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510e3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10510e5", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66cbc20b9e95fdffc10510e3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00067", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511dd", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbc20b9e95fdffc10511d9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10510e7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510e7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510e9", + "_tpl": "59136f6f86f774447a1ed173", + "parentId": "66cbc20b9e95fdffc10510e7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00412", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10511df", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511df", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00066", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511e1", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbc20b9e95fdffc10511df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10510eb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510eb", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10510ed", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbc20b9e95fdffc10510eb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00065", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511e3", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66cbc20b9e95fdffc10511df", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10510ef", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510ef", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10510f1", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbc20b9e95fdffc10510ef", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00108", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511e5", - "_tpl": "5e2af41e86f774755a234b67", - "parentId": "66cbc20b9e95fdffc10511df", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00456", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10511e7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511e7", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511e9", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbc20b9e95fdffc10511e7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10510f3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510f3", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10511eb", - "_tpl": "5e2af00086f7746d3f3c33f7", - "parentId": "66cbc20b9e95fdffc10511e7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10510f5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc10510f3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 847 + } + }, + { + "_id": "66cbc20b9e95fdffc10510f7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc10510f3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 703 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00537", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10511ed", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511ed", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00636", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511ef", - "_tpl": "5755383e24597772cb798966", - "parentId": "66cbc20b9e95fdffc10511ed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511f1", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbc20b9e95fdffc10511ed", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10510f9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10510f9", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10511f3", - "_tpl": "60098af40accd37ef2175f27", - "parentId": "66cbc20b9e95fdffc10511ed", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10510fc", + "_tpl": "5649ed104bdc2d3d1c8b458b", + "parentId": "66cbc20b9e95fdffc10510f9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10510fd", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbc20b9e95fdffc10510fc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbc20b9e95fdffc10510ff", + "_tpl": "587e0531245977466077a0f7", + "parentId": "66cbc20b9e95fdffc10510f9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051101", + "_tpl": "573718ba2459775a75491131", + "parentId": "66cbc20b9e95fdffc10510f9", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 24 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00184", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10511f5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10511f5", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00279", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511f7", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbc20b9e95fdffc10511f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10511f9", - "_tpl": "5fd4c4fa16cac650092f6771", - "parentId": "66cbc20b9e95fdffc10511f5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051103", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051103", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10511fb", - "_tpl": "5649b2314bdc2d79388b4576", - "parentId": "66cbc20b9e95fdffc10511f5", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051104", + "_tpl": "62e14904c2699c0ec93adc47", + "parentId": "66cbc20b9e95fdffc1051103", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10511fd", - "_tpl": "654a4dea7c17dec2f50cc86a", - "parentId": "66cbc20b9e95fdffc10511f5", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051105", + "_tpl": "633a98eab8b0506e48497c1a", + "parentId": "66cbc20b9e95fdffc1051104", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10511ff", - "_tpl": "5abcc328d8ce8700194394f3", - "parentId": "66cbc20b9e95fdffc10511f5", - "slotId": "main", - "location": { - "x": 4, - "y": 1, - "r": 1 + { + "_id": "66cbc20b9e95fdffc105110c", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbc20b9e95fdffc1051105", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051201", - "_tpl": "5894a05586f774094708ef75", - "parentId": "66cbc20b9e95fdffc10511f5", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051106", + "_tpl": "62e2a754b6c0ee2f230cee0f", + "parentId": "66cbc20b9e95fdffc1051104", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051107", + "_tpl": "62e292e7b6c0ee2f230cee00", + "parentId": "66cbc20b9e95fdffc1051104", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051108", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "66cbc20b9e95fdffc1051104", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051109", + "_tpl": "62e15547db1a5c41971c1b5e", + "parentId": "66cbc20b9e95fdffc1051104", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc105110a", + "_tpl": "62ed189fb3608410ef5a2bfc", + "parentId": "66cbc20b9e95fdffc1051109", + "slotId": "mod_mount_001" + }, + { + "_id": "66cbc20b9e95fdffc105110b", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "parentId": "66cbc20b9e95fdffc1051104", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbc20b9e95fdffc105110e", + "_tpl": "5aa2ba71e5b5b000137b758f", + "parentId": "66cbc20b9e95fdffc1051103", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051203", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051203", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00034", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051205", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbc20b9e95fdffc1051203", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051207", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051207", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051209", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc1051207", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051110", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051110", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051112", + "_tpl": "5e54f6af86f7742199090bf3", + "parentId": "66cbc20b9e95fdffc1051110", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051113", + "_tpl": "61a4c8884f95bc3b2c5dc96f", + "parentId": "66cbc20b9e95fdffc1051110", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051114", + "_tpl": "619f54a1d25cbd424731fb99", + "parentId": "66cbc20b9e95fdffc1051113", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051118", + "_tpl": "62330b3ed4dc74626d570b95", + "parentId": "66cbc20b9e95fdffc1051114", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051115", + "_tpl": "619f4cee4c58466fe1228435", + "parentId": "66cbc20b9e95fdffc1051113", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051116", + "_tpl": "619f4d304c58466fe1228437", + "parentId": "66cbc20b9e95fdffc1051113", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbc20b9e95fdffc1051117", + "_tpl": "619f4bffd25cbd424731fb97", + "parentId": "66cbc20b9e95fdffc1051113", + "slotId": "mod_pistol_grip" } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00062", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105120b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105120b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00587", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105120d", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbc20b9e95fdffc105120b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00061", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105120f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105120f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051211", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc105120f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105111a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105111a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105111c", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbc20b9e95fdffc105111a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105111e", + "_tpl": "5d40425986f7743185265461", + "parentId": "66cbc20b9e95fdffc105111a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051120", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbc20b9e95fdffc105111a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00196", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051213", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051213", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00728", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051215", - "_tpl": "5a16b93dfcdbcbcae6687261", - "parentId": "66cbc20b9e95fdffc1051213", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051217", - "_tpl": "6034d0230ca681766b6a0fb5", - "parentId": "66cbc20b9e95fdffc1051213", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051122", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051122", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051219", - "_tpl": "6567e751a715f85433025998", - "parentId": "66cbc20b9e95fdffc1051213", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051124", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66cbc20b9e95fdffc1051122", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051126", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbc20b9e95fdffc1051122", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00320", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105121b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105121b", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00398", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105121d", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbc20b9e95fdffc105121b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105121f", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbc20b9e95fdffc105121b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051128", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051128", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105112a", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbc20b9e95fdffc1051128", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105112c", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbc20b9e95fdffc1051128", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105112e", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbc20b9e95fdffc1051128", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00671", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051221", - "_tpl": "5ede4739e0350d05467f73e8", - "parentId": "66cbc20b9e95fdffc105121b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00217", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051223", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051223", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051225", - "_tpl": "5ba26812d4351e003201fef1", - "parentId": "66cbc20b9e95fdffc1051223", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 47 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051227", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051227", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051229", - "_tpl": "60bf74184a63fc79b60c57f6", - "parentId": "66cbc20b9e95fdffc1051227", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051130", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051130", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105122b", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbc20b9e95fdffc1051227", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051132", + "_tpl": "5bc9c377d4351e3bac12251b", + "parentId": "66cbc20b9e95fdffc1051130", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051134", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbc20b9e95fdffc1051130", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051136", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbc20b9e95fdffc1051130", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00163", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105122d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105122d", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105122f", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbc20b9e95fdffc105122d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00722", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051231", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051231", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051233", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbc20b9e95fdffc1051231", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051138", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051138", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051235", - "_tpl": "60391afc25aff57af81f7085", - "parentId": "66cbc20b9e95fdffc1051231", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105113a", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbc20b9e95fdffc1051138", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051237", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbc20b9e95fdffc1051231", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105113c", + "_tpl": "5b432b2f5acfc4771e1c6622", + "parentId": "66cbc20b9e95fdffc1051138", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105113e", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbc20b9e95fdffc1051138", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051140", + "_tpl": "60b0f93284c20f0feb453da7", + "parentId": "66cbc20b9e95fdffc1051138", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051239", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051239", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105123a", - "_tpl": "609e8540d5c319764c2bc2e9", - "parentId": "66cbc20b9e95fdffc1051239", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbc20b9e95fdffc105123b", - "_tpl": "6572e5221b5bc1185508c24f", - "parentId": "66cbc20b9e95fdffc105123a", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbc20b9e95fdffc105123c", - "_tpl": "6572e52f73c0eabb700109a0", - "parentId": "66cbc20b9e95fdffc105123a", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbc20b9e95fdffc105123d", - "_tpl": "6572e53c73c0eabb700109a4", - "parentId": "66cbc20b9e95fdffc105123a", - "slotId": "Soft_armor_left" - }, - { - "_id": "66cbc20b9e95fdffc105123e", - "_tpl": "6572e54873c0eabb700109a8", - "parentId": "66cbc20b9e95fdffc105123a", - "slotId": "soft_armor_right" - }, - { - "_id": "66cbc20b9e95fdffc105123f", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "66cbc20b9e95fdffc105123a", - "slotId": "Front_plate" + { + "Id": "container_shoreline_DesignStuff_00201", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051240", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "66cbc20b9e95fdffc105123a", - "slotId": "Back_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051242", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbc20b9e95fdffc1051239", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051142", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051142", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051244", - "_tpl": "5d40412b86f7743cb332ac3a", - "parentId": "66cbc20b9e95fdffc1051239", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051144", + "_tpl": "56e33634d2720bd8058b456b", + "parentId": "66cbc20b9e95fdffc1051142", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051146", + "_tpl": "5aa2b89be5b5b0001569311f", + "parentId": "66cbc20b9e95fdffc1051142", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00668", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051246", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051246", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00272", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051248", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66cbc20b9e95fdffc1051246", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00533", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105124a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105124a", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105124c", - "_tpl": "5d02778e86f774203e7dedbe", - "parentId": "66cbc20b9e95fdffc105124a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051148", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051148", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105114a", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbc20b9e95fdffc1051148", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00143", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105124e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105124e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00571", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051250", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbc20b9e95fdffc105124e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00692", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051252", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051252", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051254", - "_tpl": "56e33634d2720bd8058b456b", - "parentId": "66cbc20b9e95fdffc1051252", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105114c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105114c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051256", - "_tpl": "59db3a1d86f77429e05b4e92", - "parentId": "66cbc20b9e95fdffc1051252", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105114e", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc105114c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051258", - "_tpl": "5ef366938cef260c0642acad", - "parentId": "66cbc20b9e95fdffc1051252", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051150", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbc20b9e95fdffc105114c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051152", + "_tpl": "5d1b39a386f774252339976f", + "parentId": "66cbc20b9e95fdffc105114c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00375", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105125a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105125a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00628", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105125c", - "_tpl": "5d40412b86f7743cb332ac3a", - "parentId": "66cbc20b9e95fdffc105125a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105125e", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc105125a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051154", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051154", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051260", - "_tpl": "62a5c333ec21e50cad3b5dc6", - "parentId": "66cbc20b9e95fdffc105125a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051156", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbc20b9e95fdffc1051154", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051158", + "_tpl": "5efaf417aeb21837e749c7f2", + "parentId": "66cbc20b9e95fdffc1051154", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051262", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051262", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00621", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051264", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbc20b9e95fdffc1051262", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00619", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051266", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051266", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105126a", - "_tpl": "57372ee1245977685d4159b5", - "parentId": "66cbc20b9e95fdffc1051266", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105115a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105115a", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105126b", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbc20b9e95fdffc105126a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbc20b9e95fdffc105126c", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbc20b9e95fdffc105126a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00531", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105126e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105126e", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051270", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbc20b9e95fdffc105126e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00132", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051272", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051272", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051274", - "_tpl": "5a0ee37f86f774023657a86f", - "parentId": "66cbc20b9e95fdffc1051272", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105115b", + "_tpl": "587e02ff24597743df3deaeb", + "parentId": "66cbc20b9e95fdffc105115a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc105115c", + "_tpl": "587e0531245977466077a0f7", + "parentId": "66cbc20b9e95fdffc105115b", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc105115d", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "66cbc20b9e95fdffc105115b", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc105115e", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "66cbc20b9e95fdffc105115d", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbc20b9e95fdffc105115f", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "66cbc20b9e95fdffc105115e", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051160", + "_tpl": "634f03d40384a3ba4f06f874", + "parentId": "66cbc20b9e95fdffc105115f", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbc20b9e95fdffc1051161", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "66cbc20b9e95fdffc105115e", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051162", + "_tpl": "587df3a12459772c28142567", + "parentId": "66cbc20b9e95fdffc105115b", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051164", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66cbc20b9e95fdffc1051162", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051163", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "66cbc20b9e95fdffc105115b", + "slotId": "mod_reciever" } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00422", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051276", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051276", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00344", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051278", - "_tpl": "5e2af4a786f7746d3f3c3400", - "parentId": "66cbc20b9e95fdffc1051276", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00130", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105127a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105127a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105127c", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbc20b9e95fdffc105127a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051166", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051166", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051168", + "_tpl": "5755383e24597772cb798966", + "parentId": "66cbc20b9e95fdffc1051166", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105116a", + "_tpl": "635a758bfefc88a93f021b8a", + "parentId": "66cbc20b9e95fdffc1051166", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105116c", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66cbc20b9e95fdffc1051166", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00517", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105127e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105127e", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00208", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051280", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbc20b9e95fdffc105127e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00703", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051282", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051282", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051284", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66cbc20b9e95fdffc1051282", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105116e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105116e", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051170", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbc20b9e95fdffc105116e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 72 + } + }, + { + "_id": "66cbc20b9e95fdffc1051172", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbc20b9e95fdffc105116e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 98 + } + }, + { + "_id": "66cbc20b9e95fdffc1051174", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105116e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 894 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00469", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051286", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051286", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00696", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051288", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66cbc20b9e95fdffc1051286", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00224", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105128a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105128a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105128c", - "_tpl": "5af04b6486f774195a3ebb49", - "parentId": "66cbc20b9e95fdffc105128a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051176", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051176", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105128e", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbc20b9e95fdffc105128a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051178", + "_tpl": "602286df23506e50807090c6", + "parentId": "66cbc20b9e95fdffc1051176", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051290", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbc20b9e95fdffc105128a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105117a", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "66cbc20b9e95fdffc1051176", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105117c", + "_tpl": "60658776f2cb2e02a42ace2b", + "parentId": "66cbc20b9e95fdffc1051176", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105117e", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbc20b9e95fdffc1051176", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051180", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "66cbc20b9e95fdffc1051176", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00488", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051292", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051292", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00713", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051294", - "_tpl": "5c0e530286f7747fa1419862", - "parentId": "66cbc20b9e95fdffc1051292", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051296", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbc20b9e95fdffc1051292", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051182", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051182", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051298", - "_tpl": "5e2aee0a86f774755a234b62", - "parentId": "66cbc20b9e95fdffc1051292", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051184", + "_tpl": "5c1a1cc52e221602b3136e3d", + "parentId": "66cbc20b9e95fdffc1051182", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00125", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105129a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105129a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00550", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105129c", - "_tpl": "5ab8f39486f7745cd93a1cca", - "parentId": "66cbc20b9e95fdffc105129a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00195", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105129e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105129e", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512a0", - "_tpl": "5a788169c5856700142fdd9e", - "parentId": "66cbc20b9e95fdffc105129e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051186", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051186", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512a2", - "_tpl": "5c5db5f22e2216000e5e47e8", - "parentId": "66cbc20b9e95fdffc105129e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051188", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbc20b9e95fdffc1051186", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512a4", - "_tpl": "656f57dc27aed95beb08f628", - "parentId": "66cbc20b9e95fdffc105129e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105118a", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbc20b9e95fdffc1051186", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105118c", + "_tpl": "590c657e86f77412b013051d", + "parentId": "66cbc20b9e95fdffc1051186", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00602", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512a6", - "_tpl": "5bb20dbcd4351e44f824c04e", - "parentId": "66cbc20b9e95fdffc105129e", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512a8", - "_tpl": "5a788068c5856700137e4c8f", - "parentId": "66cbc20b9e95fdffc105129e", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105118e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105118e", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512aa", - "_tpl": "5addc7ac5acfc400194dbd90", - "parentId": "66cbc20b9e95fdffc105129e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00194", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10512ac", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512ac", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512ae", - "_tpl": "5d133067d7ad1a33013f95b4", - "parentId": "66cbc20b9e95fdffc10512ac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051190", + "_tpl": "5a7c74b3e899ef0014332c29", + "parentId": "66cbc20b9e95fdffc105118e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512b0", - "_tpl": "6193d338de3cdf1d2614a6fc", - "parentId": "66cbc20b9e95fdffc10512ac", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051192", + "_tpl": "5c1bc7752e221602b1779b34", + "parentId": "66cbc20b9e95fdffc105118e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512b2", - "_tpl": "5fce16961f152d4312622bc9", - "parentId": "66cbc20b9e95fdffc10512ac", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051194", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbc20b9e95fdffc105118e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 19 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00346", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10512b4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512b4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512b6", - "_tpl": "5c1265fc86f7743f896a21c2", - "parentId": "66cbc20b9e95fdffc10512b4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00556", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512b8", - "_tpl": "5d40419286f774318526545f", - "parentId": "66cbc20b9e95fdffc10512b4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00629", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10512ba", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512ba", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512bc", - "_tpl": "5648b4534bdc2d3d1c8b4580", - "parentId": "66cbc20b9e95fdffc10512ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051196", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051196", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512be", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "66cbc20b9e95fdffc10512ba", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051198", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbc20b9e95fdffc1051196", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105119a", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbc20b9e95fdffc1051196", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105119c", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66cbc20b9e95fdffc1051196", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00154", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10512c0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512c0", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00284", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512c2", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66cbc20b9e95fdffc10512c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00145", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10512c4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512c4", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512c6", - "_tpl": "5b4326435acfc433000ed01d", - "parentId": "66cbc20b9e95fdffc10512c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105119e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105119e", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511a0", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66cbc20b9e95fdffc105119e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511a2", + "_tpl": "5cbdaf89ae9215000e5b9c94", + "parentId": "66cbc20b9e95fdffc105119e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511a4", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "66cbc20b9e95fdffc105119e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511a6", + "_tpl": "64b9e265c94d0d15c5027e35", + "parentId": "66cbc20b9e95fdffc105119e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10512c8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512c8", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512ca", - "_tpl": "5d44069ca4b9361ebd26fc37", - "parentId": "66cbc20b9e95fdffc10512c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00453", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10512cc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512cc", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512ce", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbc20b9e95fdffc10512cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10511a8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511a8", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512d0", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66cbc20b9e95fdffc10512cc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10511aa", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66cbc20b9e95fdffc10511a8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512d2", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66cbc20b9e95fdffc10512cc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10511ac", + "_tpl": "59e3596386f774176c10a2a2", + "parentId": "66cbc20b9e95fdffc10511a8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511ae", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbc20b9e95fdffc10511a8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511af", + "_tpl": "669fa3f88abd2662d80eee77", + "parentId": "66cbc20b9e95fdffc10511a8", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc10511b0", + "_tpl": "669fa4ba1bd4416eaa09b3c6", + "parentId": "66cbc20b9e95fdffc10511af", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc10511b1", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbc20b9e95fdffc10511b0", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbc20b9e95fdffc10511b2", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66cbc20b9e95fdffc10511af", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbc20b9e95fdffc10511b3", + "_tpl": "669fa5019aa2a422600442f6", + "parentId": "66cbc20b9e95fdffc10511af", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc10511b4", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbc20b9e95fdffc10511b3", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc10511b5", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbc20b9e95fdffc10511af", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10511b6", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66cbc20b9e95fdffc10511b5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10512d4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512d4", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512d5", - "_tpl": "5abccb7dd8ce87001773e277", - "parentId": "66cbc20b9e95fdffc10512d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + { + "Id": "container_shoreline_DesignStuff_00100", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512d6", - "_tpl": "5a17fb03fcdbcbcae668728f", - "parentId": "66cbc20b9e95fdffc10512d5", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512dc", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbc20b9e95fdffc10512d6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10511b8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511b8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511ba", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbc20b9e95fdffc10511b8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00099", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512d7", - "_tpl": "5a17fb9dfcdbcbcae6687291", - "parentId": "66cbc20b9e95fdffc10512d5", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc10512d8", - "_tpl": "5a17fc70fcdbcb0176308b3d", - "parentId": "66cbc20b9e95fdffc10512d5", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc10512d9", - "_tpl": "5aba62f8d8ce87001943946b", - "parentId": "66cbc20b9e95fdffc10512d5", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbc20b9e95fdffc10512da", - "_tpl": "5aba639ed8ce8700182ece67", - "parentId": "66cbc20b9e95fdffc10512d5", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc10512db", - "_tpl": "5abcc328d8ce8700194394f3", - "parentId": "66cbc20b9e95fdffc10512d5", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512de", - "_tpl": "57347d90245977448f7b7f65", - "parentId": "66cbc20b9e95fdffc10512d4", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10511bc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511bc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10511be", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbc20b9e95fdffc10511bc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00098", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512e0", - "_tpl": "5c0e533786f7747fa23f4d47", - "parentId": "66cbc20b9e95fdffc10512d4", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512e2", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc10512d4", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10511c0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511c0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511c2", + "_tpl": "62a09e73af34e73a266d932a", + "parentId": "66cbc20b9e95fdffc10511c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00457", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10512e4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512e4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512e6", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbc20b9e95fdffc10512e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512e8", - "_tpl": "62a08f4c4f842e1bd12d9d62", - "parentId": "66cbc20b9e95fdffc10512e4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10511c4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511c4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512ea", - "_tpl": "60391a8b3364dc22b04d0ce5", - "parentId": "66cbc20b9e95fdffc10512e4", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10511c6", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbc20b9e95fdffc10511c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10512ec", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512ec", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00192", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512ed", - "_tpl": "5d3eb3b0a4b93615055e84d2", - "parentId": "66cbc20b9e95fdffc10512ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10511c8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511c8", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511ca", + "_tpl": "5b3f7bf05acfc433000ecf6b", + "parentId": "66cbc20b9e95fdffc10511c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511cb", + "_tpl": "5c07c60e0db834002330051f", + "parentId": "66cbc20b9e95fdffc10511c8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc10511cc", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "parentId": "66cbc20b9e95fdffc10511cb", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc10511cd", + "_tpl": "5aaa5e60e5b5b000140293d6", + "parentId": "66cbc20b9e95fdffc10511cb", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10511d5", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbc20b9e95fdffc10511cd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66cbc20b9e95fdffc10511ce", + "_tpl": "5c0e2f26d174af02a9625114", + "parentId": "66cbc20b9e95fdffc10511cb", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc10511cf", + "_tpl": "5c0e2f94d174af029f650d56", + "parentId": "66cbc20b9e95fdffc10511ce", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc10511d0", + "_tpl": "5c0fafb6d174af02a96260ba", + "parentId": "66cbc20b9e95fdffc10511cf", + "slotId": "mod_muzzle" }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbc20b9e95fdffc10511d1", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "66cbc20b9e95fdffc10511cf", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc10511d2", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "parentId": "66cbc20b9e95fdffc10511ce", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc10511d3", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "66cbc20b9e95fdffc10511cb", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc10511d4", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "66cbc20b9e95fdffc10511cb", + "slotId": "mod_charge" + }, + { + "_id": "66cbc20b9e95fdffc10511d7", + "_tpl": "622f14e899892a7f9e08f6c5", + "parentId": "66cbc20b9e95fdffc10511c8", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00174", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512ee", - "_tpl": "5d3eb5b6a4b9361eab311902", - "parentId": "66cbc20b9e95fdffc10512ed", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc10512ef", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "66cbc20b9e95fdffc10512ed", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc10512f0", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "66cbc20b9e95fdffc10512ef", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc10512f1", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "66cbc20b9e95fdffc10512ef", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbc20b9e95fdffc10512f2", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "66cbc20b9e95fdffc10512ed", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc10512f3", - "_tpl": "5cc80f8fe4a949033b0224a2", - "parentId": "66cbc20b9e95fdffc10512f2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 19.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512f5", - "_tpl": "60098b1705871270cd5352a1", - "parentId": "66cbc20b9e95fdffc10512ec", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10511d9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511d9", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512f7", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbc20b9e95fdffc10512ec", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10511db", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbc20b9e95fdffc10511d9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511dd", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbc20b9e95fdffc10511d9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00579", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10512f9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10512f9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00412", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512fb", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbc20b9e95fdffc10512f9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10512fd", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbc20b9e95fdffc10512f9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10511df", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511df", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10512ff", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc10512f9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10511e1", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbc20b9e95fdffc10511df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511e3", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66cbc20b9e95fdffc10511df", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511e5", + "_tpl": "5e2af41e86f774755a234b67", + "parentId": "66cbc20b9e95fdffc10511df", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00153", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051301", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051301", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00456", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051303", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbc20b9e95fdffc1051301", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00124", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051305", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051305", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051307", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbc20b9e95fdffc1051305", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10511e7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511e7", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511e9", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbc20b9e95fdffc10511e7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511eb", + "_tpl": "5e2af00086f7746d3f3c33f7", + "parentId": "66cbc20b9e95fdffc10511e7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00725", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051309", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051309", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00537", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105130b", - "_tpl": "5d1b317c86f7742523398392", - "parentId": "66cbc20b9e95fdffc1051309", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105130d", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbc20b9e95fdffc1051309", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10511ed", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511ed", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511ef", + "_tpl": "5755383e24597772cb798966", + "parentId": "66cbc20b9e95fdffc10511ed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511f1", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbc20b9e95fdffc10511ed", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511f3", + "_tpl": "60098af40accd37ef2175f27", + "parentId": "66cbc20b9e95fdffc10511ed", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00329", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105130f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105130f", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00184", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051311", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbc20b9e95fdffc105130f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 33 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00333", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051313", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051313", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051315", - "_tpl": "5b432c305acfc40019478128", - "parentId": "66cbc20b9e95fdffc1051313", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10511f5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10511f5", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051317", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbc20b9e95fdffc1051313", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10511f7", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbc20b9e95fdffc10511f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511f9", + "_tpl": "5fd4c4fa16cac650092f6771", + "parentId": "66cbc20b9e95fdffc10511f5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511fb", + "_tpl": "5649b2314bdc2d79388b4576", + "parentId": "66cbc20b9e95fdffc10511f5", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511fd", + "_tpl": "654a4dea7c17dec2f50cc86a", + "parentId": "66cbc20b9e95fdffc10511f5", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10511ff", + "_tpl": "5abcc328d8ce8700194394f3", + "parentId": "66cbc20b9e95fdffc10511f5", + "slotId": "main", + "location": { + "x": 4, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051201", + "_tpl": "5894a05586f774094708ef75", + "parentId": "66cbc20b9e95fdffc10511f5", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00307", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051319", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051319", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105131b", - "_tpl": "5f6340d3ca442212f4047eb2", - "parentId": "66cbc20b9e95fdffc1051319", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105131d", - "_tpl": "5c78f2882e22165df16b832e", - "parentId": "66cbc20b9e95fdffc1051319", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051203", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051203", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051205", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbc20b9e95fdffc1051203", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105131f", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66cbc20b9e95fdffc1051319", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051321", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66cbc20b9e95fdffc1051319", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051207", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051207", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051209", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc1051207", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051323", - "_tpl": "5de8e8dafd6b4e6e2276dc32", - "parentId": "66cbc20b9e95fdffc1051319", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051325", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051325", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051327", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbc20b9e95fdffc1051325", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051329", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051329", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00062", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105132b", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbc20b9e95fdffc1051329", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105132d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105132d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105132f", - "_tpl": "5e2af37686f774755a234b65", - "parentId": "66cbc20b9e95fdffc105132d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105120b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105120b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105120d", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbc20b9e95fdffc105120b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051331", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051331", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00061", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051333", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbc20b9e95fdffc1051331", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00172", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051335", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051335", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051337", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbc20b9e95fdffc1051335", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105120f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105120f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051339", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbc20b9e95fdffc1051335", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051211", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc105120f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00586", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105133b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105133b", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00196", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105133d", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbc20b9e95fdffc105133b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00167", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105133f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105133f", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051341", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbc20b9e95fdffc105133f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051213", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051213", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051215", + "_tpl": "5a16b93dfcdbcbcae6687261", + "parentId": "66cbc20b9e95fdffc1051213", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051217", + "_tpl": "6034d0230ca681766b6a0fb5", + "parentId": "66cbc20b9e95fdffc1051213", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051219", + "_tpl": "6567e751a715f85433025998", + "parentId": "66cbc20b9e95fdffc1051213", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00440", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051343", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051343", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00320", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051345", - "_tpl": "5733279d245977289b77ec24", - "parentId": "66cbc20b9e95fdffc1051343", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051347", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbc20b9e95fdffc1051343", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105121b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105121b", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051349", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc1051343", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105121d", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbc20b9e95fdffc105121b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105121f", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbc20b9e95fdffc105121b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051221", + "_tpl": "5ede4739e0350d05467f73e8", + "parentId": "66cbc20b9e95fdffc105121b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00199", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105134b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105134b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00217", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105134d", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbc20b9e95fdffc105134b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00454", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105134f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105134f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051351", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbc20b9e95fdffc105134f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051223", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051223", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051353", - "_tpl": "60b0f7057897d47c5b04ab94", - "parentId": "66cbc20b9e95fdffc105134f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051225", + "_tpl": "5ba26812d4351e003201fef1", + "parentId": "66cbc20b9e95fdffc1051223", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 47 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00119", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051355", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051355", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051357", - "_tpl": "64b8f7b5389d7ffd620ccba2", - "parentId": "66cbc20b9e95fdffc1051355", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051359", - "_tpl": "6193d338de3cdf1d2614a6fc", - "parentId": "66cbc20b9e95fdffc1051355", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051227", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051227", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105135b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051355", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051229", + "_tpl": "60bf74184a63fc79b60c57f6", + "parentId": "66cbc20b9e95fdffc1051227", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 919 - } - }, - { - "_id": "66cbc20b9e95fdffc105135d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051355", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 725 + { + "_id": "66cbc20b9e95fdffc105122b", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbc20b9e95fdffc1051227", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00733", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105135f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105135f", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00163", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051361", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66cbc20b9e95fdffc105135f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051363", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbc20b9e95fdffc105135f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105122d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105122d", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105122f", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbc20b9e95fdffc105122d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00538", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051365", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051365", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00722", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051367", - "_tpl": "6389c6c7dbfd5e4b95197e68", - "parentId": "66cbc20b9e95fdffc1051365", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051369", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbc20b9e95fdffc1051365", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051231", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051231", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105136b", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbc20b9e95fdffc1051365", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105136d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105136d", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051233", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbc20b9e95fdffc1051231", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051235", + "_tpl": "60391afc25aff57af81f7085", + "parentId": "66cbc20b9e95fdffc1051231", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051237", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbc20b9e95fdffc1051231", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105136e", - "_tpl": "5b432d215acfc4771e1c6624", - "parentId": "66cbc20b9e95fdffc105136d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105136f", - "_tpl": "657bb92fa1c61ee0c303631f", - "parentId": "66cbc20b9e95fdffc105136e", - "slotId": "Helmet_top" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051239", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051239", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105123a", + "_tpl": "609e8540d5c319764c2bc2e9", + "parentId": "66cbc20b9e95fdffc1051239", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbc20b9e95fdffc105123b", + "_tpl": "6572e5221b5bc1185508c24f", + "parentId": "66cbc20b9e95fdffc105123a", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbc20b9e95fdffc105123c", + "_tpl": "6572e52f73c0eabb700109a0", + "parentId": "66cbc20b9e95fdffc105123a", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbc20b9e95fdffc105123d", + "_tpl": "6572e53c73c0eabb700109a4", + "parentId": "66cbc20b9e95fdffc105123a", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbc20b9e95fdffc105123e", + "_tpl": "6572e54873c0eabb700109a8", + "parentId": "66cbc20b9e95fdffc105123a", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbc20b9e95fdffc105123f", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "66cbc20b9e95fdffc105123a", + "slotId": "Front_plate" + }, + { + "_id": "66cbc20b9e95fdffc1051240", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "66cbc20b9e95fdffc105123a", + "slotId": "Back_plate" + }, + { + "_id": "66cbc20b9e95fdffc1051242", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbc20b9e95fdffc1051239", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051244", + "_tpl": "5d40412b86f7743cb332ac3a", + "parentId": "66cbc20b9e95fdffc1051239", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00668", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051370", - "_tpl": "657bb99db30eca976305117f", - "parentId": "66cbc20b9e95fdffc105136e", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051372", - "_tpl": "5b4325355acfc40019478126", - "parentId": "66cbc20b9e95fdffc105136d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051246", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051246", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051248", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66cbc20b9e95fdffc1051246", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00472", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051374", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051374", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00533", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051376", - "_tpl": "544fb3f34bdc2d03748b456a", - "parentId": "66cbc20b9e95fdffc1051374", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105124a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105124a", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105124c", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "66cbc20b9e95fdffc105124a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00564", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051378", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051378", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00143", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105137a", - "_tpl": "5e2aee0a86f774755a234b62", - "parentId": "66cbc20b9e95fdffc1051378", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105124e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105124e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051250", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbc20b9e95fdffc105124e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00692", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105137c", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbc20b9e95fdffc1051378", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051252", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051252", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051254", + "_tpl": "56e33634d2720bd8058b456b", + "parentId": "66cbc20b9e95fdffc1051252", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051256", + "_tpl": "59db3a1d86f77429e05b4e92", + "parentId": "66cbc20b9e95fdffc1051252", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051258", + "_tpl": "5ef366938cef260c0642acad", + "parentId": "66cbc20b9e95fdffc1051252", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00375", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105137e", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbc20b9e95fdffc1051378", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105125a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105125a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105125c", + "_tpl": "5d40412b86f7743cb332ac3a", + "parentId": "66cbc20b9e95fdffc105125a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105125e", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc105125a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051260", + "_tpl": "62a5c333ec21e50cad3b5dc6", + "parentId": "66cbc20b9e95fdffc105125a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00220", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051380", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051380", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051382", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbc20b9e95fdffc1051380", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051262", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051262", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051264", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbc20b9e95fdffc1051262", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00619", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051384", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbc20b9e95fdffc1051380", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051266", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051266", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105126a", + "_tpl": "57372ee1245977685d4159b5", + "parentId": "66cbc20b9e95fdffc1051266", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105126b", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbc20b9e95fdffc105126a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc105126c", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbc20b9e95fdffc105126a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00127", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051386", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051386", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00531", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051388", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbc20b9e95fdffc1051386", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105126e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105126e", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051270", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbc20b9e95fdffc105126e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00712", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105138a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105138a", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00132", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105138c", - "_tpl": "5c1a1cc52e221602b3136e3d", - "parentId": "66cbc20b9e95fdffc105138a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051272", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051272", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051274", + "_tpl": "5a0ee37f86f774023657a86f", + "parentId": "66cbc20b9e95fdffc1051272", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00422", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105138e", - "_tpl": "5b4327aa5acfc400175496e0", - "parentId": "66cbc20b9e95fdffc105138a", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051276", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051276", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051278", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "66cbc20b9e95fdffc1051276", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00130", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051390", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbc20b9e95fdffc105138a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105127a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105127a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105127c", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbc20b9e95fdffc105127a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00169", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051392", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051392", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00517", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051394", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbc20b9e95fdffc1051392", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051396", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051396", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051398", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbc20b9e95fdffc1051396", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105139a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105139a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105139c", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbc20b9e95fdffc105139a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105127e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105127e", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051280", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbc20b9e95fdffc105127e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00075", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105139e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105139e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00703", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513a0", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66cbc20b9e95fdffc105139e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00074", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10513a2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513a2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513a4", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbc20b9e95fdffc10513a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051282", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051282", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051284", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66cbc20b9e95fdffc1051282", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00073", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10513a6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513a6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00469", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513a8", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66cbc20b9e95fdffc10513a6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00585", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513aa", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513aa", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513ac", - "_tpl": "5e2aee0a86f774755a234b62", - "parentId": "66cbc20b9e95fdffc10513aa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051286", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051286", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10513ae", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc10513aa", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051288", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66cbc20b9e95fdffc1051286", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00581", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513b0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513b0", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00224", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513b2", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbc20b9e95fdffc10513b0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513b4", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbc20b9e95fdffc10513b0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105128a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105128a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10513b6", - "_tpl": "5af04b6486f774195a3ebb49", - "parentId": "66cbc20b9e95fdffc10513b0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105128c", + "_tpl": "5af04b6486f774195a3ebb49", + "parentId": "66cbc20b9e95fdffc105128a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105128e", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbc20b9e95fdffc105128a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051290", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbc20b9e95fdffc105128a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00389", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513b8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513b8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00488", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513ba", - "_tpl": "5b432c305acfc40019478128", - "parentId": "66cbc20b9e95fdffc10513b8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513bc", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbc20b9e95fdffc10513b8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051292", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051292", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051294", + "_tpl": "5c0e530286f7747fa1419862", + "parentId": "66cbc20b9e95fdffc1051292", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051296", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbc20b9e95fdffc1051292", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051298", + "_tpl": "5e2aee0a86f774755a234b62", + "parentId": "66cbc20b9e95fdffc1051292", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00519", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513be", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513be", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00125", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513c0", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbc20b9e95fdffc10513be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513c2", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbc20b9e95fdffc10513be", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105129a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105129a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10513c4", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbc20b9e95fdffc10513be", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105129c", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "66cbc20b9e95fdffc105129a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00033", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513c6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513c6", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00195", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513c8", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbc20b9e95fdffc10513c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513ca", - "_tpl": "590de7e986f7741b096e5f32", - "parentId": "66cbc20b9e95fdffc10513c6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105129e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105129e", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10513cc", - "_tpl": "62389aaba63f32501b1b444f", - "parentId": "66cbc20b9e95fdffc10513c6", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10512a0", + "_tpl": "5a788169c5856700142fdd9e", + "parentId": "66cbc20b9e95fdffc105129e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10513ce", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbc20b9e95fdffc10513c6", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10512a2", + "_tpl": "5c5db5f22e2216000e5e47e8", + "parentId": "66cbc20b9e95fdffc105129e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512a4", + "_tpl": "656f57dc27aed95beb08f628", + "parentId": "66cbc20b9e95fdffc105129e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512a6", + "_tpl": "5bb20dbcd4351e44f824c04e", + "parentId": "66cbc20b9e95fdffc105129e", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512a8", + "_tpl": "5a788068c5856700137e4c8f", + "parentId": "66cbc20b9e95fdffc105129e", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512aa", + "_tpl": "5addc7ac5acfc400194dbd90", + "parentId": "66cbc20b9e95fdffc105129e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00118", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513d0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513d0", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00194", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513d2", - "_tpl": "5c925fa22e221601da359b7b", - "parentId": "66cbc20b9e95fdffc10513d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 38 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513d4", - "_tpl": "5b40e5e25acfc4001a599bea", - "parentId": "66cbc20b9e95fdffc10513d0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10512ac", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512ac", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10513d6", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66cbc20b9e95fdffc10513d0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10512ae", + "_tpl": "5d133067d7ad1a33013f95b4", + "parentId": "66cbc20b9e95fdffc10512ac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10512b0", + "_tpl": "6193d338de3cdf1d2614a6fc", + "parentId": "66cbc20b9e95fdffc10512ac", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512b2", + "_tpl": "5fce16961f152d4312622bc9", + "parentId": "66cbc20b9e95fdffc10512ac", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc10513d8", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbc20b9e95fdffc10513d0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00734", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513da", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513da", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00346", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513dc", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbc20b9e95fdffc10513da", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00221", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513de", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513de", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513e0", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbc20b9e95fdffc10513de", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10512b4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512b4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512b6", + "_tpl": "5c1265fc86f7743f896a21c2", + "parentId": "66cbc20b9e95fdffc10512b4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512b8", + "_tpl": "5d40419286f774318526545f", + "parentId": "66cbc20b9e95fdffc10512b4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00471", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513e2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513e2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00629", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513e4", - "_tpl": "5d40412b86f7743cb332ac3a", - "parentId": "66cbc20b9e95fdffc10513e2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00218", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513e6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513e6", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513e8", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbc20b9e95fdffc10513e6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10512ba", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512ba", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10513ea", - "_tpl": "62a0a043cf4a99369e2624a5", - "parentId": "66cbc20b9e95fdffc10513e6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10512bc", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "parentId": "66cbc20b9e95fdffc10512ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10513ec", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbc20b9e95fdffc10513e6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10512be", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "66cbc20b9e95fdffc10512ba", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00222", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513ee", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513ee", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00154", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513f0", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66cbc20b9e95fdffc10513ee", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00317", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513f2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513f2", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513f4", - "_tpl": "5f0c892565703e5c461894e9", - "parentId": "66cbc20b9e95fdffc10513f2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10512c0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512c0", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10512c2", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66cbc20b9e95fdffc10512c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00145", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513f6", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbc20b9e95fdffc10513f2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513f8", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "66cbc20b9e95fdffc10513f2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10512c4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512c4", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512c6", + "_tpl": "5b4326435acfc433000ed01d", + "parentId": "66cbc20b9e95fdffc10512c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00239", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513fa", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513fa", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10513fc", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbc20b9e95fdffc10513fa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00417", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10513fe", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10513fe", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051400", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbc20b9e95fdffc10513fe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10512c8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512c8", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051402", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbc20b9e95fdffc10513fe", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10512ca", + "_tpl": "5d44069ca4b9361ebd26fc37", + "parentId": "66cbc20b9e95fdffc10512c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00498", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051404", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051404", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00453", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051406", - "_tpl": "57347d692459774491567cf1", - "parentId": "66cbc20b9e95fdffc1051404", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00030", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051408", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051408", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105140a", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66cbc20b9e95fdffc1051408", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10512cc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512cc", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105140c", - "_tpl": "5d02797c86f774203f38e30a", - "parentId": "66cbc20b9e95fdffc1051408", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10512ce", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbc20b9e95fdffc10512cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105140e", - "_tpl": "59e358a886f7741776641ac3", - "parentId": "66cbc20b9e95fdffc1051408", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10512d0", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66cbc20b9e95fdffc10512cc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051410", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66cbc20b9e95fdffc1051408", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10512d2", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66cbc20b9e95fdffc10512cc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00212", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051412", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051412", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051414", - "_tpl": "59e3658a86f7741776641ac4", - "parentId": "66cbc20b9e95fdffc1051412", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051416", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbc20b9e95fdffc1051412", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10512d4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512d4", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051418", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051412", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10512d5", + "_tpl": "5abccb7dd8ce87001773e277", + "parentId": "66cbc20b9e95fdffc10512d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1064 - } - }, - { - "_id": "66cbc20b9e95fdffc105141a", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbc20b9e95fdffc1051412", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10512d6", + "_tpl": "5a17fb03fcdbcbcae668728f", + "parentId": "66cbc20b9e95fdffc10512d5", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105141c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051412", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 745 + { + "_id": "66cbc20b9e95fdffc10512dc", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbc20b9e95fdffc10512d6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } + }, + { + "_id": "66cbc20b9e95fdffc10512d7", + "_tpl": "5a17fb9dfcdbcbcae6687291", + "parentId": "66cbc20b9e95fdffc10512d5", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc10512d8", + "_tpl": "5a17fc70fcdbcb0176308b3d", + "parentId": "66cbc20b9e95fdffc10512d5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc10512d9", + "_tpl": "5aba62f8d8ce87001943946b", + "parentId": "66cbc20b9e95fdffc10512d5", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbc20b9e95fdffc10512da", + "_tpl": "5aba639ed8ce8700182ece67", + "parentId": "66cbc20b9e95fdffc10512d5", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc10512db", + "_tpl": "5abcc328d8ce8700194394f3", + "parentId": "66cbc20b9e95fdffc10512d5", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc10512de", + "_tpl": "57347d90245977448f7b7f65", + "parentId": "66cbc20b9e95fdffc10512d4", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512e0", + "_tpl": "5c0e533786f7747fa23f4d47", + "parentId": "66cbc20b9e95fdffc10512d4", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512e2", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc10512d4", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00144", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105141e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105141e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00457", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051420", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbc20b9e95fdffc105141e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00690", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051422", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051422", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051424", - "_tpl": "615d8dbd290d254f5e6b2ed6", - "parentId": "66cbc20b9e95fdffc1051422", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10512e4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512e4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051426", - "_tpl": "591c4efa86f7741030027726", - "parentId": "66cbc20b9e95fdffc1051422", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10512e6", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbc20b9e95fdffc10512e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512e8", + "_tpl": "62a08f4c4f842e1bd12d9d62", + "parentId": "66cbc20b9e95fdffc10512e4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512ea", + "_tpl": "60391a8b3364dc22b04d0ce5", + "parentId": "66cbc20b9e95fdffc10512e4", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00515", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051428", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051428", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105142a", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbc20b9e95fdffc1051428", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10512ec", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512ec", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512ed", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "parentId": "66cbc20b9e95fdffc10512ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc10512ee", + "_tpl": "5d3eb5b6a4b9361eab311902", + "parentId": "66cbc20b9e95fdffc10512ed", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc10512ef", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "66cbc20b9e95fdffc10512ed", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc10512f0", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "66cbc20b9e95fdffc10512ef", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc10512f1", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "66cbc20b9e95fdffc10512ef", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbc20b9e95fdffc10512f2", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "66cbc20b9e95fdffc10512ed", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10512f3", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "66cbc20b9e95fdffc10512f2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 19.0 + } + }, + { + "_id": "66cbc20b9e95fdffc10512f5", + "_tpl": "60098b1705871270cd5352a1", + "parentId": "66cbc20b9e95fdffc10512ec", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10512f7", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbc20b9e95fdffc10512ec", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00579", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105142c", - "_tpl": "5755383e24597772cb798966", - "parentId": "66cbc20b9e95fdffc1051428", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10512f9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10512f9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512fb", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbc20b9e95fdffc10512f9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512fd", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbc20b9e95fdffc10512f9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10512ff", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc10512f9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105142e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105142e", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00153", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051430", - "_tpl": "5af0548586f7743a532b7e99", - "parentId": "66cbc20b9e95fdffc105142e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051301", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051301", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051303", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbc20b9e95fdffc1051301", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00124", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051432", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "66cbc20b9e95fdffc105142e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051305", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051305", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051307", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbc20b9e95fdffc1051305", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00725", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051434", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbc20b9e95fdffc105142e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051309", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051309", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105130b", + "_tpl": "5d1b317c86f7742523398392", + "parentId": "66cbc20b9e95fdffc1051309", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105130d", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbc20b9e95fdffc1051309", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00214", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051436", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051436", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00329", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051438", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051436", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1026 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105130f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105130f", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051311", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbc20b9e95fdffc105130f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 33 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00106", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105143a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105143a", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00333", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105143c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105143a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051313", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051313", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051315", + "_tpl": "5b432c305acfc40019478128", + "parentId": "66cbc20b9e95fdffc1051313", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 978 + { + "_id": "66cbc20b9e95fdffc1051317", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbc20b9e95fdffc1051313", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00307", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105143e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105143a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1076 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051319", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051319", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105131b", + "_tpl": "5f6340d3ca442212f4047eb2", + "parentId": "66cbc20b9e95fdffc1051319", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105131d", + "_tpl": "5c78f2882e22165df16b832e", + "parentId": "66cbc20b9e95fdffc1051319", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105131f", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66cbc20b9e95fdffc1051319", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051321", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66cbc20b9e95fdffc1051319", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051323", + "_tpl": "5de8e8dafd6b4e6e2276dc32", + "parentId": "66cbc20b9e95fdffc1051319", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00238", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051440", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051440", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051442", - "_tpl": "572b7fa524597762b747ce82", - "parentId": "66cbc20b9e95fdffc1051440", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051325", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051325", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051327", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbc20b9e95fdffc1051325", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00464", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051444", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051444", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051446", - "_tpl": "66b37ea4c5d72b0277488439", - "parentId": "66cbc20b9e95fdffc1051444", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051329", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051329", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105132b", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbc20b9e95fdffc1051329", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051448", - "_tpl": "5d1b385e86f774252167b98a", - "parentId": "66cbc20b9e95fdffc1051444", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105144a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105144a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105144c", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbc20b9e95fdffc105144a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105132d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105132d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105132f", + "_tpl": "5e2af37686f774755a234b65", + "parentId": "66cbc20b9e95fdffc105132d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00091", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105144e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105144e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051450", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66cbc20b9e95fdffc105144e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00090", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051452", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051452", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051454", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbc20b9e95fdffc1051452", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051331", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051331", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051333", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbc20b9e95fdffc1051331", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051456", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051456", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00172", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051458", - "_tpl": "590c639286f774151567fa95", - "parentId": "66cbc20b9e95fdffc1051456", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00407", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105145a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105145a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105145c", - "_tpl": "5e2af00086f7746d3f3c33f7", - "parentId": "66cbc20b9e95fdffc105145a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051335", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051335", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105145e", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbc20b9e95fdffc105145a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051337", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbc20b9e95fdffc1051335", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051460", - "_tpl": "5e2af4d286f7746d4159f07a", - "parentId": "66cbc20b9e95fdffc105145a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051339", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbc20b9e95fdffc1051335", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00140", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051462", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051462", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00586", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051464", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbc20b9e95fdffc1051462", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00135", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051466", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051466", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051468", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc1051466", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105133b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105133b", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105133d", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbc20b9e95fdffc105133b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00113", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105146a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105146a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00167", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105146c", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbc20b9e95fdffc105146a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105146e", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbc20b9e95fdffc105146a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105133f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105133f", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 26 - } - }, - { - "_id": "66cbc20b9e95fdffc1051470", - "_tpl": "573601b42459776410737435", - "parentId": "66cbc20b9e95fdffc105146a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 13 + { + "_id": "66cbc20b9e95fdffc1051341", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbc20b9e95fdffc105133f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00300", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051472", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051472", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00440", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051474", - "_tpl": "5b7d63b75acfc400170e2f8a", - "parentId": "66cbc20b9e95fdffc1051472", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051476", - "_tpl": "5c0695860db834001b735461", - "parentId": "66cbc20b9e95fdffc1051472", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051343", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051343", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051345", + "_tpl": "5733279d245977289b77ec24", + "parentId": "66cbc20b9e95fdffc1051343", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051347", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbc20b9e95fdffc1051343", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051349", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc1051343", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00400", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051478", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051478", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00199", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105147a", - "_tpl": "5d6fc87386f77449db3db94e", - "parentId": "66cbc20b9e95fdffc1051478", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105147c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105147c", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105147e", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbc20b9e95fdffc105147c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105134b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105134b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105134d", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbc20b9e95fdffc105134b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00102", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051480", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051480", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00454", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051482", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051480", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1063 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051484", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051484", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051486", - "_tpl": "5e54f6af86f7742199090bf3", - "parentId": "66cbc20b9e95fdffc1051484", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105134f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105134f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051488", - "_tpl": "5d403f9186f7743cac3f229b", - "parentId": "66cbc20b9e95fdffc1051484", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051351", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbc20b9e95fdffc105134f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051353", + "_tpl": "60b0f7057897d47c5b04ab94", + "parentId": "66cbc20b9e95fdffc105134f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00119", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105148a", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc1051484", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105148c", - "_tpl": "5734758f24597738025ee253", - "parentId": "66cbc20b9e95fdffc1051484", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051355", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051355", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105148e", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbc20b9e95fdffc1051484", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00227", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051490", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051490", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051492", - "_tpl": "590c2d8786f774245b1f03f3", - "parentId": "66cbc20b9e95fdffc1051490", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051357", + "_tpl": "64b8f7b5389d7ffd620ccba2", + "parentId": "66cbc20b9e95fdffc1051355", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbc20b9e95fdffc1051359", + "_tpl": "6193d338de3cdf1d2614a6fc", + "parentId": "66cbc20b9e95fdffc1051355", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105135b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051355", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 919 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105135d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051355", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 725 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00733", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051494", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc1051490", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105135f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105135f", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051361", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66cbc20b9e95fdffc105135f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051363", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbc20b9e95fdffc105135f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00552", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051496", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051496", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00538", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051498", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbc20b9e95fdffc1051496", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051365", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051365", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051367", + "_tpl": "6389c6c7dbfd5e4b95197e68", + "parentId": "66cbc20b9e95fdffc1051365", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051369", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbc20b9e95fdffc1051365", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105136b", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbc20b9e95fdffc1051365", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105149a", - "_tpl": "5af0548586f7743a532b7e99", - "parentId": "66cbc20b9e95fdffc1051496", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105136d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105136d", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105136e", + "_tpl": "5b432d215acfc4771e1c6624", + "parentId": "66cbc20b9e95fdffc105136d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbc20b9e95fdffc105136f", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "66cbc20b9e95fdffc105136e", + "slotId": "Helmet_top" + }, + { + "_id": "66cbc20b9e95fdffc1051370", + "_tpl": "657bb99db30eca976305117f", + "parentId": "66cbc20b9e95fdffc105136e", + "slotId": "Helmet_back" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051372", + "_tpl": "5b4325355acfc40019478126", + "parentId": "66cbc20b9e95fdffc105136d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00472", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105149c", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbc20b9e95fdffc1051496", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051374", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051374", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051376", + "_tpl": "544fb3f34bdc2d03748b456a", + "parentId": "66cbc20b9e95fdffc1051374", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00133", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105149e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105149e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00564", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514a0", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbc20b9e95fdffc105149e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051378", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051378", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105137a", + "_tpl": "5e2aee0a86f774755a234b62", + "parentId": "66cbc20b9e95fdffc1051378", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105137c", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbc20b9e95fdffc1051378", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105137e", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbc20b9e95fdffc1051378", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00131", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514a2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514a2", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00220", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514a4", - "_tpl": "5751487e245977207e26a315", - "parentId": "66cbc20b9e95fdffc10514a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051380", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051380", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051382", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbc20b9e95fdffc1051380", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051384", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbc20b9e95fdffc1051380", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00522", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514a6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514a6", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00127", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514a8", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbc20b9e95fdffc10514a6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051386", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051386", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051388", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbc20b9e95fdffc1051386", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00712", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514aa", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbc20b9e95fdffc10514a6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105138a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105138a", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105138c", + "_tpl": "5c1a1cc52e221602b3136e3d", + "parentId": "66cbc20b9e95fdffc105138a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105138e", + "_tpl": "5b4327aa5acfc400175496e0", + "parentId": "66cbc20b9e95fdffc105138a", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051390", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbc20b9e95fdffc105138a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00169", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514ac", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbc20b9e95fdffc10514a6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051392", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051392", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051394", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbc20b9e95fdffc1051392", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00160", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514ae", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514ae", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514b0", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbc20b9e95fdffc10514ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051396", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051396", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051398", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbc20b9e95fdffc1051396", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00694", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514b2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514b2", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514b4", - "_tpl": "595cfa8b86f77427437e845b", - "parentId": "66cbc20b9e95fdffc10514b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105139a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105139a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105139c", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbc20b9e95fdffc105139a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00075", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514b6", - "_tpl": "5caf187cae92157c28402e43", - "parentId": "66cbc20b9e95fdffc10514b2", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105139e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105139e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10513a0", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66cbc20b9e95fdffc105139e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00074", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514b8", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbc20b9e95fdffc10514b2", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 32 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00166", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514ba", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514ba", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514bc", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbc20b9e95fdffc10514ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10513a2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513a2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513a4", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbc20b9e95fdffc10513a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00328", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514be", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514be", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00073", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514c1", - "_tpl": "657025961419851aef03e721", - "parentId": "66cbc20b9e95fdffc10514be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514c2", - "_tpl": "5c3df7d588a4501f290594e5", - "parentId": "66cbc20b9e95fdffc10514c1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10513a6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513a6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513a8", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66cbc20b9e95fdffc10513a6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00414", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514c4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514c4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00585", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514c6", - "_tpl": "66b37eb4acff495a29492407", - "parentId": "66cbc20b9e95fdffc10514c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514c8", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbc20b9e95fdffc10514c4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513aa", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513aa", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10514ca", - "_tpl": "5751487e245977207e26a315", - "parentId": "66cbc20b9e95fdffc10514c4", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10513ac", + "_tpl": "5e2aee0a86f774755a234b62", + "parentId": "66cbc20b9e95fdffc10513aa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513ae", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc10513aa", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00634", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514cc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514cc", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00581", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514ce", - "_tpl": "5b43271c5acfc432ff4dce65", - "parentId": "66cbc20b9e95fdffc10514cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514d0", - "_tpl": "560d657b4bdc2da74d8b4572", - "parentId": "66cbc20b9e95fdffc10514cc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513b0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513b0", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513b2", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbc20b9e95fdffc10513b0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513b4", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbc20b9e95fdffc10513b0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513b6", + "_tpl": "5af04b6486f774195a3ebb49", + "parentId": "66cbc20b9e95fdffc10513b0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00349", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514d2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514d2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00389", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514d4", - "_tpl": "590a373286f774287540368b", - "parentId": "66cbc20b9e95fdffc10514d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514d6", - "_tpl": "59e3658a86f7741776641ac4", - "parentId": "66cbc20b9e95fdffc10514d2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513b8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513b8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10514d8", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbc20b9e95fdffc10514d2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10513ba", + "_tpl": "5b432c305acfc40019478128", + "parentId": "66cbc20b9e95fdffc10513b8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513bc", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbc20b9e95fdffc10513b8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00592", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514da", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514da", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00519", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514dc", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbc20b9e95fdffc10514da", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514de", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc10514da", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513be", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513be", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10514e0", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbc20b9e95fdffc10514da", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10513c0", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbc20b9e95fdffc10513be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513c2", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbc20b9e95fdffc10513be", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513c4", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbc20b9e95fdffc10513be", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00467", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514e2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514e2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00033", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514e4", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbc20b9e95fdffc10514e2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514e6", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66cbc20b9e95fdffc10514e2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513c6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513c6", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10514e8", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbc20b9e95fdffc10514e2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10513c8", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbc20b9e95fdffc10513c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513ca", + "_tpl": "590de7e986f7741b096e5f32", + "parentId": "66cbc20b9e95fdffc10513c6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513cc", + "_tpl": "62389aaba63f32501b1b444f", + "parentId": "66cbc20b9e95fdffc10513c6", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513ce", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbc20b9e95fdffc10513c6", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00572", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514ea", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514ea", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00118", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514ec", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbc20b9e95fdffc10514ea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00432", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514ee", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514ee", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514f0", - "_tpl": "5e2af4d286f7746d4159f07a", - "parentId": "66cbc20b9e95fdffc10514ee", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513d0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513d0", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10514f2", - "_tpl": "5673de654bdc2d180f8b456d", - "parentId": "66cbc20b9e95fdffc10514ee", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10513d2", + "_tpl": "5c925fa22e221601da359b7b", + "parentId": "66cbc20b9e95fdffc10513d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 38 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10514f3", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66cbc20b9e95fdffc10514ee", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + { + "_id": "66cbc20b9e95fdffc10513d4", + "_tpl": "5b40e5e25acfc4001a599bea", + "parentId": "66cbc20b9e95fdffc10513d0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbc20b9e95fdffc10513d6", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66cbc20b9e95fdffc10513d0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513d8", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbc20b9e95fdffc10513d0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00734", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514f4", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66cbc20b9e95fdffc10514f3", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514f8", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbc20b9e95fdffc10514f4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513da", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513da", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513dc", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbc20b9e95fdffc10513da", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00221", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514f5", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66cbc20b9e95fdffc10514f3", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc10514f6", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66cbc20b9e95fdffc10514f5", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc10514f7", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66cbc20b9e95fdffc10514f3", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00343", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514fa", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514fa", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10514fc", - "_tpl": "5734773724597737fd047c14", - "parentId": "66cbc20b9e95fdffc10514fa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513de", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513de", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513e0", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbc20b9e95fdffc10513de", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00126", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10514fe", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10514fe", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00471", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051500", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbc20b9e95fdffc10514fe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00315", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051502", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051502", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051504", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "66cbc20b9e95fdffc1051502", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513e2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513e2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051506", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66cbc20b9e95fdffc1051502", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10513e4", + "_tpl": "5d40412b86f7743cb332ac3a", + "parentId": "66cbc20b9e95fdffc10513e2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00701", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051508", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051508", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00218", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105150a", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbc20b9e95fdffc1051508", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00056", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105150c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105150c", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105150e", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbc20b9e95fdffc105150c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513e6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513e6", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513e8", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbc20b9e95fdffc10513e6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513ea", + "_tpl": "62a0a043cf4a99369e2624a5", + "parentId": "66cbc20b9e95fdffc10513e6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513ec", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbc20b9e95fdffc10513e6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00170", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051510", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051510", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00222", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051512", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbc20b9e95fdffc1051510", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051514", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc1051510", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513ee", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513ee", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513f0", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66cbc20b9e95fdffc10513ee", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00580", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051516", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051516", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00317", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051518", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbc20b9e95fdffc1051516", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105151a", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbc20b9e95fdffc1051516", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513f2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513f2", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105151c", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbc20b9e95fdffc1051516", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10513f4", + "_tpl": "5f0c892565703e5c461894e9", + "parentId": "66cbc20b9e95fdffc10513f2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513f6", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbc20b9e95fdffc10513f2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10513f8", + "_tpl": "619256e5f8af2c1a4e1f5d92", + "parentId": "66cbc20b9e95fdffc10513f2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00599", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105151e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105151e", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00239", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051520", - "_tpl": "5a7c74b3e899ef0014332c29", - "parentId": "66cbc20b9e95fdffc105151e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051523", - "_tpl": "573725b0245977612125bae2", - "parentId": "66cbc20b9e95fdffc105151e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513fa", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513fa", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10513fc", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbc20b9e95fdffc10513fa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00417", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051524", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66cbc20b9e95fdffc1051523", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051526", - "_tpl": "5b7be4645acfc400170e2dcc", - "parentId": "66cbc20b9e95fdffc105151e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10513fe", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10513fe", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051400", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbc20b9e95fdffc10513fe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051402", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbc20b9e95fdffc10513fe", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00673", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051528", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051528", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00498", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105152a", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbc20b9e95fdffc1051528", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105152c", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbc20b9e95fdffc1051528", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051404", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051404", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105152e", - "_tpl": "5d4042a986f7743185265463", - "parentId": "66cbc20b9e95fdffc1051528", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051406", + "_tpl": "57347d692459774491567cf1", + "parentId": "66cbc20b9e95fdffc1051404", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051530", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051530", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051531", - "_tpl": "5645bc214bdc2d363b8b4571", - "parentId": "66cbc20b9e95fdffc1051530", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbc20b9e95fdffc1051532", - "_tpl": "657bae18b7e9ca9a02045c0a", - "parentId": "66cbc20b9e95fdffc1051531", - "slotId": "Helmet_top" - }, - { - "_id": "66cbc20b9e95fdffc1051533", - "_tpl": "657baeaacfcf63c951052db3", - "parentId": "66cbc20b9e95fdffc1051531", - "slotId": "Helmet_back" + { + "Id": "container_shoreline_DesignStuff_00030", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051534", - "_tpl": "657baecbc6f689d3a205b863", - "parentId": "66cbc20b9e95fdffc1051531", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00186", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051536", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051536", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051538", - "_tpl": "5bfe86a20db834001d23e8f7", - "parentId": "66cbc20b9e95fdffc1051536", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051408", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051408", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051539", - "_tpl": "576a581d2459771e7b1bc4f1", - "parentId": "66cbc20b9e95fdffc1051536", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105140a", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66cbc20b9e95fdffc1051408", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105140c", + "_tpl": "5d02797c86f774203f38e30a", + "parentId": "66cbc20b9e95fdffc1051408", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105140e", + "_tpl": "59e358a886f7741776641ac3", + "parentId": "66cbc20b9e95fdffc1051408", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051410", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66cbc20b9e95fdffc1051408", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00212", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105153a", - "_tpl": "576a5ed62459771e9c2096cb", - "parentId": "66cbc20b9e95fdffc1051539", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105153c", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbc20b9e95fdffc105153a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051412", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051412", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051414", + "_tpl": "59e3658a86f7741776641ac4", + "parentId": "66cbc20b9e95fdffc1051412", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051416", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbc20b9e95fdffc1051412", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051418", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051412", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1064 + } + }, + { + "_id": "66cbc20b9e95fdffc105141a", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbc20b9e95fdffc1051412", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105141c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051412", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 745 + } } - }, - { - "_id": "66cbc20b9e95fdffc105153b", - "_tpl": "576a63cd2459771e796e0e11", - "parentId": "66cbc20b9e95fdffc1051539", - "slotId": "mod_pistol_grip" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00322", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105153e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105153e", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00144", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051540", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbc20b9e95fdffc105153e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051542", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbc20b9e95fdffc105153e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105141e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105141e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051544", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbc20b9e95fdffc105153e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051420", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbc20b9e95fdffc105141e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051546", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051546", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00690", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051548", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbc20b9e95fdffc1051546", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105154a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105154a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105154c", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbc20b9e95fdffc105154a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051422", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051422", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051424", + "_tpl": "615d8dbd290d254f5e6b2ed6", + "parentId": "66cbc20b9e95fdffc1051422", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051426", + "_tpl": "591c4efa86f7741030027726", + "parentId": "66cbc20b9e95fdffc1051422", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105154e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105154e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00515", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051550", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbc20b9e95fdffc105154e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051552", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051552", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051554", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbc20b9e95fdffc1051552", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051428", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051428", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105142a", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbc20b9e95fdffc1051428", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105142c", + "_tpl": "5755383e24597772cb798966", + "parentId": "66cbc20b9e95fdffc1051428", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00104", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051556", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051556", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051558", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051556", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 685 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105155a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051556", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 843 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105142e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105142e", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051430", + "_tpl": "5af0548586f7743a532b7e99", + "parentId": "66cbc20b9e95fdffc105142e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051432", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "66cbc20b9e95fdffc105142e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051434", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbc20b9e95fdffc105142e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105155c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105155c", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00214", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105155e", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbc20b9e95fdffc105155c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 55 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051560", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105155c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051436", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051436", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 912 + { + "_id": "66cbc20b9e95fdffc1051438", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051436", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1026 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00106", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051562", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105155c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 722 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051564", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbc20b9e95fdffc105155c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105143a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105143a", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105143c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105143a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 978 + } }, - "upd": { - "StackObjectsCount": 84 + { + "_id": "66cbc20b9e95fdffc105143e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105143a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1076 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00238", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051566", - "_tpl": "5e54f62086f774219b0f1937", - "parentId": "66cbc20b9e95fdffc105155c", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051440", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051440", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051442", + "_tpl": "572b7fa524597762b747ce82", + "parentId": "66cbc20b9e95fdffc1051440", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051568", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051568", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00464", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105156a", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66cbc20b9e95fdffc1051568", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051444", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051444", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051446", + "_tpl": "66b37ea4c5d72b0277488439", + "parentId": "66cbc20b9e95fdffc1051444", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051448", + "_tpl": "5d1b385e86f774252167b98a", + "parentId": "66cbc20b9e95fdffc1051444", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105156c", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "66cbc20b9e95fdffc1051568", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105144a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105144a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105144c", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbc20b9e95fdffc105144a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00091", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105156e", - "_tpl": "5f60bf4558eff926626a60f2", - "parentId": "66cbc20b9e95fdffc1051568", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105144e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105144e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051450", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66cbc20b9e95fdffc105144e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051570", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbc20b9e95fdffc1051568", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00335", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051572", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051572", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00090", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051574", - "_tpl": "5e54f6af86f7742199090bf3", - "parentId": "66cbc20b9e95fdffc1051572", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00250", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051576", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051576", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051578", - "_tpl": "6544d4187c5457729210d277", - "parentId": "66cbc20b9e95fdffc1051576", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051452", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051452", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051454", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbc20b9e95fdffc1051452", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105157a", - "_tpl": "5f3e77f59103d430b93f94c1", - "parentId": "66cbc20b9e95fdffc1051576", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105157c", - "_tpl": "5dfa3cd1b33c0951220c079b", - "parentId": "66cbc20b9e95fdffc1051576", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051456", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051456", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051458", + "_tpl": "590c639286f774151567fa95", + "parentId": "66cbc20b9e95fdffc1051456", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00407", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105157e", - "_tpl": "630769c4962d0247b029dc60", - "parentId": "66cbc20b9e95fdffc1051576", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105157f", - "_tpl": "5f2a9575926fd9352339381f", - "parentId": "66cbc20b9e95fdffc1051576", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105145a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105145a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105145c", + "_tpl": "5e2af00086f7746d3f3c33f7", + "parentId": "66cbc20b9e95fdffc105145a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105145e", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbc20b9e95fdffc105145a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbc20b9e95fdffc1051460", + "_tpl": "5e2af4d286f7746d4159f07a", + "parentId": "66cbc20b9e95fdffc105145a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00140", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051580", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "66cbc20b9e95fdffc105157f", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051586", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbc20b9e95fdffc1051580", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 14.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051462", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051462", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051464", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbc20b9e95fdffc1051462", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00135", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051581", - "_tpl": "5f2aa46b878ef416f538b567", - "parentId": "66cbc20b9e95fdffc105157f", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc1051582", - "_tpl": "5f2aa4464b50c14bcf07acdb", - "parentId": "66cbc20b9e95fdffc1051581", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051583", - "_tpl": "5f2aa47a200e2c0ee46efa71", - "parentId": "66cbc20b9e95fdffc105157f", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051584", - "_tpl": "5f2aa493cd375f14e15eea72", - "parentId": "66cbc20b9e95fdffc1051583", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbc20b9e95fdffc1051585", - "_tpl": "5f2aa49f9b44de6b1b4e68d4", - "parentId": "66cbc20b9e95fdffc105157f", - "slotId": "mod_mount" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051588", - "_tpl": "5bbdb811d4351e45020113c7", - "parentId": "66cbc20b9e95fdffc1051576", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051466", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051466", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051468", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc1051466", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00735", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105158a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105158a", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00113", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105158c", - "_tpl": "5e8488fa988a8701445df1e4", - "parentId": "66cbc20b9e95fdffc105158a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105158e", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbc20b9e95fdffc105158a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105146a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105146a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051590", - "_tpl": "5d4041f086f7743cac3f22a7", - "parentId": "66cbc20b9e95fdffc105158a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105146c", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbc20b9e95fdffc105146a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051592", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbc20b9e95fdffc105158a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105146e", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbc20b9e95fdffc105146a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 26 + } + }, + { + "_id": "66cbc20b9e95fdffc1051470", + "_tpl": "573601b42459776410737435", + "parentId": "66cbc20b9e95fdffc105146a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 13 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00719", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051594", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051594", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00300", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051596", - "_tpl": "616554fe50224f204c1da2aa", - "parentId": "66cbc20b9e95fdffc1051594", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051598", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbc20b9e95fdffc1051594", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051472", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051472", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105159a", - "_tpl": "56e33680d2720be2748b4576", - "parentId": "66cbc20b9e95fdffc1051594", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051474", + "_tpl": "5b7d63b75acfc400170e2f8a", + "parentId": "66cbc20b9e95fdffc1051472", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051476", + "_tpl": "5c0695860db834001b735461", + "parentId": "66cbc20b9e95fdffc1051472", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00400", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105159c", - "_tpl": "59ccfdba86f7747f2109a587", - "parentId": "66cbc20b9e95fdffc1051594", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105159e", - "_tpl": "64b8f7b5389d7ffd620ccba2", - "parentId": "66cbc20b9e95fdffc1051594", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051478", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051478", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 25 - } - }, - { - "_id": "66cbc20b9e95fdffc105159f", - "_tpl": "5a17f98cfcdbcb0980087290", - "parentId": "66cbc20b9e95fdffc1051594", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 + { + "_id": "66cbc20b9e95fdffc105147a", + "_tpl": "5d6fc87386f77449db3db94e", + "parentId": "66cbc20b9e95fdffc1051478", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515a0", - "_tpl": "5a17fb03fcdbcbcae668728f", - "parentId": "66cbc20b9e95fdffc105159f", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515a4", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbc20b9e95fdffc10515a0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 19.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105147c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105147c", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105147e", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbc20b9e95fdffc105147c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00102", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515a1", - "_tpl": "5a17fc70fcdbcb0176308b3d", - "parentId": "66cbc20b9e95fdffc105159f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc10515a2", - "_tpl": "5aba62f8d8ce87001943946b", - "parentId": "66cbc20b9e95fdffc105159f", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbc20b9e95fdffc10515a3", - "_tpl": "5aba637ad8ce87001773e17f", - "parentId": "66cbc20b9e95fdffc105159f", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515a6", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbc20b9e95fdffc1051594", - "slotId": "main", - "location": { - "x": 3, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 56 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051480", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051480", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051482", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051480", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1063 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00197", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10515a8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515a8", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515aa", - "_tpl": "564caa3d4bdc2d17108b458e", - "parentId": "66cbc20b9e95fdffc10515a8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515ac", - "_tpl": "5e217ba4c1434648c13568cd", - "parentId": "66cbc20b9e95fdffc10515a8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051484", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051484", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10515ae", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "66cbc20b9e95fdffc10515a8", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051486", + "_tpl": "5e54f6af86f7742199090bf3", + "parentId": "66cbc20b9e95fdffc1051484", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10515b0", - "_tpl": "6698c89bfbc8142e60024b0e", - "parentId": "66cbc20b9e95fdffc10515a8", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051488", + "_tpl": "5d403f9186f7743cac3f229b", + "parentId": "66cbc20b9e95fdffc1051484", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105148a", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc1051484", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105148c", + "_tpl": "5734758f24597738025ee253", + "parentId": "66cbc20b9e95fdffc1051484", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105148e", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbc20b9e95fdffc1051484", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00237", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10515b2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515b2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00227", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515b4", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbc20b9e95fdffc10515b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515b6", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66cbc20b9e95fdffc10515b2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051490", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051490", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051492", + "_tpl": "590c2d8786f774245b1f03f3", + "parentId": "66cbc20b9e95fdffc1051490", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051494", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc1051490", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00393", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10515b8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515b8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00552", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515ba", - "_tpl": "5d1b371186f774253763a656", - "parentId": "66cbc20b9e95fdffc10515b8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515bc", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc10515b8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051496", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051496", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10515be", - "_tpl": "5751487e245977207e26a315", - "parentId": "66cbc20b9e95fdffc10515b8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051498", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbc20b9e95fdffc1051496", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105149a", + "_tpl": "5af0548586f7743a532b7e99", + "parentId": "66cbc20b9e95fdffc1051496", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105149c", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbc20b9e95fdffc1051496", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00732", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10515c0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515c0", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00133", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515c2", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbc20b9e95fdffc10515c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515c4", - "_tpl": "590c5bbd86f774785762df04", - "parentId": "66cbc20b9e95fdffc10515c0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105149e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105149e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514a0", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbc20b9e95fdffc105149e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00388", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10515c6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515c6", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00131", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515c8", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbc20b9e95fdffc10515c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515ca", - "_tpl": "5d1c819a86f774771b0acd6c", - "parentId": "66cbc20b9e95fdffc10515c6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514a2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514a2", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514a4", + "_tpl": "5751487e245977207e26a315", + "parentId": "66cbc20b9e95fdffc10514a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00249", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10515cc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515cc", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00522", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515ce", - "_tpl": "6086b5392535c57a13424d70", - "parentId": "66cbc20b9e95fdffc10515cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515d0", - "_tpl": "5e023d34e8a400319a28ed44", - "parentId": "66cbc20b9e95fdffc10515cc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 18 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514a6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514a6", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514a8", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbc20b9e95fdffc10514a6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514aa", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbc20b9e95fdffc10514a6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514ac", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbc20b9e95fdffc10514a6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00608", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10515d2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515d2", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00160", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515d4", - "_tpl": "5a01c29586f77474660c694c", - "parentId": "66cbc20b9e95fdffc10515d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515d8", - "_tpl": "57372b832459776701014e41", - "parentId": "66cbc20b9e95fdffc10515d2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514ae", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514ae", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10515d9", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbc20b9e95fdffc10515d8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + { + "_id": "66cbc20b9e95fdffc10514b0", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbc20b9e95fdffc10514ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00694", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515da", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbc20b9e95fdffc10515d8", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515de", - "_tpl": "57372ee1245977685d4159b5", - "parentId": "66cbc20b9e95fdffc10515d2", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514b2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514b2", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514b4", + "_tpl": "595cfa8b86f77427437e845b", + "parentId": "66cbc20b9e95fdffc10514b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514b6", + "_tpl": "5caf187cae92157c28402e43", + "parentId": "66cbc20b9e95fdffc10514b2", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10514b8", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbc20b9e95fdffc10514b2", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 32 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00166", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515df", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbc20b9e95fdffc10515de", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515e0", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbc20b9e95fdffc10515de", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514ba", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514ba", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514bc", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbc20b9e95fdffc10514ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00225", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10515e2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515e2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00328", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515e4", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc10515e2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515e6", - "_tpl": "5d1b385e86f774252167b98a", - "parentId": "66cbc20b9e95fdffc10515e2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514be", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514be", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514c1", + "_tpl": "657025961419851aef03e721", + "parentId": "66cbc20b9e95fdffc10514be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514c2", + "_tpl": "5c3df7d588a4501f290594e5", + "parentId": "66cbc20b9e95fdffc10514c1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00530", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10515e8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515e8", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00414", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515ea", - "_tpl": "60098af40accd37ef2175f27", - "parentId": "66cbc20b9e95fdffc10515e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515ec", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbc20b9e95fdffc10515e8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514c4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514c4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10515ee", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66cbc20b9e95fdffc10515e8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10514c6", + "_tpl": "66b37eb4acff495a29492407", + "parentId": "66cbc20b9e95fdffc10514c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514c8", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbc20b9e95fdffc10514c4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514ca", + "_tpl": "5751487e245977207e26a315", + "parentId": "66cbc20b9e95fdffc10514c4", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00648", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10515f0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515f0", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00634", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515f1", - "_tpl": "5ac66d2e5acfc43b321d4b53", - "parentId": "66cbc20b9e95fdffc10515f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515f2", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbc20b9e95fdffc10515f1", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc10515f3", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbc20b9e95fdffc10515f2", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc10515f4", - "_tpl": "5ac72e7d5acfc40016339a02", - "parentId": "66cbc20b9e95fdffc10515f1", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc10515f5", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbc20b9e95fdffc10515f1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc10515f6", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbc20b9e95fdffc10515f1", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc10515f7", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "66cbc20b9e95fdffc10515f1", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc10515f8", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbc20b9e95fdffc10515f1", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc10515f9", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66cbc20b9e95fdffc10515f1", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc10515fa", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbc20b9e95fdffc10515f9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 23.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514cc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514cc", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514ce", + "_tpl": "5b43271c5acfc432ff4dce65", + "parentId": "66cbc20b9e95fdffc10514cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514d0", + "_tpl": "560d657b4bdc2da74d8b4572", + "parentId": "66cbc20b9e95fdffc10514cc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00524", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10515fc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10515fc", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00349", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10515fe", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbc20b9e95fdffc10515fc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00158", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051600", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051600", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051602", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66cbc20b9e95fdffc1051600", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514d2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514d2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514d4", + "_tpl": "590a373286f774287540368b", + "parentId": "66cbc20b9e95fdffc10514d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514d6", + "_tpl": "59e3658a86f7741776641ac4", + "parentId": "66cbc20b9e95fdffc10514d2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514d8", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbc20b9e95fdffc10514d2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051604", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051604", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00592", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051606", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbc20b9e95fdffc1051604", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051608", - "_tpl": "5e2af4d286f7746d4159f07a", - "parentId": "66cbc20b9e95fdffc1051604", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514da", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514da", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514dc", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbc20b9e95fdffc10514da", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514de", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc10514da", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514e0", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbc20b9e95fdffc10514da", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00718", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105160a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105160a", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00467", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105160c", - "_tpl": "5c064c400db834001d23f468", - "parentId": "66cbc20b9e95fdffc105160a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105160e", - "_tpl": "5d5fca1ea4b93635fd598c07", - "parentId": "66cbc20b9e95fdffc105160a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514e2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514e2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051610", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66cbc20b9e95fdffc105160a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10514e4", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbc20b9e95fdffc10514e2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514e6", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66cbc20b9e95fdffc10514e2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514e8", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbc20b9e95fdffc10514e2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051612", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051612", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00572", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051614", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbc20b9e95fdffc1051612", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00650", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051616", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051616", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051619", - "_tpl": "573725b0245977612125bae2", - "parentId": "66cbc20b9e95fdffc1051616", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514ea", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514ea", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105161a", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66cbc20b9e95fdffc1051619", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + { + "_id": "66cbc20b9e95fdffc10514ec", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbc20b9e95fdffc10514ea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00148", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105161c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105161c", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00432", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105161e", - "_tpl": "5bd073a586f7747e6f135799", - "parentId": "66cbc20b9e95fdffc105161c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00191", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051620", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051620", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051622", - "_tpl": "5d4405aaa4b9361e6a4e6bd3", - "parentId": "66cbc20b9e95fdffc1051620", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514ee", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514ee", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051624", - "_tpl": "5dfe6104585a0c3e995c7b82", - "parentId": "66cbc20b9e95fdffc1051620", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10514f0", + "_tpl": "5e2af4d286f7746d4159f07a", + "parentId": "66cbc20b9e95fdffc10514ee", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051626", - "_tpl": "669fa435803b94fb5d0e3a76", - "parentId": "66cbc20b9e95fdffc1051620", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10514f2", + "_tpl": "5673de654bdc2d180f8b456d", + "parentId": "66cbc20b9e95fdffc10514ee", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051627", - "_tpl": "66015072e9f84d5680039678", - "parentId": "66cbc20b9e95fdffc1051620", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10514f3", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66cbc20b9e95fdffc10514ee", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc10514f4", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66cbc20b9e95fdffc10514f3", + "slotId": "mod_magazine" }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbc20b9e95fdffc10514f8", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbc20b9e95fdffc10514f4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 } + }, + { + "_id": "66cbc20b9e95fdffc10514f5", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66cbc20b9e95fdffc10514f3", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc10514f6", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66cbc20b9e95fdffc10514f5", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc10514f7", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66cbc20b9e95fdffc10514f3", + "slotId": "mod_pistolgrip" } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00343", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051628", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "66cbc20b9e95fdffc1051627", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051629", - "_tpl": "6601546f86889319850bd566", - "parentId": "66cbc20b9e95fdffc1051628", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514fa", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514fa", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10514fc", + "_tpl": "5734773724597737fd047c14", + "parentId": "66cbc20b9e95fdffc10514fa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105162b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105162b", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00126", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105162d", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbc20b9e95fdffc105162b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105162f", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbc20b9e95fdffc105162b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10514fe", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10514fe", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051500", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbc20b9e95fdffc10514fe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00121", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051631", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051631", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051633", - "_tpl": "62a0a0bb621468534a797ad5", - "parentId": "66cbc20b9e95fdffc1051631", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00315", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051635", - "_tpl": "590a373286f774287540368b", - "parentId": "66cbc20b9e95fdffc1051631", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00105", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051637", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051637", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051639", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051637", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 873 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051502", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051502", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051504", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "66cbc20b9e95fdffc1051502", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051506", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66cbc20b9e95fdffc1051502", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105163b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105163b", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00701", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105163d", - "_tpl": "590de71386f774347051a052", - "parentId": "66cbc20b9e95fdffc105163b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105163f", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbc20b9e95fdffc105163b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051508", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051508", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105150a", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbc20b9e95fdffc1051508", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00056", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051641", - "_tpl": "62a09cfe4f842e1bd12da3e4", - "parentId": "66cbc20b9e95fdffc105163b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051643", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66cbc20b9e95fdffc105163b", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105150c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105150c", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051645", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105163b", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 918 + { + "_id": "66cbc20b9e95fdffc105150e", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbc20b9e95fdffc105150c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00319", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051647", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051647", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00170", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051649", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66cbc20b9e95fdffc1051647", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105164b", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbc20b9e95fdffc1051647", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051510", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051510", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051512", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbc20b9e95fdffc1051510", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051514", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc1051510", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00139", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105164d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105164d", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00580", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105164f", - "_tpl": "5a145ebb86f77458f1796f05", - "parentId": "66cbc20b9e95fdffc105164d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00540", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051651", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051651", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051653", - "_tpl": "590c695186f7741e566b64a2", - "parentId": "66cbc20b9e95fdffc1051651", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051516", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051516", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051518", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbc20b9e95fdffc1051516", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105151a", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbc20b9e95fdffc1051516", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105151c", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbc20b9e95fdffc1051516", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00205", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051655", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051655", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00599", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051657", - "_tpl": "64785e7c19d732620e045e15", - "parentId": "66cbc20b9e95fdffc1051655", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051659", - "_tpl": "577d141e24597739c5255e01", - "parentId": "66cbc20b9e95fdffc1051655", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105151e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105151e", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105165b", - "_tpl": "5bbdb8bdd4351e4502011460", - "parentId": "66cbc20b9e95fdffc1051655", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051520", + "_tpl": "5a7c74b3e899ef0014332c29", + "parentId": "66cbc20b9e95fdffc105151e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105165d", - "_tpl": "5ea058e01dbce517f324b3e2", - "parentId": "66cbc20b9e95fdffc1051655", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051523", + "_tpl": "573725b0245977612125bae2", + "parentId": "66cbc20b9e95fdffc105151e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105165f", - "_tpl": "59e7715586f7742ee5789605", - "parentId": "66cbc20b9e95fdffc1051655", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051524", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66cbc20b9e95fdffc1051523", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbc20b9e95fdffc1051526", + "_tpl": "5b7be4645acfc400170e2dcc", + "parentId": "66cbc20b9e95fdffc105151e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00436", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051661", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051661", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00673", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051663", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbc20b9e95fdffc1051661", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051665", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbc20b9e95fdffc1051661", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051528", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051528", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051667", - "_tpl": "5bc9b720d4351e450201234b", - "parentId": "66cbc20b9e95fdffc1051661", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105152a", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbc20b9e95fdffc1051528", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105152c", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbc20b9e95fdffc1051528", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105152e", + "_tpl": "5d4042a986f7743185265463", + "parentId": "66cbc20b9e95fdffc1051528", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00198", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051669", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051669", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105166b", - "_tpl": "5d1340cad7ad1a0b0b249869", - "parentId": "66cbc20b9e95fdffc1051669", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105166d", - "_tpl": "637784c5f7b3f4ac1a0d1a9a", - "parentId": "66cbc20b9e95fdffc1051669", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051530", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051530", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105166f", - "_tpl": "55d485804bdc2d8c2f8b456b", - "parentId": "66cbc20b9e95fdffc1051669", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051531", + "_tpl": "5645bc214bdc2d363b8b4571", + "parentId": "66cbc20b9e95fdffc1051530", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051671", - "_tpl": "5bc09a18d4351e003562b68e", - "parentId": "66cbc20b9e95fdffc1051669", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051532", + "_tpl": "657bae18b7e9ca9a02045c0a", + "parentId": "66cbc20b9e95fdffc1051531", + "slotId": "Helmet_top" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051673", - "_tpl": "5a0d63621526d8dba31fe3bf", - "parentId": "66cbc20b9e95fdffc1051669", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051533", + "_tpl": "657baeaacfcf63c951052db3", + "parentId": "66cbc20b9e95fdffc1051531", + "slotId": "Helmet_back" + }, + { + "_id": "66cbc20b9e95fdffc1051534", + "_tpl": "657baecbc6f689d3a205b863", + "parentId": "66cbc20b9e95fdffc1051531", + "slotId": "Helmet_ears" } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00376", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051675", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051675", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00186", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051677", - "_tpl": "5d02778e86f774203e7dedbe", - "parentId": "66cbc20b9e95fdffc1051675", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051679", - "_tpl": "5d02778e86f774203e7dedbe", - "parentId": "66cbc20b9e95fdffc1051675", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00190", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105167b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105167b", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105167d", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbc20b9e95fdffc105167b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051536", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051536", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105167f", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbc20b9e95fdffc105167b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051538", + "_tpl": "5bfe86a20db834001d23e8f7", + "parentId": "66cbc20b9e95fdffc1051536", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051539", + "_tpl": "576a581d2459771e7b1bc4f1", + "parentId": "66cbc20b9e95fdffc1051536", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbc20b9e95fdffc105153a", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "66cbc20b9e95fdffc1051539", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc105153c", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbc20b9e95fdffc105153a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16.0 + } + }, + { + "_id": "66cbc20b9e95fdffc105153b", + "_tpl": "576a63cd2459771e796e0e11", + "parentId": "66cbc20b9e95fdffc1051539", + "slotId": "mod_pistol_grip" } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00116", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051681", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051681", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051682", - "_tpl": "59f9cabd86f7743a10721f46", - "parentId": "66cbc20b9e95fdffc1051681", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbc20b9e95fdffc1051683", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbc20b9e95fdffc1051682", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051684", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbc20b9e95fdffc1051682", - "slotId": "mod_stock" + { + "Id": "container_shoreline_DesignStuff_00322", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051685", - "_tpl": "5998529a86f774647f44f421", - "parentId": "66cbc20b9e95fdffc1051682", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105168b", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbc20b9e95fdffc1051685", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105153e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105153e", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051540", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbc20b9e95fdffc105153e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051542", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbc20b9e95fdffc105153e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051544", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbc20b9e95fdffc105153e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051686", - "_tpl": "5998598e86f7740b3f498a86", - "parentId": "66cbc20b9e95fdffc1051682", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051687", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbc20b9e95fdffc1051682", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051688", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbc20b9e95fdffc1051682", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051689", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbc20b9e95fdffc1051682", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc105168a", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbc20b9e95fdffc1051689", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00399", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105168d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105168d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105168f", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbc20b9e95fdffc105168d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051691", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbc20b9e95fdffc105168d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051546", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051546", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051548", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbc20b9e95fdffc1051546", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00178", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051693", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051693", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051695", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbc20b9e95fdffc1051693", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00667", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051697", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051697", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051699", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbc20b9e95fdffc1051697", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105154a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105154a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105169b", - "_tpl": "5d1b317c86f7742523398392", - "parentId": "66cbc20b9e95fdffc1051697", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105154c", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbc20b9e95fdffc105154a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00171", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105169d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105169d", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105169f", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbc20b9e95fdffc105169d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516a1", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbc20b9e95fdffc105169d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105154e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105154e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051550", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbc20b9e95fdffc105154e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00618", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516a3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516a3", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516a5", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbc20b9e95fdffc10516a3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 34 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516a7", - "_tpl": "5827272a24597748c74bdeea", - "parentId": "66cbc20b9e95fdffc10516a3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051552", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051552", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051554", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbc20b9e95fdffc1051552", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00523", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516a9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516a9", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00104", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516ab", - "_tpl": "6389c6c7dbfd5e4b95197e68", - "parentId": "66cbc20b9e95fdffc10516a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516ad", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbc20b9e95fdffc10516a9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051556", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051556", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516af", - "_tpl": "5c0e533786f7747fa23f4d47", - "parentId": "66cbc20b9e95fdffc10516a9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051558", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051556", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 685 + } + }, + { + "_id": "66cbc20b9e95fdffc105155a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051556", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 843 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00708", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516b1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516b1", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516b3", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbc20b9e95fdffc10516b1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516b5", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbc20b9e95fdffc10516b1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105155c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105155c", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105155e", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbc20b9e95fdffc105155c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 55 + } + }, + { + "_id": "66cbc20b9e95fdffc1051560", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105155c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 912 + } + }, + { + "_id": "66cbc20b9e95fdffc1051562", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105155c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 722 + } + }, + { + "_id": "66cbc20b9e95fdffc1051564", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbc20b9e95fdffc105155c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 84 + } + }, + { + "_id": "66cbc20b9e95fdffc1051566", + "_tpl": "5e54f62086f774219b0f1937", + "parentId": "66cbc20b9e95fdffc105155c", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00161", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516b7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516b7", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516b9", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbc20b9e95fdffc10516b7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516bb", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbc20b9e95fdffc10516b7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00141", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516bd", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516bd", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516bf", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbc20b9e95fdffc10516bd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051568", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051568", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105156a", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66cbc20b9e95fdffc1051568", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105156c", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "66cbc20b9e95fdffc1051568", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105156e", + "_tpl": "5f60bf4558eff926626a60f2", + "parentId": "66cbc20b9e95fdffc1051568", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051570", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbc20b9e95fdffc1051568", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10516c1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516c1", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00335", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516c3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc10516c1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 986 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00228", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516c5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516c5", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516c7", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbc20b9e95fdffc10516c5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051572", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051572", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516c9", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbc20b9e95fdffc10516c5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051574", + "_tpl": "5e54f6af86f7742199090bf3", + "parentId": "66cbc20b9e95fdffc1051572", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00446", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516cb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516cb", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00250", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516cd", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66cbc20b9e95fdffc10516cb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516cf", - "_tpl": "57513f9324597720a7128161", - "parentId": "66cbc20b9e95fdffc10516cb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051576", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051576", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516d1", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc10516cb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051578", + "_tpl": "6544d4187c5457729210d277", + "parentId": "66cbc20b9e95fdffc1051576", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105157a", + "_tpl": "5f3e77f59103d430b93f94c1", + "parentId": "66cbc20b9e95fdffc1051576", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105157c", + "_tpl": "5dfa3cd1b33c0951220c079b", + "parentId": "66cbc20b9e95fdffc1051576", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105157e", + "_tpl": "630769c4962d0247b029dc60", + "parentId": "66cbc20b9e95fdffc1051576", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105157f", + "_tpl": "5f2a9575926fd9352339381f", + "parentId": "66cbc20b9e95fdffc1051576", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051580", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "66cbc20b9e95fdffc105157f", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051586", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbc20b9e95fdffc1051580", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 14.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051581", + "_tpl": "5f2aa46b878ef416f538b567", + "parentId": "66cbc20b9e95fdffc105157f", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc1051582", + "_tpl": "5f2aa4464b50c14bcf07acdb", + "parentId": "66cbc20b9e95fdffc1051581", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051583", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "parentId": "66cbc20b9e95fdffc105157f", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051584", + "_tpl": "5f2aa493cd375f14e15eea72", + "parentId": "66cbc20b9e95fdffc1051583", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbc20b9e95fdffc1051585", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "parentId": "66cbc20b9e95fdffc105157f", + "slotId": "mod_mount" + }, + { + "_id": "66cbc20b9e95fdffc1051588", + "_tpl": "5bbdb811d4351e45020113c7", + "parentId": "66cbc20b9e95fdffc1051576", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00482", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516d3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516d3", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00735", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516d5", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbc20b9e95fdffc10516d3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516d7", - "_tpl": "5d1b31ce86f7742523398394", - "parentId": "66cbc20b9e95fdffc10516d3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105158a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105158a", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516d9", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbc20b9e95fdffc10516d3", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105158c", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "66cbc20b9e95fdffc105158a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105158e", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbc20b9e95fdffc105158a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051590", + "_tpl": "5d4041f086f7743cac3f22a7", + "parentId": "66cbc20b9e95fdffc105158a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051592", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbc20b9e95fdffc105158a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00156", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516db", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516db", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00719", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516dd", - "_tpl": "57347baf24597738002c6178", - "parentId": "66cbc20b9e95fdffc10516db", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00216", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516df", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516df", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516e1", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbc20b9e95fdffc10516df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051594", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051594", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516e3", - "_tpl": "5710c24ad2720bc3458b45a3", - "parentId": "66cbc20b9e95fdffc10516df", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051596", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "66cbc20b9e95fdffc1051594", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516e5", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66cbc20b9e95fdffc10516df", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051598", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbc20b9e95fdffc1051594", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105159a", + "_tpl": "56e33680d2720be2748b4576", + "parentId": "66cbc20b9e95fdffc1051594", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105159c", + "_tpl": "59ccfdba86f7747f2109a587", + "parentId": "66cbc20b9e95fdffc1051594", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105159e", + "_tpl": "64b8f7b5389d7ffd620ccba2", + "parentId": "66cbc20b9e95fdffc1051594", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 25 + } + }, + { + "_id": "66cbc20b9e95fdffc105159f", + "_tpl": "5a17f98cfcdbcb0980087290", + "parentId": "66cbc20b9e95fdffc1051594", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515a0", + "_tpl": "5a17fb03fcdbcbcae668728f", + "parentId": "66cbc20b9e95fdffc105159f", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10515a4", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbc20b9e95fdffc10515a0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 19.0 + } + }, + { + "_id": "66cbc20b9e95fdffc10515a1", + "_tpl": "5a17fc70fcdbcb0176308b3d", + "parentId": "66cbc20b9e95fdffc105159f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc10515a2", + "_tpl": "5aba62f8d8ce87001943946b", + "parentId": "66cbc20b9e95fdffc105159f", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbc20b9e95fdffc10515a3", + "_tpl": "5aba637ad8ce87001773e17f", + "parentId": "66cbc20b9e95fdffc105159f", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc10515a6", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbc20b9e95fdffc1051594", + "slotId": "main", + "location": { + "x": 3, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 56 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00516", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516e7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516e7", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00197", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516e9", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbc20b9e95fdffc10516e7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10515a8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515a8", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515aa", + "_tpl": "564caa3d4bdc2d17108b458e", + "parentId": "66cbc20b9e95fdffc10515a8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515ac", + "_tpl": "5e217ba4c1434648c13568cd", + "parentId": "66cbc20b9e95fdffc10515a8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515ae", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "66cbc20b9e95fdffc10515a8", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10515b0", + "_tpl": "6698c89bfbc8142e60024b0e", + "parentId": "66cbc20b9e95fdffc10515a8", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00237", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516eb", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbc20b9e95fdffc10516e7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516ed", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516ed", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516ef", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbc20b9e95fdffc10516ed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10515b2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515b2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516f0", - "_tpl": "57d14d2524597714373db789", - "parentId": "66cbc20b9e95fdffc10516ed", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516f1", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66cbc20b9e95fdffc10516f0", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc10516f2", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbc20b9e95fdffc10516f0", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc10516f3", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbc20b9e95fdffc10516f2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 27.0 - } - }, - { - "_id": "66cbc20b9e95fdffc10516f5", - "_tpl": "5c1a1cc52e221602b3136e3d", - "parentId": "66cbc20b9e95fdffc10516ed", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00182", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10516f7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516f7", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516f9", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "66cbc20b9e95fdffc10516f7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10515b4", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbc20b9e95fdffc10515b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515b6", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66cbc20b9e95fdffc10515b2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10516fb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10516fb", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10516fc", - "_tpl": "5aa7cfc0e5b5b00015693143", - "parentId": "66cbc20b9e95fdffc10516fb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbc20b9e95fdffc10516fd", - "_tpl": "657baaf0b7e9ca9a02045c02", - "parentId": "66cbc20b9e95fdffc10516fc", - "slotId": "Helmet_top" - }, - { - "_id": "66cbc20b9e95fdffc10516fe", - "_tpl": "657bab6ec6f689d3a205b85f", - "parentId": "66cbc20b9e95fdffc10516fc", - "slotId": "Helmet_back" + { + "Id": "container_shoreline_DesignStuff_00393", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10516ff", - "_tpl": "657babc6f58ba5a6250107a2", - "parentId": "66cbc20b9e95fdffc10516fc", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051700", - "_tpl": "56d59856d2720bd8418b456a", - "parentId": "66cbc20b9e95fdffc10516fb", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10515b8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515b8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515ba", + "_tpl": "5d1b371186f774253763a656", + "parentId": "66cbc20b9e95fdffc10515b8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515bc", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc10515b8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515be", + "_tpl": "5751487e245977207e26a315", + "parentId": "66cbc20b9e95fdffc10515b8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00732", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051701", - "_tpl": "56d5a1f7d2720bb3418b456a", - "parentId": "66cbc20b9e95fdffc1051700", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc1051702", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "66cbc20b9e95fdffc1051700", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051703", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "66cbc20b9e95fdffc1051700", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051704", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "66cbc20b9e95fdffc1051703", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051705", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "66cbc20b9e95fdffc1051703", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbc20b9e95fdffc1051706", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "66cbc20b9e95fdffc1051700", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051707", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbc20b9e95fdffc1051706", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051709", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbc20b9e95fdffc10516fb", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10515c0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515c0", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 86 - } - }, - { - "_id": "66cbc20b9e95fdffc105170b", - "_tpl": "57347d692459774491567cf1", - "parentId": "66cbc20b9e95fdffc10516fb", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10515c2", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbc20b9e95fdffc10515c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515c4", + "_tpl": "590c5bbd86f774785762df04", + "parentId": "66cbc20b9e95fdffc10515c0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00500", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105170d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105170d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00388", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105170f", - "_tpl": "572b7fa524597762b747ce82", - "parentId": "66cbc20b9e95fdffc105170d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051711", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbc20b9e95fdffc105170d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10515c6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515c6", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515c8", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbc20b9e95fdffc10515c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515ca", + "_tpl": "5d1c819a86f774771b0acd6c", + "parentId": "66cbc20b9e95fdffc10515c6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00288", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051713", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051713", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00249", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051714", - "_tpl": "5f2a9575926fd9352339381f", - "parentId": "66cbc20b9e95fdffc1051713", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10515cc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515cc", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515ce", + "_tpl": "6086b5392535c57a13424d70", + "parentId": "66cbc20b9e95fdffc10515cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbc20b9e95fdffc10515d0", + "_tpl": "5e023d34e8a400319a28ed44", + "parentId": "66cbc20b9e95fdffc10515cc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 18 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00608", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051715", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "66cbc20b9e95fdffc1051714", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105171b", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66cbc20b9e95fdffc1051715", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10515d2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515d2", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515d4", + "_tpl": "5a01c29586f77474660c694c", + "parentId": "66cbc20b9e95fdffc10515d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515d8", + "_tpl": "57372b832459776701014e41", + "parentId": "66cbc20b9e95fdffc10515d2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515d9", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbc20b9e95fdffc10515d8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc10515da", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbc20b9e95fdffc10515d8", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc10515de", + "_tpl": "57372ee1245977685d4159b5", + "parentId": "66cbc20b9e95fdffc10515d2", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515df", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbc20b9e95fdffc10515de", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc10515e0", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbc20b9e95fdffc10515de", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00225", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051716", - "_tpl": "5f2aa46b878ef416f538b567", - "parentId": "66cbc20b9e95fdffc1051714", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc1051717", - "_tpl": "5f2aa4464b50c14bcf07acdb", - "parentId": "66cbc20b9e95fdffc1051716", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051718", - "_tpl": "5f2aa47a200e2c0ee46efa71", - "parentId": "66cbc20b9e95fdffc1051714", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051719", - "_tpl": "5f2aa493cd375f14e15eea72", - "parentId": "66cbc20b9e95fdffc1051718", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbc20b9e95fdffc105171a", - "_tpl": "5f2aa49f9b44de6b1b4e68d4", - "parentId": "66cbc20b9e95fdffc1051714", - "slotId": "mod_mount" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105171d", - "_tpl": "609269c3b0e443224b421cc1", - "parentId": "66cbc20b9e95fdffc1051713", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10515e2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515e2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105171f", - "_tpl": "57c55f112459772d28133310", - "parentId": "66cbc20b9e95fdffc1051713", - "slotId": "main", - "location": { - "x": 4, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10515e4", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc10515e2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515e6", + "_tpl": "5d1b385e86f774252167b98a", + "parentId": "66cbc20b9e95fdffc10515e2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00122", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051721", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051721", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00530", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051723", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66cbc20b9e95fdffc1051721", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051725", - "_tpl": "5ba26835d4351e0035628ff5", - "parentId": "66cbc20b9e95fdffc1051721", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10515e8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515e8", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 64 - } - }, - { - "_id": "66cbc20b9e95fdffc1051726", - "_tpl": "5ea03f7400685063ec28bfa8", - "parentId": "66cbc20b9e95fdffc1051721", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + { + "_id": "66cbc20b9e95fdffc10515ea", + "_tpl": "60098af40accd37ef2175f27", + "parentId": "66cbc20b9e95fdffc10515e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515ec", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbc20b9e95fdffc10515e8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbc20b9e95fdffc10515ee", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66cbc20b9e95fdffc10515e8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00648", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051727", - "_tpl": "5ea03e9400685063ec28bfa4", - "parentId": "66cbc20b9e95fdffc1051726", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051728", - "_tpl": "5ea034eb5aad6446a939737b", - "parentId": "66cbc20b9e95fdffc1051726", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc105172b", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66cbc20b9e95fdffc1051728", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 21.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10515f0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515f0", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10515f1", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "parentId": "66cbc20b9e95fdffc10515f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbc20b9e95fdffc10515f2", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbc20b9e95fdffc10515f1", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc10515f3", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbc20b9e95fdffc10515f2", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc10515f4", + "_tpl": "5ac72e7d5acfc40016339a02", + "parentId": "66cbc20b9e95fdffc10515f1", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc10515f5", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbc20b9e95fdffc10515f1", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc10515f6", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbc20b9e95fdffc10515f1", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc10515f7", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "66cbc20b9e95fdffc10515f1", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc10515f8", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbc20b9e95fdffc10515f1", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc10515f9", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66cbc20b9e95fdffc10515f1", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10515fa", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbc20b9e95fdffc10515f9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 23.0 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00524", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051729", - "_tpl": "5ea03e5009aa976f2e7a514b", - "parentId": "66cbc20b9e95fdffc1051726", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc105172a", - "_tpl": "5ea02bb600685063ec28bfa1", - "parentId": "66cbc20b9e95fdffc1051726", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105172d", - "_tpl": "5d6d2ef3a4b93618084f58bd", - "parentId": "66cbc20b9e95fdffc1051721", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10515fc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10515fc", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105172f", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbc20b9e95fdffc1051721", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10515fe", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbc20b9e95fdffc10515fc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00582", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051731", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051731", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00158", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051733", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbc20b9e95fdffc1051731", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051735", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbc20b9e95fdffc1051731", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051600", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051600", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051602", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66cbc20b9e95fdffc1051600", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00684", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051737", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051737", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051739", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66cbc20b9e95fdffc1051737", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00289", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105173b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105173b", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105173d", - "_tpl": "609a63b6e2ff132951242d09", - "parentId": "66cbc20b9e95fdffc105173b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051604", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051604", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105173f", - "_tpl": "5a9eb32da2750c00171b3f9c", - "parentId": "66cbc20b9e95fdffc105173b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051606", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbc20b9e95fdffc1051604", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051741", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbc20b9e95fdffc105173b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051608", + "_tpl": "5e2af4d286f7746d4159f07a", + "parentId": "66cbc20b9e95fdffc1051604", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00157", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051743", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051743", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00718", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051745", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbc20b9e95fdffc1051743", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051747", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbc20b9e95fdffc1051743", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105160a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105160a", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105160c", + "_tpl": "5c064c400db834001d23f468", + "parentId": "66cbc20b9e95fdffc105160a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105160e", + "_tpl": "5d5fca1ea4b93635fd598c07", + "parentId": "66cbc20b9e95fdffc105160a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051610", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66cbc20b9e95fdffc105160a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00420", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051749", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051749", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105174b", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbc20b9e95fdffc1051749", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105174d", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbc20b9e95fdffc1051749", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051612", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051612", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051614", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbc20b9e95fdffc1051612", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00215", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105174f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105174f", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00650", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051751", - "_tpl": "62a091170b9d3c46de5b6cf2", - "parentId": "66cbc20b9e95fdffc105174f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051753", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbc20b9e95fdffc105174f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051616", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051616", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 79 - } - }, - { - "_id": "66cbc20b9e95fdffc1051755", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105174f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051619", + "_tpl": "573725b0245977612125bae2", + "parentId": "66cbc20b9e95fdffc1051616", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 671 + { + "_id": "66cbc20b9e95fdffc105161a", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66cbc20b9e95fdffc1051619", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00148", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051757", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66cbc20b9e95fdffc105174f", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051759", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66cbc20b9e95fdffc105174f", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105161c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105161c", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105161e", + "_tpl": "5bd073a586f7747e6f135799", + "parentId": "66cbc20b9e95fdffc105161c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00551", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105175b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105175b", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00191", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105175d", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbc20b9e95fdffc105175b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105175f", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbc20b9e95fdffc105175b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051620", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051620", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051622", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "parentId": "66cbc20b9e95fdffc1051620", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051624", + "_tpl": "5dfe6104585a0c3e995c7b82", + "parentId": "66cbc20b9e95fdffc1051620", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051626", + "_tpl": "669fa435803b94fb5d0e3a76", + "parentId": "66cbc20b9e95fdffc1051620", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051627", + "_tpl": "66015072e9f84d5680039678", + "parentId": "66cbc20b9e95fdffc1051620", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051628", + "_tpl": "66015dc4aaad2f54cb04c56a", + "parentId": "66cbc20b9e95fdffc1051627", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051629", + "_tpl": "6601546f86889319850bd566", + "parentId": "66cbc20b9e95fdffc1051628", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20.0 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051761", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbc20b9e95fdffc105175b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105162b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105162b", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105162d", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbc20b9e95fdffc105162b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105162f", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbc20b9e95fdffc105162b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00350", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051763", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051763", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051765", - "_tpl": "5e54f76986f7740366043752", - "parentId": "66cbc20b9e95fdffc1051763", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00162", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051767", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051767", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00121", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051769", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbc20b9e95fdffc1051767", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00150", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105176b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105176b", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105176d", - "_tpl": "5b432b2f5acfc4771e1c6622", - "parentId": "66cbc20b9e95fdffc105176b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051631", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051631", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051633", + "_tpl": "62a0a0bb621468534a797ad5", + "parentId": "66cbc20b9e95fdffc1051631", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051635", + "_tpl": "590a373286f774287540368b", + "parentId": "66cbc20b9e95fdffc1051631", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00601", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105176f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105176f", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00105", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051771", - "_tpl": "591c4efa86f7741030027726", - "parentId": "66cbc20b9e95fdffc105176f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051772", - "_tpl": "587e02ff24597743df3deaeb", - "parentId": "66cbc20b9e95fdffc105176f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051637", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051637", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66cbc20b9e95fdffc1051639", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051637", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 873 } } + ] + }, + { + "Id": "Lootable_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051773", - "_tpl": "587e0531245977466077a0f7", - "parentId": "66cbc20b9e95fdffc1051772", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051774", - "_tpl": "634eff66517ccc8a960fc735", - "parentId": "66cbc20b9e95fdffc1051772", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc1051775", - "_tpl": "634f05a21f9f536910079b56", - "parentId": "66cbc20b9e95fdffc1051774", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbc20b9e95fdffc1051776", - "_tpl": "634f036a517ccc8a960fc746", - "parentId": "66cbc20b9e95fdffc1051775", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051777", - "_tpl": "634f03d40384a3ba4f06f874", - "parentId": "66cbc20b9e95fdffc1051776", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbc20b9e95fdffc1051778", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "66cbc20b9e95fdffc1051775", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051779", - "_tpl": "587df3a12459772c28142567", - "parentId": "66cbc20b9e95fdffc1051772", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105177b", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66cbc20b9e95fdffc1051779", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105163b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105163b", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105163d", + "_tpl": "590de71386f774347051a052", + "parentId": "66cbc20b9e95fdffc105163b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105163f", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbc20b9e95fdffc105163b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051641", + "_tpl": "62a09cfe4f842e1bd12da3e4", + "parentId": "66cbc20b9e95fdffc105163b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051643", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66cbc20b9e95fdffc105163b", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051645", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105163b", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 918 + } } - }, - { - "_id": "66cbc20b9e95fdffc105177a", - "_tpl": "634f06262e5def262d0b30ca", - "parentId": "66cbc20b9e95fdffc1051772", - "slotId": "mod_reciever" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00164", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105177d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105177d", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00319", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105177f", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbc20b9e95fdffc105177d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00210", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051781", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051781", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051783", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66cbc20b9e95fdffc1051781", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051647", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051647", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051785", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "66cbc20b9e95fdffc1051781", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051649", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66cbc20b9e95fdffc1051647", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105164b", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbc20b9e95fdffc1051647", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00223", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051787", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051787", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00139", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105178a", - "_tpl": "573724b42459776125652ac2", - "parentId": "66cbc20b9e95fdffc1051787", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105164d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105164d", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105164f", + "_tpl": "5a145ebb86f77458f1796f05", + "parentId": "66cbc20b9e95fdffc105164d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00540", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105178b", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbc20b9e95fdffc105178a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105178f", - "_tpl": "57372b832459776701014e41", - "parentId": "66cbc20b9e95fdffc1051787", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051651", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051651", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051790", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbc20b9e95fdffc105178f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + { + "_id": "66cbc20b9e95fdffc1051653", + "_tpl": "590c695186f7741e566b64a2", + "parentId": "66cbc20b9e95fdffc1051651", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00205", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051791", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbc20b9e95fdffc105178f", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051793", - "_tpl": "59e4cf5286f7741778269d8a", - "parentId": "66cbc20b9e95fdffc1051787", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 36 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051655", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051655", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051657", + "_tpl": "64785e7c19d732620e045e15", + "parentId": "66cbc20b9e95fdffc1051655", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051659", + "_tpl": "577d141e24597739c5255e01", + "parentId": "66cbc20b9e95fdffc1051655", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105165b", + "_tpl": "5bbdb8bdd4351e4502011460", + "parentId": "66cbc20b9e95fdffc1051655", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105165d", + "_tpl": "5ea058e01dbce517f324b3e2", + "parentId": "66cbc20b9e95fdffc1051655", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105165f", + "_tpl": "59e7715586f7742ee5789605", + "parentId": "66cbc20b9e95fdffc1051655", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00200", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051795", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051795", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00436", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051797", - "_tpl": "5e2af47786f7746d404f3aaa", - "parentId": "66cbc20b9e95fdffc1051795", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051799", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051799", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105179b", - "_tpl": "668fe62ac62660a5d8071446", - "parentId": "66cbc20b9e95fdffc1051799", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051661", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051661", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 6 - } - }, - { - "_id": "66cbc20b9e95fdffc105179d", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbc20b9e95fdffc1051799", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 27 + { + "_id": "66cbc20b9e95fdffc1051663", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbc20b9e95fdffc1051661", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051665", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbc20b9e95fdffc1051661", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051667", + "_tpl": "5bc9b720d4351e450201234b", + "parentId": "66cbc20b9e95fdffc1051661", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00678", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105179f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105179f", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00198", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517a1", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbc20b9e95fdffc105179f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517a3", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66cbc20b9e95fdffc105179f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051669", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051669", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105166b", + "_tpl": "5d1340cad7ad1a0b0b249869", + "parentId": "66cbc20b9e95fdffc1051669", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105166d", + "_tpl": "637784c5f7b3f4ac1a0d1a9a", + "parentId": "66cbc20b9e95fdffc1051669", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105166f", + "_tpl": "55d485804bdc2d8c2f8b456b", + "parentId": "66cbc20b9e95fdffc1051669", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051671", + "_tpl": "5bc09a18d4351e003562b68e", + "parentId": "66cbc20b9e95fdffc1051669", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051673", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "66cbc20b9e95fdffc1051669", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00535", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10517a5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517a5", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00376", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517a7", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66cbc20b9e95fdffc10517a5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517a9", - "_tpl": "60098af40accd37ef2175f27", - "parentId": "66cbc20b9e95fdffc10517a5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051675", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051675", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10517ab", - "_tpl": "5e8488fa988a8701445df1e4", - "parentId": "66cbc20b9e95fdffc10517a5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051677", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "66cbc20b9e95fdffc1051675", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051679", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "66cbc20b9e95fdffc1051675", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00600", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10517ad", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517ad", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00190", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517b0", - "_tpl": "573727c624597765cc785b5b", - "parentId": "66cbc20b9e95fdffc10517ad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105167b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105167b", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105167d", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbc20b9e95fdffc105167b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105167f", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbc20b9e95fdffc105167b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00116", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517b1", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66cbc20b9e95fdffc10517b0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517b3", - "_tpl": "570fd79bd2720bc7458b4583", - "parentId": "66cbc20b9e95fdffc10517ad", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051681", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051681", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051682", + "_tpl": "59f9cabd86f7743a10721f46", + "parentId": "66cbc20b9e95fdffc1051681", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051683", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbc20b9e95fdffc1051682", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051684", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbc20b9e95fdffc1051682", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051685", + "_tpl": "5998529a86f774647f44f421", + "parentId": "66cbc20b9e95fdffc1051682", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc105168b", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbc20b9e95fdffc1051685", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051686", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "66cbc20b9e95fdffc1051682", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051687", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbc20b9e95fdffc1051682", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051688", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbc20b9e95fdffc1051682", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051689", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbc20b9e95fdffc1051682", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc105168a", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbc20b9e95fdffc1051689", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00731", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10517b5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517b5", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00399", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517b7", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbc20b9e95fdffc10517b5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517b9", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbc20b9e95fdffc10517b5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105168d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105168d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105168f", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbc20b9e95fdffc105168d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051691", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbc20b9e95fdffc105168d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10517bb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517bb", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00178", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517bd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc10517bb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1002 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517bf", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc10517bb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 759 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051693", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051693", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051695", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbc20b9e95fdffc1051693", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10517c1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517c1", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00667", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517c3", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbc20b9e95fdffc10517c1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051697", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051697", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051699", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbc20b9e95fdffc1051697", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105169b", + "_tpl": "5d1b317c86f7742523398392", + "parentId": "66cbc20b9e95fdffc1051697", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00171", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517c5", - "_tpl": "5e2af29386f7746d4159f077", - "parentId": "66cbc20b9e95fdffc10517c1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105169d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105169d", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105169f", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbc20b9e95fdffc105169d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10516a1", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbc20b9e95fdffc105169d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00618", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517c6", - "_tpl": "6680304edadb7aa61d00cef0", - "parentId": "66cbc20b9e95fdffc10517c1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516a3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516a3", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516a5", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbc20b9e95fdffc10516a3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 34 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbc20b9e95fdffc10516a7", + "_tpl": "5827272a24597748c74bdeea", + "parentId": "66cbc20b9e95fdffc10516a3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00523", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517c7", - "_tpl": "668031ffe3e7eb26e8004cdd", - "parentId": "66cbc20b9e95fdffc10517c6", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517cc", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbc20b9e95fdffc10517c7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516a9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516a9", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516ab", + "_tpl": "6389c6c7dbfd5e4b95197e68", + "parentId": "66cbc20b9e95fdffc10516a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516ad", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbc20b9e95fdffc10516a9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516af", + "_tpl": "5c0e533786f7747fa23f4d47", + "parentId": "66cbc20b9e95fdffc10516a9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00708", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517c8", - "_tpl": "668670e3fb75ee4a5e02eb16", - "parentId": "66cbc20b9e95fdffc10517c6", - "slotId": "mod_muzzle_000" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517c9", - "_tpl": "66881008f23233ee9a0742e7", - "parentId": "66cbc20b9e95fdffc10517c6", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516b1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516b1", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516b3", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbc20b9e95fdffc10516b1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516b5", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbc20b9e95fdffc10516b1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00161", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517ca", - "_tpl": "6680326874b8f2050c0b9178", - "parentId": "66cbc20b9e95fdffc10517c6", - "slotId": "mod_reciever" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517cb", - "_tpl": "66866fe776d1a87cd80fd388", - "parentId": "66cbc20b9e95fdffc10517c6", - "slotId": "mod_barrel" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00635", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10517ce", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517ce", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10517cf", - "_tpl": "5aa7e454e5b5b0214e506fa2", - "parentId": "66cbc20b9e95fdffc10517ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516b7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516b7", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516b9", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbc20b9e95fdffc10516b7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516bb", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbc20b9e95fdffc10516b7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00141", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517d0", - "_tpl": "657f925dada5fadd1f07a57a", - "parentId": "66cbc20b9e95fdffc10517cf", - "slotId": "Helmet_top" - }, - { - "_id": "66cbc20b9e95fdffc10517d1", - "_tpl": "657f92acada5fadd1f07a57e", - "parentId": "66cbc20b9e95fdffc10517cf", - "slotId": "Helmet_back" - }, - { - "_id": "66cbc20b9e95fdffc10517d2", - "_tpl": "657f92e7f4c82973640b2354", - "parentId": "66cbc20b9e95fdffc10517cf", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517d3", - "_tpl": "57f4c844245977379d5c14d1", - "parentId": "66cbc20b9e95fdffc10517ce", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516bd", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516bd", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516bf", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbc20b9e95fdffc10516bd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517d4", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66cbc20b9e95fdffc10517d3", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc10517d5", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbc20b9e95fdffc10517d3", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517d6", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbc20b9e95fdffc10517d5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10516c1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516c1", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516c3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc10516c1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 986 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00149", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10517d8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517d8", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00228", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517da", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbc20b9e95fdffc10517d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00620", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10517dc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517dc", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517de", - "_tpl": "57486e672459770abd687134", - "parentId": "66cbc20b9e95fdffc10517dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516c5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516c5", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10517e0", - "_tpl": "5d6fc78386f77449d825f9dc", - "parentId": "66cbc20b9e95fdffc10517dc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10516c7", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbc20b9e95fdffc10516c5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516c9", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbc20b9e95fdffc10516c5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00136", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10517e2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517e2", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00446", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517e4", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbc20b9e95fdffc10517e2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00088", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10517e6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517e6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517e8", - "_tpl": "5bc9b9ecd4351e3bac122519", - "parentId": "66cbc20b9e95fdffc10517e6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516cb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516cb", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516cd", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66cbc20b9e95fdffc10516cb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516cf", + "_tpl": "57513f9324597720a7128161", + "parentId": "66cbc20b9e95fdffc10516cb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516d1", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc10516cb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00087", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10517ea", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517ea", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00482", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517ec", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc10517ea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00086", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10517ee", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517ee", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517f0", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbc20b9e95fdffc10517ee", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516d3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516d3", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516d5", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbc20b9e95fdffc10516d3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516d7", + "_tpl": "5d1b31ce86f7742523398394", + "parentId": "66cbc20b9e95fdffc10516d3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516d9", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbc20b9e95fdffc10516d3", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00085", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10517f2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517f2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00156", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517f4", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbc20b9e95fdffc10517f2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00541", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10517f6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517f6", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517f8", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbc20b9e95fdffc10517f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516db", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516db", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10517fa", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbc20b9e95fdffc10517f6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10516dd", + "_tpl": "57347baf24597738002c6178", + "parentId": "66cbc20b9e95fdffc10516db", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00486", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10517fc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10517fc", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00216", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10517fe", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbc20b9e95fdffc10517fc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051800", - "_tpl": "5e2af4a786f7746d3f3c3400", - "parentId": "66cbc20b9e95fdffc10517fc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516df", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516df", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051802", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbc20b9e95fdffc10517fc", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10516e1", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbc20b9e95fdffc10516df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516e3", + "_tpl": "5710c24ad2720bc3458b45a3", + "parentId": "66cbc20b9e95fdffc10516df", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516e5", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66cbc20b9e95fdffc10516df", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00123", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051804", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051804", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00516", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051806", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbc20b9e95fdffc1051804", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00226", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051808", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051808", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105180a", - "_tpl": "5bc9c377d4351e3bac12251b", - "parentId": "66cbc20b9e95fdffc1051808", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516e7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516e7", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105180c", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbc20b9e95fdffc1051808", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00661", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105180e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105180e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051810", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbc20b9e95fdffc105180e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10516e9", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbc20b9e95fdffc10516e7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051812", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbc20b9e95fdffc105180e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10516eb", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbc20b9e95fdffc10516e7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00553", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051814", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051814", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051816", - "_tpl": "590c657e86f77412b013051d", - "parentId": "66cbc20b9e95fdffc1051814", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051818", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbc20b9e95fdffc1051814", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516ed", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516ed", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105181a", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbc20b9e95fdffc1051814", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10516ef", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbc20b9e95fdffc10516ed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516f0", + "_tpl": "57d14d2524597714373db789", + "parentId": "66cbc20b9e95fdffc10516ed", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10516f1", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66cbc20b9e95fdffc10516f0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc10516f2", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbc20b9e95fdffc10516f0", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10516f3", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbc20b9e95fdffc10516f2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 27.0 + } + }, + { + "_id": "66cbc20b9e95fdffc10516f5", + "_tpl": "5c1a1cc52e221602b3136e3d", + "parentId": "66cbc20b9e95fdffc10516ed", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00129", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105181c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105181c", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00182", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105181e", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbc20b9e95fdffc105181c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00561", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051820", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051820", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051822", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbc20b9e95fdffc1051820", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10516f7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516f7", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051824", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbc20b9e95fdffc1051820", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10516f9", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "66cbc20b9e95fdffc10516f7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00179", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051826", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051826", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051828", - "_tpl": "57ffa9f4245977728561e844", - "parentId": "66cbc20b9e95fdffc1051826", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105182a", - "_tpl": "5bb20dadd4351e00367faeff", - "parentId": "66cbc20b9e95fdffc1051826", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10516fb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10516fb", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105182c", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66cbc20b9e95fdffc1051826", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00306", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105182e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105182e", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051830", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbc20b9e95fdffc105182e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10516fc", + "_tpl": "5aa7cfc0e5b5b00015693143", + "parentId": "66cbc20b9e95fdffc10516fb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051832", - "_tpl": "61702be9faa1272e431522c3", - "parentId": "66cbc20b9e95fdffc105182e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10516fd", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "66cbc20b9e95fdffc10516fc", + "slotId": "Helmet_top" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051834", - "_tpl": "61657230d92c473c770213d7", - "parentId": "66cbc20b9e95fdffc105182e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10516fe", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "66cbc20b9e95fdffc10516fc", + "slotId": "Helmet_back" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051836", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbc20b9e95fdffc105182e", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00423", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051838", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051838", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105183a", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbc20b9e95fdffc1051838", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10516ff", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "66cbc20b9e95fdffc10516fc", + "slotId": "Helmet_ears" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105183c", - "_tpl": "5e2af41e86f774755a234b67", - "parentId": "66cbc20b9e95fdffc1051838", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051700", + "_tpl": "56d59856d2720bd8418b456a", + "parentId": "66cbc20b9e95fdffc10516fb", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105183e", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbc20b9e95fdffc1051838", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00251", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051840", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051840", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051842", - "_tpl": "5b0800175acfc400153aebd4", - "parentId": "66cbc20b9e95fdffc1051840", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051701", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "66cbc20b9e95fdffc1051700", + "slotId": "mod_barrel" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051844", - "_tpl": "62850c28da09541f43158cca", - "parentId": "66cbc20b9e95fdffc1051840", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051702", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "66cbc20b9e95fdffc1051700", + "slotId": "mod_pistol_grip" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051846", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbc20b9e95fdffc1051840", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051703", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "66cbc20b9e95fdffc1051700", + "slotId": "mod_reciever" }, - "upd": { - "StackObjectsCount": 31 - } - }, - { - "_id": "66cbc20b9e95fdffc1051848", - "_tpl": "55d6190f4bdc2d87028b4567", - "parentId": "66cbc20b9e95fdffc1051840", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051704", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "66cbc20b9e95fdffc1051703", + "slotId": "mod_sight_rear" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105184a", - "_tpl": "5f60e6403b85f6263c14558c", - "parentId": "66cbc20b9e95fdffc1051840", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051705", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "66cbc20b9e95fdffc1051703", + "slotId": "mod_sight_front" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105184c", - "_tpl": "5aa2b986e5b5b00014028f4c", - "parentId": "66cbc20b9e95fdffc1051840", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051706", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "66cbc20b9e95fdffc1051700", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105184e", - "_tpl": "5bb20dadd4351e00367faeff", - "parentId": "66cbc20b9e95fdffc1051840", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051707", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbc20b9e95fdffc1051706", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051850", - "_tpl": "66a0d1c87d0d369e270bb9de", - "parentId": "66cbc20b9e95fdffc1051840", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 13 + { + "_id": "66cbc20b9e95fdffc1051709", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbc20b9e95fdffc10516fb", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 86 + } + }, + { + "_id": "66cbc20b9e95fdffc105170b", + "_tpl": "57347d692459774491567cf1", + "parentId": "66cbc20b9e95fdffc10516fb", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00318", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051852", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051852", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00500", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051854", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbc20b9e95fdffc1051852", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051856", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "parentId": "66cbc20b9e95fdffc1051852", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105170d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105170d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051858", - "_tpl": "5710c24ad2720bc3458b45a3", - "parentId": "66cbc20b9e95fdffc1051852", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105170f", + "_tpl": "572b7fa524597762b747ce82", + "parentId": "66cbc20b9e95fdffc105170d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051711", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbc20b9e95fdffc105170d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105185a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105185a", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00288", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105185c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105185a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 755 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00591", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105185e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105185e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051860", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66cbc20b9e95fdffc105185e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051713", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051713", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051862", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbc20b9e95fdffc105185e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051714", + "_tpl": "5f2a9575926fd9352339381f", + "parentId": "66cbc20b9e95fdffc1051713", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051864", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbc20b9e95fdffc105185e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00280", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051866", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051866", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051868", - "_tpl": "5e569a2e56edd02abe09f280", - "parentId": "66cbc20b9e95fdffc1051866", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051715", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "66cbc20b9e95fdffc1051714", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105186a", - "_tpl": "61702be9faa1272e431522c3", - "parentId": "66cbc20b9e95fdffc1051866", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105171b", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66cbc20b9e95fdffc1051715", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051716", + "_tpl": "5f2aa46b878ef416f538b567", + "parentId": "66cbc20b9e95fdffc1051714", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc1051717", + "_tpl": "5f2aa4464b50c14bcf07acdb", + "parentId": "66cbc20b9e95fdffc1051716", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051718", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "parentId": "66cbc20b9e95fdffc1051714", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051719", + "_tpl": "5f2aa493cd375f14e15eea72", + "parentId": "66cbc20b9e95fdffc1051718", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbc20b9e95fdffc105171a", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "parentId": "66cbc20b9e95fdffc1051714", + "slotId": "mod_mount" + }, + { + "_id": "66cbc20b9e95fdffc105171d", + "_tpl": "609269c3b0e443224b421cc1", + "parentId": "66cbc20b9e95fdffc1051713", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105171f", + "_tpl": "57c55f112459772d28133310", + "parentId": "66cbc20b9e95fdffc1051713", + "slotId": "main", + "location": { + "x": 4, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00206", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105186c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105186c", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00122", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105186d", - "_tpl": "669fa409933e898cce0c2166", - "parentId": "66cbc20b9e95fdffc105186c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051721", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051721", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051723", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66cbc20b9e95fdffc1051721", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051725", + "_tpl": "5ba26835d4351e0035628ff5", + "parentId": "66cbc20b9e95fdffc1051721", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 64 + } + }, + { + "_id": "66cbc20b9e95fdffc1051726", + "_tpl": "5ea03f7400685063ec28bfa8", + "parentId": "66cbc20b9e95fdffc1051721", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbc20b9e95fdffc1051727", + "_tpl": "5ea03e9400685063ec28bfa4", + "parentId": "66cbc20b9e95fdffc1051726", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051728", + "_tpl": "5ea034eb5aad6446a939737b", + "parentId": "66cbc20b9e95fdffc1051726", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc105172b", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66cbc20b9e95fdffc1051728", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 21.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051729", + "_tpl": "5ea03e5009aa976f2e7a514b", + "parentId": "66cbc20b9e95fdffc1051726", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc105172a", + "_tpl": "5ea02bb600685063ec28bfa1", + "parentId": "66cbc20b9e95fdffc1051726", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc105172d", + "_tpl": "5d6d2ef3a4b93618084f58bd", + "parentId": "66cbc20b9e95fdffc1051721", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105172f", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbc20b9e95fdffc1051721", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00582", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105186e", - "_tpl": "669fa4c61bd4416eaa09b3ca", - "parentId": "66cbc20b9e95fdffc105186d", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc105186f", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66cbc20b9e95fdffc105186e", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbc20b9e95fdffc1051870", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66cbc20b9e95fdffc105186d", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbc20b9e95fdffc1051871", - "_tpl": "669fa5127a09bc295603b499", - "parentId": "66cbc20b9e95fdffc105186d", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051872", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66cbc20b9e95fdffc1051871", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051873", - "_tpl": "669fa435803b94fb5d0e3a76", - "parentId": "66cbc20b9e95fdffc105186d", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051874", - "_tpl": "62330b3ed4dc74626d570b95", - "parentId": "66cbc20b9e95fdffc1051873", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051731", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051731", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051733", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbc20b9e95fdffc1051731", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051735", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbc20b9e95fdffc1051731", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00188", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051876", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051876", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00684", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051878", - "_tpl": "5c0fa877d174af02a012e1cf", - "parentId": "66cbc20b9e95fdffc1051876", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105187a", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbc20b9e95fdffc1051876", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051737", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051737", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105187c", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66cbc20b9e95fdffc1051876", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051739", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66cbc20b9e95fdffc1051737", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00111", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105187e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105187e", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00289", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051880", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105187e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1061 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051882", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105187e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 695 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105173b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105173b", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105173d", + "_tpl": "609a63b6e2ff132951242d09", + "parentId": "66cbc20b9e95fdffc105173b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105173f", + "_tpl": "5a9eb32da2750c00171b3f9c", + "parentId": "66cbc20b9e95fdffc105173b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051741", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbc20b9e95fdffc105173b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00672", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051884", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051884", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00157", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051886", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbc20b9e95fdffc1051884", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051888", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbc20b9e95fdffc1051884", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051743", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051743", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105188a", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbc20b9e95fdffc1051884", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051745", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbc20b9e95fdffc1051743", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051747", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbc20b9e95fdffc1051743", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00180", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105188c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105188c", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00420", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105188e", - "_tpl": "5cf78720d7f00c06595bc93e", - "parentId": "66cbc20b9e95fdffc105188c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051890", - "_tpl": "630f27f04f3f6281050b94d7", - "parentId": "66cbc20b9e95fdffc105188c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051749", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051749", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051892", - "_tpl": "618b9671d14d6d5ab879c5ea", - "parentId": "66cbc20b9e95fdffc105188c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105174b", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbc20b9e95fdffc1051749", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051894", - "_tpl": "5a7893c1c585673f2b5c374d", - "parentId": "66cbc20b9e95fdffc105188c", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105174d", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbc20b9e95fdffc1051749", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00209", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051896", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051896", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00215", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051898", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbc20b9e95fdffc1051896", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 90 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105189a", - "_tpl": "5f745ee30acaeb0d490d8c5b", - "parentId": "66cbc20b9e95fdffc1051896", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00700", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105189c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105189c", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105189d", - "_tpl": "5c06c6a80db834001b735491", - "parentId": "66cbc20b9e95fdffc105189c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105174f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105174f", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051751", + "_tpl": "62a091170b9d3c46de5b6cf2", + "parentId": "66cbc20b9e95fdffc105174f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051753", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbc20b9e95fdffc105174f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 79 + } + }, + { + "_id": "66cbc20b9e95fdffc1051755", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105174f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 671 + } + }, + { + "_id": "66cbc20b9e95fdffc1051757", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66cbc20b9e95fdffc105174f", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051759", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66cbc20b9e95fdffc105174f", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc105189e", - "_tpl": "6571199565daf6aa960c9b10", - "parentId": "66cbc20b9e95fdffc105189d", - "slotId": "Helmet_top" - }, - { - "_id": "66cbc20b9e95fdffc105189f", - "_tpl": "657119d49eb8c145180dbb95", - "parentId": "66cbc20b9e95fdffc105189d", - "slotId": "Helmet_back" - }, - { - "_id": "66cbc20b9e95fdffc10518a0", - "_tpl": "657119fea330b8c9060f7afc", - "parentId": "66cbc20b9e95fdffc105189d", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00204", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10518a2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518a2", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00551", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518a4", - "_tpl": "5cde739cd7f00c0010373bd3", - "parentId": "66cbc20b9e95fdffc10518a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518a6", - "_tpl": "633a98eab8b0506e48497c1a", - "parentId": "66cbc20b9e95fdffc10518a2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105175b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105175b", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10518a8", - "_tpl": "65f05b9d39dab9e9ec049cfd", - "parentId": "66cbc20b9e95fdffc10518a2", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105175d", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbc20b9e95fdffc105175b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10518aa", - "_tpl": "57ac965c24597706be5f975c", - "parentId": "66cbc20b9e95fdffc10518a2", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105175f", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbc20b9e95fdffc105175b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051761", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbc20b9e95fdffc105175b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00350", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518ac", - "_tpl": "5947e98b86f774778f1448bc", - "parentId": "66cbc20b9e95fdffc10518a2", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518ae", - "_tpl": "57486e672459770abd687134", - "parentId": "66cbc20b9e95fdffc10518a2", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051763", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051763", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051765", + "_tpl": "5e54f76986f7740366043752", + "parentId": "66cbc20b9e95fdffc1051763", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00308", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10518b0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518b0", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00162", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518b2", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "66cbc20b9e95fdffc10518b0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518b4", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "66cbc20b9e95fdffc10518b0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051767", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051767", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10518b6", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbc20b9e95fdffc10518b0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051769", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbc20b9e95fdffc1051767", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00309", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10518b8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518b8", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00150", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518ba", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbc20b9e95fdffc10518b8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518bc", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66cbc20b9e95fdffc10518b8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105176b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105176b", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10518be", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbc20b9e95fdffc10518b8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105176d", + "_tpl": "5b432b2f5acfc4771e1c6622", + "parentId": "66cbc20b9e95fdffc105176b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00656", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10518c0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518c0", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00601", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518c2", - "_tpl": "615d8e9867085e45ef1409c6", - "parentId": "66cbc20b9e95fdffc10518c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518c5", - "_tpl": "573728cc24597765cc785b5d", - "parentId": "66cbc20b9e95fdffc10518c0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105176f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105176f", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10518c6", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbc20b9e95fdffc10518c5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + { + "_id": "66cbc20b9e95fdffc1051771", + "_tpl": "591c4efa86f7741030027726", + "parentId": "66cbc20b9e95fdffc105176f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051772", + "_tpl": "587e02ff24597743df3deaeb", + "parentId": "66cbc20b9e95fdffc105176f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051773", + "_tpl": "587e0531245977466077a0f7", + "parentId": "66cbc20b9e95fdffc1051772", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051774", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "66cbc20b9e95fdffc1051772", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc1051775", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "66cbc20b9e95fdffc1051774", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbc20b9e95fdffc1051776", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "66cbc20b9e95fdffc1051775", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051777", + "_tpl": "634f03d40384a3ba4f06f874", + "parentId": "66cbc20b9e95fdffc1051776", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbc20b9e95fdffc1051778", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "66cbc20b9e95fdffc1051775", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051779", + "_tpl": "587df3a12459772c28142567", + "parentId": "66cbc20b9e95fdffc1051772", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc105177b", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66cbc20b9e95fdffc1051779", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbc20b9e95fdffc105177a", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "66cbc20b9e95fdffc1051772", + "slotId": "mod_reciever" } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00430", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10518c8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518c8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00164", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518ca", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "parentId": "66cbc20b9e95fdffc10518c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518cc", - "_tpl": "65815f0e647e3d7246384e14", - "parentId": "66cbc20b9e95fdffc10518c8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105177d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105177d", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105177f", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbc20b9e95fdffc105177d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00462", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10518ce", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518ce", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00210", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518d0", - "_tpl": "5ab8f39486f7745cd93a1cca", - "parentId": "66cbc20b9e95fdffc10518ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518d2", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc10518ce", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051781", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051781", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10518d4", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbc20b9e95fdffc10518ce", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051783", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66cbc20b9e95fdffc1051781", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051785", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "66cbc20b9e95fdffc1051781", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00521", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10518d6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518d6", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00223", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518d8", - "_tpl": "5d02778e86f774203e7dedbe", - "parentId": "66cbc20b9e95fdffc10518d6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00181", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10518da", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518da", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518dc", - "_tpl": "5addc7ac5acfc400194dbd90", - "parentId": "66cbc20b9e95fdffc10518da", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051787", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051787", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10518de", - "_tpl": "5aaa5dfee5b5b000140293d3", - "parentId": "66cbc20b9e95fdffc10518da", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105178a", + "_tpl": "573724b42459776125652ac2", + "parentId": "66cbc20b9e95fdffc1051787", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105178b", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbc20b9e95fdffc105178a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbc20b9e95fdffc105178f", + "_tpl": "57372b832459776701014e41", + "parentId": "66cbc20b9e95fdffc1051787", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051790", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbc20b9e95fdffc105178f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc1051791", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbc20b9e95fdffc105178f", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc1051793", + "_tpl": "59e4cf5286f7741778269d8a", + "parentId": "66cbc20b9e95fdffc1051787", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 36 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00337", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10518e0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518e0", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00200", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518e2", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc10518e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518e4", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbc20b9e95fdffc10518e0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051795", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051795", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051797", + "_tpl": "5e2af47786f7746d404f3aaa", + "parentId": "66cbc20b9e95fdffc1051795", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00607", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10518e6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518e6", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518e8", - "_tpl": "5dfcd0e547101c39625f66f9", - "parentId": "66cbc20b9e95fdffc10518e6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518ea", - "_tpl": "5c1bc5612e221602b5429350", - "parentId": "66cbc20b9e95fdffc10518e6", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051799", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051799", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10518eb", - "_tpl": "587e02ff24597743df3deaeb", - "parentId": "66cbc20b9e95fdffc10518e6", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105179b", + "_tpl": "668fe62ac62660a5d8071446", + "parentId": "66cbc20b9e95fdffc1051799", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 6 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66cbc20b9e95fdffc105179d", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbc20b9e95fdffc1051799", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 27 } } - }, - { - "_id": "66cbc20b9e95fdffc10518ec", - "_tpl": "587e0531245977466077a0f7", - "parentId": "66cbc20b9e95fdffc10518eb", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc10518ed", - "_tpl": "634eff66517ccc8a960fc735", - "parentId": "66cbc20b9e95fdffc10518eb", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc10518ee", - "_tpl": "634f05a21f9f536910079b56", - "parentId": "66cbc20b9e95fdffc10518ed", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbc20b9e95fdffc10518ef", - "_tpl": "634f036a517ccc8a960fc746", - "parentId": "66cbc20b9e95fdffc10518ee", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc10518f0", - "_tpl": "634f03d40384a3ba4f06f874", - "parentId": "66cbc20b9e95fdffc10518ef", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbc20b9e95fdffc10518f1", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "66cbc20b9e95fdffc10518ee", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc10518f2", - "_tpl": "587df3a12459772c28142567", - "parentId": "66cbc20b9e95fdffc10518eb", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc10518f4", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66cbc20b9e95fdffc10518f2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 - } - }, - { - "_id": "66cbc20b9e95fdffc10518f3", - "_tpl": "634f06262e5def262d0b30ca", - "parentId": "66cbc20b9e95fdffc10518eb", - "slotId": "mod_reciever" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00640", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10518f6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10518f6", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00678", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518f7", - "_tpl": "5644bd2b4bdc2d3b4c8b4572", - "parentId": "66cbc20b9e95fdffc10518f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105179f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105179f", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbc20b9e95fdffc10517a1", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbc20b9e95fdffc105179f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517a3", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66cbc20b9e95fdffc105179f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00535", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10518f8", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbc20b9e95fdffc10518f7", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc10518f9", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "66cbc20b9e95fdffc10518f8", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc10518fa", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "66cbc20b9e95fdffc10518f7", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc10518fb", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "66cbc20b9e95fdffc10518f7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc10518fc", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "66cbc20b9e95fdffc10518f7", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc10518fd", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "66cbc20b9e95fdffc10518f7", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc10518fe", - "_tpl": "5649b1c04bdc2d16268b457c", - "parentId": "66cbc20b9e95fdffc10518f7", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc10518ff", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbc20b9e95fdffc10518f7", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051900", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbc20b9e95fdffc10518ff", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10517a5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517a5", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517a7", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66cbc20b9e95fdffc10517a5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517a9", + "_tpl": "60098af40accd37ef2175f27", + "parentId": "66cbc20b9e95fdffc10517a5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517ab", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "66cbc20b9e95fdffc10517a5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00321", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051902", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051902", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00600", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051904", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66cbc20b9e95fdffc1051902", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051906", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "66cbc20b9e95fdffc1051902", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10517ad", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517ad", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517b0", + "_tpl": "573727c624597765cc785b5b", + "parentId": "66cbc20b9e95fdffc10517ad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517b1", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66cbc20b9e95fdffc10517b0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbc20b9e95fdffc10517b3", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "66cbc20b9e95fdffc10517ad", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00041", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051908", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051908", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00731", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105190a", - "_tpl": "5c165d832e2216398b5a7e36", - "parentId": "66cbc20b9e95fdffc1051908", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105190c", - "_tpl": "5e2af00086f7746d3f3c33f7", - "parentId": "66cbc20b9e95fdffc1051908", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10517b5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517b5", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105190e", - "_tpl": "60391a8b3364dc22b04d0ce5", - "parentId": "66cbc20b9e95fdffc1051908", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10517b7", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbc20b9e95fdffc10517b5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517b9", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbc20b9e95fdffc10517b5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00577", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051910", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051910", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051912", - "_tpl": "5d1b39a386f774252339976f", - "parentId": "66cbc20b9e95fdffc1051910", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00115", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051914", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051914", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051916", - "_tpl": "5fb651b52b1b027b1f50bcff", - "parentId": "66cbc20b9e95fdffc1051914", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10517bb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517bb", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051918", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66cbc20b9e95fdffc1051914", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10517bd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc10517bb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1002 + } }, - "upd": { - "StackObjectsCount": 12 + { + "_id": "66cbc20b9e95fdffc10517bf", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc10517bb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 759 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105191a", - "_tpl": "5f0c892565703e5c461894e9", - "parentId": "66cbc20b9e95fdffc1051914", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105191c", - "_tpl": "59e3556c86f7741776641ac2", - "parentId": "66cbc20b9e95fdffc1051914", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10517c1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517c1", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105191e", - "_tpl": "5aa2b9aee5b5b00015693121", - "parentId": "66cbc20b9e95fdffc1051914", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00384", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051920", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051920", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051922", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbc20b9e95fdffc1051920", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10517c3", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbc20b9e95fdffc10517c1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517c5", + "_tpl": "5e2af29386f7746d4159f077", + "parentId": "66cbc20b9e95fdffc10517c1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517c6", + "_tpl": "6680304edadb7aa61d00cef0", + "parentId": "66cbc20b9e95fdffc10517c1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc10517c7", + "_tpl": "668031ffe3e7eb26e8004cdd", + "parentId": "66cbc20b9e95fdffc10517c6", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10517cc", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbc20b9e95fdffc10517c7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } + }, + { + "_id": "66cbc20b9e95fdffc10517c8", + "_tpl": "668670e3fb75ee4a5e02eb16", + "parentId": "66cbc20b9e95fdffc10517c6", + "slotId": "mod_muzzle_000" + }, + { + "_id": "66cbc20b9e95fdffc10517c9", + "_tpl": "66881008f23233ee9a0742e7", + "parentId": "66cbc20b9e95fdffc10517c6", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc10517ca", + "_tpl": "6680326874b8f2050c0b9178", + "parentId": "66cbc20b9e95fdffc10517c6", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc10517cb", + "_tpl": "66866fe776d1a87cd80fd388", + "parentId": "66cbc20b9e95fdffc10517c6", + "slotId": "mod_barrel" } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00294", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051924", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051924", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00635", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051926", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "66cbc20b9e95fdffc1051924", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051928", - "_tpl": "60361a7497633951dc245eb4", - "parentId": "66cbc20b9e95fdffc1051924", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10517ce", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517ce", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105192a", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbc20b9e95fdffc1051924", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10517cf", + "_tpl": "5aa7e454e5b5b0214e506fa2", + "parentId": "66cbc20b9e95fdffc10517ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105192c", - "_tpl": "5b07db875acfc40dc528a5f6", - "parentId": "66cbc20b9e95fdffc1051924", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10517d0", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "66cbc20b9e95fdffc10517cf", + "slotId": "Helmet_top" + }, + { + "_id": "66cbc20b9e95fdffc10517d1", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "66cbc20b9e95fdffc10517cf", + "slotId": "Helmet_back" + }, + { + "_id": "66cbc20b9e95fdffc10517d2", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "66cbc20b9e95fdffc10517cf", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbc20b9e95fdffc10517d3", + "_tpl": "57f4c844245977379d5c14d1", + "parentId": "66cbc20b9e95fdffc10517ce", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbc20b9e95fdffc10517d4", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66cbc20b9e95fdffc10517d3", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc10517d5", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbc20b9e95fdffc10517d3", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10517d6", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbc20b9e95fdffc10517d5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10.0 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00240", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105192e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105192e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00149", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051930", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbc20b9e95fdffc105192e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051932", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbc20b9e95fdffc105192e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10517d8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517d8", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517da", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbc20b9e95fdffc10517d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051934", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051934", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00620", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051936", - "_tpl": "5c0e533786f7747fa23f4d47", - "parentId": "66cbc20b9e95fdffc1051934", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051938", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbc20b9e95fdffc1051934", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10517dc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517dc", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105193a", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbc20b9e95fdffc1051934", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10517de", + "_tpl": "57486e672459770abd687134", + "parentId": "66cbc20b9e95fdffc10517dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10517e0", + "_tpl": "5d6fc78386f77449d825f9dc", + "parentId": "66cbc20b9e95fdffc10517dc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00136", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105193c", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbc20b9e95fdffc1051934", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105193e", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbc20b9e95fdffc1051934", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10517e2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517e2", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517e4", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbc20b9e95fdffc10517e2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00211", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051940", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051940", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00088", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051942", - "_tpl": "5bc9c049d4351e44f824d360", - "parentId": "66cbc20b9e95fdffc1051940", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00137", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051944", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051944", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051946", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbc20b9e95fdffc1051944", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10517e6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517e6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517e8", + "_tpl": "5bc9b9ecd4351e3bac122519", + "parentId": "66cbc20b9e95fdffc10517e6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00134", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051948", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051948", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00087", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105194a", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc1051948", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00439", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105194c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105194c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105194e", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbc20b9e95fdffc105194c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10517ea", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517ea", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051950", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66cbc20b9e95fdffc105194c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10517ec", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc10517ea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00557", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051952", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051952", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00086", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051954", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbc20b9e95fdffc1051952", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051956", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66cbc20b9e95fdffc1051952", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10517ee", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517ee", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051958", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbc20b9e95fdffc1051952", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10517f0", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbc20b9e95fdffc10517ee", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00175", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105195a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105195a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00085", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105195c", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbc20b9e95fdffc105195a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105195e", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66cbc20b9e95fdffc105195a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10517f2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517f2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517f4", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbc20b9e95fdffc10517f2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051960", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051960", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00541", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051962", - "_tpl": "5e54f76986f7740366043752", - "parentId": "66cbc20b9e95fdffc1051960", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00738", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051964", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051964", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051966", - "_tpl": "57513f9324597720a7128161", - "parentId": "66cbc20b9e95fdffc1051964", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10517f6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517f6", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051968", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbc20b9e95fdffc1051964", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10517f8", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbc20b9e95fdffc10517f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10517fa", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbc20b9e95fdffc10517f6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00207", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105196a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105196a", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00486", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105196c", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "66cbc20b9e95fdffc105196a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105196e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc105196a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10517fc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10517fc", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 960 - } - }, - { - "_id": "66cbc20b9e95fdffc1051970", - "_tpl": "5bc9bc53d4351e00367fbcee", - "parentId": "66cbc20b9e95fdffc105196a", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10517fe", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbc20b9e95fdffc10517fc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051972", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbc20b9e95fdffc105196a", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 45 + { + "_id": "66cbc20b9e95fdffc1051800", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "66cbc20b9e95fdffc10517fc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051802", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbc20b9e95fdffc10517fc", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00229", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051974", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051974", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00123", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051976", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbc20b9e95fdffc1051974", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051978", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66cbc20b9e95fdffc1051974", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051804", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051804", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc105197a", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc1051974", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051806", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbc20b9e95fdffc1051804", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00435", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105197c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105197c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00226", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105197e", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbc20b9e95fdffc105197c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00720", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051980", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051980", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051982", - "_tpl": "5fd4c60f875c30179f5d04c2", - "parentId": "66cbc20b9e95fdffc1051980", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051808", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051808", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051984", - "_tpl": "5943ee5a86f77413872d25ec", - "parentId": "66cbc20b9e95fdffc1051980", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105180a", + "_tpl": "5bc9c377d4351e3bac12251b", + "parentId": "66cbc20b9e95fdffc1051808", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105180c", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbc20b9e95fdffc1051808", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00478", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051986", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051986", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00661", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051988", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66cbc20b9e95fdffc1051986", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105198a", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbc20b9e95fdffc1051986", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105180e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105180e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051810", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbc20b9e95fdffc105180e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051812", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbc20b9e95fdffc105180e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00114", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc105198c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105198c", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00553", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105198e", - "_tpl": "5a26ac0ec4a28200741e1e18", - "parentId": "66cbc20b9e95fdffc105198c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 7 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00096", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051990", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051990", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051992", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbc20b9e95fdffc1051990", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051814", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051814", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051816", + "_tpl": "590c657e86f77412b013051d", + "parentId": "66cbc20b9e95fdffc1051814", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051818", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbc20b9e95fdffc1051814", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105181a", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbc20b9e95fdffc1051814", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00095", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051994", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051994", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00129", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051996", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc1051994", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00094", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051998", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051998", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105199a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbc20b9e95fdffc1051998", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105181c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105181c", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105181e", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbc20b9e95fdffc105181c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00093", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc105199c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc105199c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00561", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc105199e", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66cbc20b9e95fdffc105199c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00660", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10519a0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519a0", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519a2", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbc20b9e95fdffc10519a0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051820", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051820", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10519a4", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbc20b9e95fdffc10519a0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051822", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbc20b9e95fdffc1051820", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051824", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbc20b9e95fdffc1051820", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10519a6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519a6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00179", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519a8", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbc20b9e95fdffc10519a6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00083", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10519aa", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519aa", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519ac", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbc20b9e95fdffc10519aa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051826", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051826", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051828", + "_tpl": "57ffa9f4245977728561e844", + "parentId": "66cbc20b9e95fdffc1051826", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105182a", + "_tpl": "5bb20dadd4351e00367faeff", + "parentId": "66cbc20b9e95fdffc1051826", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105182c", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66cbc20b9e95fdffc1051826", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10519ae", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519ae", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00306", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519b0", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbc20b9e95fdffc10519ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10519b2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519b2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519b4", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbc20b9e95fdffc10519b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105182e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105182e", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051830", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbc20b9e95fdffc105182e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051832", + "_tpl": "61702be9faa1272e431522c3", + "parentId": "66cbc20b9e95fdffc105182e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051834", + "_tpl": "61657230d92c473c770213d7", + "parentId": "66cbc20b9e95fdffc105182e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051836", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbc20b9e95fdffc105182e", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00301", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10519b6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519b6", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00423", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519b7", - "_tpl": "5644bd2b4bdc2d3b4c8b4572", - "parentId": "66cbc20b9e95fdffc10519b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051838", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051838", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105183a", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbc20b9e95fdffc1051838", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105183c", + "_tpl": "5e2af41e86f774755a234b67", + "parentId": "66cbc20b9e95fdffc1051838", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbc20b9e95fdffc105183e", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbc20b9e95fdffc1051838", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00251", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519b8", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbc20b9e95fdffc10519b7", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc10519b9", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "66cbc20b9e95fdffc10519b8", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc10519ba", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "66cbc20b9e95fdffc10519b7", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc10519bb", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "66cbc20b9e95fdffc10519b7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc10519bc", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "66cbc20b9e95fdffc10519b7", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc10519bd", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "66cbc20b9e95fdffc10519b7", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc10519be", - "_tpl": "5649b1c04bdc2d16268b457c", - "parentId": "66cbc20b9e95fdffc10519b7", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc10519bf", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbc20b9e95fdffc10519b7", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519c0", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbc20b9e95fdffc10519bf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 22.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051840", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051840", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051842", + "_tpl": "5b0800175acfc400153aebd4", + "parentId": "66cbc20b9e95fdffc1051840", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051844", + "_tpl": "62850c28da09541f43158cca", + "parentId": "66cbc20b9e95fdffc1051840", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051846", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbc20b9e95fdffc1051840", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 31 + } + }, + { + "_id": "66cbc20b9e95fdffc1051848", + "_tpl": "55d6190f4bdc2d87028b4567", + "parentId": "66cbc20b9e95fdffc1051840", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105184a", + "_tpl": "5f60e6403b85f6263c14558c", + "parentId": "66cbc20b9e95fdffc1051840", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105184c", + "_tpl": "5aa2b986e5b5b00014028f4c", + "parentId": "66cbc20b9e95fdffc1051840", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105184e", + "_tpl": "5bb20dadd4351e00367faeff", + "parentId": "66cbc20b9e95fdffc1051840", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051850", + "_tpl": "66a0d1c87d0d369e270bb9de", + "parentId": "66cbc20b9e95fdffc1051840", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 13 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00560", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10519c2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519c2", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00318", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519c4", - "_tpl": "5c052e6986f7746b207bc3c9", - "parentId": "66cbc20b9e95fdffc10519c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00511", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10519c6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519c6", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519c8", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "66cbc20b9e95fdffc10519c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051852", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051852", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10519ca", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbc20b9e95fdffc10519c6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051854", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbc20b9e95fdffc1051852", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051856", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "parentId": "66cbc20b9e95fdffc1051852", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051858", + "_tpl": "5710c24ad2720bc3458b45a3", + "parentId": "66cbc20b9e95fdffc1051852", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00359", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10519cc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519cc", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519ce", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbc20b9e95fdffc10519cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519d0", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc10519cc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105185a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105185a", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10519d2", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbc20b9e95fdffc10519cc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105185c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105185a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 755 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00152", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10519d4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519d4", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00591", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519d6", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbc20b9e95fdffc10519d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105185e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105185e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051860", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66cbc20b9e95fdffc105185e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051862", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbc20b9e95fdffc105185e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051864", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbc20b9e95fdffc105185e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10519d8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519d8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00280", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519da", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbc20b9e95fdffc10519d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00079", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10519dc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519dc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519de", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbc20b9e95fdffc10519dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051866", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051866", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051868", + "_tpl": "5e569a2e56edd02abe09f280", + "parentId": "66cbc20b9e95fdffc1051866", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105186a", + "_tpl": "61702be9faa1272e431522c3", + "parentId": "66cbc20b9e95fdffc1051866", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00078", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10519e0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519e0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00206", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519e2", - "_tpl": "5a0f045e86f7745b0f0d0e42", - "parentId": "66cbc20b9e95fdffc10519e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc10519e4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519e4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519e6", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66cbc20b9e95fdffc10519e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105186c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105186c", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105186d", + "_tpl": "669fa409933e898cce0c2166", + "parentId": "66cbc20b9e95fdffc105186c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc105186e", + "_tpl": "669fa4c61bd4416eaa09b3ca", + "parentId": "66cbc20b9e95fdffc105186d", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc105186f", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66cbc20b9e95fdffc105186e", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbc20b9e95fdffc1051870", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66cbc20b9e95fdffc105186d", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbc20b9e95fdffc1051871", + "_tpl": "669fa5127a09bc295603b499", + "parentId": "66cbc20b9e95fdffc105186d", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051872", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66cbc20b9e95fdffc1051871", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051873", + "_tpl": "669fa435803b94fb5d0e3a76", + "parentId": "66cbc20b9e95fdffc105186d", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051874", + "_tpl": "62330b3ed4dc74626d570b95", + "parentId": "66cbc20b9e95fdffc1051873", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00670", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10519e8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519e8", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00188", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519ea", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbc20b9e95fdffc10519e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00252", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc10519ec", - "Items": [ - { - "_id": "66cbc20b9e95fdffc10519ec", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519ee", - "_tpl": "57af48872459771f0b2ebf11", - "parentId": "66cbc20b9e95fdffc10519ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051876", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051876", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10519f0", - "_tpl": "59e0d99486f7744a32234762", - "parentId": "66cbc20b9e95fdffc10519ec", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051878", + "_tpl": "5c0fa877d174af02a012e1cf", + "parentId": "66cbc20b9e95fdffc1051876", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 58 - } - }, - { - "_id": "66cbc20b9e95fdffc10519f1", - "_tpl": "57f4c844245977379d5c14d1", - "parentId": "66cbc20b9e95fdffc10519ec", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + { + "_id": "66cbc20b9e95fdffc105187a", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbc20b9e95fdffc1051876", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105187c", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66cbc20b9e95fdffc1051876", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00111", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519f2", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66cbc20b9e95fdffc10519f1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc10519f3", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbc20b9e95fdffc10519f1", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc10519f4", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbc20b9e95fdffc10519f3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 27.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519f6", - "_tpl": "60658776f2cb2e02a42ace2b", - "parentId": "66cbc20b9e95fdffc10519ec", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105187e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105187e", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10519f8", - "_tpl": "5b07dd285acfc4001754240d", - "parentId": "66cbc20b9e95fdffc10519ec", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051880", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105187e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1061 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051882", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105187e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 695 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00672", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519fa", - "_tpl": "5fd20ff893a8961fc660a954", - "parentId": "66cbc20b9e95fdffc10519ec", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 40 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc10519fc", - "_tpl": "59e0bdb186f774156f04ce82", - "parentId": "66cbc20b9e95fdffc10519ec", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051884", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051884", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc10519fe", - "_tpl": "625ff2eb9f5537057932257d", - "parentId": "66cbc20b9e95fdffc10519ec", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051886", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbc20b9e95fdffc1051884", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051888", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbc20b9e95fdffc1051884", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105188a", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbc20b9e95fdffc1051884", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a00", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a00", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00180", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a02", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbc20b9e95fdffc1051a00", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00128", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a04", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a04", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a06", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051a04", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 962 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105188c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105188c", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105188e", + "_tpl": "5cf78720d7f00c06595bc93e", + "parentId": "66cbc20b9e95fdffc105188c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051890", + "_tpl": "630f27f04f3f6281050b94d7", + "parentId": "66cbc20b9e95fdffc105188c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051892", + "_tpl": "618b9671d14d6d5ab879c5ea", + "parentId": "66cbc20b9e95fdffc105188c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051894", + "_tpl": "5a7893c1c585673f2b5c374d", + "parentId": "66cbc20b9e95fdffc105188c", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051a08", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a08", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00209", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a0a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051a08", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 746 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051896", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051896", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051898", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbc20b9e95fdffc1051896", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 90 + } + }, + { + "_id": "66cbc20b9e95fdffc105189a", + "_tpl": "5f745ee30acaeb0d490d8c5b", + "parentId": "66cbc20b9e95fdffc1051896", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a0c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a0c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00700", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a0e", - "_tpl": "57514643245977207f2c2d09", - "parentId": "66cbc20b9e95fdffc1051a0c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105189c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105189c", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105189d", + "_tpl": "5c06c6a80db834001b735491", + "parentId": "66cbc20b9e95fdffc105189c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbc20b9e95fdffc105189e", + "_tpl": "6571199565daf6aa960c9b10", + "parentId": "66cbc20b9e95fdffc105189d", + "slotId": "Helmet_top" + }, + { + "_id": "66cbc20b9e95fdffc105189f", + "_tpl": "657119d49eb8c145180dbb95", + "parentId": "66cbc20b9e95fdffc105189d", + "slotId": "Helmet_back" + }, + { + "_id": "66cbc20b9e95fdffc10518a0", + "_tpl": "657119fea330b8c9060f7afc", + "parentId": "66cbc20b9e95fdffc105189d", + "slotId": "Helmet_ears" } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00514", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a10", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a10", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00204", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a12", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbc20b9e95fdffc1051a10", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00155", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a14", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a14", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a16", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc1051a14", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10518a2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518a2", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a18", - "_tpl": "57347ca924597744596b4e71", - "parentId": "66cbc20b9e95fdffc1051a14", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10518a4", + "_tpl": "5cde739cd7f00c0010373bd3", + "parentId": "66cbc20b9e95fdffc10518a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518a6", + "_tpl": "633a98eab8b0506e48497c1a", + "parentId": "66cbc20b9e95fdffc10518a2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518a8", + "_tpl": "65f05b9d39dab9e9ec049cfd", + "parentId": "66cbc20b9e95fdffc10518a2", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518aa", + "_tpl": "57ac965c24597706be5f975c", + "parentId": "66cbc20b9e95fdffc10518a2", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518ac", + "_tpl": "5947e98b86f774778f1448bc", + "parentId": "66cbc20b9e95fdffc10518a2", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518ae", + "_tpl": "57486e672459770abd687134", + "parentId": "66cbc20b9e95fdffc10518a2", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00588", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a1a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a1a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00308", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a1c", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbc20b9e95fdffc1051a1a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a1e", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbc20b9e95fdffc1051a1a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10518b0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518b0", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a20", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc1051a1a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10518b2", + "_tpl": "619256e5f8af2c1a4e1f5d92", + "parentId": "66cbc20b9e95fdffc10518b0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518b4", + "_tpl": "619256e5f8af2c1a4e1f5d92", + "parentId": "66cbc20b9e95fdffc10518b0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518b6", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbc20b9e95fdffc10518b0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00138", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a22", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a22", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00309", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a24", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc1051a22", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00638", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a26", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a26", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a28", - "_tpl": "62389aaba63f32501b1b444f", - "parentId": "66cbc20b9e95fdffc1051a26", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10518b8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518b8", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518ba", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbc20b9e95fdffc10518b8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518bc", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66cbc20b9e95fdffc10518b8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518be", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbc20b9e95fdffc10518b8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a2a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a2a", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00656", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a2c", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66cbc20b9e95fdffc1051a2a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a2e", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "66cbc20b9e95fdffc1051a2a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10518c0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518c0", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a2f", - "_tpl": "66015072e9f84d5680039678", - "parentId": "66cbc20b9e95fdffc1051a2a", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10518c2", + "_tpl": "615d8e9867085e45ef1409c6", + "parentId": "66cbc20b9e95fdffc10518c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518c5", + "_tpl": "573728cc24597765cc785b5d", + "parentId": "66cbc20b9e95fdffc10518c0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbc20b9e95fdffc10518c6", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbc20b9e95fdffc10518c5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00430", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a30", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "66cbc20b9e95fdffc1051a2f", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051a31", - "_tpl": "6601546f86889319850bd566", - "parentId": "66cbc20b9e95fdffc1051a30", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a33", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbc20b9e95fdffc1051a2a", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10518c8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518c8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518ca", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "parentId": "66cbc20b9e95fdffc10518c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518cc", + "_tpl": "65815f0e647e3d7246384e14", + "parentId": "66cbc20b9e95fdffc10518c8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00730", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051a35", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a35", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00462", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a37", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbc20b9e95fdffc1051a35", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a39", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc1051a35", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10518ce", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518ce", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a3b", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbc20b9e95fdffc1051a35", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10518d0", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "66cbc20b9e95fdffc10518ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a3d", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbc20b9e95fdffc1051a35", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10518d2", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc10518ce", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10518d4", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbc20b9e95fdffc10518ce", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00521", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a3f", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbc20b9e95fdffc1051a35", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a41", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66cbc20b9e95fdffc1051a35", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10518d6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518d6", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10518d8", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "66cbc20b9e95fdffc10518d6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00181", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a43", - "_tpl": "5bc9c29cd4351e003562b8a3", - "parentId": "66cbc20b9e95fdffc1051a35", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a45", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66cbc20b9e95fdffc1051a35", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10518da", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518da", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518dc", + "_tpl": "5addc7ac5acfc400194dbd90", + "parentId": "66cbc20b9e95fdffc10518da", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518de", + "_tpl": "5aaa5dfee5b5b000140293d3", + "parentId": "66cbc20b9e95fdffc10518da", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00183", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051a47", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a47", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00337", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a49", - "_tpl": "62a09e08de7ac81993580532", - "parentId": "66cbc20b9e95fdffc1051a47", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a4b", - "_tpl": "5947c73886f7747701588af5", - "parentId": "66cbc20b9e95fdffc1051a47", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10518e0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518e0", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a4d", - "_tpl": "5cc700d4e4a949000f0f0f28", - "parentId": "66cbc20b9e95fdffc1051a47", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc10518e2", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc10518e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a4f", - "_tpl": "5df8f541c41b2312ea3335e3", - "parentId": "66cbc20b9e95fdffc1051a47", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10518e4", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbc20b9e95fdffc10518e0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00578", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a51", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a51", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00607", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a53", - "_tpl": "5e2aee0a86f774755a234b62", - "parentId": "66cbc20b9e95fdffc1051a51", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a55", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbc20b9e95fdffc1051a51", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10518e6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518e6", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a57", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbc20b9e95fdffc1051a51", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10518e8", + "_tpl": "5dfcd0e547101c39625f66f9", + "parentId": "66cbc20b9e95fdffc10518e6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518ea", + "_tpl": "5c1bc5612e221602b5429350", + "parentId": "66cbc20b9e95fdffc10518e6", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518eb", + "_tpl": "587e02ff24597743df3deaeb", + "parentId": "66cbc20b9e95fdffc10518e6", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc10518ec", + "_tpl": "587e0531245977466077a0f7", + "parentId": "66cbc20b9e95fdffc10518eb", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc10518ed", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "66cbc20b9e95fdffc10518eb", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc10518ee", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "66cbc20b9e95fdffc10518ed", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbc20b9e95fdffc10518ef", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "66cbc20b9e95fdffc10518ee", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc10518f0", + "_tpl": "634f03d40384a3ba4f06f874", + "parentId": "66cbc20b9e95fdffc10518ef", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbc20b9e95fdffc10518f1", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "66cbc20b9e95fdffc10518ee", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc10518f2", + "_tpl": "587df3a12459772c28142567", + "parentId": "66cbc20b9e95fdffc10518eb", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10518f4", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66cbc20b9e95fdffc10518f2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66cbc20b9e95fdffc10518f3", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "66cbc20b9e95fdffc10518eb", + "slotId": "mod_reciever" } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00659", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a59", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a59", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00640", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a5b", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc1051a59", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a5d", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbc20b9e95fdffc1051a59", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10518f6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10518f6", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10518f7", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "parentId": "66cbc20b9e95fdffc10518f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc10518f8", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbc20b9e95fdffc10518f7", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc10518f9", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "66cbc20b9e95fdffc10518f8", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc10518fa", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "66cbc20b9e95fdffc10518f7", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc10518fb", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "66cbc20b9e95fdffc10518f7", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc10518fc", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "66cbc20b9e95fdffc10518f7", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc10518fd", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "66cbc20b9e95fdffc10518f7", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc10518fe", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "66cbc20b9e95fdffc10518f7", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc10518ff", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbc20b9e95fdffc10518f7", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051900", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbc20b9e95fdffc10518ff", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00406", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a5f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a5f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00321", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a61", - "_tpl": "60b0f7057897d47c5b04ab94", - "parentId": "66cbc20b9e95fdffc1051a5f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a63", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbc20b9e95fdffc1051a5f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051902", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051902", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a65", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "parentId": "66cbc20b9e95fdffc1051a5f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051904", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66cbc20b9e95fdffc1051902", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051906", + "_tpl": "619256e5f8af2c1a4e1f5d92", + "parentId": "66cbc20b9e95fdffc1051902", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a67", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a67", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00041", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a69", - "_tpl": "590de71386f774347051a052", - "parentId": "66cbc20b9e95fdffc1051a67", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a6b", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbc20b9e95fdffc1051a67", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051908", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051908", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a6d", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66cbc20b9e95fdffc1051a67", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105190a", + "_tpl": "5c165d832e2216398b5a7e36", + "parentId": "66cbc20b9e95fdffc1051908", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a6f", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbc20b9e95fdffc1051a67", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105190c", + "_tpl": "5e2af00086f7746d3f3c33f7", + "parentId": "66cbc20b9e95fdffc1051908", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105190e", + "_tpl": "60391a8b3364dc22b04d0ce5", + "parentId": "66cbc20b9e95fdffc1051908", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00606", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a71", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a71", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00577", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a73", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "66cbc20b9e95fdffc1051a71", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a74", - "_tpl": "64748cb8de82c85eaf0a273a", - "parentId": "66cbc20b9e95fdffc1051a71", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051910", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051910", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbc20b9e95fdffc1051912", + "_tpl": "5d1b39a386f774252339976f", + "parentId": "66cbc20b9e95fdffc1051910", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66cbc20b9e95fdffc1051a75", - "_tpl": "64748d02d1c009260702b526", - "parentId": "66cbc20b9e95fdffc1051a74", - "slotId": "mod_barrel" - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00338", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a77", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a77", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00115", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a79", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66cbc20b9e95fdffc1051a77", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00203", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051a7b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a7b", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a7d", - "_tpl": "5c06595c0db834001a66af6c", - "parentId": "66cbc20b9e95fdffc1051a7b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051914", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051914", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a7f", - "_tpl": "622f14e899892a7f9e08f6c5", - "parentId": "66cbc20b9e95fdffc1051a7b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051916", + "_tpl": "5fb651b52b1b027b1f50bcff", + "parentId": "66cbc20b9e95fdffc1051914", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a81", - "_tpl": "5b099b7d5acfc400186331e4", - "parentId": "66cbc20b9e95fdffc1051a7b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051918", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66cbc20b9e95fdffc1051914", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 12 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a83", - "_tpl": "57dbb57e2459774673234890", - "parentId": "66cbc20b9e95fdffc1051a7b", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105191a", + "_tpl": "5f0c892565703e5c461894e9", + "parentId": "66cbc20b9e95fdffc1051914", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a84", - "_tpl": "66bdc28a0b603c26902b2011", - "parentId": "66cbc20b9e95fdffc1051a7b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbc20b9e95fdffc105191c", + "_tpl": "59e3556c86f7741776641ac2", + "parentId": "66cbc20b9e95fdffc1051914", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105191e", + "_tpl": "5aa2b9aee5b5b00015693121", + "parentId": "66cbc20b9e95fdffc1051914", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00384", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a85", - "_tpl": "66bdc2ea8cbd597c9c2f9360", - "parentId": "66cbc20b9e95fdffc1051a84", - "slotId": "Helmet_top" - }, - { - "_id": "66cbc20b9e95fdffc1051a86", - "_tpl": "66bdc2e25f17154509115d1e", - "parentId": "66cbc20b9e95fdffc1051a84", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a87", - "_tpl": "66bdc2d051aa8c345646d03f", - "parentId": "66cbc20b9e95fdffc1051a84", - "slotId": "helmet_eyes" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051920", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051920", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051922", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbc20b9e95fdffc1051920", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00294", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a88", - "_tpl": "66bdc2d9408f1e66eb4fd957", - "parentId": "66cbc20b9e95fdffc1051a84", - "slotId": "helmet_jaw" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a89", - "_tpl": "66bdc2c90b603c26902b2018", - "parentId": "66cbc20b9e95fdffc1051a84", - "slotId": "Helmet_ears" - }, - { - "_id": "66cbc20b9e95fdffc1051a8b", - "_tpl": "5c0696830db834001d23f5da", - "parentId": "66cbc20b9e95fdffc1051a7b", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051924", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051924", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051926", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "66cbc20b9e95fdffc1051924", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051928", + "_tpl": "60361a7497633951dc245eb4", + "parentId": "66cbc20b9e95fdffc1051924", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105192a", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbc20b9e95fdffc1051924", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105192c", + "_tpl": "5b07db875acfc40dc528a5f6", + "parentId": "66cbc20b9e95fdffc1051924", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00109", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051a8d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a8d", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00240", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a8f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051a8d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 563 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00479", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a91", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a91", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a93", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66cbc20b9e95fdffc1051a91", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105192e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105192e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a95", - "_tpl": "5e2af4a786f7746d3f3c3400", - "parentId": "66cbc20b9e95fdffc1051a91", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051930", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbc20b9e95fdffc105192e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051932", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbc20b9e95fdffc105192e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00266", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051a97", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051a97", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a98", - "_tpl": "5aa7cfc0e5b5b00015693143", - "parentId": "66cbc20b9e95fdffc1051a97", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a99", - "_tpl": "657baaf0b7e9ca9a02045c02", - "parentId": "66cbc20b9e95fdffc1051a98", - "slotId": "Helmet_top" - }, - { - "_id": "66cbc20b9e95fdffc1051a9a", - "_tpl": "657bab6ec6f689d3a205b85f", - "parentId": "66cbc20b9e95fdffc1051a98", - "slotId": "Helmet_back" + { + "Id": "container_shoreline_DesignStuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a9b", - "_tpl": "657babc6f58ba5a6250107a2", - "parentId": "66cbc20b9e95fdffc1051a98", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a9d", - "_tpl": "5a3c16fe86f77452b62de32a", - "parentId": "66cbc20b9e95fdffc1051a97", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051934", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051934", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 12 - } - }, - { - "_id": "66cbc20b9e95fdffc1051a9e", - "_tpl": "64748cb8de82c85eaf0a273a", - "parentId": "66cbc20b9e95fdffc1051a97", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + { + "_id": "66cbc20b9e95fdffc1051936", + "_tpl": "5c0e533786f7747fa23f4d47", + "parentId": "66cbc20b9e95fdffc1051934", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051938", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbc20b9e95fdffc1051934", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105193a", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbc20b9e95fdffc1051934", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105193c", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbc20b9e95fdffc1051934", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66cbc20b9e95fdffc105193e", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbc20b9e95fdffc1051934", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00211", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051a9f", - "_tpl": "64748d02d1c009260702b526", - "parentId": "66cbc20b9e95fdffc1051a9e", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051aa1", - "_tpl": "57ffb0062459777a045af529", - "parentId": "66cbc20b9e95fdffc1051a97", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051940", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051940", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051942", + "_tpl": "5bc9c049d4351e44f824d360", + "parentId": "66cbc20b9e95fdffc1051940", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00137", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051aa3", - "_tpl": "5cc700ede4a949033c734315", - "parentId": "66cbc20b9e95fdffc1051a97", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051aa5", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66cbc20b9e95fdffc1051a97", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051944", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051944", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051aa7", - "_tpl": "669927203c4fda6471005cbe", - "parentId": "66cbc20b9e95fdffc1051a97", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051946", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbc20b9e95fdffc1051944", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00625", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051aa9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051aa9", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00134", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051aac", - "_tpl": "5649ed104bdc2d3d1c8b458b", - "parentId": "66cbc20b9e95fdffc1051aa9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051aad", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbc20b9e95fdffc1051aac", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051948", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051948", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105194a", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc1051948", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051aaf", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051aaf", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00439", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ab1", - "_tpl": "5c0e533786f7747fa23f4d47", - "parentId": "66cbc20b9e95fdffc1051aaf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ab3", - "_tpl": "57513fcc24597720a31c09a6", - "parentId": "66cbc20b9e95fdffc1051aaf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105194c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105194c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051ab4", - "_tpl": "5ac66d015acfc400180ae6e4", - "parentId": "66cbc20b9e95fdffc1051aaf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + { + "_id": "66cbc20b9e95fdffc105194e", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbc20b9e95fdffc105194c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051950", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66cbc20b9e95fdffc105194c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00557", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ab5", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbc20b9e95fdffc1051ab4", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051ab6", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbc20b9e95fdffc1051ab5", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051ab7", - "_tpl": "5ac72e725acfc400180ae701", - "parentId": "66cbc20b9e95fdffc1051ab4", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051ab8", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbc20b9e95fdffc1051ab4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051ab9", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbc20b9e95fdffc1051ab4", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051aba", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbc20b9e95fdffc1051ab4", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051abb", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbc20b9e95fdffc1051ab4", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051abc", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66cbc20b9e95fdffc1051ab4", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051abd", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbc20b9e95fdffc1051abc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051abf", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc1051aaf", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051952", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051952", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051ac1", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbc20b9e95fdffc1051aaf", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051954", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbc20b9e95fdffc1051952", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051956", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66cbc20b9e95fdffc1051952", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051958", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbc20b9e95fdffc1051952", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00416", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ac3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ac3", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00175", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ac5", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66cbc20b9e95fdffc1051ac3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105195a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105195a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105195c", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbc20b9e95fdffc105195a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105195e", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66cbc20b9e95fdffc105195a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ac7", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbc20b9e95fdffc1051ac3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051960", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051960", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051962", + "_tpl": "5e54f76986f7740366043752", + "parentId": "66cbc20b9e95fdffc1051960", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051ac9", - "_tpl": "5c12688486f77426843c7d32", - "parentId": "66cbc20b9e95fdffc1051ac3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00193", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051acb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051acb", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00738", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051acd", - "_tpl": "5cf638cbd7f00c06595bc936", - "parentId": "66cbc20b9e95fdffc1051acb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051acf", - "_tpl": "5c82342f2e221644f31c060e", - "parentId": "66cbc20b9e95fdffc1051acb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051964", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051964", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051ad1", - "_tpl": "6034d0230ca681766b6a0fb5", - "parentId": "66cbc20b9e95fdffc1051acb", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00594", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ad3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ad3", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051ad5", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66cbc20b9e95fdffc1051ad3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051966", + "_tpl": "57513f9324597720a7128161", + "parentId": "66cbc20b9e95fdffc1051964", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051ad7", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbc20b9e95fdffc1051ad3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051968", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbc20b9e95fdffc1051964", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00674", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ad9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ad9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00207", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051adb", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc1051ad9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051add", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbc20b9e95fdffc1051ad9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105196a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105196a", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051adf", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbc20b9e95fdffc1051ad9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105196c", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "66cbc20b9e95fdffc105196a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105196e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc105196a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 960 + } + }, + { + "_id": "66cbc20b9e95fdffc1051970", + "_tpl": "5bc9bc53d4351e00367fbcee", + "parentId": "66cbc20b9e95fdffc105196a", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051972", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbc20b9e95fdffc105196a", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 45 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00370", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ae1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ae1", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00229", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ae3", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc1051ae1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ae5", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66cbc20b9e95fdffc1051ae1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051974", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051974", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051976", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbc20b9e95fdffc1051974", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051978", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66cbc20b9e95fdffc1051974", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105197a", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc1051974", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00542", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ae7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ae7", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00435", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ae9", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbc20b9e95fdffc1051ae7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051aeb", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbc20b9e95fdffc1051ae7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105197c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105197c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105197e", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbc20b9e95fdffc105197c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00534", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051aed", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051aed", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00720", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051aef", - "_tpl": "5c0e531d86f7747fa23f4d42", - "parentId": "66cbc20b9e95fdffc1051aed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051af1", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbc20b9e95fdffc1051aed", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051980", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051980", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051982", + "_tpl": "5fd4c60f875c30179f5d04c2", + "parentId": "66cbc20b9e95fdffc1051980", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051984", + "_tpl": "5943ee5a86f77413872d25ec", + "parentId": "66cbc20b9e95fdffc1051980", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00107", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051af3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051af3", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00478", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051af5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051af3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 721 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00332", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051af7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051af7", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051af9", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "parentId": "66cbc20b9e95fdffc1051af7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051986", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051986", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051afb", - "_tpl": "5733279d245977289b77ec24", - "parentId": "66cbc20b9e95fdffc1051af7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbc20b9e95fdffc1051988", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66cbc20b9e95fdffc1051986", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051afd", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbc20b9e95fdffc1051af7", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105198a", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbc20b9e95fdffc1051986", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00485", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051aff", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051aff", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00114", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b01", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66cbc20b9e95fdffc1051aff", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b03", - "_tpl": "5e8488fa988a8701445df1e4", - "parentId": "66cbc20b9e95fdffc1051aff", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc105198c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105198c", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105198e", + "_tpl": "5a26ac0ec4a28200741e1e18", + "parentId": "66cbc20b9e95fdffc105198c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 7 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00213", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051b05", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b05", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00096", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b07", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbc20b9e95fdffc1051b05", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 76 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b09", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "parentId": "66cbc20b9e95fdffc1051b05", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051990", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051990", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051992", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbc20b9e95fdffc1051990", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00095", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b0b", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "parentId": "66cbc20b9e95fdffc1051b05", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b0d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbc20b9e95fdffc1051b05", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051994", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051994", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 583 + { + "_id": "66cbc20b9e95fdffc1051996", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc1051994", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00094", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b0f", - "_tpl": "5d235a5986f77443f6329bc6", - "parentId": "66cbc20b9e95fdffc1051b05", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00185", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051b11", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b11", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b13", - "_tpl": "56e33634d2720bd8058b456b", - "parentId": "66cbc20b9e95fdffc1051b11", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051998", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051998", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051b15", - "_tpl": "5cbdc23eae9215001136a407", - "parentId": "66cbc20b9e95fdffc1051b11", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc105199a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbc20b9e95fdffc1051998", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00710", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b17", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b17", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00093", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b1b", - "_tpl": "57372ee1245977685d4159b5", - "parentId": "66cbc20b9e95fdffc1051b17", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b1c", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbc20b9e95fdffc1051b1b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc105199c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc105199c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc105199e", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66cbc20b9e95fdffc105199c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00660", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b1d", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbc20b9e95fdffc1051b1b", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b20", - "_tpl": "657024c81419851aef03e712", - "parentId": "66cbc20b9e95fdffc1051b17", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10519a0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519a0", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519a2", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbc20b9e95fdffc10519a0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10519a4", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbc20b9e95fdffc10519a0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b21", - "_tpl": "5ba26812d4351e003201fef1", - "parentId": "66cbc20b9e95fdffc1051b20", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b23", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbc20b9e95fdffc1051b17", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10519a6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519a6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 41 + { + "_id": "66cbc20b9e95fdffc10519a8", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbc20b9e95fdffc10519a6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00083", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b26", - "_tpl": "65702532cfc010a0f5006a19", - "parentId": "66cbc20b9e95fdffc1051b17", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b27", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66cbc20b9e95fdffc1051b26", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10519aa", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519aa", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519ac", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbc20b9e95fdffc10519aa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00142", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b29", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b29", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b2b", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbc20b9e95fdffc1051b29", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00147", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b2d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b2d", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b2f", - "_tpl": "5a0ea69f86f7741cd5406619", - "parentId": "66cbc20b9e95fdffc1051b2d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10519ae", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519ae", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519b0", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbc20b9e95fdffc10519ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00583", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b31", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b31", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b33", - "_tpl": "619cbfccbedcde2f5b3f7bdd", - "parentId": "66cbc20b9e95fdffc1051b31", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10519b2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519b2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10519b4", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbc20b9e95fdffc10519b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00301", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b35", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbc20b9e95fdffc1051b31", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10519b6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519b6", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519b7", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "parentId": "66cbc20b9e95fdffc10519b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc10519b8", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbc20b9e95fdffc10519b7", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc10519b9", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "66cbc20b9e95fdffc10519b8", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc10519ba", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "66cbc20b9e95fdffc10519b7", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc10519bb", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "66cbc20b9e95fdffc10519b7", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc10519bc", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "66cbc20b9e95fdffc10519b7", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc10519bd", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "66cbc20b9e95fdffc10519b7", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc10519be", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "66cbc20b9e95fdffc10519b7", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc10519bf", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbc20b9e95fdffc10519b7", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10519c0", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbc20b9e95fdffc10519bf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 22.0 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00729", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b37", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b37", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00560", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b39", - "_tpl": "5d1b2fa286f77425227d1674", - "parentId": "66cbc20b9e95fdffc1051b37", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10519c2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519c2", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10519c4", + "_tpl": "5c052e6986f7746b207bc3c9", + "parentId": "66cbc20b9e95fdffc10519c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00511", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b3b", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "66cbc20b9e95fdffc1051b37", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10519c6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519c6", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519c8", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "66cbc20b9e95fdffc10519c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 7 + { + "_id": "66cbc20b9e95fdffc10519ca", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbc20b9e95fdffc10519c6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00359", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b3d", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbc20b9e95fdffc1051b37", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10519cc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519cc", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519ce", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbc20b9e95fdffc10519cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519d0", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc10519cc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519d2", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbc20b9e95fdffc10519cc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00243", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b3f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b3f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00152", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b41", - "_tpl": "5af04b6486f774195a3ebb49", - "parentId": "66cbc20b9e95fdffc1051b3f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10519d4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519d4", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10519d6", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbc20b9e95fdffc10519d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b43", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66cbc20b9e95fdffc1051b3f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10519d8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519d8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10519da", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbc20b9e95fdffc10519d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00079", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b45", - "_tpl": "5e8488fa988a8701445df1e4", - "parentId": "66cbc20b9e95fdffc1051b3f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10519dc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519dc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519de", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbc20b9e95fdffc10519dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00544", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b47", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b47", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00078", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b49", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbc20b9e95fdffc1051b47", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10519e0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519e0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10519e2", + "_tpl": "5a0f045e86f7745b0f0d0e42", + "parentId": "66cbc20b9e95fdffc10519e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b4b", - "_tpl": "5e8488fa988a8701445df1e4", - "parentId": "66cbc20b9e95fdffc1051b47", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc10519e4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519e4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519e6", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66cbc20b9e95fdffc10519e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00159", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b4d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b4d", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00670", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b4f", - "_tpl": "573477e124597737dd42e191", - "parentId": "66cbc20b9e95fdffc1051b4d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10519e8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519e8", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc10519ea", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbc20b9e95fdffc10519e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00252", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b51", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbc20b9e95fdffc1051b4d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc10519ec", + "Items": [ + { + "_id": "66cbc20b9e95fdffc10519ec", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519ee", + "_tpl": "57af48872459771f0b2ebf11", + "parentId": "66cbc20b9e95fdffc10519ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519f0", + "_tpl": "59e0d99486f7744a32234762", + "parentId": "66cbc20b9e95fdffc10519ec", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 58 + } + }, + { + "_id": "66cbc20b9e95fdffc10519f1", + "_tpl": "57f4c844245977379d5c14d1", + "parentId": "66cbc20b9e95fdffc10519ec", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519f2", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66cbc20b9e95fdffc10519f1", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc10519f3", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbc20b9e95fdffc10519f1", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc10519f4", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbc20b9e95fdffc10519f3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 27.0 + } + }, + { + "_id": "66cbc20b9e95fdffc10519f6", + "_tpl": "60658776f2cb2e02a42ace2b", + "parentId": "66cbc20b9e95fdffc10519ec", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519f8", + "_tpl": "5b07dd285acfc4001754240d", + "parentId": "66cbc20b9e95fdffc10519ec", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519fa", + "_tpl": "5fd20ff893a8961fc660a954", + "parentId": "66cbc20b9e95fdffc10519ec", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66cbc20b9e95fdffc10519fc", + "_tpl": "59e0bdb186f774156f04ce82", + "parentId": "66cbc20b9e95fdffc10519ec", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc10519fe", + "_tpl": "625ff2eb9f5537057932257d", + "parentId": "66cbc20b9e95fdffc10519ec", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00480", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b53", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b53", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b55", - "_tpl": "590c639286f774151567fa95", - "parentId": "66cbc20b9e95fdffc1051b53", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a00", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a00", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051a02", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbc20b9e95fdffc1051a00", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00128", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b57", - "_tpl": "5d1b2fa286f77425227d1674", - "parentId": "66cbc20b9e95fdffc1051b53", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a04", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a04", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a06", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051a04", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 962 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00219", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b59", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b59", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b5b", - "_tpl": "5e2af4a786f7746d3f3c3400", - "parentId": "66cbc20b9e95fdffc1051b59", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051a08", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a08", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051a0a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051a08", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 746 + } } + ] + }, + { + "Id": "container_Test_for_export_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b5d", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbc20b9e95fdffc1051b59", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a0c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a0c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051a0e", + "_tpl": "57514643245977207f2c2d09", + "parentId": "66cbc20b9e95fdffc1051a0c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00514", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b5f", - "_tpl": "573474f924597738002c6174", - "parentId": "66cbc20b9e95fdffc1051b59", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a10", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a10", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a12", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbc20b9e95fdffc1051a10", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00726", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b61", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b61", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00155", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b63", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbc20b9e95fdffc1051b61", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a14", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a14", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a16", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc1051a14", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051a18", + "_tpl": "57347ca924597744596b4e71", + "parentId": "66cbc20b9e95fdffc1051a14", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00588", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b65", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbc20b9e95fdffc1051b61", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a1a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a1a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a1c", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbc20b9e95fdffc1051a1a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a1e", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbc20b9e95fdffc1051a1a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a20", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc1051a1a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00168", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b67", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b67", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00138", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b69", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbc20b9e95fdffc1051b67", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a22", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a22", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a24", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc1051a22", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_shoreline_DesignStuff_00151", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051b6b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b6b", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_shoreline_DesignStuff_00638", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b6d", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbc20b9e95fdffc1051b6b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "AGS_02", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbc20b9e95fdffc1051b6e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051b6e", - "_tpl": "5d52cc5ba4b9367408500062", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a26", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a26", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a28", + "_tpl": "62389aaba63f32501b1b444f", + "parentId": "66cbc20b9e95fdffc1051a26", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b6f", - "_tpl": "5d52d479a4b936793d58c76b", - "parentId": "66cbc20b9e95fdffc1051b6e", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051b70", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges" - }, - { - "_id": "66cbc20b9e95fdffc1051b71", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66cbc20b9e95fdffc1051b72", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 2 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b73", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a2a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a2a", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a2c", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66cbc20b9e95fdffc1051a2a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a2e", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "66cbc20b9e95fdffc1051a2a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a2f", + "_tpl": "66015072e9f84d5680039678", + "parentId": "66cbc20b9e95fdffc1051a2a", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051a30", + "_tpl": "66015dc4aaad2f54cb04c56a", + "parentId": "66cbc20b9e95fdffc1051a2f", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051a31", + "_tpl": "6601546f86889319850bd566", + "parentId": "66cbc20b9e95fdffc1051a30", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a33", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbc20b9e95fdffc1051a2a", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00730", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b74", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 4 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b75", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051a35", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a35", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a37", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbc20b9e95fdffc1051a35", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a39", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc1051a35", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a3b", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbc20b9e95fdffc1051a35", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a3d", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbc20b9e95fdffc1051a35", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a3f", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbc20b9e95fdffc1051a35", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a41", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66cbc20b9e95fdffc1051a35", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a43", + "_tpl": "5bc9c29cd4351e003562b8a3", + "parentId": "66cbc20b9e95fdffc1051a35", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a45", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66cbc20b9e95fdffc1051a35", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00183", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b76", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 6 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b77", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 7 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051a47", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a47", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a49", + "_tpl": "62a09e08de7ac81993580532", + "parentId": "66cbc20b9e95fdffc1051a47", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a4b", + "_tpl": "5947c73886f7747701588af5", + "parentId": "66cbc20b9e95fdffc1051a47", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a4d", + "_tpl": "5cc700d4e4a949000f0f0f28", + "parentId": "66cbc20b9e95fdffc1051a47", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a4f", + "_tpl": "5df8f541c41b2312ea3335e3", + "parentId": "66cbc20b9e95fdffc1051a47", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00578", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b78", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 8 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b79", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 9 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a51", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a51", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a53", + "_tpl": "5e2aee0a86f774755a234b62", + "parentId": "66cbc20b9e95fdffc1051a51", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a55", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbc20b9e95fdffc1051a51", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a57", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbc20b9e95fdffc1051a51", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00659", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b7a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 10 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b7b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 11 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a59", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a59", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a5b", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc1051a59", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a5d", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbc20b9e95fdffc1051a59", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00406", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b7c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 12 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b7d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 13 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a5f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a5f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a61", + "_tpl": "60b0f7057897d47c5b04ab94", + "parentId": "66cbc20b9e95fdffc1051a5f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a63", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbc20b9e95fdffc1051a5f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a65", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "parentId": "66cbc20b9e95fdffc1051a5f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b7e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 14 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b7f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 15 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a67", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a67", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a69", + "_tpl": "590de71386f774347051a052", + "parentId": "66cbc20b9e95fdffc1051a67", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a6b", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbc20b9e95fdffc1051a67", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a6d", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66cbc20b9e95fdffc1051a67", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a6f", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbc20b9e95fdffc1051a67", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00606", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b80", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 16 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b81", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 17 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a71", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a71", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a73", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "66cbc20b9e95fdffc1051a71", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a74", + "_tpl": "64748cb8de82c85eaf0a273a", + "parentId": "66cbc20b9e95fdffc1051a71", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051a75", + "_tpl": "64748d02d1c009260702b526", + "parentId": "66cbc20b9e95fdffc1051a74", + "slotId": "mod_barrel" + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00338", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b82", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 18 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b83", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 19 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a77", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a77", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a79", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66cbc20b9e95fdffc1051a77", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00203", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b84", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 20 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b85", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66cbc20b9e95fdffc1051b86", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 22 - }, - { - "_id": "66cbc20b9e95fdffc1051b87", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66cbc20b9e95fdffc1051b88", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 24 - }, - { - "_id": "66cbc20b9e95fdffc1051b89", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051a7b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a7b", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a7d", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "66cbc20b9e95fdffc1051a7b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a7f", + "_tpl": "622f14e899892a7f9e08f6c5", + "parentId": "66cbc20b9e95fdffc1051a7b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a81", + "_tpl": "5b099b7d5acfc400186331e4", + "parentId": "66cbc20b9e95fdffc1051a7b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a83", + "_tpl": "57dbb57e2459774673234890", + "parentId": "66cbc20b9e95fdffc1051a7b", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a84", + "_tpl": "66bdc28a0b603c26902b2011", + "parentId": "66cbc20b9e95fdffc1051a7b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a85", + "_tpl": "66bdc2ea8cbd597c9c2f9360", + "parentId": "66cbc20b9e95fdffc1051a84", + "slotId": "Helmet_top" + }, + { + "_id": "66cbc20b9e95fdffc1051a86", + "_tpl": "66bdc2e25f17154509115d1e", + "parentId": "66cbc20b9e95fdffc1051a84", + "slotId": "Helmet_back" + }, + { + "_id": "66cbc20b9e95fdffc1051a87", + "_tpl": "66bdc2d051aa8c345646d03f", + "parentId": "66cbc20b9e95fdffc1051a84", + "slotId": "helmet_eyes" + }, + { + "_id": "66cbc20b9e95fdffc1051a88", + "_tpl": "66bdc2d9408f1e66eb4fd957", + "parentId": "66cbc20b9e95fdffc1051a84", + "slotId": "helmet_jaw" + }, + { + "_id": "66cbc20b9e95fdffc1051a89", + "_tpl": "66bdc2c90b603c26902b2018", + "parentId": "66cbc20b9e95fdffc1051a84", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbc20b9e95fdffc1051a8b", + "_tpl": "5c0696830db834001d23f5da", + "parentId": "66cbc20b9e95fdffc1051a7b", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00109", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b8a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 26 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b8b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 27 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051a8d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a8d", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a8f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051a8d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 563 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00479", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b8c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 28 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b8d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 29 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a91", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a91", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a93", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66cbc20b9e95fdffc1051a91", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a95", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "66cbc20b9e95fdffc1051a91", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00266", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b8e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 30 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b8f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 31 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051a97", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051a97", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a98", + "_tpl": "5aa7cfc0e5b5b00015693143", + "parentId": "66cbc20b9e95fdffc1051a97", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a99", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "66cbc20b9e95fdffc1051a98", + "slotId": "Helmet_top" + }, + { + "_id": "66cbc20b9e95fdffc1051a9a", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "66cbc20b9e95fdffc1051a98", + "slotId": "Helmet_back" + }, + { + "_id": "66cbc20b9e95fdffc1051a9b", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "66cbc20b9e95fdffc1051a98", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbc20b9e95fdffc1051a9d", + "_tpl": "5a3c16fe86f77452b62de32a", + "parentId": "66cbc20b9e95fdffc1051a97", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 12 + } + }, + { + "_id": "66cbc20b9e95fdffc1051a9e", + "_tpl": "64748cb8de82c85eaf0a273a", + "parentId": "66cbc20b9e95fdffc1051a97", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051a9f", + "_tpl": "64748d02d1c009260702b526", + "parentId": "66cbc20b9e95fdffc1051a9e", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc1051aa1", + "_tpl": "57ffb0062459777a045af529", + "parentId": "66cbc20b9e95fdffc1051a97", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051aa3", + "_tpl": "5cc700ede4a949033c734315", + "parentId": "66cbc20b9e95fdffc1051a97", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051aa5", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66cbc20b9e95fdffc1051a97", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051aa7", + "_tpl": "669927203c4fda6471005cbe", + "parentId": "66cbc20b9e95fdffc1051a97", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00625", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b90", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 32 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b91", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 33 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051aa9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051aa9", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051aac", + "_tpl": "5649ed104bdc2d3d1c8b458b", + "parentId": "66cbc20b9e95fdffc1051aa9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051aad", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbc20b9e95fdffc1051aac", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b92", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 34 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b93", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 35 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051aaf", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051aaf", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ab1", + "_tpl": "5c0e533786f7747fa23f4d47", + "parentId": "66cbc20b9e95fdffc1051aaf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ab3", + "_tpl": "57513fcc24597720a31c09a6", + "parentId": "66cbc20b9e95fdffc1051aaf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ab4", + "_tpl": "5ac66d015acfc400180ae6e4", + "parentId": "66cbc20b9e95fdffc1051aaf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ab5", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbc20b9e95fdffc1051ab4", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051ab6", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbc20b9e95fdffc1051ab5", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051ab7", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "66cbc20b9e95fdffc1051ab4", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051ab8", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbc20b9e95fdffc1051ab4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051ab9", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbc20b9e95fdffc1051ab4", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051aba", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbc20b9e95fdffc1051ab4", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051abb", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbc20b9e95fdffc1051ab4", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051abc", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66cbc20b9e95fdffc1051ab4", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051abd", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbc20b9e95fdffc1051abc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051abf", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc1051aaf", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ac1", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbc20b9e95fdffc1051aaf", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00416", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b94", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 36 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b95", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 37 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ac3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ac3", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ac5", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66cbc20b9e95fdffc1051ac3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ac7", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbc20b9e95fdffc1051ac3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ac9", + "_tpl": "5c12688486f77426843c7d32", + "parentId": "66cbc20b9e95fdffc1051ac3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00193", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b96", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 38 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b97", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 39 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051acb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051acb", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051acd", + "_tpl": "5cf638cbd7f00c06595bc936", + "parentId": "66cbc20b9e95fdffc1051acb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051acf", + "_tpl": "5c82342f2e221644f31c060e", + "parentId": "66cbc20b9e95fdffc1051acb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ad1", + "_tpl": "6034d0230ca681766b6a0fb5", + "parentId": "66cbc20b9e95fdffc1051acb", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00594", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b98", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 40 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b99", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 41 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ad3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ad3", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ad5", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66cbc20b9e95fdffc1051ad3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ad7", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbc20b9e95fdffc1051ad3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00674", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b9a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 42 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051b9b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66cbc20b9e95fdffc1051b9c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 44 - }, - { - "_id": "66cbc20b9e95fdffc1051b9d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66cbc20b9e95fdffc1051b9e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 46 - }, - { - "_id": "66cbc20b9e95fdffc1051b9f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66cbc20b9e95fdffc1051ba0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 48 - }, - { - "_id": "66cbc20b9e95fdffc1051ba1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 49 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ad9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ad9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051adb", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc1051ad9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051add", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbc20b9e95fdffc1051ad9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051adf", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbc20b9e95fdffc1051ad9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00370", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ba2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 50 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ba3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 51 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ae1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ae1", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ae3", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc1051ae1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ae5", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66cbc20b9e95fdffc1051ae1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00542", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ba4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 52 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ba5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 53 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ae7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ae7", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051ae9", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbc20b9e95fdffc1051ae7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051aeb", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbc20b9e95fdffc1051ae7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00534", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ba6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 54 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ba7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 55 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051aed", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051aed", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051aef", + "_tpl": "5c0e531d86f7747fa23f4d42", + "parentId": "66cbc20b9e95fdffc1051aed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051af1", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbc20b9e95fdffc1051aed", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00107", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ba8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 56 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051ba9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 57 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051af3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051af3", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051af5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051af3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 721 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00332", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051baa", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 58 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bab", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 59 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051af7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051af7", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051af9", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "parentId": "66cbc20b9e95fdffc1051af7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051afb", + "_tpl": "5733279d245977289b77ec24", + "parentId": "66cbc20b9e95fdffc1051af7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051afd", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbc20b9e95fdffc1051af7", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00485", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bac", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 60 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bad", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 61 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051aff", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051aff", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b01", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66cbc20b9e95fdffc1051aff", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b03", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "66cbc20b9e95fdffc1051aff", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00213", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bae", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 62 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051baf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 63 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051b05", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b05", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b07", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbc20b9e95fdffc1051b05", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 76 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b09", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "parentId": "66cbc20b9e95fdffc1051b05", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b0b", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "parentId": "66cbc20b9e95fdffc1051b05", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b0d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbc20b9e95fdffc1051b05", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 583 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b0f", + "_tpl": "5d235a5986f77443f6329bc6", + "parentId": "66cbc20b9e95fdffc1051b05", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00185", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bb0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 64 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bb1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 65 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051b11", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b11", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b13", + "_tpl": "56e33634d2720bd8058b456b", + "parentId": "66cbc20b9e95fdffc1051b11", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b15", + "_tpl": "5cbdc23eae9215001136a407", + "parentId": "66cbc20b9e95fdffc1051b11", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00710", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bb2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 66 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bb3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 67 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b17", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b17", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b1b", + "_tpl": "57372ee1245977685d4159b5", + "parentId": "66cbc20b9e95fdffc1051b17", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b1c", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbc20b9e95fdffc1051b1b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b1d", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbc20b9e95fdffc1051b1b", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b20", + "_tpl": "657024c81419851aef03e712", + "parentId": "66cbc20b9e95fdffc1051b17", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b21", + "_tpl": "5ba26812d4351e003201fef1", + "parentId": "66cbc20b9e95fdffc1051b20", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b23", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbc20b9e95fdffc1051b17", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 41 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b26", + "_tpl": "65702532cfc010a0f5006a19", + "parentId": "66cbc20b9e95fdffc1051b17", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b27", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66cbc20b9e95fdffc1051b26", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00142", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bb4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 68 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bb5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 69 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b29", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b29", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b2b", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbc20b9e95fdffc1051b29", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00147", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bb6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 70 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bb7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 71 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b2d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b2d", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b2f", + "_tpl": "5a0ea69f86f7741cd5406619", + "parentId": "66cbc20b9e95fdffc1051b2d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00583", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bb8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 72 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bb9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 73 - }, - { - "_id": "66cbc20b9e95fdffc1051bba", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 74 - }, - { - "_id": "66cbc20b9e95fdffc1051bbb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 75 - }, - { - "_id": "66cbc20b9e95fdffc1051bbc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 76 - }, - { - "_id": "66cbc20b9e95fdffc1051bbd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 77 - }, - { - "_id": "66cbc20b9e95fdffc1051bbe", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 78 - }, - { - "_id": "66cbc20b9e95fdffc1051bbf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 79 - }, - { - "_id": "66cbc20b9e95fdffc1051bc0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 80 - }, - { - "_id": "66cbc20b9e95fdffc1051bc1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 81 - }, - { - "_id": "66cbc20b9e95fdffc1051bc2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 82 - }, - { - "_id": "66cbc20b9e95fdffc1051bc3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 83 - }, - { - "_id": "66cbc20b9e95fdffc1051bc4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 84 - }, - { - "_id": "66cbc20b9e95fdffc1051bc5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 85 - }, - { - "_id": "66cbc20b9e95fdffc1051bc6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 86 - }, - { - "_id": "66cbc20b9e95fdffc1051bc7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 87 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b31", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b31", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b33", + "_tpl": "619cbfccbedcde2f5b3f7bdd", + "parentId": "66cbc20b9e95fdffc1051b31", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b35", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbc20b9e95fdffc1051b31", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00729", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bc8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 88 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bc9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 89 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b37", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b37", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b39", + "_tpl": "5d1b2fa286f77425227d1674", + "parentId": "66cbc20b9e95fdffc1051b37", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b3b", + "_tpl": "5d6e68c4a4b9361b93413f79", + "parentId": "66cbc20b9e95fdffc1051b37", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 7 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b3d", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbc20b9e95fdffc1051b37", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00243", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bca", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 90 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bcb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 91 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b3f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b3f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b41", + "_tpl": "5af04b6486f774195a3ebb49", + "parentId": "66cbc20b9e95fdffc1051b3f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b43", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66cbc20b9e95fdffc1051b3f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b45", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "66cbc20b9e95fdffc1051b3f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00544", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bcc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 92 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bcd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 93 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b47", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b47", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b49", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbc20b9e95fdffc1051b47", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b4b", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "66cbc20b9e95fdffc1051b47", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00159", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bce", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 94 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bcf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 95 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b4d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b4d", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b4f", + "_tpl": "573477e124597737dd42e191", + "parentId": "66cbc20b9e95fdffc1051b4d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b51", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbc20b9e95fdffc1051b4d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00480", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bd0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 96 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bd1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 97 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b53", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b53", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b55", + "_tpl": "590c639286f774151567fa95", + "parentId": "66cbc20b9e95fdffc1051b53", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b57", + "_tpl": "5d1b2fa286f77425227d1674", + "parentId": "66cbc20b9e95fdffc1051b53", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00219", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bd2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66cbc20b9e95fdffc1051b6f", - "slotId": "cartridges", - "location": 98 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bd3", - "_tpl": "5d53f4b7a4b936793d58c780", - "parentId": "66cbc20b9e95fdffc1051b6e", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "008_5_key [1] (13) [05ea6eae-2ac5-4d8c-842d-cff20b2b3729]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -152.349976, - "y": -14.546, - "z": -301.219 - }, - "Rotation": { - "x": 78.07961, - "y": 152.851624, - "z": 291.816772 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051bd5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051bd5", - "_tpl": "5a0448bc86f774736f14efa8", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "009_1_nout [1] (14) [82b8d48a-a99a-48ff-853e-ae1886891610]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -285.103027, - "y": 2.512, - "z": -89.3500061 - }, - "Rotation": { - "x": 270.951, - "y": 5.79528236, - "z": 330.8144 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051bd7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051bd7", - "_tpl": "5a29284f86f77463ef3db363", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "009_2_doc [1] (15) [937ed2ac-2623-4eed-8296-7a120b5bccf7]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -340.984, - "y": -2.725, - "z": -88.627 - }, - "Rotation": { - "x": 89.19449, - "y": 0.000121351572, - "z": 37.2990265 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051bd9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051bd9", - "_tpl": "5939e5a786f77461f11c0098", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "010_4_flash [1] (16) [aa1f6c45-d68a-47d4-a47f-83b020da1fff]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -267.220947, - "y": -0.017, - "z": -145.576 - }, - "Rotation": { - "x": 272.7763, - "y": 3.525317e-5, - "z": 331.548157 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051bdb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051bdb", - "_tpl": "5a29357286f77409c705e025", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "010_5_drive [1] (17) [0fc2cba5-bf45-4d18-ae2c-1fa7826b7d9c]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -358.932983, - "y": 2.54, - "z": -76.9750061 - }, - "Rotation": { - "x": 87.5914154, - "y": -4.063392e-5, - "z": 41.0816841 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051bdd", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051bdd", - "_tpl": "5a29276886f77435ed1b117c", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "2A2_unlock_4_pick [1e2865b0-5f18-4b8d-a5a6-3012aa1a4c0e]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -203.202515, - "y": -6.1664, - "z": -76.52025 - }, - "Rotation": { - "x": 335.152649, - "y": 133.810654, - "z": 359.057526 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "PickPoint1", - "Weight": 1, - "Position": { - "x": -201.463379, - "y": -6.94130039, - "z": -79.65051 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b59", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b59", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b5b", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "66cbc20b9e95fdffc1051b59", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b5d", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbc20b9e95fdffc1051b59", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 345.2946, - "y": 82.15979, - "z": 270.1794 + { + "_id": "66cbc20b9e95fdffc1051b5f", + "_tpl": "573474f924597738002c6174", + "parentId": "66cbc20b9e95fdffc1051b59", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00726", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "PickPoint2", - "Weight": 1, - "Position": { - "x": -198.748413, - "y": -6.801755, - "z": -74.63141 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b61", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b61", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b63", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbc20b9e95fdffc1051b61", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 351.828217, - "y": 177.063675, - "z": 0.9065075 + { + "_id": "66cbc20b9e95fdffc1051b65", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbc20b9e95fdffc1051b61", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00168", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "PickPoint3", - "Weight": 1, - "Position": { - "x": -203.202515, - "y": -6.1664, - "z": -76.52025 - }, - "Rotation": { - "x": 335.152649, - "y": 133.810654, - "z": 359.057526 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051bdf", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051bdf", - "_tpl": "666073159916667083033cb9", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "ammo (1) [aa8b4b0b-4bd3-4ec3-b949-34ca730e923a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -838.397, - "y": -58.014, - "z": 473.905 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051be3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051be3", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051be4", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbc20b9e95fdffc1051be3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b67", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b67", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b69", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbc20b9e95fdffc1051b67", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_shoreline_DesignStuff_00151", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051be5", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbc20b9e95fdffc1051be3", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "Ammo (11) [c0e76115-9518-43d8-b322-b303cce0ba5f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -669.453, - "y": -25.371, - "z": -339.523 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051be8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051be8", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051be9", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbc20b9e95fdffc1051be8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "Ammo (14) [243dfbd5-0a87-479b-aa64-046e76bd6fd2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -666.921, - "y": -25.371, - "z": -339.368 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051bec", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051bec", - "_tpl": "657023ccbfc87b3a3409320a", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051b6b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b6b", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051b6d", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbc20b9e95fdffc1051b6b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "AGS_02", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051bed", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "66cbc20b9e95fdffc1051bec", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "Ammo (15) [856685af-69d7-41f9-a52b-6dfd2d9e0505]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -662.039, - "y": -25.371, - "z": -339.738 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051bf1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051bf1", - "_tpl": "657026451419851aef03e733", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051bf2", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbc20b9e95fdffc1051bf1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbc20b9e95fdffc1051bf3", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbc20b9e95fdffc1051bf1", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "Ammo (17) [90bec027-e413-4512-ad1e-84312bd646fc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -653.158, - "y": -25.725, - "z": -248.819 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051bf7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051bf7", - "_tpl": "57372deb245977685d4159b3", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051bf8", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbc20b9e95fdffc1051bf7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbc20b9e95fdffc1051bf9", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbc20b9e95fdffc1051bf7", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "Ammo (2) [48d1ba70-f69a-410d-81da-d651b197f143]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -668.867, - "y": -25.371, - "z": -314.938 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051bfd", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051bfd", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051bfe", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbc20b9e95fdffc1051bfd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbc20b9e95fdffc1051bff", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbc20b9e95fdffc1051bfd", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "Ammo (20) [8b546aad-4cb5-4f22-8c22-cb715c761f24]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -654.758, - "y": -25.725, - "z": -248.313 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c02", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c02", - "_tpl": "657025c9cfc010a0f5006a38", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c03", - "_tpl": "5a26ac06c4a282000c5a90a8", - "parentId": "66cbc20b9e95fdffc1051c02", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - { - "Id": "Ammo (21) [faa46f71-21a5-49bc-89b2-56726f67b325]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -655.038, - "y": -25.476, - "z": -240.92 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c07", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c07", - "_tpl": "6570264acfc010a0f5006a50", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c08", - "_tpl": "59e6927d86f77411da468256", - "parentId": "66cbc20b9e95fdffc1051c07", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c09", - "_tpl": "59e6927d86f77411da468256", - "parentId": "66cbc20b9e95fdffc1051c07", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "Ammo (23) [8acbc82b-d247-4701-8098-b6a51888d7e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -654.207, - "y": -25.476, - "z": -240.065 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c0c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c0c", - "_tpl": "65702536c5d7d4cb4d078570", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c0d", - "_tpl": "573601b42459776410737435", - "parentId": "66cbc20b9e95fdffc1051c0c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 - } - } - ] - }, - { - "Id": "Ammo (29) [ca9e6d46-124f-4606-bbf2-c412ad178f92]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -673.229, - "y": -24.094, - "z": -169.495 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c11", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c11", - "_tpl": "57372deb245977685d4159b3", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c12", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbc20b9e95fdffc1051c11", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c13", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbc20b9e95fdffc1051c11", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "Ammo (3) [3c47edba-9d4b-467c-8338-8e639b3cd8b9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -669.305, - "y": -25.371, - "z": -314.938 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c16", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c16", - "_tpl": "5737287724597765e1625ae2", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c17", - "_tpl": "573720e02459776143012541", - "parentId": "66cbc20b9e95fdffc1051c16", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "Ammo (30) [024fde2d-fc63-47e1-b779-4fb3e28c2a4a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -652.829, - "y": -25.108, - "z": -162.986 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c1a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c1a", - "_tpl": "657023ccbfc87b3a3409320a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c1b", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "66cbc20b9e95fdffc1051c1a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "Ammo (32) [254fb0e4-5b05-4705-b12e-b8f5df6d53cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -660.366, - "y": -25.303, - "z": -159.903 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c1e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c1e", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c1f", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbc20b9e95fdffc1051c1e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "Ammo (35) [91449186-735e-4a2a-b07a-76a97d896e4f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -651.967, - "y": -25.56, - "z": -153.17 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c22", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c22", - "_tpl": "5737280e24597765cc785b5c", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c23", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbc20b9e95fdffc1051c22", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "Ammo (37) [ff9faf42-c726-462f-889d-163dbd2dc733]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -651.809, - "y": -25.56, - "z": -152.475 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c26", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c26", - "_tpl": "65702639bfc87b3a3409325c", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c27", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbc20b9e95fdffc1051c26", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "Ammo (38) [d3c57e99-d67b-4291-a637-4584d948e86f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -633.36, - "y": -26.03, - "z": -154.842 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c2a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c2a", - "_tpl": "657023f1bfc87b3a34093210", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c2b", - "_tpl": "59e6542b86f77411dc52a77a", - "parentId": "66cbc20b9e95fdffc1051c2a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "Ammo (40) [e6dbac96-8b4f-4cb1-aac9-162341030967]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -624.392, - "y": -26.03, - "z": -157.51 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c2e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c2e", - "_tpl": "65702572c5d7d4cb4d078576", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c2f", - "_tpl": "5e023d34e8a400319a28ed44", - "parentId": "66cbc20b9e95fdffc1051c2e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "Ammo (43) [eae14286-d5e7-4e3f-9f1f-27b547de8227]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -618.116, - "y": -29.049, - "z": -158.984 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c32", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c32", - "_tpl": "657023e7c5d7d4cb4d078552", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051c33", - "_tpl": "62330c18744e5e31df12f516", - "parentId": "66cbc20b9e95fdffc1051c32", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 - } - } - ] - }, - { - "Id": "Ammo (45) [80190105-865c-4e1e-8018-084a8b4edc98]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -599.911, - "y": -26.291, - "z": -188.416 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c36", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c36", - "_tpl": "657024d8c5d7d4cb4d078567", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051c37", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbc20b9e95fdffc1051c36", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbc20b9e95fdffc1051b6e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051b6e", + "_tpl": "5d52cc5ba4b9367408500062", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051b6f", + "_tpl": "5d52d479a4b936793d58c76b", + "parentId": "66cbc20b9e95fdffc1051b6e", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051b70", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges" + }, + { + "_id": "66cbc20b9e95fdffc1051b71", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66cbc20b9e95fdffc1051b72", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 2 + }, + { + "_id": "66cbc20b9e95fdffc1051b73", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66cbc20b9e95fdffc1051b74", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 4 + }, + { + "_id": "66cbc20b9e95fdffc1051b75", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66cbc20b9e95fdffc1051b76", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 6 + }, + { + "_id": "66cbc20b9e95fdffc1051b77", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66cbc20b9e95fdffc1051b78", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 8 + }, + { + "_id": "66cbc20b9e95fdffc1051b79", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66cbc20b9e95fdffc1051b7a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 10 + }, + { + "_id": "66cbc20b9e95fdffc1051b7b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66cbc20b9e95fdffc1051b7c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 12 + }, + { + "_id": "66cbc20b9e95fdffc1051b7d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66cbc20b9e95fdffc1051b7e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 14 + }, + { + "_id": "66cbc20b9e95fdffc1051b7f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66cbc20b9e95fdffc1051b80", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 16 + }, + { + "_id": "66cbc20b9e95fdffc1051b81", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66cbc20b9e95fdffc1051b82", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 18 + }, + { + "_id": "66cbc20b9e95fdffc1051b83", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66cbc20b9e95fdffc1051b84", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 20 + }, + { + "_id": "66cbc20b9e95fdffc1051b85", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66cbc20b9e95fdffc1051b86", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 22 + }, + { + "_id": "66cbc20b9e95fdffc1051b87", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66cbc20b9e95fdffc1051b88", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 24 + }, + { + "_id": "66cbc20b9e95fdffc1051b89", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66cbc20b9e95fdffc1051b8a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 26 + }, + { + "_id": "66cbc20b9e95fdffc1051b8b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66cbc20b9e95fdffc1051b8c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 28 + }, + { + "_id": "66cbc20b9e95fdffc1051b8d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66cbc20b9e95fdffc1051b8e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 30 + }, + { + "_id": "66cbc20b9e95fdffc1051b8f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66cbc20b9e95fdffc1051b90", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 32 + }, + { + "_id": "66cbc20b9e95fdffc1051b91", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66cbc20b9e95fdffc1051b92", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 34 + }, + { + "_id": "66cbc20b9e95fdffc1051b93", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66cbc20b9e95fdffc1051b94", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 36 + }, + { + "_id": "66cbc20b9e95fdffc1051b95", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66cbc20b9e95fdffc1051b96", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 38 + }, + { + "_id": "66cbc20b9e95fdffc1051b97", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66cbc20b9e95fdffc1051b98", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 40 + }, + { + "_id": "66cbc20b9e95fdffc1051b99", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66cbc20b9e95fdffc1051b9a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 42 + }, + { + "_id": "66cbc20b9e95fdffc1051b9b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66cbc20b9e95fdffc1051b9c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 44 + }, + { + "_id": "66cbc20b9e95fdffc1051b9d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66cbc20b9e95fdffc1051b9e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 46 + }, + { + "_id": "66cbc20b9e95fdffc1051b9f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66cbc20b9e95fdffc1051ba0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 48 + }, + { + "_id": "66cbc20b9e95fdffc1051ba1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 49 + }, + { + "_id": "66cbc20b9e95fdffc1051ba2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 50 + }, + { + "_id": "66cbc20b9e95fdffc1051ba3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 51 + }, + { + "_id": "66cbc20b9e95fdffc1051ba4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 52 + }, + { + "_id": "66cbc20b9e95fdffc1051ba5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 53 + }, + { + "_id": "66cbc20b9e95fdffc1051ba6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 54 + }, + { + "_id": "66cbc20b9e95fdffc1051ba7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 55 + }, + { + "_id": "66cbc20b9e95fdffc1051ba8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 56 + }, + { + "_id": "66cbc20b9e95fdffc1051ba9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 57 + }, + { + "_id": "66cbc20b9e95fdffc1051baa", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 58 + }, + { + "_id": "66cbc20b9e95fdffc1051bab", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 59 + }, + { + "_id": "66cbc20b9e95fdffc1051bac", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 60 + }, + { + "_id": "66cbc20b9e95fdffc1051bad", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 61 + }, + { + "_id": "66cbc20b9e95fdffc1051bae", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 62 + }, + { + "_id": "66cbc20b9e95fdffc1051baf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 63 + }, + { + "_id": "66cbc20b9e95fdffc1051bb0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 64 + }, + { + "_id": "66cbc20b9e95fdffc1051bb1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 65 + }, + { + "_id": "66cbc20b9e95fdffc1051bb2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 66 + }, + { + "_id": "66cbc20b9e95fdffc1051bb3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 67 + }, + { + "_id": "66cbc20b9e95fdffc1051bb4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 68 + }, + { + "_id": "66cbc20b9e95fdffc1051bb5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 69 + }, + { + "_id": "66cbc20b9e95fdffc1051bb6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 70 + }, + { + "_id": "66cbc20b9e95fdffc1051bb7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 71 + }, + { + "_id": "66cbc20b9e95fdffc1051bb8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 72 + }, + { + "_id": "66cbc20b9e95fdffc1051bb9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 73 + }, + { + "_id": "66cbc20b9e95fdffc1051bba", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 74 + }, + { + "_id": "66cbc20b9e95fdffc1051bbb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 75 + }, + { + "_id": "66cbc20b9e95fdffc1051bbc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 76 + }, + { + "_id": "66cbc20b9e95fdffc1051bbd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 77 + }, + { + "_id": "66cbc20b9e95fdffc1051bbe", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 78 + }, + { + "_id": "66cbc20b9e95fdffc1051bbf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 79 + }, + { + "_id": "66cbc20b9e95fdffc1051bc0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 80 + }, + { + "_id": "66cbc20b9e95fdffc1051bc1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 81 + }, + { + "_id": "66cbc20b9e95fdffc1051bc2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 82 + }, + { + "_id": "66cbc20b9e95fdffc1051bc3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 83 + }, + { + "_id": "66cbc20b9e95fdffc1051bc4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 84 + }, + { + "_id": "66cbc20b9e95fdffc1051bc5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 85 + }, + { + "_id": "66cbc20b9e95fdffc1051bc6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 86 + }, + { + "_id": "66cbc20b9e95fdffc1051bc7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 87 + }, + { + "_id": "66cbc20b9e95fdffc1051bc8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 88 + }, + { + "_id": "66cbc20b9e95fdffc1051bc9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 89 + }, + { + "_id": "66cbc20b9e95fdffc1051bca", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 90 + }, + { + "_id": "66cbc20b9e95fdffc1051bcb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 91 + }, + { + "_id": "66cbc20b9e95fdffc1051bcc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 92 + }, + { + "_id": "66cbc20b9e95fdffc1051bcd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 93 + }, + { + "_id": "66cbc20b9e95fdffc1051bce", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 94 + }, + { + "_id": "66cbc20b9e95fdffc1051bcf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 95 + }, + { + "_id": "66cbc20b9e95fdffc1051bd0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 96 + }, + { + "_id": "66cbc20b9e95fdffc1051bd1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 97 + }, + { + "_id": "66cbc20b9e95fdffc1051bd2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66cbc20b9e95fdffc1051b6f", + "slotId": "cartridges", + "location": 98 + }, + { + "_id": "66cbc20b9e95fdffc1051bd3", + "_tpl": "5d53f4b7a4b936793d58c780", + "parentId": "66cbc20b9e95fdffc1051b6e", + "slotId": "mod_scope" } - } - ] - }, - { - "Id": "Ammo (47) [4e518999-3a2c-4e0b-bd8c-e8e0d00e2d80]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -597.936, - "y": -26.291, - "z": -189.747 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c3a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c3a", - "_tpl": "657024f5cfc010a0f5006a10", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "008_5_key [1] (13) [05ea6eae-2ac5-4d8c-842d-cff20b2b3729]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -152.349976, + "y": -14.546, + "z": -301.219 + }, + "Rotation": { + "x": 78.07961, + "y": 152.851624, + "z": 291.816772 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051bd5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051bd5", + "_tpl": "5a0448bc86f774736f14efa8", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051c3b", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbc20b9e95fdffc1051c3a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + ] + }, + { + "Id": "009_1_nout [1] (14) [82b8d48a-a99a-48ff-853e-ae1886891610]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -285.103027, + "y": 2.512, + "z": -89.3500061 + }, + "Rotation": { + "x": 270.951, + "y": 5.79528236, + "z": 330.8144 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051bd7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051bd7", + "_tpl": "5a29284f86f77463ef3db363", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Ammo (6) [180e0ef9-afb5-4ce5-a465-78eb9282e874]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -679.77, - "y": -25.371, - "z": -337.77 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c3e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c3e", - "_tpl": "657023b71419851aef03e6e8", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "009_2_doc [1] (15) [937ed2ac-2623-4eed-8296-7a120b5bccf7]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -340.984, + "y": -2.725, + "z": -88.627 + }, + "Rotation": { + "x": 89.19449, + "y": 0.000121351572, + "z": 37.2990265 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051bd9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051bd9", + "_tpl": "5939e5a786f77461f11c0098", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051c3f", - "_tpl": "6196364158ef8c428c287d9f", - "parentId": "66cbc20b9e95fdffc1051c3e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + ] + }, + { + "Id": "010_4_flash [1] (16) [aa1f6c45-d68a-47d4-a47f-83b020da1fff]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -267.220947, + "y": -0.017, + "z": -145.576 + }, + "Rotation": { + "x": 272.7763, + "y": 3.525317e-5, + "z": 331.548157 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051bdb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051bdb", + "_tpl": "5a29357286f77409c705e025", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Ammo (7) [14bb500c-d57e-461d-97c1-fdd496d7c7ea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -676.465, - "y": -25.371, - "z": -338.553 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c42", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c42", - "_tpl": "657025161419851aef03e718", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "010_5_drive [1] (17) [0fc2cba5-bf45-4d18-ae2c-1fa7826b7d9c]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -358.932983, + "y": 2.54, + "z": -76.9750061 + }, + "Rotation": { + "x": 87.5914154, + "y": -4.063392e-5, + "z": 41.0816841 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051bdd", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051bdd", + "_tpl": "5a29276886f77435ed1b117c", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051c43", - "_tpl": "5cc80f53e4a949000e1ea4f8", - "parentId": "66cbc20b9e95fdffc1051c42", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + ] + }, + { + "Id": "2A2_unlock_4_pick [1e2865b0-5f18-4b8d-a5a6-3012aa1a4c0e]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -203.202515, + "y": -6.1664, + "z": -76.52025 + }, + "Rotation": { + "x": 335.152649, + "y": 133.810654, + "z": 359.057526 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "PickPoint1", + "Weight": 1, + "Position": { + "x": -201.463379, + "y": -6.94130039, + "z": -79.65051 + }, + "Rotation": { + "x": 345.2946, + "y": 82.15979, + "z": 270.1794 + } + }, + { + "Name": "PickPoint2", + "Weight": 1, + "Position": { + "x": -198.748413, + "y": -6.801755, + "z": -74.63141 + }, + "Rotation": { + "x": 351.828217, + "y": 177.063675, + "z": 0.9065075 + } + }, + { + "Name": "PickPoint3", + "Weight": 1, + "Position": { + "x": -203.202515, + "y": -6.1664, + "z": -76.52025 + }, + "Rotation": { + "x": 335.152649, + "y": 133.810654, + "z": 359.057526 + } } - } - ] - }, - { - "Id": "ammo [02eb9ebc-8dea-491f-872e-74290b04cfc1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -838.3, - "y": -58.014, - "z": 473.081 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c46", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c46", - "_tpl": "657024b31419851aef03e70f", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051bdf", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051bdf", + "_tpl": "666073159916667083033cb9", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051c47", - "_tpl": "5f647f31b6238e5dd066e196", - "parentId": "66cbc20b9e95fdffc1051c46", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + ] + }, + { + "Id": "ammo (1) [aa8b4b0b-4bd3-4ec3-b949-34ca730e923a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -838.397, + "y": -58.014, + "z": 473.905 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051be3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051be3", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051be4", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbc20b9e95fdffc1051be3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc1051be5", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbc20b9e95fdffc1051be3", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Ammo [db1dd43e-2309-49c1-99cd-da95ed5996a9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -655.219, - "y": -24.895, - "z": -301.517 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c4a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c4a", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Ammo (11) [c0e76115-9518-43d8-b322-b303cce0ba5f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -669.453, + "y": -25.371, + "z": -339.523 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051be8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051be8", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051be9", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbc20b9e95fdffc1051be8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051c4b", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbc20b9e95fdffc1051c4a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + ] + }, + { + "Id": "Ammo (14) [243dfbd5-0a87-479b-aa64-046e76bd6fd2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -666.921, + "y": -25.371, + "z": -339.368 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051bec", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051bec", + "_tpl": "657023ccbfc87b3a3409320a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051bed", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "66cbc20b9e95fdffc1051bec", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Arena_loot_weapon (3) [6ee48bc3-3d13-43c9-b081-a33e89b70d56]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -235.906021, - "y": -39.8066978, - "z": 197.076 - }, - "Rotation": { - "x": 9.460439, - "y": 359.311829, - "z": 271.6556 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c4c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c4c", - "_tpl": "57c44b372459772d2b39b8ce", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + ] + }, + { + "Id": "Ammo (15) [856685af-69d7-41f9-a52b-6dfd2d9e0505]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -662.039, + "y": -25.371, + "z": -339.738 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051bf1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051bf1", + "_tpl": "657026451419851aef03e733", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051bf2", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbc20b9e95fdffc1051bf1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc1051bf3", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbc20b9e95fdffc1051bf1", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 } } - }, - { - "_id": "66cbc20b9e95fdffc1051c4d", - "_tpl": "57c44dd02459772d2e0ae249", - "parentId": "66cbc20b9e95fdffc1051c4c", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051c4e", - "_tpl": "57c44e7b2459772d28133248", - "parentId": "66cbc20b9e95fdffc1051c4d", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051c4f", - "_tpl": "5a9fc7e6a2750c0032157184", - "parentId": "66cbc20b9e95fdffc1051c4d", - "slotId": "mod_mount_000" - }, - { - "_id": "66cbc20b9e95fdffc1051c50", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "66cbc20b9e95fdffc1051c4f", - "slotId": "mod_tactical" - }, - { - "_id": "66cbc20b9e95fdffc1051c51", - "_tpl": "5a69a2ed8dc32e000d46d1f1", - "parentId": "66cbc20b9e95fdffc1051c4c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051c52", - "_tpl": "5a9eb32da2750c00171b3f9c", - "parentId": "66cbc20b9e95fdffc1051c51", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbc20b9e95fdffc1051c53", - "_tpl": "5a9e81fba2750c00164f6b11", - "parentId": "66cbc20b9e95fdffc1051c4c", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051c57", - "_tpl": "57a0dfb82459774d3078b56c", - "parentId": "66cbc20b9e95fdffc1051c53", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 22.0 + ] + }, + { + "Id": "Ammo (17) [90bec027-e413-4512-ad1e-84312bd646fc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -653.158, + "y": -25.725, + "z": -248.819 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051bf7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051bf7", + "_tpl": "57372deb245977685d4159b3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051bf8", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbc20b9e95fdffc1051bf7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc1051bf9", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbc20b9e95fdffc1051bf7", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051c54", - "_tpl": "57c44f4f2459772d2c627113", - "parentId": "66cbc20b9e95fdffc1051c4c", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051c55", - "_tpl": "5a7c74b3e899ef0014332c29", - "parentId": "66cbc20b9e95fdffc1051c4c", - "slotId": "mod_mount_004" - }, - { - "_id": "66cbc20b9e95fdffc1051c56", - "_tpl": "651178336cad06c37c049eb4", - "parentId": "66cbc20b9e95fdffc1051c4c", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "ashor_A_optic (2) [dc422219-477d-4794-9c10-268d60780772]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -236.69342, - "y": -40.0256958, - "z": 192.1563 - }, - "Rotation": { - "x": 0.0, - "y": 70.8976, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c59", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c59", - "_tpl": "615d8f8567085e45ef1409ca", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Ammo (2) [48d1ba70-f69a-410d-81da-d651b197f143]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -668.867, + "y": -25.371, + "z": -314.938 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051bfd", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051bfd", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051bfe", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbc20b9e95fdffc1051bfd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc1051bff", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbc20b9e95fdffc1051bfd", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ashor_A_optic (3) [ad0a7962-ef4c-43f8-b6fc-1a434114cdad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -236.678421, - "y": -40.0256958, - "z": 192.0142 - }, - "Rotation": { - "x": 0.0, - "y": 55.6790733, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c5b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c5b", - "_tpl": "644a3df63b0b6f03e101e065", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Ammo (20) [8b546aad-4cb5-4f22-8c22-cb715c761f24]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -654.758, + "y": -25.725, + "z": -248.313 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c02", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c02", + "_tpl": "657025c9cfc010a0f5006a38", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c03", + "_tpl": "5a26ac06c4a282000c5a90a8", + "parentId": "66cbc20b9e95fdffc1051c02", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "ashor_A_optic [058f1750-49e2-4697-821f-db64cc5ff75d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -236.389023, - "y": -40.0686951, - "z": 192.166 - }, - "Rotation": { - "x": 0.0, - "y": 92.27727, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c5d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c5d", - "_tpl": "55d614004bdc2d86028b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Ammo (21) [faa46f71-21a5-49bc-89b2-56726f67b325]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -655.038, + "y": -25.476, + "z": -240.92 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c07", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c07", + "_tpl": "6570264acfc010a0f5006a50", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c08", + "_tpl": "59e6927d86f77411da468256", + "parentId": "66cbc20b9e95fdffc1051c07", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c09", + "_tpl": "59e6927d86f77411da468256", + "parentId": "66cbc20b9e95fdffc1051c07", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "ashor_Arena_headphones [f57822ef-b701-4f79-a64c-ba218d15e07a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -235.705017, - "y": -39.8466949, - "z": 194.493 - }, - "Rotation": { - "x": -1.0352006e-5, - "y": 287.455, - "z": 357.126923 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c5f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c5f", - "_tpl": "66b5f68de98be930d701c00e", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Ammo (23) [8acbc82b-d247-4701-8098-b6a51888d7e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -654.207, + "y": -25.476, + "z": -240.065 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c0c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c0c", + "_tpl": "65702536c5d7d4cb4d078570", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c0d", + "_tpl": "573601b42459776410737435", + "parentId": "66cbc20b9e95fdffc1051c0c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "ashor_armor_plates1 (14) [184a2c76-6977-4670-bf93-aba7db25a4b4]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -235.893021, - "y": -39.8677, - "z": 195.651 - }, - "Rotation": { - "x": 1.42523694, - "y": 220.8803, - "z": 268.703156 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c61", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c61", - "_tpl": "5c0e533786f7747fa23f4d47", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Ammo (29) [ca9e6d46-124f-4606-bbf2-c412ad178f92]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -673.229, + "y": -24.094, + "z": -169.495 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c11", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c11", + "_tpl": "57372deb245977685d4159b3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c12", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbc20b9e95fdffc1051c11", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c13", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbc20b9e95fdffc1051c11", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ashor_plate1 (4) [9edb5759-023d-4ec7-a10b-d55c5a501e42]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -236.244019, - "y": -39.8726959, - "z": 196.638 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c63", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c63", - "_tpl": "656fad8c498d1b7e3e071da0", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Ammo (3) [3c47edba-9d4b-467c-8338-8e639b3cd8b9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -669.305, + "y": -25.371, + "z": -314.938 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c16", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c16", + "_tpl": "5737287724597765e1625ae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c17", + "_tpl": "573720e02459776143012541", + "parentId": "66cbc20b9e95fdffc1051c16", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ashor_plate1 (5) [fb7626f4-e4c7-4949-a824-c019c541dfd9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -238.653015, - "y": -40.1116943, - "z": 194.356 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c65", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c65", - "_tpl": "657b2797c3dbcb01d60c35ea", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Ammo (30) [024fde2d-fc63-47e1-b779-4fb3e28c2a4a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -652.829, + "y": -25.108, + "z": -162.986 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c1a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c1a", + "_tpl": "657023ccbfc87b3a3409320a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c1b", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "66cbc20b9e95fdffc1051c1a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ashor_plate1 (6) [d641f6a2-1293-454f-b3f7-614c7a341e50]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -238.581024, - "y": -40.1096954, - "z": 194.058 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c67", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c67", - "_tpl": "657b22485f444d6dff0c6c2f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Ammo (32) [254fb0e4-5b05-4705-b12e-b8f5df6d53cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -660.366, + "y": -25.303, + "z": -159.903 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c1e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c1e", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c1f", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbc20b9e95fdffc1051c1e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ashor_plate2 (1) [b18a2338-d1bb-41ce-b9d8-241ddff2b198]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -236.066025, - "y": -40.3166962, - "z": 197.045 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c69", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c69", - "_tpl": "6557458f83942d705f0c4962", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Ammo (35) [91449186-735e-4a2a-b07a-76a97d896e4f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -651.967, + "y": -25.56, + "z": -153.17 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c22", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c22", + "_tpl": "5737280e24597765cc785b5c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c23", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbc20b9e95fdffc1051c22", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ashor_plate2 [9d11cb5f-d55e-44e3-a0e4-51dfc711e917]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -236.001022, - "y": -40.3196945, - "z": 197.438 - }, - "Rotation": { - "x": 89.56795, - "y": 213.637375, - "z": 303.639282 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c6b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c6b", - "_tpl": "656fa76500d62bcd2e024080", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Ammo (37) [ff9faf42-c726-462f-889d-163dbd2dc733]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -651.809, + "y": -25.56, + "z": -152.475 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c26", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c26", + "_tpl": "65702639bfc87b3a3409325c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c27", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbc20b9e95fdffc1051c26", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ashor_sup_mods (1) [bfb1407a-6982-4ba9-92b9-ec9d3bbea99e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -237.768021, - "y": -40.1666946, - "z": 198.716 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c6d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c6d", - "_tpl": "6529370c405a5f51dd023db8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Ammo (38) [d3c57e99-d67b-4291-a637-4584d948e86f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -633.36, + "y": -26.03, + "z": -154.842 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c2a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c2a", + "_tpl": "657023f1bfc87b3a34093210", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c2b", + "_tpl": "59e6542b86f77411dc52a77a", + "parentId": "66cbc20b9e95fdffc1051c2a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ashor_sup_mods (2) [1bd3cb04-04b3-49db-a72e-7cc45cdb1be0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -238.28302, - "y": -40.2096977, - "z": 198.718 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c6f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c6f", - "_tpl": "655f13e0a246670fb0373245", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Ammo (40) [e6dbac96-8b4f-4cb1-aac9-162341030967]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -624.392, + "y": -26.03, + "z": -157.51 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c2e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c2e", + "_tpl": "65702572c5d7d4cb4d078576", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c2f", + "_tpl": "5e023d34e8a400319a28ed44", + "parentId": "66cbc20b9e95fdffc1051c2e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ashor_sup_mods (4) [ce0a2fdd-63ec-4a49-9a52-73188df38832]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -238.601028, - "y": -40.207695, - "z": 198.763 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c71", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c71", - "_tpl": "5dfe6104585a0c3e995c7b82", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Ammo (43) [eae14286-d5e7-4e3f-9f1f-27b547de8227]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -618.116, + "y": -29.049, + "z": -158.984 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c32", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c32", + "_tpl": "657023e7c5d7d4cb4d078552", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c33", + "_tpl": "62330c18744e5e31df12f516", + "parentId": "66cbc20b9e95fdffc1051c32", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "ashor_sup_mods (5) [e26b7936-f08d-44a0-a1d8-882ca07fa14b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -238.884018, - "y": -40.1187, - "z": 198.768 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c73", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c73", - "_tpl": "5bae13bad4351e00320204af", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Ammo (45) [80190105-865c-4e1e-8018-084a8b4edc98]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -599.911, + "y": -26.291, + "z": -188.416 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c36", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c36", + "_tpl": "657024d8c5d7d4cb4d078567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c37", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbc20b9e95fdffc1051c36", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ashor_sup_mods [2ef30078-27a2-47b8-903e-98c4d58d0a67]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -237.568024, - "y": -40.1506958, - "z": 198.723 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c75", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c75", - "_tpl": "55d614004bdc2d86028b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Ammo (47) [4e518999-3a2c-4e0b-bd8c-e8e0d00e2d80]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -597.936, + "y": -26.291, + "z": -189.747 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c3a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c3a", + "_tpl": "657024f5cfc010a0f5006a10", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c3b", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbc20b9e95fdffc1051c3a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ashor_trans (3) [0f04fb42-4808-4b2c-8374-3876c01a73e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -236.163025, - "y": -39.7816963, - "z": 194.434 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c77", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c77", - "_tpl": "5af0534a86f7743b6f354284", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Ammo (6) [180e0ef9-afb5-4ce5-a465-78eb9282e874]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -679.77, + "y": -25.371, + "z": -337.77 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c3e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c3e", + "_tpl": "657023b71419851aef03e6e8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c3f", + "_tpl": "6196364158ef8c428c287d9f", + "parentId": "66cbc20b9e95fdffc1051c3e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Barter (2) [9457fde8-ad5a-4689-98f3-2a67d3f0f50e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -928.873, - "y": -56.136, - "z": 356.639 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c79", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c79", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Ammo (7) [14bb500c-d57e-461d-97c1-fdd496d7c7ea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -676.465, + "y": -25.371, + "z": -338.553 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c42", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c42", + "_tpl": "657025161419851aef03e718", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c43", + "_tpl": "5cc80f53e4a949000e1ea4f8", + "parentId": "66cbc20b9e95fdffc1051c42", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Barter (3) [0f9ec830-1f6a-4c59-bb5b-7df674645d31]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -568.32, - "y": -59.073, - "z": 494.692 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c7b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c7b", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ammo [02eb9ebc-8dea-491f-872e-74290b04cfc1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -838.3, + "y": -58.014, + "z": 473.081 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c46", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c46", + "_tpl": "657024b31419851aef03e70f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c47", + "_tpl": "5f647f31b6238e5dd066e196", + "parentId": "66cbc20b9e95fdffc1051c46", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "carloot (10) [ad34b03b-fe7d-49ea-9dfe-ae9e8c157d95]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 337.765, - "y": -58.479, - "z": 318.596 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c7d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c7d", - "_tpl": "609a63b6e2ff132951242d09", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Ammo [db1dd43e-2309-49c1-99cd-da95ed5996a9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -655.219, + "y": -24.895, + "z": -301.517 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c4a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c4a", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c4b", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbc20b9e95fdffc1051c4a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "carloot (2) [9ac4ec91-a1d8-4796-8c42-731ee1a8a130]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 71.3704, - "y": -58.8739, - "z": 348.2301 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c7f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c7f", - "_tpl": "5a78813bc5856700186c4abe", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Arena_loot_weapon (3) [6ee48bc3-3d13-43c9-b081-a33e89b70d56]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -235.906021, + "y": -39.8066978, + "z": 197.076 + }, + "Rotation": { + "x": 9.460439, + "y": 359.311829, + "z": 271.6556 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c4c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c4c", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051c4d", + "_tpl": "57c44dd02459772d2e0ae249", + "parentId": "66cbc20b9e95fdffc1051c4c", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051c4e", + "_tpl": "57c44e7b2459772d28133248", + "parentId": "66cbc20b9e95fdffc1051c4d", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051c4f", + "_tpl": "5a9fc7e6a2750c0032157184", + "parentId": "66cbc20b9e95fdffc1051c4d", + "slotId": "mod_mount_000" + }, + { + "_id": "66cbc20b9e95fdffc1051c50", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "66cbc20b9e95fdffc1051c4f", + "slotId": "mod_tactical" + }, + { + "_id": "66cbc20b9e95fdffc1051c51", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "parentId": "66cbc20b9e95fdffc1051c4c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051c52", + "_tpl": "5a9eb32da2750c00171b3f9c", + "parentId": "66cbc20b9e95fdffc1051c51", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbc20b9e95fdffc1051c53", + "_tpl": "5a9e81fba2750c00164f6b11", + "parentId": "66cbc20b9e95fdffc1051c4c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051c57", + "_tpl": "57a0dfb82459774d3078b56c", + "parentId": "66cbc20b9e95fdffc1051c53", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 22.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c54", + "_tpl": "57c44f4f2459772d2c627113", + "parentId": "66cbc20b9e95fdffc1051c4c", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051c55", + "_tpl": "5a7c74b3e899ef0014332c29", + "parentId": "66cbc20b9e95fdffc1051c4c", + "slotId": "mod_mount_004" + }, + { + "_id": "66cbc20b9e95fdffc1051c56", + "_tpl": "651178336cad06c37c049eb4", + "parentId": "66cbc20b9e95fdffc1051c4c", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "carloot (3) [b80b7b5c-563c-425a-a639-54c5a570acf0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 313.579, - "y": -58.89, - "z": 307.957 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c81", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c81", - "_tpl": "628a6678ccaab13006640e49", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_A_optic (2) [dc422219-477d-4794-9c10-268d60780772]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -236.69342, + "y": -40.0256958, + "z": 192.1563 + }, + "Rotation": { + "x": 0.0, + "y": 70.8976, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c59", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c59", + "_tpl": "615d8f8567085e45ef1409ca", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "carloot (6) [d6f91e6c-aec6-4378-a2fe-574174a3dcb3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 321.0045, - "y": -58.811, - "z": 306.4655 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c84", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c84", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_A_optic (3) [ad0a7962-ef4c-43f8-b6fc-1a434114cdad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -236.678421, + "y": -40.0256958, + "z": 192.0142 + }, + "Rotation": { + "x": 0.0, + "y": 55.6790733, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c5b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c5b", + "_tpl": "644a3df63b0b6f03e101e065", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "ashor_A_optic [058f1750-49e2-4697-821f-db64cc5ff75d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -236.389023, + "y": -40.0686951, + "z": 192.166 + }, + "Rotation": { + "x": 0.0, + "y": 92.27727, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051c85", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbc20b9e95fdffc1051c84", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c5d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c5d", + "_tpl": "55d614004bdc2d86028b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "carloot (9) [d6c1e0a2-4db2-4c9c-ae32-7514f87bd4fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 337.37, - "y": -58.479, - "z": 319.002 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c87", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c87", - "_tpl": "5afd7ded5acfc40017541f5e", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_Arena_headphones [f57822ef-b701-4f79-a64c-ba218d15e07a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -235.705017, + "y": -39.8466949, + "z": 194.493 + }, + "Rotation": { + "x": -1.0352006e-5, + "y": 287.455, + "z": 357.126923 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c5f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c5f", + "_tpl": "66b5f68de98be930d701c00e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "case_0060 [1] (2) [75bd2ac1-2ef4-41b1-8c09-f047ed7fd275]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -218.02002, - "y": 2.815, - "z": -86.09 - }, - "Rotation": { - "x": 88.40358, - "y": 310.6659, - "z": 352.884674 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c89", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c89", - "_tpl": "5a6860d886f77411cd3a9e47", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_armor_plates1 (14) [184a2c76-6977-4670-bf93-aba7db25a4b4]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -235.893021, + "y": -39.8677, + "z": 195.651 + }, + "Rotation": { + "x": 1.42523694, + "y": 220.8803, + "z": 268.703156 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c61", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c61", + "_tpl": "5c0e533786f7747fa23f4d47", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "case_0060 [1] (3) [2952f653-0327-42b4-acdc-906861f2a6f9]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -226.552, - "y": 2.089, - "z": -87.571 - }, - "Rotation": { - "x": 270.0, - "y": 69.19153, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c8b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c8b", - "_tpl": "5d357d6b86f7745b606e3508", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ashor_plate1 (4) [9edb5759-023d-4ec7-a10b-d55c5a501e42]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -236.244019, + "y": -39.8726959, + "z": 196.638 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c63", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c63", + "_tpl": "656fad8c498d1b7e3e071da0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "controller_comp_room [d4478da7-8b0f-40f2-b18e-26ecc1f8cc9b]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -289.378052, - "y": 2.225, - "z": -84.373 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.20525 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c8d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c8d", - "_tpl": "5b4c72c686f77462ac37e907", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_plate1 (5) [fb7626f4-e4c7-4949-a824-c019c541dfd9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -238.653015, + "y": -40.1116943, + "z": 194.356 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c65", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c65", + "_tpl": "657b2797c3dbcb01d60c35ea", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "controller1_forest_crate [ecc588c0-c63f-4f0b-a9cb-a7f384cf901c]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -567.78, - "y": -44.838, - "z": 104.505005 - }, - "Rotation": { - "x": 281.089661, - "y": 311.337433, - "z": 20.98381 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c8f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c8f", - "_tpl": "5b4c72b386f7745b453af9c0", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_plate1 (6) [d641f6a2-1293-454f-b3f7-614c7a341e50]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -238.581024, + "y": -40.1096954, + "z": 194.058 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c67", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c67", + "_tpl": "657b22485f444d6dff0c6c2f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "diagset_Sanitar [7596e9aa-910c-4bca-8a40-b3b056337b46]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 99.45056, - "y": -44.3777, - "z": 107.002594 - }, - "Rotation": { - "x": 33.2750854, - "y": 143.360168, - "z": 73.77298 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c91", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c91", - "_tpl": "5efdaf6de6a30218ed211a48", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_plate2 (1) [b18a2338-d1bb-41ce-b9d8-241ddff2b198]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -236.066025, + "y": -40.3166962, + "z": 197.045 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c69", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c69", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (1) [044a8fa1-e5d6-49c8-9931-1edc6392b978]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -516.716, - "y": -16.582, - "z": -326.01 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c93", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c93", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_plate2 [9d11cb5f-d55e-44e3-a0e4-51dfc711e917]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -236.001022, + "y": -40.3196945, + "z": 197.438 + }, + "Rotation": { + "x": 89.56795, + "y": 213.637375, + "z": 303.639282 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c6b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c6b", + "_tpl": "656fa76500d62bcd2e024080", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (101) [e7dc992b-ca48-40a8-8d37-aefde0f1315c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -520.744, - "y": -24.878, - "z": 277.897 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c95", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c95", - "_tpl": "5c12688486f77426843c7d32", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_sup_mods (1) [bfb1407a-6982-4ba9-92b9-ec9d3bbea99e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -237.768021, + "y": -40.1666946, + "z": 198.716 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c6d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c6d", + "_tpl": "6529370c405a5f51dd023db8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (102) [a220d94a-35e6-4e25-9897-1466ef1c5de6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -520.744, - "y": -24.878, - "z": 276.309 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c97", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c97", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_sup_mods (2) [1bd3cb04-04b3-49db-a72e-7cc45cdb1be0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -238.28302, + "y": -40.2096977, + "z": 198.718 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c6f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c6f", + "_tpl": "655f13e0a246670fb0373245", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (103) [428e0bec-9e1a-44fc-b654-a16e15d76e25]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -517.886, - "y": -24.908, - "z": 277.897 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c99", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c99", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_sup_mods (4) [ce0a2fdd-63ec-4a49-9a52-73188df38832]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -238.601028, + "y": -40.207695, + "z": 198.763 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c71", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c71", + "_tpl": "5dfe6104585a0c3e995c7b82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (106) [4a3b9db6-61c6-4cf6-8af2-56d20ad4b0e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -521.596, - "y": -24.868, - "z": 273.86 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c9b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c9b", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_sup_mods (5) [e26b7936-f08d-44a0-a1d8-882ca07fa14b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -238.884018, + "y": -40.1187, + "z": 198.768 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c73", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c73", + "_tpl": "5bae13bad4351e00320204af", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (107) [60d5b3ce-da1a-49e2-8a5c-fac3ffe376b6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -521.162, - "y": -24.873, - "z": 273.86 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c9d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c9d", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_sup_mods [2ef30078-27a2-47b8-903e-98c4d58d0a67]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -237.568024, + "y": -40.1506958, + "z": 198.723 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c75", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c75", + "_tpl": "55d614004bdc2d86028b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (108) [47d56dc0-880c-49de-86eb-ad3425f66ab6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -521.162, - "y": -24.873, - "z": 272.541 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051c9f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051c9f", - "_tpl": "5d1b32c186f774252167a530", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "ashor_trans (3) [0f04fb42-4808-4b2c-8374-3876c01a73e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -236.163025, + "y": -39.7816963, + "z": 194.434 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c77", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c77", + "_tpl": "5af0534a86f7743b6f354284", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (109) [0f068436-ebff-4362-b5d8-c0d9c0313c21]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -509.54, - "y": -23.81, - "z": 267.674 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ca1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ca1", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Barter (2) [9457fde8-ad5a-4689-98f3-2a67d3f0f50e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -928.873, + "y": -56.136, + "z": 356.639 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c79", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c79", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (111) [3dc79aa4-223a-4bff-9aec-52f605020c68]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -509.078, - "y": -23.815, - "z": 267.931 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ca3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ca3", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Barter (3) [0f9ec830-1f6a-4c59-bb5b-7df674645d31]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -568.32, + "y": -59.073, + "z": 494.692 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c7b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c7b", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (117) [710f669f-9914-4485-94a2-0de36b3d256b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -474.37, - "y": -24.558, - "z": 257.145 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ca5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ca5", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "carloot (10) [ad34b03b-fe7d-49ea-9dfe-ae9e8c157d95]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 337.765, + "y": -58.479, + "z": 318.596 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c7d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c7d", + "_tpl": "609a63b6e2ff132951242d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (12) [c3452804-a50a-4abc-add5-5c96ae5595e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -509.129, - "y": -17.15, - "z": -342.374 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ca7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ca7", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "carloot (2) [9ac4ec91-a1d8-4796-8c42-731ee1a8a130]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 71.3704, + "y": -58.8739, + "z": 348.2301 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c7f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c7f", + "_tpl": "5a78813bc5856700186c4abe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (121) [af3c564b-cd6f-4d36-b807-16cea9232efe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -483.023, - "y": -24.66, - "z": 252.817 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ca9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ca9", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "carloot (3) [b80b7b5c-563c-425a-a639-54c5a570acf0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 313.579, + "y": -58.89, + "z": 307.957 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c81", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c81", + "_tpl": "628a6678ccaab13006640e49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (13) [e547f10d-1d15-4f0b-8d38-eb84d55fbd07]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -510.379, - "y": -17.137, - "z": -341.527 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cab", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cab", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "carloot (6) [d6f91e6c-aec6-4378-a2fe-574174a3dcb3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 321.0045, + "y": -58.811, + "z": 306.4655 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c84", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c84", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051c85", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbc20b9e95fdffc1051c84", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "eletro tools (21) [878db8b0-9060-432e-ba88-14c36dee6205]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -513.84, - "y": -17.1, - "z": -337.75 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cad", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cad", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "carloot (9) [d6c1e0a2-4db2-4c9c-ae32-7514f87bd4fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 337.37, + "y": -58.479, + "z": 319.002 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c87", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c87", + "_tpl": "5afd7ded5acfc40017541f5e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (23) [e9adf3bb-0534-4d49-ab2f-1578b00dbff3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -513.59, - "y": -17.1, - "z": -342.28 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051caf", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051caf", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "case_0060 [1] (2) [75bd2ac1-2ef4-41b1-8c09-f047ed7fd275]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -218.02002, + "y": 2.815, + "z": -86.09 + }, + "Rotation": { + "x": 88.40358, + "y": 310.6659, + "z": 352.884674 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c89", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c89", + "_tpl": "5a6860d886f77411cd3a9e47", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (24) [b0e71e6e-e48e-4fae-8645-9004d7f978b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -512.28, - "y": -17.11, - "z": -342.28 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cb1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cb1", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "case_0060 [1] (3) [2952f653-0327-42b4-acdc-906861f2a6f9]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -226.552, + "y": 2.089, + "z": -87.571 + }, + "Rotation": { + "x": 270.0, + "y": 69.19153, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c8b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c8b", + "_tpl": "5d357d6b86f7745b606e3508", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (30) [9b2f200a-fd42-496d-ab09-2c8d67637296]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -517.72, - "y": -17.05, - "z": -339.48 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cb3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cb3", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "controller_comp_room [d4478da7-8b0f-40f2-b18e-26ecc1f8cc9b]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -289.378052, + "y": 2.225, + "z": -84.373 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.20525 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c8d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c8d", + "_tpl": "5b4c72c686f77462ac37e907", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (32) [e254c4ae-faad-4195-9fce-966c8f3efa96]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -512.66, - "y": -17.1, - "z": -346.77 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cb5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cb5", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "controller1_forest_crate [ecc588c0-c63f-4f0b-a9cb-a7f384cf901c]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -567.78, + "y": -44.838, + "z": 104.505005 + }, + "Rotation": { + "x": 281.089661, + "y": 311.337433, + "z": 20.98381 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c8f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c8f", + "_tpl": "5b4c72b386f7745b453af9c0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (33) [5d7b9141-8f0a-4b86-9da1-9c3ef1f3a361]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -513.76, - "y": -17.09, - "z": -346.77 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cb7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cb7", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "diagset_Sanitar [7596e9aa-910c-4bca-8a40-b3b056337b46]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 99.45056, + "y": -44.3777, + "z": 107.002594 + }, + "Rotation": { + "x": 33.2750854, + "y": 143.360168, + "z": 73.77298 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c91", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c91", + "_tpl": "5efdaf6de6a30218ed211a48", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (34) [034afae9-418a-4ab1-bae6-a57a7b5ad6ef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -513.76, - "y": -17.09, - "z": -348.5 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cb9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cb9", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (1) [044a8fa1-e5d6-49c8-9931-1edc6392b978]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -516.716, + "y": -16.582, + "z": -326.01 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c93", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c93", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (36) [88efb660-d450-4118-afdc-f7f33cf51153]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -515.56, - "y": -17.07, - "z": -328.54 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cbb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cbb", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (101) [e7dc992b-ca48-40a8-8d37-aefde0f1315c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -520.744, + "y": -24.878, + "z": 277.897 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c95", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c95", + "_tpl": "5c12688486f77426843c7d32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (39) [7bfa264e-7add-400d-a9be-799bb90e054d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -520.96, - "y": -17.01, - "z": -337.55 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cbd", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cbd", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (102) [a220d94a-35e6-4e25-9897-1466ef1c5de6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -520.744, + "y": -24.878, + "z": 276.309 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c97", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c97", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (43) [6d556bbc-4252-4948-9a77-dbc11d51d095]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -536.44, - "y": -16.85, - "z": -342.47 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cbf", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cbf", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (103) [428e0bec-9e1a-44fc-b654-a16e15d76e25]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -517.886, + "y": -24.908, + "z": 277.897 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c99", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c99", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (45) [4c0e3d3d-4147-4f58-b673-f57a73205799]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -754.229, - "y": -43.366, - "z": 181.408 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cc1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cc1", - "_tpl": "5b43575a86f77424f443fe62", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (106) [4a3b9db6-61c6-4cf6-8af2-56d20ad4b0e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -521.596, + "y": -24.868, + "z": 273.86 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c9b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c9b", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (46) [d7e8af3c-97e7-435f-bd48-f2c26f49b474]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -932.3547, - "y": -57.1684, - "z": 289.199 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cc3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cc3", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (107) [60d5b3ce-da1a-49e2-8a5c-fac3ffe376b6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -521.162, + "y": -24.873, + "z": 273.86 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c9d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c9d", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (47) [920d41af-3314-438d-8cf3-7f09800111a3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -932.474, - "y": -57.332, - "z": 289.496 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cc5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cc5", - "_tpl": "5bc9b355d4351e6d1509862a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (108) [47d56dc0-880c-49de-86eb-ad3425f66ab6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -521.162, + "y": -24.873, + "z": 272.541 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051c9f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051c9f", + "_tpl": "5d1b32c186f774252167a530", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (48) [1a624d51-4770-4ba2-9668-ae85149280b3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -746.847, - "y": -39.096, - "z": 101.549 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cc7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cc7", - "_tpl": "61bf7b6302b3924be92fa8c3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (109) [0f068436-ebff-4362-b5d8-c0d9c0313c21]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -509.54, + "y": -23.81, + "z": 267.674 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ca1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ca1", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (5) [ca876c57-4964-4e64-8670-507d5cf7aa13]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -513.679, - "y": -16.613, - "z": -323.354 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cc9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cc9", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (111) [3dc79aa4-223a-4bff-9aec-52f605020c68]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -509.078, + "y": -23.815, + "z": 267.931 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ca3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ca3", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (50) [9b53edd5-70ee-45d2-9945-20061955b717]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -747.591, - "y": -39.088, - "z": 100.836 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ccb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ccb", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (117) [710f669f-9914-4485-94a2-0de36b3d256b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -474.37, + "y": -24.558, + "z": 257.145 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ca5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ca5", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (51) [3bbc1900-2b13-4552-9328-6405054f659e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -713.451, - "y": -25.785, - "z": 100.188 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ccd", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ccd", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (12) [c3452804-a50a-4abc-add5-5c96ae5595e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -509.129, + "y": -17.15, + "z": -342.374 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ca7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ca7", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (53) [f0302706-07c5-4b23-99f6-408b43a1c55b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -494.78, - "y": -24.33, - "z": 231.38 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ccf", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ccf", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (121) [af3c564b-cd6f-4d36-b807-16cea9232efe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -483.023, + "y": -24.66, + "z": 252.817 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ca9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ca9", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (54) [dbe1b85d-0bc4-4e0e-afd2-00d505d462ef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -495.08, - "y": -24.33, - "z": 230.65 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cd1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cd1", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (13) [e547f10d-1d15-4f0b-8d38-eb84d55fbd07]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -510.379, + "y": -17.137, + "z": -341.527 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cab", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cab", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (55) [30d9af8f-f0b1-41c1-aea1-8b64a0671470]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -708.102, - "y": -25.843, - "z": 96.261 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cd3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cd3", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (21) [878db8b0-9060-432e-ba88-14c36dee6205]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -513.84, + "y": -17.1, + "z": -337.75 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cad", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cad", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (55) [b4473428-744b-4f41-82a9-9a6a8df7a1ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -492.4, - "y": -24.36, - "z": 232.89 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cd5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cd5", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (23) [e9adf3bb-0534-4d49-ab2f-1578b00dbff3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -513.59, + "y": -17.1, + "z": -342.28 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051caf", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051caf", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (57) [b6c59026-28b5-48b0-aeb1-e86d4fb2bdf6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -490.12, - "y": -24.38, - "z": 247.34 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cd7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cd7", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (24) [b0e71e6e-e48e-4fae-8645-9004d7f978b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -512.28, + "y": -17.11, + "z": -342.28 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cb1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cb1", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (58) [38407b42-7877-4d27-a242-019f102d0f63]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -709.424, - "y": -25.829, - "z": 96.3 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cd9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cd9", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (30) [9b2f200a-fd42-496d-ab09-2c8d67637296]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -517.72, + "y": -17.05, + "z": -339.48 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cb3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cb3", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (6) [5dee9de8-62a4-41a7-acc9-0729c8a2249f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -515.141, - "y": -16.598, - "z": -323.354 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cdb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cdb", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (32) [e254c4ae-faad-4195-9fce-966c8f3efa96]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -512.66, + "y": -17.1, + "z": -346.77 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cb5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cb5", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (60) [8cac4f62-358a-4e22-80d3-01105c22b75c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -484.83, - "y": -24.43, - "z": 248.91 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cdd", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cdd", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (33) [5d7b9141-8f0a-4b86-9da1-9c3ef1f3a361]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -513.76, + "y": -17.09, + "z": -346.77 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cb7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cb7", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (61) [328b4a63-1e22-49da-a20c-37e0839ba07c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -484.83, - "y": -24.43, - "z": 248.38 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cdf", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cdf", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (34) [034afae9-418a-4ab1-bae6-a57a7b5ad6ef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -513.76, + "y": -17.09, + "z": -348.5 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cb9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cb9", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (63) [73af8d95-c67d-4d74-88be-a7963d8b81e8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -868.042, - "y": -40.79, - "z": 8.493 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ce1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ce1", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (36) [88efb660-d450-4118-afdc-f7f33cf51153]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -515.56, + "y": -17.07, + "z": -328.54 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cbb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cbb", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (63) [e313e4c5-9456-4321-a89a-e751bd27e006]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -485.27, - "y": -24.43, - "z": 246.97 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ce3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ce3", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (39) [7bfa264e-7add-400d-a9be-799bb90e054d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -520.96, + "y": -17.01, + "z": -337.55 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cbd", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cbd", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (64) [11f369a6-5b9b-4bad-bdf1-a1ecdd449647]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -477.69, - "y": -24.51, - "z": 246.97 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ce5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ce5", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (43) [6d556bbc-4252-4948-9a77-dbc11d51d095]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -536.44, + "y": -16.85, + "z": -342.47 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cbf", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cbf", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (64) [8e5a7693-701b-4ef0-9c3f-00d855c50524]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -867.828, - "y": -40.792, - "z": 9.511 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ce7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ce7", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (45) [4c0e3d3d-4147-4f58-b673-f57a73205799]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -754.229, + "y": -43.366, + "z": 181.408 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cc1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cc1", + "_tpl": "5b43575a86f77424f443fe62", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (65) [1534b4c4-c04d-45f9-bd89-4659c0af1154]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -915.549, - "y": -57.25, - "z": 265.843 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ce9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ce9", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (46) [d7e8af3c-97e7-435f-bd48-f2c26f49b474]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -932.3547, + "y": -57.1684, + "z": 289.199 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cc3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cc3", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (65) [86fc4828-ffa6-451f-8efd-ffd59bf54483]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -474.61, - "y": -24.54, - "z": 246.97 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ceb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ceb", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (47) [920d41af-3314-438d-8cf3-7f09800111a3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -932.474, + "y": -57.332, + "z": 289.496 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cc5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cc5", + "_tpl": "5bc9b355d4351e6d1509862a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (66) [3d53a7c8-c47c-4d36-a33d-cce58add18b2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -917.059, - "y": -57.234, - "z": 267.401 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ced", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ced", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (48) [1a624d51-4770-4ba2-9668-ae85149280b3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -746.847, + "y": -39.096, + "z": 101.549 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cc7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cc7", + "_tpl": "61bf7b6302b3924be92fa8c3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (67) [eece147a-a943-485f-967a-802cc7a4a7ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -916.314, - "y": -57.242, - "z": 268.728 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cef", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cef", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (5) [ca876c57-4964-4e64-8670-507d5cf7aa13]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -513.679, + "y": -16.613, + "z": -323.354 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cc9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cc9", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (68) [8769b6eb-875e-4a7f-85b8-82e8828b00a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -786.938, - "y": -38.388, - "z": -5.998 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cf1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cf1", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (50) [9b53edd5-70ee-45d2-9945-20061955b717]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -747.591, + "y": -39.088, + "z": 100.836 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ccb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ccb", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (68) [d0f96b6c-5f1c-4137-9750-da03fa703439]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -461.87, - "y": -24.68, - "z": 244.05 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cf3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cf3", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (51) [3bbc1900-2b13-4552-9328-6405054f659e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -713.451, + "y": -25.785, + "z": 100.188 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ccd", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ccd", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (69) [34668932-11d1-45e2-adb2-891322e62a0d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -786.618, - "y": -38.967, - "z": -5.036 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cf5", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cf5", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (53) [f0302706-07c5-4b23-99f6-408b43a1c55b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -494.78, + "y": -24.33, + "z": 231.38 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ccf", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ccf", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (69) [452848c9-69fe-4fd4-9045-8fa84a4f3159]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -461.66, - "y": -24.68, - "z": 243.69 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cf7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cf7", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (54) [dbe1b85d-0bc4-4e0e-afd2-00d505d462ef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -495.08, + "y": -24.33, + "z": 230.65 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cd1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cd1", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (70) [6f7157c5-9a21-43e0-8f69-afb1f4ef2a18]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -235.204, - "y": -39.713, - "z": 161.898 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cf9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cf9", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (55) [30d9af8f-f0b1-41c1-aea1-8b64a0671470]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -708.102, + "y": -25.843, + "z": 96.261 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cd3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cd3", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (71) [b22b1655-add1-482b-9510-9e03b7258e21]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -234.292, - "y": -39.723, - "z": 163.747 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cfb", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cfb", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (55) [b4473428-744b-4f41-82a9-9a6a8df7a1ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -492.4, + "y": -24.36, + "z": 232.89 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cd5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cd5", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (72) [74ff7f3a-9f4f-46c7-9bd8-63e701cffef7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -233.3, - "y": -39.733, - "z": 165.175 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cfd", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cfd", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (57) [b6c59026-28b5-48b0-aeb1-e86d4fb2bdf6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -490.12, + "y": -24.38, + "z": 247.34 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cd7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cd7", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (73) [5bc9ee24-aad1-4a2d-aaf9-ecb398df8a6e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -233.3, - "y": -39.733, - "z": 166.024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051cff", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051cff", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (58) [38407b42-7877-4d27-a242-019f102d0f63]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -709.424, + "y": -25.829, + "z": 96.3 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cd9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cd9", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (74) [754cb0de-5bc0-4568-b317-407e127fbadc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -485.48, - "y": -24.41, - "z": 255.58 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d01", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d01", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (6) [5dee9de8-62a4-41a7-acc9-0729c8a2249f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -515.141, + "y": -16.598, + "z": -323.354 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cdb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cdb", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (74) [9c352e25-4b6b-4753-acfe-c2a9034b5107]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -236.332, - "y": -39.701, - "z": 165.266 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d03", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d03", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (60) [8cac4f62-358a-4e22-80d3-01105c22b75c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -484.83, + "y": -24.43, + "z": 248.91 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cdd", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cdd", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (75) [27950435-008f-4aa1-997c-e5d9378bb763]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -483.93, - "y": -24.43, - "z": 261.09 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d05", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d05", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (61) [328b4a63-1e22-49da-a20c-37e0839ba07c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -484.83, + "y": -24.43, + "z": 248.38 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cdf", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cdf", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (75) [fccd7519-7665-4dfe-9ce5-ed4c1f1bb4fb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -226.474, - "y": -39.791, - "z": 168.206 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d07", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d07", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (63) [73af8d95-c67d-4d74-88be-a7963d8b81e8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -868.042, + "y": -40.79, + "z": 8.493 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ce1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ce1", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (77) [149c022a-8455-4f3c-a02a-f72aef70e53f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -482.05, - "y": -24.45, - "z": 262.88 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d09", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d09", - "_tpl": "5d63d33b86f7746ea9275524", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (63) [e313e4c5-9456-4321-a89a-e751bd27e006]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -485.27, + "y": -24.43, + "z": 246.97 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ce3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ce3", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (77) [afde2bf9-f106-45bb-a152-ffaabab1b569]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -226.697, - "y": -39.789, - "z": 165.96 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d0b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d0b", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (64) [11f369a6-5b9b-4bad-bdf1-a1ecdd449647]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -477.69, + "y": -24.51, + "z": 246.97 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ce5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ce5", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (78) [c363c7b6-b7e1-4161-9b09-376084213e81]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -226.697, - "y": -39.789, - "z": 165.266 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d0d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d0d", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (64) [8e5a7693-701b-4ef0-9c3f-00d855c50524]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -867.828, + "y": -40.792, + "z": 9.511 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ce7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ce7", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (8) [3237bb25-1fc3-4697-a114-e2ca7d3055cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -518.571, - "y": -16.561, - "z": -321.941 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d0f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d0f", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (65) [1534b4c4-c04d-45f9-bd89-4659c0af1154]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -915.549, + "y": -57.25, + "z": 265.843 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ce9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ce9", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (80) [2267f047-1aab-4d61-a23e-daf16f4bc74c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -463.29, - "y": -24.65, - "z": 265.06 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d11", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d11", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (65) [86fc4828-ffa6-451f-8efd-ffd59bf54483]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -474.61, + "y": -24.54, + "z": 246.97 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ceb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ceb", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (81) [3c45a86f-c74e-4bcd-aff0-e24cd7742154]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -467.43, - "y": -24.61, - "z": 268.73 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d13", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d13", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (66) [3d53a7c8-c47c-4d36-a33d-cce58add18b2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -917.059, + "y": -57.234, + "z": 267.401 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ced", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ced", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (83) [ae201895-9f83-483f-b222-2d39675c5dbe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -485.3, - "y": -24.42, - "z": 271.92 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d15", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d15", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (67) [eece147a-a943-485f-967a-802cc7a4a7ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -916.314, + "y": -57.242, + "z": 268.728 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cef", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cef", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (9) [82159870-52c7-4362-8b81-2d174e943455]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -515.912, - "y": -16.588, - "z": -320.033 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d17", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d17", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (68) [8769b6eb-875e-4a7f-85b8-82e8828b00a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -786.938, + "y": -38.388, + "z": -5.998 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cf1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cf1", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (90) [8a606572-69e4-4cb8-87ed-1b31e4d9a013]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -495.21, - "y": -24.32, - "z": 257.765 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d19", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d19", - "_tpl": "590a391c86f774385a33c404", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (68) [d0f96b6c-5f1c-4137-9750-da03fa703439]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -461.87, + "y": -24.68, + "z": 244.05 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cf3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cf3", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (92) [dd8c00f3-9fd0-4b5f-8cf8-e7d7f1afb42d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -465.477, - "y": -23.971, - "z": 273.994 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d1b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d1b", - "_tpl": "590a3cd386f77436f20848cb", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (69) [34668932-11d1-45e2-adb2-891322e62a0d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -786.618, + "y": -38.967, + "z": -5.036 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cf5", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cf5", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (94) [b0d2d5fd-44e8-48fd-82ec-5f20bce28b4d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -463.854, - "y": -23.988, - "z": 273.867 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d1d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d1d", - "_tpl": "59faf98186f774067b6be103", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (69) [452848c9-69fe-4fd4-9045-8fa84a4f3159]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -461.66, + "y": -24.68, + "z": 243.69 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cf7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cf7", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "eletro tools (98) [65b62a64-3cb9-4370-86fa-e51bf97db912]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -465.598, - "y": -23.97, - "z": 269.797 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d1f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d1f", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (70) [6f7157c5-9a21-43e0-8f69-afb1f4ef2a18]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -235.204, + "y": -39.713, + "z": 161.898 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cf9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cf9", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (1) [b08f6e2f-370f-4982-8524-9f79b7b65710]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -627.875, - "y": -25.12, - "z": -235.905 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d21", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d21", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (71) [b22b1655-add1-482b-9510-9e03b7258e21]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -234.292, + "y": -39.723, + "z": 163.747 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cfb", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cfb", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (11) [55b4d8a5-d14b-4927-8dd4-6f37d7a266fd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -652.402, - "y": -24.7278, - "z": -237.551 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d23", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d23", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (72) [74ff7f3a-9f4f-46c7-9bd8-63e701cffef7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -233.3, + "y": -39.733, + "z": 165.175 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cfd", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cfd", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (13) [87126ff1-158e-4981-806d-6767ef9a0f4e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -653.857, - "y": -24.871, - "z": -237.269 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d25", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d25", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (73) [5bc9ee24-aad1-4a2d-aaf9-ecb398df8a6e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -233.3, + "y": -39.733, + "z": 166.024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051cff", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051cff", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (16) [feb93254-8734-404d-a958-74ae1a253dbd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -630.615, - "y": -28.543, - "z": -180.264 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d27", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d27", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (74) [754cb0de-5bc0-4568-b317-407e127fbadc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -485.48, + "y": -24.41, + "z": 255.58 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d01", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d01", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (19) [389420d5-7d91-43cb-ab73-9839f1f03389]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -635.232, - "y": -28.528, - "z": -179.023 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d29", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d29", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (74) [9c352e25-4b6b-4753-acfe-c2a9034b5107]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -236.332, + "y": -39.701, + "z": 165.266 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d03", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d03", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (20) [baef273d-146d-4b30-bb39-1fed38735423]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -635.503, - "y": -28.607, - "z": -178.834 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d2b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d2b", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (75) [27950435-008f-4aa1-997c-e5d9378bb763]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -483.93, + "y": -24.43, + "z": 261.09 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d05", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d05", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (21) [746c1458-461d-482d-8cdb-c17c34902880]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -635.869, - "y": -28.578, - "z": -178.95 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d2d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d2d", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (75) [fccd7519-7665-4dfe-9ce5-ed4c1f1bb4fb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -226.474, + "y": -39.791, + "z": 168.206 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d07", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d07", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (26) [14a3bf54-9aa3-425e-a649-e0ebcd5c22c7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -671.942, - "y": -25.456, - "z": -174.901 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d2f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d2f", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (77) [149c022a-8455-4f3c-a02a-f72aef70e53f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -482.05, + "y": -24.45, + "z": 262.88 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d09", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d09", + "_tpl": "5d63d33b86f7746ea9275524", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (29) [08f40d9e-b86c-4ee3-a4cf-28a2b6347465]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -914.974, - "y": -56.474, - "z": 256.276 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d31", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d31", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (77) [afde2bf9-f106-45bb-a152-ffaabab1b569]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -226.697, + "y": -39.789, + "z": 165.96 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d0b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d0b", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (6) [216fb0d2-5bb1-4c3b-8c42-adfdebfea9fb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -599.821, - "y": -28.726, - "z": -177.748 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d33", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d33", - "_tpl": "57513fcc24597720a31c09a6", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (78) [c363c7b6-b7e1-4161-9b09-376084213e81]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -226.697, + "y": -39.789, + "z": 165.266 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d0d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d0d", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink (7) [36b04b88-2151-47c8-963d-746f16ec240c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -599.587, - "y": -28.726, - "z": -177.911 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d35", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d35", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (8) [3237bb25-1fc3-4697-a114-e2ca7d3055cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -518.571, + "y": -16.561, + "z": -321.941 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d0f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d0f", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Fooddrink [5f1f9aea-c2fd-4819-94f5-ea89360697bc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -628.073, - "y": -25.12, - "z": -235.699 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d37", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d37", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (80) [2267f047-1aab-4d61-a23e-daf16f4bc74c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -463.29, + "y": -24.65, + "z": 265.06 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d11", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d11", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "foodzone (15) [e6acc09d-a10b-4d8c-b1fa-2f609018d2f0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 140.916977, - "y": -46.93, - "z": 101.220032 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d39", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d39", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (81) [3c45a86f-c74e-4bcd-aff0-e24cd7742154]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -467.43, + "y": -24.61, + "z": 268.73 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d13", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d13", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "foodzone (2) [c2a16562-c4a9-453c-81cd-e0fb076f269f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -339.468, - "y": -60.815, - "z": 508.79 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d3b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d3b", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (83) [ae201895-9f83-483f-b222-2d39675c5dbe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -485.3, + "y": -24.42, + "z": 271.92 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d15", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d15", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "foodzone (21) [4e46447d-30c4-4135-992f-a6f9295df4e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.137, - "y": -46.691, - "z": 116.673 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d3d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d3d", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (9) [82159870-52c7-4362-8b81-2d174e943455]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -515.912, + "y": -16.588, + "z": -320.033 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d17", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d17", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "foodzone (28) [50fbd9e9-3988-4a86-bb25-2fea21a41326]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 140.517609, - "y": -44.346, - "z": 122.75296 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d3f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d3f", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (90) [8a606572-69e4-4cb8-87ed-1b31e4d9a013]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -495.21, + "y": -24.32, + "z": 257.765 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d19", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d19", + "_tpl": "590a391c86f774385a33c404", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "foodzone (30) [bfe81acf-cd87-410e-afc6-146c163cee02]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.240112, - "y": -44.305, - "z": 129.070923 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d41", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d41", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (92) [dd8c00f3-9fd0-4b5f-8cf8-e7d7f1afb42d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -465.477, + "y": -23.971, + "z": 273.994 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d1b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d1b", + "_tpl": "590a3cd386f77436f20848cb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "foodzone (8) [bb3c49bc-bf38-4ceb-8ec0-5f312d69479a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 241.469009, - "y": -62.606, - "z": 436.999023 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d43", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d43", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "eletro tools (94) [b0d2d5fd-44e8-48fd-82ec-5f20bce28b4d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -463.854, + "y": -23.988, + "z": 273.867 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d1d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d1d", + "_tpl": "59faf98186f774067b6be103", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "giroscope216_4 [f6d66408-4950-4454-be18-0b4e0f9cc04d]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -181.3706, - "y": 0.2235, - "z": -80.57291 - }, - "Rotation": { - "x": 0.0, - "y": 77.26779, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d45", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d45", - "_tpl": "5b4c72fb86f7745cef1cffc5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "eletro tools (98) [65b62a64-3cb9-4370-86fa-e51bf97db912]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -465.598, + "y": -23.97, + "z": 269.797 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d1f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d1f", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "gun_world16 [2] (30) [7c1e2345-137b-425a-8969-5fa4fbc04af3]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -338.468018, - "y": -0.042, - "z": -77.853 - }, - "Rotation": { - "x": 8.53773656e-7, - "y": 337.601379, - "z": 99.3156357 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d46", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d46", - "_tpl": "56dee2bdd2720bc8328b4567" - }, - { - "_id": "66cbc20b9e95fdffc1051d47", - "_tpl": "56deec93d2720bec348b4568", - "parentId": "66cbc20b9e95fdffc1051d46", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc1051d48", - "_tpl": "56deed6ed2720b4c698b4583", - "parentId": "66cbc20b9e95fdffc1051d46", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051d49", - "_tpl": "56deee15d2720bee328b4567", - "parentId": "66cbc20b9e95fdffc1051d46", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051d4b", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "66cbc20b9e95fdffc1051d49", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 + ] + }, + { + "Id": "Fooddrink (1) [b08f6e2f-370f-4982-8524-9f79b7b65710]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -627.875, + "y": -25.12, + "z": -235.905 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d21", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d21", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051d4a", - "_tpl": "56083be64bdc2d20478b456f", - "parentId": "66cbc20b9e95fdffc1051d46", - "slotId": "mod_stock" - } - ] - }, - { - "Id": "gun_world22 [0] (60) [283c9111-c971-47ec-bf83-43bc64d37f05]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -276.511, - "y": 2.092, - "z": -99.2879944 - }, - "Rotation": { - "x": 294.664, - "y": 346.525879, - "z": 86.14288 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d4c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d4c", - "_tpl": "59d6088586f774275f37482f" - }, - { - "_id": "66cbc20b9e95fdffc1051d4d", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "66cbc20b9e95fdffc1051d4c", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051d4e", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "66cbc20b9e95fdffc1051d4d", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051d4f", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "66cbc20b9e95fdffc1051d4c", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051d50", - "_tpl": "59e62cc886f77440d40b52a1", - "parentId": "66cbc20b9e95fdffc1051d4c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051d51", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "66cbc20b9e95fdffc1051d4c", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051d52", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "66cbc20b9e95fdffc1051d4c", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051d53", - "_tpl": "59d6514b86f774171a068a08", - "parentId": "66cbc20b9e95fdffc1051d4c", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051d54", - "_tpl": "59d625f086f774661516605d", - "parentId": "66cbc20b9e95fdffc1051d4c", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051d55", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbc20b9e95fdffc1051d54", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 14.0 + ] + }, + { + "Id": "Fooddrink (11) [55b4d8a5-d14b-4927-8dd4-6f37d7a266fd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -652.402, + "y": -24.7278, + "z": -237.551 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d23", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d23", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "gun_world3 [2] (28) [9304c5ee-8d2d-415a-882d-ece62122d868]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -619.783, - "y": -23.574, - "z": -232.286 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d56", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d56", - "_tpl": "60339954d62c9b14ed777c06", - "upd": { - "FireMode": { - "FireMode": "single" + ] + }, + { + "Id": "Fooddrink (13) [87126ff1-158e-4981-806d-6767ef9a0f4e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -653.857, + "y": -24.871, + "z": -237.269 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d25", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d25", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66cbc20b9e95fdffc1051d57", - "_tpl": "602e71bd53a60014f9705bfa", - "parentId": "66cbc20b9e95fdffc1051d56", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051d58", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "66cbc20b9e95fdffc1051d56", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051d61", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbc20b9e95fdffc1051d58", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 22.0 + ] + }, + { + "Id": "Fooddrink (16) [feb93254-8734-404d-a958-74ae1a253dbd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -630.615, + "y": -28.543, + "z": -180.264 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d27", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d27", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051d59", - "_tpl": "602e63fb6335467b0c5ac94d", - "parentId": "66cbc20b9e95fdffc1051d56", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051d5a", - "_tpl": "603372b4da11d6478d5a07ff", - "parentId": "66cbc20b9e95fdffc1051d59", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc1051d5b", - "_tpl": "60337f5dce399e10262255d1", - "parentId": "66cbc20b9e95fdffc1051d5a", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051d5c", - "_tpl": "6034e3cb0ddce744014cb870", - "parentId": "66cbc20b9e95fdffc1051d59", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051d5d", - "_tpl": "602e3f1254072b51b239f713", - "parentId": "66cbc20b9e95fdffc1051d56", - "slotId": "mod_stock_001" - }, - { - "_id": "66cbc20b9e95fdffc1051d5e", - "_tpl": "602e620f9b513876d4338d9a", - "parentId": "66cbc20b9e95fdffc1051d5d", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbc20b9e95fdffc1051d5f", - "_tpl": "6033749e88382f4fab3fd2c5", - "parentId": "66cbc20b9e95fdffc1051d56", - "slotId": "mod_charge" - }, - { - "_id": "66cbc20b9e95fdffc1051d60", - "_tpl": "602f85fd9b513876d4338d9c", - "parentId": "66cbc20b9e95fdffc1051d56", - "slotId": "mod_tactical_000" - } - ] - }, - { - "Id": "gun_world3 [2] (32) [ae311720-e5a0-484c-8d41-733898c0f2b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -563.368, - "y": -42.313, - "z": 110.191 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d62", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d62", - "_tpl": "5ac4cd105acfc40016339859" - }, - { - "_id": "66cbc20b9e95fdffc1051d63", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbc20b9e95fdffc1051d62", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051d64", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbc20b9e95fdffc1051d63", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051d65", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "66cbc20b9e95fdffc1051d62", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051d66", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbc20b9e95fdffc1051d62", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051d67", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbc20b9e95fdffc1051d62", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051d68", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "66cbc20b9e95fdffc1051d62", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051d69", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbc20b9e95fdffc1051d62", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051d6a", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbc20b9e95fdffc1051d62", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051d6b", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbc20b9e95fdffc1051d6a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11.0 + ] + }, + { + "Id": "Fooddrink (19) [389420d5-7d91-43cb-ab73-9839f1f03389]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -635.232, + "y": -28.528, + "z": -179.023 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d29", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d29", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "gun_world3 [2] (32) [d4373c09-93ca-4e63-a6e9-a75d51ba07e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -537.54, - "y": -57.799, - "z": 470.737 - }, - "Rotation": { - "x": 0.5975943, - "y": 82.27421, - "z": 89.91893 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d6c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d6c", - "_tpl": "5aafa857e5b5b00018480968", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + ] + }, + { + "Id": "Fooddrink (20) [baef273d-146d-4b30-bb39-1fed38735423]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -635.503, + "y": -28.607, + "z": -178.834 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d2b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d2b", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66cbc20b9e95fdffc1051d6d", - "_tpl": "64b9e2037fdfb81df81e3c25", - "parentId": "66cbc20b9e95fdffc1051d6c", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051d74", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66cbc20b9e95fdffc1051d6d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 + ] + }, + { + "Id": "Fooddrink (21) [746c1458-461d-482d-8cdb-c17c34902880]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -635.869, + "y": -28.578, + "z": -178.95 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d2d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d2d", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051d6e", - "_tpl": "5aaf8e43e5b5b00015693246", - "parentId": "66cbc20b9e95fdffc1051d6c", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051d6f", - "_tpl": "5ab24ef9e5b5b00fe93c9209", - "parentId": "66cbc20b9e95fdffc1051d6e", - "slotId": "mod_mount" - }, - { - "_id": "66cbc20b9e95fdffc1051d70", - "_tpl": "5aaf9d53e5b5b00015042a52", - "parentId": "66cbc20b9e95fdffc1051d6c", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc1051d71", - "_tpl": "5aafa1c2e5b5b00015042a56", - "parentId": "66cbc20b9e95fdffc1051d70", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051d72", - "_tpl": "5aafa49ae5b5b00015042a58", - "parentId": "66cbc20b9e95fdffc1051d71", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbc20b9e95fdffc1051d73", - "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "66cbc20b9e95fdffc1051d6c", - "slotId": "mod_sight_rear" - } - ] - }, - { - "Id": "gun_world3 [2] (33) [9366cd01-79da-4dc4-b816-e11118e7e2fd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -63.32, - "y": -58.008, - "z": 396.328 - }, - "Rotation": { - "x": 359.443634, - "y": 292.694672, - "z": 89.76732 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d75", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d75", - "_tpl": "5ac66d2e5acfc43b321d4b53" - }, - { - "_id": "66cbc20b9e95fdffc1051d76", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbc20b9e95fdffc1051d75", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051d77", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbc20b9e95fdffc1051d76", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051d78", - "_tpl": "5ac72e7d5acfc40016339a02", - "parentId": "66cbc20b9e95fdffc1051d75", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051d79", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbc20b9e95fdffc1051d75", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051d7a", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbc20b9e95fdffc1051d75", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051d7b", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "66cbc20b9e95fdffc1051d75", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051d7c", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbc20b9e95fdffc1051d75", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051d7d", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66cbc20b9e95fdffc1051d75", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051d7e", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbc20b9e95fdffc1051d7d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30.0 + ] + }, + { + "Id": "Fooddrink (26) [14a3bf54-9aa3-425e-a649-e0ebcd5c22c7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -671.942, + "y": -25.456, + "z": -174.901 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d2f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d2f", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "gun_world3 [2] (37) [685e468a-e90a-4077-9886-a4f09a44f45a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 279.627, - "y": -57.833, - "z": 298.109 - }, - "Rotation": { - "x": 359.403076, - "y": 261.807678, - "z": 90.08593 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d7f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d7f", - "_tpl": "60339954d62c9b14ed777c06", - "upd": { - "FireMode": { - "FireMode": "single" + ] + }, + { + "Id": "Fooddrink (29) [08f40d9e-b86c-4ee3-a4cf-28a2b6347465]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -914.974, + "y": -56.474, + "z": 256.276 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d31", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d31", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66cbc20b9e95fdffc1051d80", - "_tpl": "602e71bd53a60014f9705bfa", - "parentId": "66cbc20b9e95fdffc1051d7f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051d81", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "66cbc20b9e95fdffc1051d7f", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051d8a", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbc20b9e95fdffc1051d81", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 22.0 + ] + }, + { + "Id": "Fooddrink (6) [216fb0d2-5bb1-4c3b-8c42-adfdebfea9fb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -599.821, + "y": -28.726, + "z": -177.748 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d33", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d33", + "_tpl": "57513fcc24597720a31c09a6", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051d82", - "_tpl": "602e63fb6335467b0c5ac94d", - "parentId": "66cbc20b9e95fdffc1051d7f", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051d83", - "_tpl": "603372b4da11d6478d5a07ff", - "parentId": "66cbc20b9e95fdffc1051d82", - "slotId": "mod_barrel" - }, - { - "_id": "66cbc20b9e95fdffc1051d84", - "_tpl": "60337f5dce399e10262255d1", - "parentId": "66cbc20b9e95fdffc1051d83", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051d85", - "_tpl": "6034e3cb0ddce744014cb870", - "parentId": "66cbc20b9e95fdffc1051d82", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051d86", - "_tpl": "602e3f1254072b51b239f713", - "parentId": "66cbc20b9e95fdffc1051d7f", - "slotId": "mod_stock_001" - }, - { - "_id": "66cbc20b9e95fdffc1051d87", - "_tpl": "602e620f9b513876d4338d9a", - "parentId": "66cbc20b9e95fdffc1051d86", - "slotId": "mod_stock_000" - }, - { - "_id": "66cbc20b9e95fdffc1051d88", - "_tpl": "6033749e88382f4fab3fd2c5", - "parentId": "66cbc20b9e95fdffc1051d7f", - "slotId": "mod_charge" - }, - { - "_id": "66cbc20b9e95fdffc1051d89", - "_tpl": "602f85fd9b513876d4338d9c", - "parentId": "66cbc20b9e95fdffc1051d7f", - "slotId": "mod_tactical_000" - } - ] - }, - { - "Id": "gun_world32 [2] (33) [46a66602-ddb8-4b8c-9a02-0d4a38084702]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -500.956, - "y": -25.244, - "z": 246.934 - }, - "Rotation": { - "x": -5.122642e-6, - "y": 302.818756, - "z": 270.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d8b", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d8b", - "_tpl": "5ac66d2e5acfc43b321d4b53" - }, - { - "_id": "66cbc20b9e95fdffc1051d8c", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbc20b9e95fdffc1051d8b", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051d8d", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbc20b9e95fdffc1051d8c", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051d8e", - "_tpl": "5ac72e7d5acfc40016339a02", - "parentId": "66cbc20b9e95fdffc1051d8b", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051d8f", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbc20b9e95fdffc1051d8b", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051d90", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbc20b9e95fdffc1051d8b", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051d91", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "66cbc20b9e95fdffc1051d8b", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051d92", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbc20b9e95fdffc1051d8b", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051d93", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66cbc20b9e95fdffc1051d8b", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051d94", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbc20b9e95fdffc1051d93", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 22.0 + ] + }, + { + "Id": "Fooddrink (7) [36b04b88-2151-47c8-963d-746f16ec240c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -599.587, + "y": -28.726, + "z": -177.911 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d35", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d35", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "gun_world34 [2] (34) [4dd64ad2-093c-45f7-b18c-d8026449d275]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -278.504028, - "y": -0.844, - "z": -86.414 - }, - "Rotation": { - "x": 285.430359, - "y": 359.7044, - "z": 269.960571 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d95", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d95", - "_tpl": "59d6088586f774275f37482f" - }, - { - "_id": "66cbc20b9e95fdffc1051d96", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "66cbc20b9e95fdffc1051d95", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051d97", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "66cbc20b9e95fdffc1051d96", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051d98", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "66cbc20b9e95fdffc1051d95", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051d99", - "_tpl": "59e62cc886f77440d40b52a1", - "parentId": "66cbc20b9e95fdffc1051d95", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051d9a", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "66cbc20b9e95fdffc1051d95", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051d9b", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "66cbc20b9e95fdffc1051d95", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051d9c", - "_tpl": "59d6514b86f774171a068a08", - "parentId": "66cbc20b9e95fdffc1051d95", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051d9d", - "_tpl": "59d625f086f774661516605d", - "parentId": "66cbc20b9e95fdffc1051d95", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051d9e", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbc20b9e95fdffc1051d9d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 23.0 + ] + }, + { + "Id": "Fooddrink [5f1f9aea-c2fd-4819-94f5-ea89360697bc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -628.073, + "y": -25.12, + "z": -235.699 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d37", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d37", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "gun_world4 [2] (29) [87105b2c-e4a5-43ad-a99b-8a2ee4eeb929]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -521.761, - "y": -25.859, - "z": 231.109 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 268.2641 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051d9f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051d9f", - "_tpl": "5ac66d725acfc43b321d4b60" - }, - { - "_id": "66cbc20b9e95fdffc1051da0", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbc20b9e95fdffc1051d9f", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051da1", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbc20b9e95fdffc1051da0", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051da2", - "_tpl": "5ac72e895acfc43b321d4bd5", - "parentId": "66cbc20b9e95fdffc1051d9f", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051da3", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbc20b9e95fdffc1051d9f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051da4", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbc20b9e95fdffc1051d9f", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051da5", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbc20b9e95fdffc1051d9f", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051da6", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbc20b9e95fdffc1051d9f", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051da7", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66cbc20b9e95fdffc1051d9f", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051da8", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbc20b9e95fdffc1051da7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 27.0 + ] + }, + { + "Id": "foodzone (15) [e6acc09d-a10b-4d8c-b1fa-2f609018d2f0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 140.916977, + "y": -46.93, + "z": 101.220032 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d39", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d39", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "gun_world44 [2] (36) [92027229-a962-40c5-8de0-e7eb222eefd2]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -516.58374, - "y": -21.5, - "z": 265.932 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 90.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051da9", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051da9", - "_tpl": "5644bd2b4bdc2d3b4c8b4572", - "upd": { - "FireMode": { - "FireMode": "single" + ] + }, + { + "Id": "foodzone (2) [c2a16562-c4a9-453c-81cd-e0fb076f269f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -339.468, + "y": -60.815, + "z": 508.79 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d3b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d3b", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66cbc20b9e95fdffc1051daa", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbc20b9e95fdffc1051da9", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051dab", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "66cbc20b9e95fdffc1051daa", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051dac", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "66cbc20b9e95fdffc1051da9", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051dad", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "66cbc20b9e95fdffc1051da9", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051dae", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "66cbc20b9e95fdffc1051da9", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051daf", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "66cbc20b9e95fdffc1051da9", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051db0", - "_tpl": "5649b1c04bdc2d16268b457c", - "parentId": "66cbc20b9e95fdffc1051da9", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051db1", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbc20b9e95fdffc1051da9", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051db2", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbc20b9e95fdffc1051db1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 28.0 + ] + }, + { + "Id": "foodzone (21) [4e46447d-30c4-4135-992f-a6f9295df4e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.137, + "y": -46.691, + "z": 116.673 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d3d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d3d", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "GunsafeSpawn 1 (1)(Clone) [a69587dd-05b0-42eb-8949-c346ce814a7a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -169.520081, - "y": -0.6648238, - "z": -90.3304 - }, - "Rotation": { - "x": 273.150024, - "y": 103.78257, - "z": 166.6091 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051db4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051db4", - "_tpl": "57616a9e2459773c7a400234", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "foodzone (28) [50fbd9e9-3988-4a86-bb25-2fea21a41326]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 140.517609, + "y": -44.346, + "z": 122.75296 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d3f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d3f", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20b9e95fdffc1051db5", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66cbc20b9e95fdffc1051db4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 + ] + }, + { + "Id": "foodzone (30) [bfe81acf-cd87-410e-afc6-146c163cee02]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.240112, + "y": -44.305, + "z": 129.070923 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d41", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d41", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "GunsafeSpawn 1 (3)(Clone) [c1e5e530-49e7-42ff-aa5d-87e718c90a2b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -156.791992, - "y": 2.921681, - "z": -78.2560043 - }, - "Rotation": { - "x": 270.0, - "y": 320.101929, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051db7", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051db7", - "_tpl": "587df583245977373c4f1129", - "upd": { - "StackObjectsCount": 1 + { + "Id": "foodzone (8) [bb3c49bc-bf38-4ceb-8ec0-5f312d69479a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 241.469009, + "y": -62.606, + "z": 436.999023 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d43", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d43", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "giroscope216_4 [f6d66408-4950-4454-be18-0b4e0f9cc04d]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -181.3706, + "y": 0.2235, + "z": -80.57291 + }, + "Rotation": { + "x": 0.0, + "y": 77.26779, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051db8", - "_tpl": "59e4cf5286f7741778269d8a", - "parentId": "66cbc20b9e95fdffc1051db7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d45", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d45", + "_tpl": "5b4c72fb86f7745cef1cffc5", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "gun_world16 [2] (30) [7c1e2345-137b-425a-8969-5fa4fbc04af3]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -338.468018, + "y": -0.042, + "z": -77.853 + }, + "Rotation": { + "x": 8.53773656e-7, + "y": 337.601379, + "z": 99.3156357 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d46", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d46", + "_tpl": "56dee2bdd2720bc8328b4567" + }, + { + "_id": "66cbc20b9e95fdffc1051d47", + "_tpl": "56deec93d2720bec348b4568", + "parentId": "66cbc20b9e95fdffc1051d46", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc1051d48", + "_tpl": "56deed6ed2720b4c698b4583", + "parentId": "66cbc20b9e95fdffc1051d46", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051d49", + "_tpl": "56deee15d2720bee328b4567", + "parentId": "66cbc20b9e95fdffc1051d46", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051d4b", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "66cbc20b9e95fdffc1051d49", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051d4a", + "_tpl": "56083be64bdc2d20478b456f", + "parentId": "66cbc20b9e95fdffc1051d46", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "gun_world22 [0] (60) [283c9111-c971-47ec-bf83-43bc64d37f05]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -276.511, + "y": 2.092, + "z": -99.2879944 + }, + "Rotation": { + "x": 294.664, + "y": 346.525879, + "z": 86.14288 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d4c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d4c", + "_tpl": "59d6088586f774275f37482f" + }, + { + "_id": "66cbc20b9e95fdffc1051d4d", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "66cbc20b9e95fdffc1051d4c", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051d4e", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "66cbc20b9e95fdffc1051d4d", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051d4f", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "66cbc20b9e95fdffc1051d4c", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051d50", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "66cbc20b9e95fdffc1051d4c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051d51", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "66cbc20b9e95fdffc1051d4c", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051d52", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "66cbc20b9e95fdffc1051d4c", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051d53", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "66cbc20b9e95fdffc1051d4c", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051d54", + "_tpl": "59d625f086f774661516605d", + "parentId": "66cbc20b9e95fdffc1051d4c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051d55", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbc20b9e95fdffc1051d54", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 14.0 + } + } + ] + }, + { + "Id": "gun_world3 [2] (28) [9304c5ee-8d2d-415a-882d-ece62122d868]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -619.783, + "y": -23.574, + "z": -232.286 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d56", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d56", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051d57", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "66cbc20b9e95fdffc1051d56", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051d58", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "66cbc20b9e95fdffc1051d56", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051d61", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbc20b9e95fdffc1051d58", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 22.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051d59", + "_tpl": "602e63fb6335467b0c5ac94d", + "parentId": "66cbc20b9e95fdffc1051d56", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051d5a", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "66cbc20b9e95fdffc1051d59", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc1051d5b", + "_tpl": "60337f5dce399e10262255d1", + "parentId": "66cbc20b9e95fdffc1051d5a", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051d5c", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "66cbc20b9e95fdffc1051d59", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051d5d", + "_tpl": "602e3f1254072b51b239f713", + "parentId": "66cbc20b9e95fdffc1051d56", + "slotId": "mod_stock_001" + }, + { + "_id": "66cbc20b9e95fdffc1051d5e", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "66cbc20b9e95fdffc1051d5d", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbc20b9e95fdffc1051d5f", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "66cbc20b9e95fdffc1051d56", + "slotId": "mod_charge" + }, + { + "_id": "66cbc20b9e95fdffc1051d60", + "_tpl": "602f85fd9b513876d4338d9c", + "parentId": "66cbc20b9e95fdffc1051d56", + "slotId": "mod_tactical_000" + } + ] + }, + { + "Id": "gun_world3 [2] (32) [ae311720-e5a0-484c-8d41-733898c0f2b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -563.368, + "y": -42.313, + "z": 110.191 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d62", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d62", + "_tpl": "5ac4cd105acfc40016339859" + }, + { + "_id": "66cbc20b9e95fdffc1051d63", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbc20b9e95fdffc1051d62", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051d64", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbc20b9e95fdffc1051d63", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051d65", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "66cbc20b9e95fdffc1051d62", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051d66", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbc20b9e95fdffc1051d62", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051d67", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbc20b9e95fdffc1051d62", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051d68", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "66cbc20b9e95fdffc1051d62", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051d69", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbc20b9e95fdffc1051d62", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051d6a", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbc20b9e95fdffc1051d62", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051d6b", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbc20b9e95fdffc1051d6a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11.0 + } + } + ] + }, + { + "Id": "gun_world3 [2] (32) [d4373c09-93ca-4e63-a6e9-a75d51ba07e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -537.54, + "y": -57.799, + "z": 470.737 + }, + "Rotation": { + "x": 0.5975943, + "y": 82.27421, + "z": 89.91893 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d6c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d6c", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051d6d", + "_tpl": "64b9e2037fdfb81df81e3c25", + "parentId": "66cbc20b9e95fdffc1051d6c", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051d74", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66cbc20b9e95fdffc1051d6d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051d6e", + "_tpl": "5aaf8e43e5b5b00015693246", + "parentId": "66cbc20b9e95fdffc1051d6c", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051d6f", + "_tpl": "5ab24ef9e5b5b00fe93c9209", + "parentId": "66cbc20b9e95fdffc1051d6e", + "slotId": "mod_mount" + }, + { + "_id": "66cbc20b9e95fdffc1051d70", + "_tpl": "5aaf9d53e5b5b00015042a52", + "parentId": "66cbc20b9e95fdffc1051d6c", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc1051d71", + "_tpl": "5aafa1c2e5b5b00015042a56", + "parentId": "66cbc20b9e95fdffc1051d70", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051d72", + "_tpl": "5aafa49ae5b5b00015042a58", + "parentId": "66cbc20b9e95fdffc1051d71", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbc20b9e95fdffc1051d73", + "_tpl": "5abcbb20d8ce87001773e258", + "parentId": "66cbc20b9e95fdffc1051d6c", + "slotId": "mod_sight_rear" + } + ] + }, + { + "Id": "gun_world3 [2] (33) [9366cd01-79da-4dc4-b816-e11118e7e2fd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -63.32, + "y": -58.008, + "z": 396.328 + }, + "Rotation": { + "x": 359.443634, + "y": 292.694672, + "z": 89.76732 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d75", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d75", + "_tpl": "5ac66d2e5acfc43b321d4b53" + }, + { + "_id": "66cbc20b9e95fdffc1051d76", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbc20b9e95fdffc1051d75", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051d77", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbc20b9e95fdffc1051d76", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051d78", + "_tpl": "5ac72e7d5acfc40016339a02", + "parentId": "66cbc20b9e95fdffc1051d75", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051d79", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbc20b9e95fdffc1051d75", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051d7a", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbc20b9e95fdffc1051d75", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051d7b", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "66cbc20b9e95fdffc1051d75", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051d7c", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbc20b9e95fdffc1051d75", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051d7d", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66cbc20b9e95fdffc1051d75", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051d7e", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbc20b9e95fdffc1051d7d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30.0 + } } - } - ] - }, - { - "Id": "GunsafeSpawn 1 (5)(Clone) [c138beca-3505-417c-a899-d5940463c6ef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 90.75394, - "y": -44.51267, - "z": 112.177284 - }, - "Rotation": { - "x": 270.0, - "y": 226.937164, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dba", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dba", - "_tpl": "55d485804bdc2d8c2f8b456b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051dbb", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "66cbc20b9e95fdffc1051dba", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 1 + { + "Id": "gun_world3 [2] (37) [685e468a-e90a-4077-9886-a4f09a44f45a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 279.627, + "y": -57.833, + "z": 298.109 + }, + "Rotation": { + "x": 359.403076, + "y": 261.807678, + "z": 90.08593 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d7f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d7f", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051d80", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "66cbc20b9e95fdffc1051d7f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051d81", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "66cbc20b9e95fdffc1051d7f", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051d8a", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbc20b9e95fdffc1051d81", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 22.0 + } + }, + { + "_id": "66cbc20b9e95fdffc1051d82", + "_tpl": "602e63fb6335467b0c5ac94d", + "parentId": "66cbc20b9e95fdffc1051d7f", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051d83", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "66cbc20b9e95fdffc1051d82", + "slotId": "mod_barrel" + }, + { + "_id": "66cbc20b9e95fdffc1051d84", + "_tpl": "60337f5dce399e10262255d1", + "parentId": "66cbc20b9e95fdffc1051d83", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051d85", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "66cbc20b9e95fdffc1051d82", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051d86", + "_tpl": "602e3f1254072b51b239f713", + "parentId": "66cbc20b9e95fdffc1051d7f", + "slotId": "mod_stock_001" + }, + { + "_id": "66cbc20b9e95fdffc1051d87", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "66cbc20b9e95fdffc1051d86", + "slotId": "mod_stock_000" + }, + { + "_id": "66cbc20b9e95fdffc1051d88", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "66cbc20b9e95fdffc1051d7f", + "slotId": "mod_charge" + }, + { + "_id": "66cbc20b9e95fdffc1051d89", + "_tpl": "602f85fd9b513876d4338d9c", + "parentId": "66cbc20b9e95fdffc1051d7f", + "slotId": "mod_tactical_000" } - } - ] - }, - { - "Id": "GunsafeSpawn 1 (6)(Clone) [58ac4387-420b-442d-a2b3-4481f33f3374]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -201.492889, - "y": -2.94711757, - "z": -81.19629 - }, - "Rotation": { - "x": 270.0, - "y": 159.244781, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dbd", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dbd", - "_tpl": "57616a9e2459773c7a400234", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051dbe", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "66cbc20b9e95fdffc1051dbd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4 + { + "Id": "gun_world32 [2] (33) [46a66602-ddb8-4b8c-9a02-0d4a38084702]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -500.956, + "y": -25.244, + "z": 246.934 + }, + "Rotation": { + "x": -5.122642e-6, + "y": 302.818756, + "z": 270.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d8b", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d8b", + "_tpl": "5ac66d2e5acfc43b321d4b53" + }, + { + "_id": "66cbc20b9e95fdffc1051d8c", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbc20b9e95fdffc1051d8b", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051d8d", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbc20b9e95fdffc1051d8c", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051d8e", + "_tpl": "5ac72e7d5acfc40016339a02", + "parentId": "66cbc20b9e95fdffc1051d8b", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051d8f", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbc20b9e95fdffc1051d8b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051d90", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbc20b9e95fdffc1051d8b", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051d91", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "66cbc20b9e95fdffc1051d8b", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051d92", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbc20b9e95fdffc1051d8b", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051d93", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66cbc20b9e95fdffc1051d8b", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051d94", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbc20b9e95fdffc1051d93", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 22.0 + } } - } - ] - }, - { - "Id": "GunsafeSpawn 1 (6)(Clone) [d93472b4-b3e0-45e4-a297-f443c848cbf4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -200.957581, - "y": -2.94711733, - "z": -81.19009 - }, - "Rotation": { - "x": 270.0, - "y": 163.586655, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dc0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dc0", - "_tpl": "587df583245977373c4f1129", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051dc1", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbc20b9e95fdffc1051dc0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6 + { + "Id": "gun_world34 [2] (34) [4dd64ad2-093c-45f7-b18c-d8026449d275]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -278.504028, + "y": -0.844, + "z": -86.414 + }, + "Rotation": { + "x": 285.430359, + "y": 359.7044, + "z": 269.960571 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d95", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d95", + "_tpl": "59d6088586f774275f37482f" + }, + { + "_id": "66cbc20b9e95fdffc1051d96", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "66cbc20b9e95fdffc1051d95", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051d97", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "66cbc20b9e95fdffc1051d96", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051d98", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "66cbc20b9e95fdffc1051d95", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051d99", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "66cbc20b9e95fdffc1051d95", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051d9a", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "66cbc20b9e95fdffc1051d95", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051d9b", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "66cbc20b9e95fdffc1051d95", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051d9c", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "66cbc20b9e95fdffc1051d95", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051d9d", + "_tpl": "59d625f086f774661516605d", + "parentId": "66cbc20b9e95fdffc1051d95", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051d9e", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbc20b9e95fdffc1051d9d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 23.0 + } } - } - ] - }, - { - "Id": "GunsafeSpawn 1 (7)(Clone) [5ed4a43e-8d46-439a-8b1c-c22d9cab1a5b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 135.815857, - "y": -44.994545, - "z": 130.933426 - }, - "Rotation": { - "x": 270.0, - "y": 39.6233559, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dc3", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dc3", - "_tpl": "587df583245977373c4f1129", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051dc4", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66cbc20b9e95fdffc1051dc3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7 + { + "Id": "gun_world4 [2] (29) [87105b2c-e4a5-43ad-a99b-8a2ee4eeb929]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -521.761, + "y": -25.859, + "z": 231.109 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 268.2641 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051d9f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051d9f", + "_tpl": "5ac66d725acfc43b321d4b60" + }, + { + "_id": "66cbc20b9e95fdffc1051da0", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbc20b9e95fdffc1051d9f", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051da1", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbc20b9e95fdffc1051da0", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051da2", + "_tpl": "5ac72e895acfc43b321d4bd5", + "parentId": "66cbc20b9e95fdffc1051d9f", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051da3", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbc20b9e95fdffc1051d9f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051da4", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbc20b9e95fdffc1051d9f", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051da5", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbc20b9e95fdffc1051d9f", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051da6", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbc20b9e95fdffc1051d9f", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051da7", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66cbc20b9e95fdffc1051d9f", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051da8", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbc20b9e95fdffc1051da7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 27.0 + } } - } - ] - }, - { - "Id": "GunsafeSpawn 1 (7)(Clone) [da7336a0-7f85-4236-a708-4452f624019e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -201.496048, - "y": -3.39111781, - "z": -81.319664 - }, - "Rotation": { - "x": 270.0, - "y": 212.779739, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dc6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dc6", - "_tpl": "5888988e24597752fe43a6fa", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbc20b9e95fdffc1051dc7", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbc20b9e95fdffc1051dc6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 + { + "Id": "gun_world44 [2] (36) [92027229-a962-40c5-8de0-e7eb222eefd2]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -516.58374, + "y": -21.5, + "z": 265.932 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 90.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051da9", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051da9", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051daa", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbc20b9e95fdffc1051da9", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051dab", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "66cbc20b9e95fdffc1051daa", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051dac", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "66cbc20b9e95fdffc1051da9", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051dad", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "66cbc20b9e95fdffc1051da9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051dae", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "66cbc20b9e95fdffc1051da9", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051daf", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "66cbc20b9e95fdffc1051da9", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051db0", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "66cbc20b9e95fdffc1051da9", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051db1", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbc20b9e95fdffc1051da9", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051db2", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbc20b9e95fdffc1051db1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 28.0 + } } - } - ] - }, - { - "Id": "GunsafeSpawn 1(Clone) [c0620d93-2916-4a37-abe8-db3259b0f50e]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -156.693, - "y": 2.37068057, - "z": -78.44601 - }, - "Rotation": { - "x": 270.0, - "y": 270.000061, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dc8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dc8", - "_tpl": "576165642459773c7a400233" - }, - { - "_id": "66cbc20b9e95fdffc1051dc9", - "_tpl": "576169e62459773c69055191", - "parentId": "66cbc20b9e95fdffc1051dc8", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051dca", - "_tpl": "576167ab2459773cad038c43", - "parentId": "66cbc20b9e95fdffc1051dc8", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051dcb", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbc20b9e95fdffc1051dc8", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051dcc", - "_tpl": "57616c112459773cce774d66", - "parentId": "66cbc20b9e95fdffc1051dc8", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051dcd", - "_tpl": "57a9b9ce2459770ee926038d", - "parentId": "66cbc20b9e95fdffc1051dc8", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051dce", - "_tpl": "57616ca52459773c69055192", - "parentId": "66cbc20b9e95fdffc1051dc8", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051dcf", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "66cbc20b9e95fdffc1051dc8", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051dd0", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "66cbc20b9e95fdffc1051dcf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 - } - } - ] - }, - { - "Id": "GunsafeSpawn 4(Clone) [9196b60f-4782-461a-a7bc-8f373e320999]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -349.857574, - "y": -0.514892042, - "z": -92.36895 - }, - "Rotation": { - "x": 270.881165, - "y": -0.000665696571, - "z": 89.56464 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dd1", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dd1", - "_tpl": "59e6687d86f77411d949b251", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "Id": "GunsafeSpawn 1 (1)(Clone) [a69587dd-05b0-42eb-8949-c346ce814a7a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -169.520081, + "y": -0.6648238, + "z": -90.3304 + }, + "Rotation": { + "x": 273.150024, + "y": 103.78257, + "z": 166.6091 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051db4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051db4", + "_tpl": "57616a9e2459773c7a400234", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051db5", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66cbc20b9e95fdffc1051db4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 } } + ] + }, + { + "Id": "GunsafeSpawn 1 (3)(Clone) [c1e5e530-49e7-42ff-aa5d-87e718c90a2b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -156.791992, + "y": 2.921681, + "z": -78.2560043 + }, + "Rotation": { + "x": 270.0, + "y": 320.101929, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051dd2", - "_tpl": "59e649f986f77411d949b246", - "parentId": "66cbc20b9e95fdffc1051dd1", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbc20b9e95fdffc1051dd3", - "_tpl": "59e898ee86f77427614bd225", - "parentId": "66cbc20b9e95fdffc1051dd2", - "slotId": "mod_handguard" - }, - { - "_id": "66cbc20b9e95fdffc1051dd4", - "_tpl": "59e8a00d86f7742ad93b569c", - "parentId": "66cbc20b9e95fdffc1051dd1", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbc20b9e95fdffc1051dd5", - "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "66cbc20b9e95fdffc1051dd1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbc20b9e95fdffc1051dd6", - "_tpl": "59e6449086f7746c9f75e822", - "parentId": "66cbc20b9e95fdffc1051dd1", - "slotId": "mod_reciever" - }, - { - "_id": "66cbc20b9e95fdffc1051dd7", - "_tpl": "59e8977386f77415a553c453", - "parentId": "66cbc20b9e95fdffc1051dd1", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbc20b9e95fdffc1051dd8", - "_tpl": "59e89d0986f77427600d226e", - "parentId": "66cbc20b9e95fdffc1051dd1", - "slotId": "mod_stock" - }, - { - "_id": "66cbc20b9e95fdffc1051dd9", - "_tpl": "5b1fd4e35acfc40018633c39", - "parentId": "66cbc20b9e95fdffc1051dd1", - "slotId": "mod_magazine" - }, - { - "_id": "66cbc20b9e95fdffc1051dda", - "_tpl": "59e6542b86f77411dc52a77a", - "parentId": "66cbc20b9e95fdffc1051dd9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 - } - } - ] - }, - { - "Id": "Hyundai_Bogdan_A202_open [0] 0(Clone) [066b5b41-d81c-45d2-b334-74d4bbfb6aa1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 79.417, - "y": -57.923, - "z": 345.187 - }, - "Rotation": { - "x": -0.000134789516, - "y": 322.347565, - "z": 183.296112 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051ddc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051ddc", - "_tpl": "61bf7b6302b3924be92fa8c3", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Hyundai_Bogdan_A202_open [0] 0(Clone) [b8fc79f3-0ad3-43ef-87db-37d72f1f77fd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 305.728, - "y": -57.836, - "z": 312.244 - }, - "Rotation": { - "x": -0.000139485273, - "y": 312.870667, - "z": 183.296112 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dde", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dde", - "_tpl": "59e35abd86f7741778269d82", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051db7", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051db7", + "_tpl": "587df583245977373c4f1129", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051db8", + "_tpl": "59e4cf5286f7741778269d8a", + "parentId": "66cbc20b9e95fdffc1051db7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13 + } } - } - ] - }, - { - "Id": "item_barter_electr_hdd_NosQuests_quest [ead9b4b7-be4b-4213-b959-dd8c0b187d01]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 356.915771, - "y": -53.751503, - "z": -102.371796 - }, - "Rotation": { - "x": 270.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "PickPoint1", - "Weight": 2, - "Position": { - "x": 323.6604, - "y": -54.3173981, - "z": -81.6693 + { + "Id": "GunsafeSpawn 1 (5)(Clone) [c138beca-3505-417c-a899-d5940463c6ef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 90.75394, + "y": -44.51267, + "z": 112.177284 + }, + "Rotation": { + "x": 270.0, + "y": 226.937164, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dba", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dba", + "_tpl": "55d485804bdc2d8c2f8b456b", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 + { + "_id": "66cbc20b9e95fdffc1051dbb", + "_tpl": "5d6e68c4a4b9361b93413f79", + "parentId": "66cbc20b9e95fdffc1051dba", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "GunsafeSpawn 1 (6)(Clone) [58ac4387-420b-442d-a2b3-4481f33f3374]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -201.492889, + "y": -2.94711757, + "z": -81.19629 + }, + "Rotation": { + "x": 270.0, + "y": 159.244781, + "z": 0.0 }, - { - "Name": "PickPoint2", - "Weight": 2, - "Position": { - "x": 290.540771, - "y": -49.7784958, - "z": -40.20999 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dbd", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dbd", + "_tpl": "57616a9e2459773c7a400234", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 + { + "_id": "66cbc20b9e95fdffc1051dbe", + "_tpl": "5d6e6891a4b9361bd473feea", + "parentId": "66cbc20b9e95fdffc1051dbd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4 + } } + ] + }, + { + "Id": "GunsafeSpawn 1 (6)(Clone) [d93472b4-b3e0-45e4-a297-f443c848cbf4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -200.957581, + "y": -2.94711733, + "z": -81.19009 + }, + "Rotation": { + "x": 270.0, + "y": 163.586655, + "z": 0.0 }, - { - "Name": "PickPoint3", - "Weight": 2, - "Position": { - "x": 290.490967, - "y": -50.6099968, - "z": -38.9839935 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dc0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dc0", + "_tpl": "587df583245977373c4f1129", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 + { + "_id": "66cbc20b9e95fdffc1051dc1", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbc20b9e95fdffc1051dc0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6 + } } + ] + }, + { + "Id": "GunsafeSpawn 1 (7)(Clone) [5ed4a43e-8d46-439a-8b1c-c22d9cab1a5b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 135.815857, + "y": -44.994545, + "z": 130.933426 + }, + "Rotation": { + "x": 270.0, + "y": 39.6233559, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 2, - "Position": { - "x": 356.915771, - "y": -53.751503, - "z": -102.371796 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dc3", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dc3", + "_tpl": "587df583245977373c4f1129", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 + { + "_id": "66cbc20b9e95fdffc1051dc4", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66cbc20b9e95fdffc1051dc3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7 + } } + ] + }, + { + "Id": "GunsafeSpawn 1 (7)(Clone) [da7336a0-7f85-4236-a708-4452f624019e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -201.496048, + "y": -3.39111781, + "z": -81.319664 + }, + "Rotation": { + "x": 270.0, + "y": 212.779739, + "z": 0.0 }, - { - "Name": "groupPoint[4]", - "Weight": 2, - "Position": { - "x": 357.519043, - "y": -54.2243042, - "z": -108.451096 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dc6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dc6", + "_tpl": "5888988e24597752fe43a6fa", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 + { + "_id": "66cbc20b9e95fdffc1051dc7", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbc20b9e95fdffc1051dc6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } } + ] + }, + { + "Id": "GunsafeSpawn 1(Clone) [c0620d93-2916-4a37-abe8-db3259b0f50e]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -156.693, + "y": 2.37068057, + "z": -78.44601 + }, + "Rotation": { + "x": 270.0, + "y": 270.000061, + "z": 0.0 }, - { - "Name": "groupPoint[5]", - "Weight": 2, - "Position": { - "x": 329.957275, - "y": -54.41971, - "z": -143.7411 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dc8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dc8", + "_tpl": "576165642459773c7a400233" }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[6]", - "Weight": 2, - "Position": { - "x": 324.361816, - "y": -53.7552071, - "z": -145.425659 + { + "_id": "66cbc20b9e95fdffc1051dc9", + "_tpl": "576169e62459773c69055191", + "parentId": "66cbc20b9e95fdffc1051dc8", + "slotId": "mod_handguard" }, - "Rotation": { - "x": 270, - "y": 37.597847, - "z": 0 - } - }, - { - "Name": "groupPoint[7]", - "Weight": 2, - "Position": { - "x": 283.930664, - "y": -54.42542, - "z": -182.955017 + { + "_id": "66cbc20b9e95fdffc1051dca", + "_tpl": "576167ab2459773cad038c43", + "parentId": "66cbc20b9e95fdffc1051dc8", + "slotId": "mod_muzzle" }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[8]", - "Weight": 2, - "Position": { - "x": 286.666016, - "y": -54.4260063, - "z": -176.1002 + { + "_id": "66cbc20b9e95fdffc1051dcb", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbc20b9e95fdffc1051dc8", + "slotId": "mod_pistol_grip" }, - "Rotation": { - "x": 270, - "y": 70.32292, - "z": 0 - } - }, - { - "Name": "groupPoint[9]", - "Weight": 2, - "Position": { - "x": 198.786133, - "y": -47.53198, - "z": 99.03204 + { + "_id": "66cbc20b9e95fdffc1051dcc", + "_tpl": "57616c112459773cce774d66", + "parentId": "66cbc20b9e95fdffc1051dc8", + "slotId": "mod_reciever" }, - "Rotation": { - "x": 270, - "y": 254.451691, - "z": 0 - } - }, - { - "Name": "groupPoint[10]", - "Weight": 2, - "Position": { - "x": 200.079346, - "y": -48.3237877, - "z": 101.413025 + { + "_id": "66cbc20b9e95fdffc1051dcd", + "_tpl": "57a9b9ce2459770ee926038d", + "parentId": "66cbc20b9e95fdffc1051dc8", + "slotId": "mod_sight_rear" }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[11]", - "Weight": 2, - "Position": { - "x": 207.400757, - "y": -48.3219872, - "z": 100.213013 + { + "_id": "66cbc20b9e95fdffc1051dce", + "_tpl": "57616ca52459773c69055192", + "parentId": "66cbc20b9e95fdffc1051dc8", + "slotId": "mod_stock" }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[12]", - "Weight": 1, - "Position": { - "x": -527.060547, - "y": -54.81454, - "z": 405.397766 - }, - "Rotation": { - "x": 280.836456, - "y": 180, - "z": 180 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051de0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051de0", - "_tpl": "66760b3deb51b08bd40c2b08", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "jew (1) [5a20537e-42a6-4007-ae40-64ba72505f55]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -328.4511, - "y": -60.641, - "z": 490.766052 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051de2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051de2", - "_tpl": "5e54f62086f774219b0f1937", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbc20b9e95fdffc1051dcf", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "66cbc20b9e95fdffc1051dc8", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051dd0", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "66cbc20b9e95fdffc1051dcf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } } - } - ] - }, - { - "Id": "jew (12) [e636274a-5260-426b-8dcc-94c887fccd23]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 96.074, - "y": -47.182, - "z": 103.519 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051de4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051de4", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "GunsafeSpawn 4(Clone) [9196b60f-4782-461a-a7bc-8f373e320999]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -349.857574, + "y": -0.514892042, + "z": -92.36895 + }, + "Rotation": { + "x": 270.881165, + "y": -0.000665696571, + "z": 89.56464 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dd1", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dd1", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66cbc20b9e95fdffc1051dd2", + "_tpl": "59e649f986f77411d949b246", + "parentId": "66cbc20b9e95fdffc1051dd1", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbc20b9e95fdffc1051dd3", + "_tpl": "59e898ee86f77427614bd225", + "parentId": "66cbc20b9e95fdffc1051dd2", + "slotId": "mod_handguard" + }, + { + "_id": "66cbc20b9e95fdffc1051dd4", + "_tpl": "59e8a00d86f7742ad93b569c", + "parentId": "66cbc20b9e95fdffc1051dd1", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbc20b9e95fdffc1051dd5", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "66cbc20b9e95fdffc1051dd1", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbc20b9e95fdffc1051dd6", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "66cbc20b9e95fdffc1051dd1", + "slotId": "mod_reciever" + }, + { + "_id": "66cbc20b9e95fdffc1051dd7", + "_tpl": "59e8977386f77415a553c453", + "parentId": "66cbc20b9e95fdffc1051dd1", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbc20b9e95fdffc1051dd8", + "_tpl": "59e89d0986f77427600d226e", + "parentId": "66cbc20b9e95fdffc1051dd1", + "slotId": "mod_stock" + }, + { + "_id": "66cbc20b9e95fdffc1051dd9", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "66cbc20b9e95fdffc1051dd1", + "slotId": "mod_magazine" + }, + { + "_id": "66cbc20b9e95fdffc1051dda", + "_tpl": "59e6542b86f77411dc52a77a", + "parentId": "66cbc20b9e95fdffc1051dd9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } } - } - ] - }, - { - "Id": "jew (7) [8d387992-2035-4f11-9b13-1ec33070546a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 218.072, - "y": -62.747, - "z": 429.091 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051de6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051de6", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Hyundai_Bogdan_A202_open [0] 0(Clone) [066b5b41-d81c-45d2-b334-74d4bbfb6aa1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 79.417, + "y": -57.923, + "z": 345.187 + }, + "Rotation": { + "x": -0.000134789516, + "y": 322.347565, + "z": 183.296112 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051ddc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051ddc", + "_tpl": "61bf7b6302b3924be92fa8c3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jew [4914e71f-85d6-41cf-8c4d-f162ebbf0158]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -307.228, - "y": -60.8022, - "z": 477.028 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051de8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051de8", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Hyundai_Bogdan_A202_open [0] 0(Clone) [b8fc79f3-0ad3-43ef-87db-37d72f1f77fd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 305.728, + "y": -57.836, + "z": 312.244 + }, + "Rotation": { + "x": -0.000139485273, + "y": 312.870667, + "z": 183.296112 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dde", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dde", + "_tpl": "59e35abd86f7741778269d82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [1] (19) [24a32238-07ef-495a-ba4a-842366f71b5b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -334.456055, - "y": -2.952, - "z": -75.545 - }, - "Rotation": { - "x": 0.0, - "y": 32.715435, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dea", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dea", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 72 + { + "Id": "item_barter_electr_hdd_NosQuests_quest [ead9b4b7-be4b-4213-b959-dd8c0b187d01]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 356.915771, + "y": -53.751503, + "z": -102.371796 + }, + "Rotation": { + "x": 270.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "PickPoint1", + "Weight": 2, + "Position": { + "x": 323.6604, + "y": -54.3173981, + "z": -81.6693 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } + }, + { + "Name": "PickPoint2", + "Weight": 2, + "Position": { + "x": 290.540771, + "y": -49.7784958, + "z": -40.20999 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } + }, + { + "Name": "PickPoint3", + "Weight": 2, + "Position": { + "x": 290.490967, + "y": -50.6099968, + "z": -38.9839935 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 2, + "Position": { + "x": 356.915771, + "y": -53.751503, + "z": -102.371796 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 2, + "Position": { + "x": 357.519043, + "y": -54.2243042, + "z": -108.451096 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[5]", + "Weight": 2, + "Position": { + "x": 329.957275, + "y": -54.41971, + "z": -143.7411 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[6]", + "Weight": 2, + "Position": { + "x": 324.361816, + "y": -53.7552071, + "z": -145.425659 + }, + "Rotation": { + "x": 270, + "y": 37.597847, + "z": 0 + } + }, + { + "Name": "groupPoint[7]", + "Weight": 2, + "Position": { + "x": 283.930664, + "y": -54.42542, + "z": -182.955017 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[8]", + "Weight": 2, + "Position": { + "x": 286.666016, + "y": -54.4260063, + "z": -176.1002 + }, + "Rotation": { + "x": 270, + "y": 70.32292, + "z": 0 + } + }, + { + "Name": "groupPoint[9]", + "Weight": 2, + "Position": { + "x": 198.786133, + "y": -47.53198, + "z": 99.03204 + }, + "Rotation": { + "x": 270, + "y": 254.451691, + "z": 0 + } + }, + { + "Name": "groupPoint[10]", + "Weight": 2, + "Position": { + "x": 200.079346, + "y": -48.3237877, + "z": 101.413025 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[11]", + "Weight": 2, + "Position": { + "x": 207.400757, + "y": -48.3219872, + "z": 100.213013 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[12]", + "Weight": 1, + "Position": { + "x": -527.060547, + "y": -54.81454, + "z": 405.397766 + }, + "Rotation": { + "x": 280.836456, + "y": 180, + "z": 180 + } } - } - ] - }, - { - "Id": "Loot_barter [1] (23) [a4131b1d-f52d-486b-b515-d0bf90913929]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -335.032959, - "y": -2.819, - "z": -75.97 - }, - "Rotation": { - "x": 0.0, - "y": 32.0075264, - "z": -2.16103942e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dec", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dec", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051de0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051de0", + "_tpl": "66760b3deb51b08bd40c2b08", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [1] (28) [75bad12f-6bb9-4492-8dbf-318a5f4d19bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -360.715942, - "y": 2.919, - "z": -74.8139954 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dee", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dee", - "_tpl": "59e3639286f7741777737013", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jew (1) [5a20537e-42a6-4007-ae40-64ba72505f55]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -328.4511, + "y": -60.641, + "z": 490.766052 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051de2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051de2", + "_tpl": "5e54f62086f774219b0f1937", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [1] (33) [003a273e-8d86-4d64-ac15-8dfe76f30a85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -359.037, - "y": 3.014, - "z": -75.899 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051df0", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051df0", - "_tpl": "57347cd0245977445a2d6ff1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jew (12) [e636274a-5260-426b-8dcc-94c887fccd23]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 96.074, + "y": -47.182, + "z": 103.519 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051de4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051de4", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [1] (36) [c61405d2-a708-43e7-bae7-402b9df5346f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -359.10498, - "y": 2.918, - "z": -76.841 - }, - "Rotation": { - "x": 0.0, - "y": 328.896881, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051df2", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051df2", - "_tpl": "5bc9b720d4351e450201234b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jew (7) [8d387992-2035-4f11-9b13-1ec33070546a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 218.072, + "y": -62.747, + "z": 429.091 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051de6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051de6", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [1] (37) [0ecacd52-c7a6-4a2e-bcf6-691b5cdc3be0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -353.792, - "y": 2.946, - "z": -75.69 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051df4", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051df4", - "_tpl": "6241c2c2117ad530666a5108", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jew [4914e71f-85d6-41cf-8c4d-f162ebbf0158]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -307.228, + "y": -60.8022, + "z": 477.028 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051de8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051de8", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [1] (40) [2379239b-c658-4891-ab80-7c720b2e6733]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -354.144043, - "y": 2.931, - "z": -75.815 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051df6", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051df6", - "_tpl": "5b222d405acfc400153af4fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [1] (19) [24a32238-07ef-495a-ba4a-842366f71b5b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -334.456055, + "y": -2.952, + "z": -75.545 + }, + "Rotation": { + "x": 0.0, + "y": 32.715435, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dea", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dea", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 72 + } } - } - ] - }, - { - "Id": "Loot_barter [1] (6) [c2d1fa40-2a7f-4b82-a37b-84c54c6d189d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -214.937012, - "y": 2.659, - "z": -88.2830048 - }, - "Rotation": { - "x": -6.36110944e-15, - "y": 29.1241112, - "z": 4.32208026e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051df8", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051df8", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loot_barter [1] (23) [a4131b1d-f52d-486b-b515-d0bf90913929]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -335.032959, + "y": -2.819, + "z": -75.97 + }, + "Rotation": { + "x": 0.0, + "y": 32.0075264, + "z": -2.16103942e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dec", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dec", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [17] [efc81c28-4d1e-4435-bc58-b14e5199dde0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 204.390991, - "y": -46.765, - "z": 97.86401 - }, - "Rotation": { - "x": 0.0, - "y": 213.2959, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dfa", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dfa", - "_tpl": "5e2af51086f7746d3f3c3402", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [1] (28) [75bad12f-6bb9-4492-8dbf-318a5f4d19bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -360.715942, + "y": 2.919, + "z": -74.8139954 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dee", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dee", + "_tpl": "59e3639286f7741777737013", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (104) [597469ca-52cd-4d64-89f3-fd324b78d0d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -168.769043, - "y": 0.229, - "z": -79.4669952 - }, - "Rotation": { - "x": 0.0, - "y": 336.721283, - "z": 1.08052006e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dfc", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dfc", - "_tpl": "590c678286f77426c9660122", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loot_barter [1] (33) [003a273e-8d86-4d64-ac15-8dfe76f30a85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -359.037, + "y": 3.014, + "z": -75.899 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051df0", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051df0", + "_tpl": "57347cd0245977445a2d6ff1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (115) [531e3813-774a-4459-a11e-c536d25335e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -285.026978, - "y": 0.194, - "z": -86.8500061 - }, - "Rotation": { - "x": 0.0, - "y": 331.907928, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051dfe", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051dfe", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [1] (36) [c61405d2-a708-43e7-bae7-402b9df5346f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -359.10498, + "y": 2.918, + "z": -76.841 + }, + "Rotation": { + "x": 0.0, + "y": 328.896881, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051df2", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051df2", + "_tpl": "5bc9b720d4351e450201234b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (38) [1aa6e041-c2cd-414a-87f5-fc8c4df4a1d7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -187.588989, - "y": 0.052, - "z": -88.571 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e00", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e00", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [1] (37) [0ecacd52-c7a6-4a2e-bcf6-691b5cdc3be0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -353.792, + "y": 2.946, + "z": -75.69 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051df4", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051df4", + "_tpl": "6241c2c2117ad530666a5108", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (41) [33bb4873-4171-471a-a719-bcb83cb8f850]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -183.852051, - "y": 0.021, - "z": -75.015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e02", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e02", - "_tpl": "5448ff904bdc2d6f028b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [1] (40) [2379239b-c658-4891-ab80-7c720b2e6733]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -354.144043, + "y": 2.931, + "z": -75.815 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051df6", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051df6", + "_tpl": "5b222d405acfc400153af4fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (47) [05e90f71-aab5-4ffb-bdbd-da5cee0bd534]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -170.069946, - "y": 0.478, - "z": -87.819 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e05", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e05", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [1] (6) [c2d1fa40-2a7f-4b82-a37b-84c54c6d189d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -214.937012, + "y": 2.659, + "z": -88.2830048 + }, + "Rotation": { + "x": -6.36110944e-15, + "y": 29.1241112, + "z": 4.32208026e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051df8", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051df8", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_barter [17] [efc81c28-4d1e-4435-bc58-b14e5199dde0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 204.390991, + "y": -46.765, + "z": 97.86401 + }, + "Rotation": { + "x": 0.0, + "y": 213.2959, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051e06", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbc20b9e95fdffc1051e05", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dfa", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dfa", + "_tpl": "5e2af51086f7746d3f3c3402", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (49) [53ee360e-0f4c-4c89-b604-c403f067c85f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -169.746948, - "y": 0.408, - "z": -87.88699 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e0a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e0a", - "_tpl": "657024a91419851aef03e70c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [2] (104) [597469ca-52cd-4d64-89f3-fd324b78d0d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -168.769043, + "y": 0.229, + "z": -79.4669952 + }, + "Rotation": { + "x": 0.0, + "y": 336.721283, + "z": 1.08052006e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dfc", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dfc", + "_tpl": "590c678286f77426c9660122", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_barter [2] (115) [531e3813-774a-4459-a11e-c536d25335e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -285.026978, + "y": 0.194, + "z": -86.8500061 + }, + "Rotation": { + "x": 0.0, + "y": 331.907928, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051e0b", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "66cbc20b9e95fdffc1051e0a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051dfe", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051dfe", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_barter [2] (38) [1aa6e041-c2cd-414a-87f5-fc8c4df4a1d7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -187.588989, + "y": 0.052, + "z": -88.571 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051e0c", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "66cbc20b9e95fdffc1051e0a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e00", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e00", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (50) [7eba0a1c-7994-4bbf-a4da-93caaab104d4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -170.001953, - "y": 0.313, - "z": -88.125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e0f", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e0f", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_barter [2] (41) [33bb4873-4171-471a-a719-bcb83cb8f850]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -183.852051, + "y": 0.021, + "z": -75.015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051e10", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbc20b9e95fdffc1051e0f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e02", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e02", + "_tpl": "5448ff904bdc2d6f028b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (51) [7cc0c09e-2c04-49ad-bceb-5ac86975dc0e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -169.555054, - "y": -0.23, - "z": -88.578 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e13", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e13", - "_tpl": "65702591c5d7d4cb4d07857c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [2] (47) [05e90f71-aab5-4ffb-bdbd-da5cee0bd534]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -170.069946, + "y": 0.478, + "z": -87.819 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e05", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e05", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051e06", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbc20b9e95fdffc1051e05", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "Loot_barter [2] (49) [53ee360e-0f4c-4c89-b604-c403f067c85f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -169.746948, + "y": 0.408, + "z": -87.88699 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051e14", - "_tpl": "5c925fa22e221601da359b7b", - "parentId": "66cbc20b9e95fdffc1051e13", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e0a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e0a", + "_tpl": "657024a91419851aef03e70c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051e0b", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "66cbc20b9e95fdffc1051e0a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbc20b9e95fdffc1051e0c", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "66cbc20b9e95fdffc1051e0a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (52) [40f34e07-bb3c-48eb-b469-bc0dacdaecdd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -169.707031, - "y": -0.23, - "z": -88.69701 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e17", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e17", - "_tpl": "648986bbc827d4637f01791e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [2] (50) [7eba0a1c-7994-4bbf-a4da-93caaab104d4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -170.001953, + "y": 0.313, + "z": -88.125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e0f", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e0f", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051e10", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbc20b9e95fdffc1051e0f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "Loot_barter [2] (51) [7cc0c09e-2c04-49ad-bceb-5ac86975dc0e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -169.555054, + "y": -0.23, + "z": -88.578 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051e18", - "_tpl": "5cc80f38e4a949001152b560", - "parentId": "66cbc20b9e95fdffc1051e17", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e13", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e13", + "_tpl": "65702591c5d7d4cb4d07857c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051e14", + "_tpl": "5c925fa22e221601da359b7b", + "parentId": "66cbc20b9e95fdffc1051e13", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (53) [5988b8c6-977c-4164-814a-25f1782a56bd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -174.988037, - "y": 0.025, - "z": -87.56799 - }, - "Rotation": { - "x": 0.0, - "y": 27.7973614, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e1a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e1a", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loot_barter [2] (52) [40f34e07-bb3c-48eb-b469-bc0dacdaecdd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -169.707031, + "y": -0.23, + "z": -88.69701 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e17", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e17", + "_tpl": "648986bbc827d4637f01791e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051e18", + "_tpl": "5cc80f38e4a949001152b560", + "parentId": "66cbc20b9e95fdffc1051e17", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (54) [ea21dbf6-9e99-4966-9df5-b5865e5f90c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -174.864014, - "y": 0.126, - "z": -86.515 - }, - "Rotation": { - "x": -6.36110944e-15, - "y": 311.867249, - "z": 2.16103984e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e1c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e1c", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loot_barter [2] (53) [5988b8c6-977c-4164-814a-25f1782a56bd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -174.988037, + "y": 0.025, + "z": -87.56799 + }, + "Rotation": { + "x": 0.0, + "y": 27.7973614, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e1a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e1a", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (62) [a288431b-1c4a-4a53-a84e-4285620d9344]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -172.68396, - "y": -0.058, - "z": -89.6629944 - }, - "Rotation": { - "x": 0.0, - "y": 27.7973614, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e1e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e1e", - "_tpl": "5d235b4d86f7742e017bc88a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loot_barter [2] (54) [ea21dbf6-9e99-4966-9df5-b5865e5f90c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -174.864014, + "y": 0.126, + "z": -86.515 + }, + "Rotation": { + "x": -6.36110944e-15, + "y": 311.867249, + "z": 2.16103984e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e1c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e1c", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (64) [f5c7d762-4951-4179-90c8-be6350596f61]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 285.813965, - "y": -53.198, - "z": -183.18399 - }, - "Rotation": { - "x": 0.0, - "y": 314.9918, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e20", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e20", - "_tpl": "5755356824597772cb798962", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [2] (62) [a288431b-1c4a-4a53-a84e-4285620d9344]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -172.68396, + "y": -0.058, + "z": -89.6629944 + }, + "Rotation": { + "x": 0.0, + "y": 27.7973614, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e1e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e1e", + "_tpl": "5d235b4d86f7742e017bc88a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (67) [3f030887-1db6-4fdc-8a42-4d8a38ad80b2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -163.824951, - "y": 0.015, - "z": -89.21001 - }, - "Rotation": { - "x": 0.0, - "y": 27.7973614, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e22", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e22", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 99 + ] + }, + { + "Id": "Loot_barter [2] (64) [f5c7d762-4951-4179-90c8-be6350596f61]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 285.813965, + "y": -53.198, + "z": -183.18399 + }, + "Rotation": { + "x": 0.0, + "y": 314.9918, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e20", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e20", + "_tpl": "5755356824597772cb798962", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (69) [1d1c4a26-5d93-4d32-bb5c-759aaa957ef0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -163.854, - "y": 0.015, - "z": -89.3289948 - }, - "Rotation": { - "x": 0.0, - "y": 27.7973614, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e24", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e24", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 72 + ] + }, + { + "Id": "Loot_barter [2] (67) [3f030887-1db6-4fdc-8a42-4d8a38ad80b2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -163.824951, + "y": 0.015, + "z": -89.21001 + }, + "Rotation": { + "x": 0.0, + "y": 27.7973614, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e22", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e22", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 99 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (71) [08c9e2cd-77a4-4bb8-9510-6584bd6adf7d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -168.501953, - "y": 0.219, - "z": -89.4920044 - }, - "Rotation": { - "x": 0.0, - "y": 27.7973614, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e26", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e26", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loot_barter [2] (69) [1d1c4a26-5d93-4d32-bb5c-759aaa957ef0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -163.854, + "y": 0.015, + "z": -89.3289948 + }, + "Rotation": { + "x": 0.0, + "y": 27.7973614, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e24", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e24", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 72 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (72) [ed42f122-f136-4655-bb82-8bdeadc96cf2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -168.042969, - "y": 0.529, - "z": -89.3 - }, - "Rotation": { - "x": 0.0, - "y": 27.7973614, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e28", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e28", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loot_barter [2] (71) [08c9e2cd-77a4-4bb8-9510-6584bd6adf7d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -168.501953, + "y": 0.219, + "z": -89.4920044 + }, + "Rotation": { + "x": 0.0, + "y": 27.7973614, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e26", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e26", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (75) [dd68dfbb-d008-4921-a3f6-9026617b96fc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -168.953979, - "y": 0.04, - "z": -89.679 - }, - "Rotation": { - "x": 0.0, - "y": 27.7973614, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e2a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e2a", - "_tpl": "60098ad7c2240c0fe85c570a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loot_barter [2] (72) [ed42f122-f136-4655-bb82-8bdeadc96cf2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -168.042969, + "y": 0.529, + "z": -89.3 + }, + "Rotation": { + "x": 0.0, + "y": 27.7973614, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e28", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e28", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (85) [59670e0a-0201-4851-b219-dd066cdc0353]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -171.991943, - "y": 0.175, - "z": -74.519 - }, - "Rotation": { - "x": 0.0, - "y": 33.63391, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e2d", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e2d", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [2] (75) [dd68dfbb-d008-4921-a3f6-9026617b96fc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -168.953979, + "y": 0.04, + "z": -89.679 + }, + "Rotation": { + "x": 0.0, + "y": 27.7973614, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e2a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e2a", + "_tpl": "60098ad7c2240c0fe85c570a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_barter [2] (85) [59670e0a-0201-4851-b219-dd066cdc0353]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -171.991943, + "y": 0.175, + "z": -74.519 + }, + "Rotation": { + "x": 0.0, + "y": 33.63391, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051e2e", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbc20b9e95fdffc1051e2d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e2d", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e2d", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051e2e", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbc20b9e95fdffc1051e2d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (86) [e803721b-e36d-4418-8959-caa973fde223]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -172.272949, - "y": 0.214, - "z": -74.735 - }, - "Rotation": { - "x": 0.0, - "y": 33.63391, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e31", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e31", - "_tpl": "5737260b24597761224311f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_barter [2] (86) [e803721b-e36d-4418-8959-caa973fde223]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -172.272949, + "y": 0.214, + "z": -74.735 + }, + "Rotation": { + "x": 0.0, + "y": 33.63391, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e31", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e31", + "_tpl": "5737260b24597761224311f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20b9e95fdffc1051e32", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbc20b9e95fdffc1051e31", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "Loot_barter [2] (90) [75d7a66d-4945-4824-837c-5ecdd2a81866]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -169.911011, + "y": 0.272, + "z": -78.463 + }, + "Rotation": { + "x": 0.0, + "y": 33.63391, + "z": 0.0 }, - { - "_id": "66cbc20b9e95fdffc1051e32", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbc20b9e95fdffc1051e31", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e34", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e34", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_barter [2] (90) [75d7a66d-4945-4824-837c-5ecdd2a81866]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -169.911011, - "y": 0.272, - "z": -78.463 - }, - "Rotation": { - "x": 0.0, - "y": 33.63391, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e34", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e34", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_food [0] [ae1c431a-5c98-4c7b-960d-bd1849e6205e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -307.80896, + "y": -60.72, + "z": 481.655029 + }, + "Rotation": { + "x": 0.0, + "y": 201.236847, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e36", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e36", + "_tpl": "5448ff904bdc2d6f028b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_food [0] [ae1c431a-5c98-4c7b-960d-bd1849e6205e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -307.80896, - "y": -60.72, - "z": 481.655029 - }, - "Rotation": { - "x": 0.0, - "y": 201.236847, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e36", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e36", - "_tpl": "5448ff904bdc2d6f028b456e", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot_meds [0] (101) [2d5d1b56-939b-4c30-b8ca-4d2cb94d2e22]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -224.916016, - "y": 2.983, - "z": -100.227005 - }, - "Rotation": { - "x": 0.0, - "y": 326.400818, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e38", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e38", - "_tpl": "619cc01e0a7c3a1a2731940c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (101) [2d5d1b56-939b-4c30-b8ca-4d2cb94d2e22]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -224.916016, + "y": 2.983, + "z": -100.227005 + }, + "Rotation": { + "x": 0.0, + "y": 326.400818, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e38", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e38", + "_tpl": "619cc01e0a7c3a1a2731940c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_meds [0] (109) [b390f0b9-4717-49a0-ac18-7e8a3dcc6aaf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -225.103027, - "y": 2.911, - "z": -101.558 - }, - "Rotation": { - "x": 0.0, - "y": 3.33714581, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e3a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e3a", - "_tpl": "655c673673a43e23e857aebd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (109) [b390f0b9-4717-49a0-ac18-7e8a3dcc6aaf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -225.103027, + "y": 2.911, + "z": -101.558 + }, + "Rotation": { + "x": 0.0, + "y": 3.33714581, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e3a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e3a", + "_tpl": "655c673673a43e23e857aebd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_meds [0] (110) [39a55ce6-5e02-49ab-a092-acbfe9de69c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -225.193, - "y": 2.961, - "z": -101.649 - }, - "Rotation": { - "x": 0.0, - "y": 3.33714581, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e3c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e3c", - "_tpl": "59e3606886f77417674759a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (110) [39a55ce6-5e02-49ab-a092-acbfe9de69c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -225.193, + "y": 2.961, + "z": -101.649 + }, + "Rotation": { + "x": 0.0, + "y": 3.33714581, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e3c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e3c", + "_tpl": "59e3606886f77417674759a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_meds [0] (116) [c78bc64a-f537-4961-9b55-1f00b5a1a94a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -184.067017, - "y": 2.934, - "z": -88.843 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e3e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e3e", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot_meds [0] (28) [7d09f602-032e-4193-920f-19d8dcaa7deb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -216.833008, - "y": 2.723, - "z": -99.798996 - }, - "Rotation": { - "x": 0.0, - "y": 49.7449837, - "z": -2.16103984e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e40", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e40", - "_tpl": "57513f9324597720a7128161", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (116) [c78bc64a-f537-4961-9b55-1f00b5a1a94a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -184.067017, + "y": 2.934, + "z": -88.843 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e3e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e3e", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_meds [0] (30) [571167ac-c067-46bf-b20f-561db3a7805c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -216.472046, - "y": 2.909, - "z": -102.645996 - }, - "Rotation": { - "x": 0.0, - "y": 103.155807, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e42", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e42", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 888 + { + "Id": "Loot_meds [0] (28) [7d09f602-032e-4193-920f-19d8dcaa7deb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -216.833008, + "y": 2.723, + "z": -99.798996 + }, + "Rotation": { + "x": 0.0, + "y": 49.7449837, + "z": -2.16103984e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e40", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e40", + "_tpl": "57513f9324597720a7128161", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_meds [0] (34) [e5494361-76f1-47ef-86ea-34c510eada05]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -226.911987, - "y": 3.539, - "z": -100.668 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e44", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e44", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (30) [571167ac-c067-46bf-b20f-561db3a7805c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -216.472046, + "y": 2.909, + "z": -102.645996 + }, + "Rotation": { + "x": 0.0, + "y": 103.155807, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e42", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e42", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 888 + } } - } - ] - }, - { - "Id": "Loot_meds [0] (35) [61efcfca-87a3-420f-95ec-502da26a8d04]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -226.677979, - "y": 3.322, - "z": -99.647 - }, - "Rotation": { - "x": 0.0, - "y": 292.3858, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e46", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e46", - "_tpl": "5bc9c377d4351e3bac12251b", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot_meds [0] (36) [618b9147-a0b3-43cf-b209-b7495d43cfaa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -226.787964, - "y": 3.402, - "z": -99.959 - }, - "Rotation": { - "x": 2.54444377e-14, - "y": 83.28162, - "z": 4.32207884e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e48", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e48", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot_meds [0] (54) [e7ae9fc6-6016-46c1-a04f-3bf300c94d3e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -194.988037, - "y": 2.22100019, - "z": -74.52901 - }, - "Rotation": { - "x": 0.0, - "y": 26.9341373, - "z": -2.16104056e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e4a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e4a", - "_tpl": "60098ad7c2240c0fe85c570a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot_meds [0] (73) [dd547fcd-7030-4365-8e8d-a8b58708cec9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -176.390991, - "y": 2.901, - "z": -88.9389954 - }, - "Rotation": { - "x": 0.0, - "y": 45.46459, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e4c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e4c", - "_tpl": "58dd3ad986f77403051cba8f", - "upd": { - "StackObjectsCount": 19 + { + "Id": "Loot_meds [0] (34) [e5494361-76f1-47ef-86ea-34c510eada05]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -226.911987, + "y": 3.539, + "z": -100.668 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e44", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e44", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_meds [0] (80) [4326c8ac-6774-4306-9145-115c0de5b1b2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -171.568, - "y": 2.879, - "z": -76.9519958 - }, - "Rotation": { - "x": 0.0, - "y": 38.17089, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e4e", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e4e", - "_tpl": "5b4335ba86f7744d2837a264", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (35) [61efcfca-87a3-420f-95ec-502da26a8d04]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -226.677979, + "y": 3.322, + "z": -99.647 + }, + "Rotation": { + "x": 0.0, + "y": 292.3858, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e46", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e46", + "_tpl": "5bc9c377d4351e3bac12251b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_meds [0] (87) [36ed8d6b-7a7f-4089-8f22-a18ee8160050]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -165.762939, - "y": 2.172, - "z": -88.66 - }, - "Rotation": { - "x": 0.0, - "y": 67.48193, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e50", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e50", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 64 + { + "Id": "Loot_meds [0] (36) [618b9147-a0b3-43cf-b209-b7495d43cfaa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -226.787964, + "y": 3.402, + "z": -99.959 + }, + "Rotation": { + "x": 2.54444377e-14, + "y": 83.28162, + "z": 4.32207884e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e48", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e48", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_meds [0] (9) [ce6dc449-e031-462a-84b3-9b9fb437b0e5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -237.408936, - "y": -3.045, - "z": -148.179 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e52", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e52", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot_meds [0] (97) [efffbde3-99d6-4173-b622-e02aa220004c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -252.037964, - "y": -6.242, - "z": -146.165 - }, - "Rotation": { - "x": 0.0, - "y": 1.88772964, - "z": -2.70130069e-8 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e54", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e54", - "_tpl": "56742c324bdc2d150f8b456d", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot_meds [2] (1) [f0056f88-2c70-43d8-8975-d85676e3f1b5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -260.31897, - "y": -4.176, - "z": -84.58501 - }, - "Rotation": { - "x": -1.27222189e-14, - "y": 31.4957237, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e56", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e56", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot_meds [2] (2) [4a51fa31-3275-41bc-a056-b31e1551c2ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -260.1582, - "y": -4.124, - "z": -84.7807 - }, - "Rotation": { - "x": 0.0, - "y": 134.226044, - "z": 2.16103984e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e58", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e58", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (54) [e7ae9fc6-6016-46c1-a04f-3bf300c94d3e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -194.988037, + "y": 2.22100019, + "z": -74.52901 + }, + "Rotation": { + "x": 0.0, + "y": 26.9341373, + "z": -2.16104056e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e4a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e4a", + "_tpl": "60098ad7c2240c0fe85c570a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_meds [2] (3) [375e9807-2084-4553-ae8d-6ba9776c8c3c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -260.779053, - "y": -4.835, - "z": -84.448 - }, - "Rotation": { - "x": 0.0, - "y": 327.621338, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e5a", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e5a", - "_tpl": "5d1b3a5d86f774252167ba22", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (73) [dd547fcd-7030-4365-8e8d-a8b58708cec9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -176.390991, + "y": 2.901, + "z": -88.9389954 + }, + "Rotation": { + "x": 0.0, + "y": 45.46459, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e4c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e4c", + "_tpl": "58dd3ad986f77403051cba8f", + "upd": { + "StackObjectsCount": 19 + } } - } - ] - }, - { - "Id": "Loot_meds [2] (6) [8ed7a9ff-54c6-477f-a4f0-f567f9371a85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -195.838989, - "y": -5.369, - "z": -46.3289948 - }, - "Rotation": { - "x": 0.0, - "y": 328.962677, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20b9e95fdffc1051e5c", - "Items": [ - { - "_id": "66cbc20b9e95fdffc1051e5c", - "_tpl": "544fb62a4bdc2dfb738b4568", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot_meds [2] [5a6d3cf4-2477-49cc-a421-9befeb44c480]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 245.824951, - "y": -62.93, - "z": 436.693 - }, - "Rotation": { - "x": 0.0, - "y": 134.226044, - "z": 2.16103984e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e5e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e5e", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (80) [4326c8ac-6774-4306-9145-115c0de5b1b2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -171.568, + "y": 2.879, + "z": -76.9519958 + }, + "Rotation": { + "x": 0.0, + "y": 38.17089, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e4e", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e4e", + "_tpl": "5b4335ba86f7744d2837a264", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods (3) [a98c935e-5324-4c5e-9cb8-7148ccf7dcda]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -222.196228, - "y": -33.813324, - "z": 187.581 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e60", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e60", - "_tpl": "6698c9ed36ba38d291017713", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (87) [36ed8d6b-7a7f-4089-8f22-a18ee8160050]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -165.762939, + "y": 2.172, + "z": -88.66 + }, + "Rotation": { + "x": 0.0, + "y": 67.48193, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e50", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e50", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 64 + } } - } - ] - }, - { - "Id": "loot_mods (5) [9dcc78cf-a686-4637-b7e1-26e3dd1681ac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -222.068222, - "y": -33.7823257, - "z": 187.329987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e62", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e62", - "_tpl": "5d010d1cd7ad1a59283b1ce7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (9) [ce6dc449-e031-462a-84b3-9b9fb437b0e5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -237.408936, + "y": -3.045, + "z": -148.179 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e52", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e52", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_mods [e7ddb0a5-ba21-445c-8591-3f36a41ce403]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -222.232224, - "y": -33.8303261, - "z": 188.116989 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e64", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e64", - "_tpl": "56ea70acd2720b844b8b4594", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [0] (97) [efffbde3-99d6-4173-b622-e02aa220004c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -252.037964, + "y": -6.242, + "z": -146.165 + }, + "Rotation": { + "x": 0.0, + "y": 1.88772964, + "z": -2.70130069e-8 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e54", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e54", + "_tpl": "56742c324bdc2d150f8b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_money [1] (24) [0dbf2a1b-78ba-47d7-a5b6-07ea740e8023]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -185.652954, - "y": -3.009, - "z": -87.20599 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e66", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e66", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 49 + { + "Id": "Loot_meds [2] (1) [f0056f88-2c70-43d8-8975-d85676e3f1b5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -260.31897, + "y": -4.176, + "z": -84.58501 + }, + "Rotation": { + "x": -1.27222189e-14, + "y": 31.4957237, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e56", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e56", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_money [1] (42) [a12195ff-91d5-4a3c-a3f0-b25a309f1776]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -162.209961, - "y": -0.135, - "z": -89.265 - }, - "Rotation": { - "x": 0.0, - "y": 348.511963, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e68", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e68", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 968 + { + "Id": "Loot_meds [2] (2) [4a51fa31-3275-41bc-a056-b31e1551c2ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -260.1582, + "y": -4.124, + "z": -84.7807 + }, + "Rotation": { + "x": 0.0, + "y": 134.226044, + "z": 2.16103984e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e58", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e58", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_money [1] (57) [6f2aaaab-3a47-402b-9ad2-a3b7ee066bb2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -242.112061, - "y": 0.069, - "z": -153.782 - }, - "Rotation": { - "x": 0.0, - "y": 273.7927, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e6a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e6a", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 890 + { + "Id": "Loot_meds [2] (3) [375e9807-2084-4553-ae8d-6ba9776c8c3c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -260.779053, + "y": -4.835, + "z": -84.448 + }, + "Rotation": { + "x": 0.0, + "y": 327.621338, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e5a", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e5a", + "_tpl": "5d1b3a5d86f774252167ba22", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_money [1] (69) [38017f25-71a1-4f6e-bd6a-37e51e846c56]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -141.696045, - "y": 0.015, - "z": -77.472 - }, - "Rotation": { - "x": 0.0, - "y": 318.4563, - "z": -2.16104041e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e6c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e6c", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loot_meds [2] (6) [8ed7a9ff-54c6-477f-a4f0-f567f9371a85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -195.838989, + "y": -5.369, + "z": -46.3289948 + }, + "Rotation": { + "x": 0.0, + "y": 328.962677, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20b9e95fdffc1051e5c", + "Items": [ + { + "_id": "66cbc20b9e95fdffc1051e5c", + "_tpl": "544fb62a4bdc2dfb738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_money [1] (77) [b0740dec-d244-41da-947e-cb69cf15fec8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -278.728027, - "y": 0.189, - "z": -87.748 - }, - "Rotation": { - "x": 0.0, - "y": 38.14347, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e6e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e6e", - "_tpl": "60098b1705871270cd5352a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_meds [2] [5a6d3cf4-2477-49cc-a421-9befeb44c480]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 245.824951, + "y": -62.93, + "z": 436.693 + }, + "Rotation": { + "x": 0.0, + "y": 134.226044, + "z": 2.16103984e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e5e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e5e", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_money [2] (6) [404c8abf-3306-4a8c-a882-605f817a6eb2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -325.043945, - "y": -0.027, - "z": -74.535 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e70", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e70", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 805 + { + "Id": "loot_mods (3) [a98c935e-5324-4c5e-9cb8-7148ccf7dcda]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -222.196228, + "y": -33.813324, + "z": 187.581 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e60", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e60", + "_tpl": "6698c9ed36ba38d291017713", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (23) [a285e959-5f90-43f7-b447-81071d868dec]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -355.038239, - "y": -4.65432453, - "z": -108.244 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e72", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e72", - "_tpl": "5d1b36a186f7742523398433", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods (5) [9dcc78cf-a686-4637-b7e1-26e3dd1681ac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -222.068222, + "y": -33.7823257, + "z": 187.329987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e62", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e62", + "_tpl": "5d010d1cd7ad1a59283b1ce7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (30) [8e21371c-36d5-4ad9-adf2-4e8e66a77391]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 239.833771, - "y": -55.8793259, - "z": 126.437 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e74", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e74", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_mods [e7ddb0a5-ba21-445c-8591-3f36a41ce403]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -222.232224, + "y": -33.8303261, + "z": 188.116989 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e64", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e64", + "_tpl": "56ea70acd2720b844b8b4594", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (38) [1f16c655-e12c-4a17-8973-b155e569d803]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -127.39724, - "y": -20.464325, - "z": -18.9100075 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e76", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e76", - "_tpl": "5d1b392c86f77425243e98fe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_money [1] (24) [0dbf2a1b-78ba-47d7-a5b6-07ea740e8023]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -185.652954, + "y": -3.009, + "z": -87.20599 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e66", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e66", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 49 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (45) [fa048710-b734-404a-82aa-ebabc86c6bac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -126.862236, - "y": -21.3343258, - "z": -7.937006 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e78", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e78", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_money [1] (42) [a12195ff-91d5-4a3c-a3f0-b25a309f1776]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -162.209961, + "y": -0.135, + "z": -89.265 + }, + "Rotation": { + "x": 0.0, + "y": 348.511963, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e68", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e68", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 968 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (23) [87beb38f-4ec7-469e-8548-4f35e336e0e7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -226.031235, - "y": -40.3353233, - "z": 187.997 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e7a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e7a", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_money [1] (57) [6f2aaaab-3a47-402b-9ad2-a3b7ee066bb2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -242.112061, + "y": 0.069, + "z": -153.782 + }, + "Rotation": { + "x": 0.0, + "y": 273.7927, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e6a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e6a", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 890 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes [0] (1) [a72d7c69-a326-4bb9-ad02-ad013aeeeed6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 378.261963, - "y": -54.125, - "z": 161.049011 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e7d", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e7d", - "_tpl": "5739d41224597779c3645501", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_money [1] (69) [38017f25-71a1-4f6e-bd6a-37e51e846c56]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -141.696045, + "y": 0.015, + "z": -77.472 + }, + "Rotation": { + "x": 0.0, + "y": 318.4563, + "z": -2.16104041e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e6c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e6c", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_money [1] (77) [b0740dec-d244-41da-947e-cb69cf15fec8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -278.728027, + "y": 0.189, + "z": -87.748 + }, + "Rotation": { + "x": 0.0, + "y": 38.14347, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051e7e", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbc20c9e95fdffc1051e7d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e6e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e6e", + "_tpl": "60098b1705871270cd5352a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes [0] (2) [f02ae965-a1b0-48c3-912b-79d6d0d9e335]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 377.949951, - "y": -54.125, - "z": 160.671021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e80", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e80", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_money [2] (6) [404c8abf-3306-4a8c-a882-605f817a6eb2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -325.043945, + "y": -0.027, + "z": -74.535 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051e81", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbc20c9e95fdffc1051e80", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e70", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e70", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 805 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes [0] (30) [fc93ab5e-fab3-4f9e-8652-44882ff9f84e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -190.094, - "y": 8.053, - "z": -81.418 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e84", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e84", - "_tpl": "57372f5c24597769917c0131", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_shelter_building_items (23) [a285e959-5f90-43f7-b447-81071d868dec]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -355.038239, + "y": -4.65432453, + "z": -108.244 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051e85", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbc20c9e95fdffc1051e84", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e72", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e72", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes [0] (39) [b5837257-b48c-4643-bcf5-1fb153e73679]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -167.57605, - "y": 7.923, - "z": -86.457 - }, - "Rotation": { - "x": 0.0, - "y": 287.963531, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e89", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e89", - "_tpl": "657026451419851aef03e733", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_shelter_building_items (30) [8e21371c-36d5-4ad9-adf2-4e8e66a77391]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 239.833771, + "y": -55.8793259, + "z": 126.437 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051e8a", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbc20c9e95fdffc1051e89", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e74", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e74", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_shelter_building_items (38) [1f16c655-e12c-4a17-8973-b155e569d803]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -127.39724, + "y": -20.464325, + "z": -18.9100075 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051e8b", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbc20c9e95fdffc1051e89", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e76", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e76", + "_tpl": "5d1b392c86f77425243e98fe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes [0] (48) [c5b8e4d5-2da9-4651-b9d2-09d1b071aabd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -238.23999, - "y": -0.002, - "z": -129.686 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e8e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e8e", - "_tpl": "6489879db5a2df1c815a04ef", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "loot_shelter_building_items (45) [fa048710-b734-404a-82aa-ebabc86c6bac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -126.862236, + "y": -21.3343258, + "z": -7.937006 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051e8f", - "_tpl": "5efb0cabfb3e451d70735af5", - "parentId": "66cbc20c9e95fdffc1051e8e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e78", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e78", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes [0] (49) [db37846d-94ac-493c-80f0-e7c96ab1b87c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -237.64502, - "y": -0.019, - "z": -129.726 - }, - "Rotation": { - "x": 0.0, - "y": 46.6082458, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e93", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e93", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (23) [87beb38f-4ec7-469e-8548-4f35e336e0e7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -226.031235, + "y": -40.3353233, + "z": 187.997 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e7a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e7a", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "LootAmmoBoxes [0] (1) [a72d7c69-a326-4bb9-ad02-ad013aeeeed6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 378.261963, + "y": -54.125, + "z": 161.049011 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051e94", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbc20c9e95fdffc1051e93", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e7d", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e7d", + "_tpl": "5739d41224597779c3645501", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051e7e", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbc20c9e95fdffc1051e7d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "LootAmmoBoxes [0] (2) [f02ae965-a1b0-48c3-912b-79d6d0d9e335]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 377.949951, + "y": -54.125, + "z": 160.671021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051e95", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66cbc20c9e95fdffc1051e93", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e80", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e80", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051e81", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbc20c9e95fdffc1051e80", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes [0] (50) [ec8f57ff-1c90-42d2-8a1d-566fd7cbda46]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -237.472046, - "y": -0.028, - "z": -129.234 - }, - "Rotation": { - "x": 0.0, - "y": 46.6082458, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e98", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e98", - "_tpl": "5c1262a286f7743f8a69aab2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootAmmoBoxes [0] (30) [fc93ab5e-fab3-4f9e-8652-44882ff9f84e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -190.094, + "y": 8.053, + "z": -81.418 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e84", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e84", + "_tpl": "57372f5c24597769917c0131", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051e85", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbc20c9e95fdffc1051e84", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "LootAmmoBoxes [0] (39) [b5837257-b48c-4643-bcf5-1fb153e73679]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -167.57605, + "y": 7.923, + "z": -86.457 + }, + "Rotation": { + "x": 0.0, + "y": 287.963531, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051e99", - "_tpl": "5c0d5e4486f77478390952fe", - "parentId": "66cbc20c9e95fdffc1051e98", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e89", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e89", + "_tpl": "657026451419851aef03e733", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051e8a", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbc20c9e95fdffc1051e89", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20c9e95fdffc1051e8b", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbc20c9e95fdffc1051e89", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "LootBarter [0] [c0b52ee6-e787-4c23-afe8-cfcd9e4de17c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 441.921875, - "y": -53.133, - "z": 152.004 - }, - "Rotation": { - "x": 0.0, - "y": 33.2960472, - "z": 2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e9b", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e9b", - "_tpl": "57347c5b245977448d35f6e1", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootAmmoBoxes [0] (48) [c5b8e4d5-2da9-4651-b9d2-09d1b071aabd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -238.23999, + "y": -0.002, + "z": -129.686 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e8e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e8e", + "_tpl": "6489879db5a2df1c815a04ef", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051e8f", + "_tpl": "5efb0cabfb3e451d70735af5", + "parentId": "66cbc20c9e95fdffc1051e8e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "LootFood [1] (9) [edef99c0-536e-45eb-aa1b-d29c54d322a3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -255.22998, - "y": -0.8, - "z": -149.019 - }, - "Rotation": { - "x": 0.0, - "y": 64.02928, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e9d", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e9d", - "_tpl": "5673de654bdc2d180f8b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootAmmoBoxes [0] (49) [db37846d-94ac-493c-80f0-e7c96ab1b87c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -237.64502, + "y": -0.019, + "z": -129.726 + }, + "Rotation": { + "x": 0.0, + "y": 46.6082458, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e93", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e93", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051e94", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbc20c9e95fdffc1051e93", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20c9e95fdffc1051e95", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66cbc20c9e95fdffc1051e93", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "LootFood [13] (2) [3807c0cc-0e94-4def-9ef6-a1d2b59c4669]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 446.580078, - "y": -53.101, - "z": 151.717987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051e9f", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051e9f", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootAmmoBoxes [0] (50) [ec8f57ff-1c90-42d2-8a1d-566fd7cbda46]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -237.472046, + "y": -0.028, + "z": -129.234 + }, + "Rotation": { + "x": 0.0, + "y": 46.6082458, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e98", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e98", + "_tpl": "5c1262a286f7743f8a69aab2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051e99", + "_tpl": "5c0d5e4486f77478390952fe", + "parentId": "66cbc20c9e95fdffc1051e98", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "LootFood [14] (38) [d64574f1-8d8d-4d7a-92ab-79fc924e80e7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -224.621948, - "y": -0.089, - "z": -86.045 - }, - "Rotation": { - "x": 0.0, - "y": 146.0711, - "z": -4.32207969e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ea1", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ea1", - "_tpl": "5926c3b286f774640d189b6b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootBarter [0] [c0b52ee6-e787-4c23-afe8-cfcd9e4de17c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 441.921875, + "y": -53.133, + "z": 152.004 + }, + "Rotation": { + "x": 0.0, + "y": 33.2960472, + "z": 2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e9b", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e9b", + "_tpl": "57347c5b245977448d35f6e1", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "LootFood [1] (9) [edef99c0-536e-45eb-aa1b-d29c54d322a3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -255.22998, + "y": -0.8, + "z": -149.019 + }, + "Rotation": { + "x": 0.0, + "y": 64.02928, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051ea2", - "_tpl": "5c925fa22e221601da359b7b", - "parentId": "66cbc20c9e95fdffc1051ea1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 29 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e9d", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e9d", + "_tpl": "5673de654bdc2d180f8b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [14] (46) [1c8d8a88-c658-4408-a4de-2782854bf498]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -252.677, - "y": -7.191, - "z": -154.831 - }, - "Rotation": { - "x": 0.0, - "y": 53.183506, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ea4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ea4", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [13] (2) [3807c0cc-0e94-4def-9ef6-a1d2b59c4669]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 446.580078, + "y": -53.101, + "z": 151.717987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051e9f", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051e9f", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [15] (10) [8d53b5be-0ce6-44a4-8197-06bda5f76e60]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -514.301, - "y": -24.535, - "z": 234.05603 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ea6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ea6", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [14] (38) [d64574f1-8d8d-4d7a-92ab-79fc924e80e7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -224.621948, + "y": -0.089, + "z": -86.045 + }, + "Rotation": { + "x": 0.0, + "y": 146.0711, + "z": -4.32207969e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ea1", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ea1", + "_tpl": "5926c3b286f774640d189b6b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051ea2", + "_tpl": "5c925fa22e221601da359b7b", + "parentId": "66cbc20c9e95fdffc1051ea1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 29 + } } - } - ] - }, - { - "Id": "LootFood [2] (26) [a079d7cc-fbc1-40f2-8302-62749149f314]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -270.88, - "y": -3.493, - "z": -94.653 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ea8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ea8", - "_tpl": "6576f96220d53a5b8f3e395e", - "upd": { - "StackObjectsCount": 18 - } - } - ] - }, - { - "Id": "LootFood [2] (62) [7a7f1691-d180-497d-9b73-db9fd76462a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -260.057, - "y": -3.041, - "z": -135.402 - }, - "Rotation": { - "x": 0.0, - "y": 352.494537, - "z": -5.40260032e-8 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eaa", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eaa", - "_tpl": "56dff3afd2720bba668b4567", - "upd": { - "StackObjectsCount": 33 + { + "Id": "LootFood [14] (46) [1c8d8a88-c658-4408-a4de-2782854bf498]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -252.677, + "y": -7.191, + "z": -154.831 + }, + "Rotation": { + "x": 0.0, + "y": 53.183506, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ea4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ea4", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [4] (10) [0c7a010c-463b-4a61-8640-fde0cd1963ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 98.09302, - "y": -46.616, - "z": 104.343994 - }, - "Rotation": { - "x": 0.0, - "y": 329.973, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eac", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eac", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [15] (10) [8d53b5be-0ce6-44a4-8197-06bda5f76e60]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -514.301, + "y": -24.535, + "z": 234.05603 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ea6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ea6", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [4] (3) [76e0a3a6-06ed-4495-ab5e-422ae3471bba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 100.084961, - "y": -46.737, - "z": 104.379 - }, - "Rotation": { - "x": 0.0, - "y": 18.234148, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eae", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eae", - "_tpl": "57347d9c245977448b40fa85", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "LootFood [4] (9) [ea5084f1-f465-4270-968d-1ab9061d47d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 96.07385, - "y": -47.031, - "z": 106.092987 - }, - "Rotation": { - "x": 0.0, - "y": 110.886932, - "z": -4.322079e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eb0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eb0", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [2] (26) [a079d7cc-fbc1-40f2-8302-62749149f314]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -270.88, + "y": -3.493, + "z": -94.653 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ea8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ea8", + "_tpl": "6576f96220d53a5b8f3e395e", + "upd": { + "StackObjectsCount": 18 + } } - } - ] - }, - { - "Id": "LootFood [5] (13) [dafd6757-9e29-4b6f-8620-74c30b0f507a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -186.677979, - "y": -2.864, - "z": -86.0740051 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eb2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eb2", - "_tpl": "5d1b376e86f774252519444e", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "LootFood [5] (33) [ec10d0d2-9ee0-47ef-9315-ba23ebde3b04]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -180.175049, - "y": 0.083, - "z": -74.8699951 - }, - "Rotation": { - "x": 3.18055472e-15, - "y": 15.6177959, - "z": -1.08051992e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eb4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eb4", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [2] (62) [7a7f1691-d180-497d-9b73-db9fd76462a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -260.057, + "y": -3.041, + "z": -135.402 + }, + "Rotation": { + "x": 0.0, + "y": 352.494537, + "z": -5.40260032e-8 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eaa", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eaa", + "_tpl": "56dff3afd2720bba668b4567", + "upd": { + "StackObjectsCount": 33 + } } - } - ] - }, - { - "Id": "LootFood [5] (34) [e207d379-aa34-4feb-8ed0-b6232aca5efa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -179.704956, - "y": 0.154, - "z": -74.416 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eb6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eb6", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [4] (10) [0c7a010c-463b-4a61-8640-fde0cd1963ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 98.09302, + "y": -46.616, + "z": 104.343994 + }, + "Rotation": { + "x": 0.0, + "y": 329.973, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eac", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eac", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [5] (35) [62d8dc97-c35f-4acf-9286-5e7151f26450]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -176.656982, - "y": 0.244, - "z": -76.7980042 - }, - "Rotation": { - "x": 0.0, - "y": 30.39175, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eb8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eb8", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [4] (3) [76e0a3a6-06ed-4495-ab5e-422ae3471bba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 100.084961, + "y": -46.737, + "z": 104.379 + }, + "Rotation": { + "x": 0.0, + "y": 18.234148, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eae", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eae", + "_tpl": "57347d9c245977448b40fa85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [5] (4) [219d493e-eb0c-48cd-ac55-73cc6038780c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -278.006958, - "y": -4.086, - "z": -57.9799957 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eba", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eba", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [4] (9) [ea5084f1-f465-4270-968d-1ab9061d47d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 96.07385, + "y": -47.031, + "z": 106.092987 + }, + "Rotation": { + "x": 0.0, + "y": 110.886932, + "z": -4.322079e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eb0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eb0", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [5] (41) [b1852f46-dae9-4cc2-9d23-b159e8179613]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -181.670044, - "y": -0.119, - "z": -79.5610046 - }, - "Rotation": { - "x": 0.0, - "y": 44.33412, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ebc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ebc", - "_tpl": "590a391c86f774385a33c404", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [5] (13) [dafd6757-9e29-4b6f-8620-74c30b0f507a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -186.677979, + "y": -2.864, + "z": -86.0740051 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eb2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eb2", + "_tpl": "5d1b376e86f774252519444e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [5] (43) [068e6bcf-6b2f-47fd-bc80-cd1b2caa7018]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -180.77002, - "y": -0.247, - "z": -74.8240051 - }, - "Rotation": { - "x": 3.18055472e-15, - "y": 15.6177959, - "z": -1.08051992e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ec0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ec0", - "_tpl": "6570265f1419851aef03e739", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootFood [5] (33) [ec10d0d2-9ee0-47ef-9315-ba23ebde3b04]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -180.175049, + "y": 0.083, + "z": -74.8699951 + }, + "Rotation": { + "x": 3.18055472e-15, + "y": 15.6177959, + "z": -1.08051992e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eb4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eb4", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "LootFood [5] (34) [e207d379-aa34-4feb-8ed0-b6232aca5efa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -179.704956, + "y": 0.154, + "z": -74.416 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051ec1", - "_tpl": "59e690b686f7746c9f75e848", - "parentId": "66cbc20c9e95fdffc1051ec0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eb6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eb6", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "LootFood [5] (35) [62d8dc97-c35f-4acf-9286-5e7151f26450]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -176.656982, + "y": 0.244, + "z": -76.7980042 + }, + "Rotation": { + "x": 0.0, + "y": 30.39175, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051ec2", - "_tpl": "59e690b686f7746c9f75e848", - "parentId": "66cbc20c9e95fdffc1051ec0", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "LootFood [5] (44) [4ca05681-057f-41ca-a4fe-2d33910b655d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -180.55896, - "y": -0.276, - "z": -74.737 - }, - "Rotation": { - "x": 3.18055472e-15, - "y": 15.6177959, - "z": -1.08051992e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ec6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ec6", - "_tpl": "6570264acfc010a0f5006a50", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eb8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eb8", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "LootFood [5] (4) [219d493e-eb0c-48cd-ac55-73cc6038780c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -278.006958, + "y": -4.086, + "z": -57.9799957 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051ec7", - "_tpl": "59e6927d86f77411da468256", - "parentId": "66cbc20c9e95fdffc1051ec6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eba", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eba", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "LootFood [5] (41) [b1852f46-dae9-4cc2-9d23-b159e8179613]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -181.670044, + "y": -0.119, + "z": -79.5610046 + }, + "Rotation": { + "x": 0.0, + "y": 44.33412, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051ec8", - "_tpl": "59e6927d86f77411da468256", - "parentId": "66cbc20c9e95fdffc1051ec6", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ebc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ebc", + "_tpl": "590a391c86f774385a33c404", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [5] (64) [e9f85fdb-955b-432c-b384-cc3aabfbddcb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -230.572021, - "y": -6.41, - "z": -94.086 - }, - "Rotation": { - "x": 0.0, - "y": 110.584923, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eca", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eca", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [5] (43) [068e6bcf-6b2f-47fd-bc80-cd1b2caa7018]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -180.77002, + "y": -0.247, + "z": -74.8240051 + }, + "Rotation": { + "x": 3.18055472e-15, + "y": 15.6177959, + "z": -1.08051992e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ec0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ec0", + "_tpl": "6570265f1419851aef03e739", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051ec1", + "_tpl": "59e690b686f7746c9f75e848", + "parentId": "66cbc20c9e95fdffc1051ec0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20c9e95fdffc1051ec2", + "_tpl": "59e690b686f7746c9f75e848", + "parentId": "66cbc20c9e95fdffc1051ec0", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "LootFood [5] (70) [9137a212-34d0-416b-aedd-01b42adcb569]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -233.57605, - "y": -5.762, - "z": -86.91499 - }, - "Rotation": { - "x": 0.0, - "y": 77.72673, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ecc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ecc", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "LootFood [6] (4) [1dfb5f5f-3c04-49d7-bd80-cd7faec1a53c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -262.600952, - "y": -3.998, - "z": -155.611 - }, - "Rotation": { - "x": 0.0, - "y": 39.83193, - "z": 4.32208026e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ecf", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ecf", - "_tpl": "657024e8cfc010a0f5006a0d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood [5] (44) [4ca05681-057f-41ca-a4fe-2d33910b655d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -180.55896, + "y": -0.276, + "z": -74.737 + }, + "Rotation": { + "x": 3.18055472e-15, + "y": 15.6177959, + "z": -1.08051992e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ec6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ec6", + "_tpl": "6570264acfc010a0f5006a50", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051ec7", + "_tpl": "59e6927d86f77411da468256", + "parentId": "66cbc20c9e95fdffc1051ec6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20c9e95fdffc1051ec8", + "_tpl": "59e6927d86f77411da468256", + "parentId": "66cbc20c9e95fdffc1051ec6", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "LootFood [5] (64) [e9f85fdb-955b-432c-b384-cc3aabfbddcb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -230.572021, + "y": -6.41, + "z": -94.086 + }, + "Rotation": { + "x": 0.0, + "y": 110.584923, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051ed0", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66cbc20c9e95fdffc1051ecf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "LootFood [6] (5) [99e12b06-c3d5-4744-bc1f-ba30b690fa76]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -262.339, - "y": -3.998, - "z": -155.838 - }, - "Rotation": { - "x": 0.0, - "y": 39.83193, - "z": 4.32208026e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ed3", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ed3", - "_tpl": "65702630cfc010a0f5006a4a", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eca", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eca", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "LootFood [5] (70) [9137a212-34d0-416b-aedd-01b42adcb569]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -233.57605, + "y": -5.762, + "z": -86.91499 + }, + "Rotation": { + "x": 0.0, + "y": 77.72673, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051ed4", - "_tpl": "573720e02459776143012541", - "parentId": "66cbc20c9e95fdffc1051ed3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "LootFood [6] [5100d50d-3c0f-42a9-8447-7b96669241c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 399.1521, - "y": -53.172, - "z": 133.596985 - }, - "Rotation": { - "x": 0.0, - "y": 33.2960472, - "z": 2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ed6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ed6", - "_tpl": "5673de654bdc2d180f8b456d", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ecc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ecc", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [7] [f2b7beec-e676-4fbd-8a84-7806a8244d0d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 400.3059, - "y": -52.47, - "z": 134.531982 - }, - "Rotation": { - "x": 0.0, - "y": 33.2960472, - "z": 2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ed8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ed8", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootFood [6] (4) [1dfb5f5f-3c04-49d7-bd80-cd7faec1a53c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -262.600952, + "y": -3.998, + "z": -155.611 + }, + "Rotation": { + "x": 0.0, + "y": 39.83193, + "z": 4.32208026e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ecf", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ecf", + "_tpl": "657024e8cfc010a0f5006a0d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051ed0", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66cbc20c9e95fdffc1051ecf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "LootFood [9] (3) [3a576ae3-dbba-422f-b528-294fe97fe8c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 96.9160156, - "y": -47.319, - "z": 112.195007 - }, - "Rotation": { - "x": 0.0, - "y": 327.332184, - "z": -2.16103984e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eda", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eda", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootFood [6] (5) [99e12b06-c3d5-4744-bc1f-ba30b690fa76]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -262.339, + "y": -3.998, + "z": -155.838 + }, + "Rotation": { + "x": 0.0, + "y": 39.83193, + "z": 4.32208026e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ed3", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ed3", + "_tpl": "65702630cfc010a0f5006a4a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051ed4", + "_tpl": "573720e02459776143012541", + "parentId": "66cbc20c9e95fdffc1051ed3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "LootGarbage (38)(Clone) [8109f1ef-e320-485c-9764-49409def828e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 306.8533, - "y": -58.8874741, - "z": 309.87442 - }, - "Rotation": { - "x": -7.952915e-6, - "y": 347.4961, - "z": 2.1484424e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051edc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051edc", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootFood [6] [5100d50d-3c0f-42a9-8447-7b96669241c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 399.1521, + "y": -53.172, + "z": 133.596985 + }, + "Rotation": { + "x": 0.0, + "y": 33.2960472, + "z": 2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ed6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ed6", + "_tpl": "5673de654bdc2d180f8b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (38)(Clone) [b72f3aad-d040-4d48-8686-574f590bd950]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 308.051147, - "y": -58.75603, - "z": 306.490234 - }, - "Rotation": { - "x": 1.4731786e-6, - "y": 206.536041, - "z": -1.36876351e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ede", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ede", - "_tpl": "5648ac824bdc2ded0b8b457d", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootFood [7] [f2b7beec-e676-4fbd-8a84-7806a8244d0d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 400.3059, + "y": -52.47, + "z": 134.531982 + }, + "Rotation": { + "x": 0.0, + "y": 33.2960472, + "z": 2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ed8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ed8", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (39)(Clone) [924de1e0-17b4-412c-8893-a26bfadd0831]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 336.639343, - "y": -58.91, - "z": 311.427582 - }, - "Rotation": { - "x": 2.06688765e-5, - "y": 262.711243, - "z": -3.640252e-5 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ee0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ee0", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootFood [9] (3) [3a576ae3-dbba-422f-b528-294fe97fe8c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 96.9160156, + "y": -47.319, + "z": 112.195007 + }, + "Rotation": { + "x": 0.0, + "y": 327.332184, + "z": -2.16103984e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eda", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eda", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (39)(Clone) [986617cb-2d4b-43ec-ba57-e5ce7b2c846a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -175.8627, - "y": -54.85944, - "z": 384.3853 - }, - "Rotation": { - "x": 0.5853321, - "y": 134.626816, - "z": 2.96216941 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ee2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ee2", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootGarbage (38)(Clone) [8109f1ef-e320-485c-9764-49409def828e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 306.8533, + "y": -58.8874741, + "z": 309.87442 + }, + "Rotation": { + "x": -7.952915e-6, + "y": 347.4961, + "z": 2.1484424e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051edc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051edc", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [1] (25) [4e54b0e1-428c-4d64-aea2-5e36917f8bba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -159.453, - "y": -2.627, - "z": -89.252 - }, - "Rotation": { - "x": 0.0, - "y": 336.9505, - "z": -1.08051992e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ee4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ee4", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootGarbage (38)(Clone) [b72f3aad-d040-4d48-8686-574f590bd950]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 308.051147, + "y": -58.75603, + "z": 306.490234 + }, + "Rotation": { + "x": 1.4731786e-6, + "y": 206.536041, + "z": -1.36876351e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ede", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ede", + "_tpl": "5648ac824bdc2ded0b8b457d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [1] (42) [085478e9-1bea-49f2-89ff-607634cb800f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -153.823, - "y": -2.521, - "z": -90.1000061 - }, - "Rotation": { - "x": 0.0, - "y": 313.0531, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ee6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ee6", - "_tpl": "637b6251104668754b72f8f9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (39)(Clone) [924de1e0-17b4-412c-8893-a26bfadd0831]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 336.639343, + "y": -58.91, + "z": 311.427582 + }, + "Rotation": { + "x": 2.06688765e-5, + "y": 262.711243, + "z": -3.640252e-5 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ee0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ee0", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [1] (46) [71e66c3f-b594-4fd7-8c7b-63cd1af5a4f7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -153.723022, - "y": -2.165, - "z": -90.147995 - }, - "Rotation": { - "x": -6.36110944e-15, - "y": 24.2609177, - "z": -2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ee8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ee8", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootGarbage (39)(Clone) [986617cb-2d4b-43ec-ba57-e5ce7b2c846a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -175.8627, + "y": -54.85944, + "z": 384.3853 + }, + "Rotation": { + "x": 0.5853321, + "y": 134.626816, + "z": 2.96216941 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ee2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ee2", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [1] (64) [8a7af939-27fe-4a1b-819e-fc6219eda2c3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -352.718018, - "y": -2.833, - "z": -89.748 - }, - "Rotation": { - "x": 0.0, - "y": 149.545181, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eea", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eea", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [1] (25) [4e54b0e1-428c-4d64-aea2-5e36917f8bba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -159.453, + "y": -2.627, + "z": -89.252 + }, + "Rotation": { + "x": 0.0, + "y": 336.9505, + "z": -1.08051992e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ee4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ee4", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [3] (3) [13e15563-80b3-4ac9-a70a-d43cc4435410]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -337.282959, - "y": -2.233, - "z": -75.705 - }, - "Rotation": { - "x": 0.0, - "y": 6.929862, - "z": 5.40260032e-8 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eec", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eec", - "_tpl": "59e3606886f77417674759a5", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootMeds [1] (42) [085478e9-1bea-49f2-89ff-607634cb800f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -153.823, + "y": -2.521, + "z": -90.1000061 + }, + "Rotation": { + "x": 0.0, + "y": 313.0531, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ee6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ee6", + "_tpl": "637b6251104668754b72f8f9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [3] (4) [e8173b4a-6d14-46eb-8fa5-94297a4c96dd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -337.228027, - "y": -2.232, - "z": -76.177 - }, - "Rotation": { - "x": 0.0, - "y": 328.375122, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051eee", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051eee", - "_tpl": "590c657e86f77412b013051d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [1] (46) [71e66c3f-b594-4fd7-8c7b-63cd1af5a4f7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -153.723022, + "y": -2.165, + "z": -90.147995 + }, + "Rotation": { + "x": -6.36110944e-15, + "y": 24.2609177, + "z": -2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ee8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ee8", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [3] (5) [ed8c80b2-5f21-471e-94e2-c71761653d67]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -337.194946, - "y": -2.653, - "z": -76.078 - }, - "Rotation": { - "x": 0.0, - "y": 20.5441647, - "z": -1.08052028e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ef0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ef0", - "_tpl": "619cc01e0a7c3a1a2731940c", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootMeds [1] (64) [8a7af939-27fe-4a1b-819e-fc6219eda2c3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -352.718018, + "y": -2.833, + "z": -89.748 + }, + "Rotation": { + "x": 0.0, + "y": 149.545181, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eea", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eea", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [3] (8) [564c7c46-9572-45ac-b4dc-b219a97a7981]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -712.225952, - "y": -26.53, - "z": 100.066986 - }, - "Rotation": { - "x": 0.0, - "y": 316.4749, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ef3", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ef3", - "_tpl": "657023c61419851aef03e6eb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [3] (3) [13e15563-80b3-4ac9-a70a-d43cc4435410]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -337.282959, + "y": -2.233, + "z": -75.705 + }, + "Rotation": { + "x": 0.0, + "y": 6.929862, + "z": 5.40260032e-8 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eec", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eec", + "_tpl": "59e3606886f77417674759a5", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "LootMeds [3] (4) [e8173b4a-6d14-46eb-8fa5-94297a4c96dd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -337.228027, + "y": -2.232, + "z": -76.177 + }, + "Rotation": { + "x": 0.0, + "y": 328.375122, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051ef4", - "_tpl": "6196365d58ef8c428c287da1", - "parentId": "66cbc20c9e95fdffc1051ef3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051eee", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051eee", + "_tpl": "590c657e86f77412b013051d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [3] (9) [11b6a247-b225-481d-84b5-a4d86fb2d98c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -712.480957, - "y": -26.422, - "z": 100.028992 - }, - "Rotation": { - "x": 0.0, - "y": 316.4749, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ef6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ef6", - "_tpl": "5d1b309586f77425227d1676", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [3] (5) [ed8c80b2-5f21-471e-94e2-c71761653d67]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -337.194946, + "y": -2.653, + "z": -76.078 + }, + "Rotation": { + "x": 0.0, + "y": 20.5441647, + "z": -1.08052028e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ef0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ef0", + "_tpl": "619cc01e0a7c3a1a2731940c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [4] (23) [e11182d8-3729-44a3-b582-a212e07d8f3b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -347.896973, - "y": 0.15, - "z": -89.8 - }, - "Rotation": { - "x": 0.0, - "y": 313.1321, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ef8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ef8", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [3] (8) [564c7c46-9572-45ac-b4dc-b219a97a7981]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -712.225952, + "y": -26.53, + "z": 100.066986 + }, + "Rotation": { + "x": 0.0, + "y": 316.4749, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ef3", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ef3", + "_tpl": "657023c61419851aef03e6eb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051ef4", + "_tpl": "6196365d58ef8c428c287da1", + "parentId": "66cbc20c9e95fdffc1051ef3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "LootMeds [4] (24) [4cda845e-65ca-4a3e-9c1d-633a8d252b3a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -353.182983, - "y": -0.712, - "z": -85.7420044 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051efa", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051efa", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [3] (9) [11b6a247-b225-481d-84b5-a4d86fb2d98c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -712.480957, + "y": -26.422, + "z": 100.028992 + }, + "Rotation": { + "x": 0.0, + "y": 316.4749, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ef6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ef6", + "_tpl": "5d1b309586f77425227d1676", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [4] (28) [93cec93a-7169-4381-9405-3f3e27bf5321]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -353.073, - "y": -0.129, - "z": -84.903 - }, - "Rotation": { - "x": 0.0, - "y": 324.323181, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051efc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051efc", - "_tpl": "5c0e531d86f7747fa23f4d42", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [4] (23) [e11182d8-3729-44a3-b582-a212e07d8f3b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -347.896973, + "y": 0.15, + "z": -89.8 + }, + "Rotation": { + "x": 0.0, + "y": 313.1321, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ef8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ef8", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [4] (3) [58f28501-a8a1-4054-b12d-a2f3e7cf302e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -346.583, - "y": -0.063, - "z": -76.918 - }, - "Rotation": { - "x": 0.0, - "y": 41.0108528, - "z": -2.16103984e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051efe", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051efe", - "_tpl": "59e4cf5286f7741778269d8a", - "upd": { - "StackObjectsCount": 36 + ] + }, + { + "Id": "LootMeds [4] (24) [4cda845e-65ca-4a3e-9c1d-633a8d252b3a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -353.182983, + "y": -0.712, + "z": -85.7420044 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051efa", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051efa", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [4] (35) [70ed08ff-2782-4464-9cc4-5a5a82a4eee9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -222.08606, - "y": -0.045, - "z": -86.96001 - }, - "Rotation": { - "x": 0.0, - "y": 71.34249, - "z": 4.32207969e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f00", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f00", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootMeds [4] (28) [93cec93a-7169-4381-9405-3f3e27bf5321]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -353.073, + "y": -0.129, + "z": -84.903 + }, + "Rotation": { + "x": 0.0, + "y": 324.323181, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051efc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051efc", + "_tpl": "5c0e531d86f7747fa23f4d42", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [4] (4) [cbe5a329-8b47-42a7-941f-925ce7545dbc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -347.688965, - "y": 0.184, - "z": -89.58501 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f02", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f02", - "_tpl": "59e361e886f774176c10a2a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [4] (3) [58f28501-a8a1-4054-b12d-a2f3e7cf302e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -346.583, + "y": -0.063, + "z": -76.918 + }, + "Rotation": { + "x": 0.0, + "y": 41.0108528, + "z": -2.16103984e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051efe", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051efe", + "_tpl": "59e4cf5286f7741778269d8a", + "upd": { + "StackObjectsCount": 36 + } } - } - ] - }, - { - "Id": "LootMeds [4] (5) [fc9fc213-491a-4130-b02b-198d30b4ad81]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -348.047, - "y": -0.061, - "z": -89.091 - }, - "Rotation": { - "x": 0.0, - "y": 323.873016, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f04", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f04", - "_tpl": "590a391c86f774385a33c404", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [4] (35) [70ed08ff-2782-4464-9cc4-5a5a82a4eee9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -222.08606, + "y": -0.045, + "z": -86.96001 + }, + "Rotation": { + "x": 0.0, + "y": 71.34249, + "z": 4.32207969e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f00", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f00", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [4] [4ba5e02c-9cc5-49f1-9662-a54463b343fb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 143.703, - "y": -44.463, - "z": 125.083984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f06", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f06", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [4] (4) [cbe5a329-8b47-42a7-941f-925ce7545dbc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -347.688965, + "y": 0.184, + "z": -89.58501 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f02", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f02", + "_tpl": "59e361e886f774176c10a2a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [0] (10) [6c2dde86-17c6-4262-8526-43b1dc9bdd73]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -319.38, - "y": -2.73, - "z": -76.713 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f08", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f08", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [4] (5) [fc9fc213-491a-4130-b02b-198d30b4ad81]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -348.047, + "y": -0.061, + "z": -89.091 + }, + "Rotation": { + "x": 0.0, + "y": 323.873016, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f04", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f04", + "_tpl": "590a391c86f774385a33c404", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [0] (2) [266b5532-1ad4-4d21-a0f0-86969cff1736]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -319.277954, - "y": -3.515, - "z": -78.668 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f0a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f0a", - "_tpl": "5d1b3a5d86f774252167ba22", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [4] [4ba5e02c-9cc5-49f1-9662-a54463b343fb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 143.703, + "y": -44.463, + "z": 125.083984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f06", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f06", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [0] (3) [8c155703-7bab-4f72-b3e9-9aa285ee48ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -319.490967, - "y": -3.515, - "z": -79.34801 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f0c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f0c", - "_tpl": "6389c6c7dbfd5e4b95197e68", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [0] (10) [6c2dde86-17c6-4262-8526-43b1dc9bdd73]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -319.38, + "y": -2.73, + "z": -76.713 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f08", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f08", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "LootMeds [0] (2) [266b5532-1ad4-4d21-a0f0-86969cff1736]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -319.277954, + "y": -3.515, + "z": -78.668 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f0a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f0a", + "_tpl": "5d1b3a5d86f774252167ba22", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [0] (6) [50d16ac0-3bc5-49a6-93e5-08a82c4e1326]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -324.432, - "y": -3.165, - "z": -79.0939941 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f0e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f0e", - "_tpl": "590c678286f77426c9660122", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [0] (3) [8c155703-7bab-4f72-b3e9-9aa285ee48ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -319.490967, + "y": -3.515, + "z": -79.34801 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f0c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f0c", + "_tpl": "6389c6c7dbfd5e4b95197e68", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [0] (8) [8fc725c2-c42c-4cdf-a9fd-cd465c8c502e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -319.688965, - "y": -3.479, - "z": -77.08299 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f10", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f10", - "_tpl": "5734779624597737e04bf329", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [0] (6) [50d16ac0-3bc5-49a6-93e5-08a82c4e1326]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -324.432, + "y": -3.165, + "z": -79.0939941 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f0e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f0e", + "_tpl": "590c678286f77426c9660122", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds [0] [bfda4f3f-fa59-41d3-a8ae-02a902113a7f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -320.159058, - "y": -3.515, - "z": -78.06 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f12", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f12", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [0] (8) [8fc725c2-c42c-4cdf-a9fd-cd465c8c502e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -319.688965, + "y": -3.479, + "z": -77.08299 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f10", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f10", + "_tpl": "5734779624597737e04bf329", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootmoney [0] (10) [9d471bf9-bdb3-45ac-b5c8-b075bbc19ede]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -224.31604, - "y": -6.113, - "z": -93.819 - }, - "Rotation": { - "x": 0.0, - "y": 327.142944, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f14", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f14", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 82 - } - } - ] - }, - { - "Id": "Lootmoney [0] (5) [6bb2bbc0-2963-48bc-a48b-b11a9fb5afdf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -251.06604, - "y": -1.645, - "z": -143.655 - }, - "Rotation": { - "x": 0.0, - "y": 326.842621, - "z": -2.16103984e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f16", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f16", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds [0] [bfda4f3f-fa59-41d3-a8ae-02a902113a7f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -320.159058, + "y": -3.515, + "z": -78.06 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f12", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f12", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMoney [0] (14) [f3a31bea-391d-45e9-813d-6fa0362f4a5f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -319.13, - "y": 2.901, - "z": -87.9080048 - }, - "Rotation": { - "x": 0.0, - "y": 67.95142, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f18", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f18", - "_tpl": "5d235b4d86f7742e017bc88a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Lootmoney [0] (10) [9d471bf9-bdb3-45ac-b5c8-b075bbc19ede]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -224.31604, + "y": -6.113, + "z": -93.819 + }, + "Rotation": { + "x": 0.0, + "y": 327.142944, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f14", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f14", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 82 + } } - } - ] - }, - { - "Id": "LootMoney [0] (2) [4477f35a-915a-4ab6-8de7-93839ffa4b5b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -316.182983, - "y": 2.873, - "z": -88.257 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f1a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f1a", - "_tpl": "5a9d56c8a2750c0032157146", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Lootmoney [0] (5) [6bb2bbc0-2963-48bc-a48b-b11a9fb5afdf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -251.06604, + "y": -1.645, + "z": -143.655 + }, + "Rotation": { + "x": 0.0, + "y": 326.842621, + "z": -2.16103984e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f16", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f16", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootmoney [0] (2) [67beebfb-2884-4c01-8de6-fdffcdb64ea1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -287.822021, - "y": 2.444, - "z": -89.091 - }, - "Rotation": { - "x": 0.0, - "y": 327.614563, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f1c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f1c", - "_tpl": "590de71386f774347051a052", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMoney [0] (14) [f3a31bea-391d-45e9-813d-6fa0362f4a5f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -319.13, + "y": 2.901, + "z": -87.9080048 + }, + "Rotation": { + "x": 0.0, + "y": 67.95142, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f18", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f18", + "_tpl": "5d235b4d86f7742e017bc88a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootmoney [0] (3) [4b46b12c-a9d3-47c8-9169-c90078a781d0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -288.458984, - "y": 2.67, - "z": -88.4620056 - }, - "Rotation": { - "x": 0.0, - "y": 327.614563, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f1e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f1e", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "LootMoney [0] (7) [75092692-da47-459b-a0b7-4ddb431f6a2a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -316.480957, - "y": 3.133, - "z": -89.9519958 - }, - "Rotation": { - "x": -6.36110944e-15, - "y": 33.4854622, - "z": 2.16104013e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f20", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f20", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootstreet (10) [c290a84f-f44f-490a-89bb-4808bd4c573a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -347.564, - "y": -58.811, - "z": 463.163 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f22", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f22", - "_tpl": "5c1265fc86f7743f896a21c2", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootstreet (14) [f9c20adf-fdba-4b2f-b548-0f259af4356d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -402.264, - "y": -63.294, - "z": 551.596 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f24", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f24", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMoney [0] (2) [4477f35a-915a-4ab6-8de7-93839ffa4b5b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -316.182983, + "y": 2.873, + "z": -88.257 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f1a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f1a", + "_tpl": "5a9d56c8a2750c0032157146", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (15) [6ba50ce4-1ae6-4586-bbd4-0de842bef353]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -403.755, - "y": -63.294, - "z": 554.393 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f27", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f27", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootmoney [0] (2) [67beebfb-2884-4c01-8de6-fdffcdb64ea1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -287.822021, + "y": 2.444, + "z": -89.091 + }, + "Rotation": { + "x": 0.0, + "y": 327.614563, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f1c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f1c", + "_tpl": "590de71386f774347051a052", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootmoney [0] (3) [4b46b12c-a9d3-47c8-9169-c90078a781d0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -288.458984, + "y": 2.67, + "z": -88.4620056 + }, + "Rotation": { + "x": 0.0, + "y": 327.614563, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051f28", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbc20c9e95fdffc1051f27", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f1e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f1e", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (16) [0530a9b8-b7d1-4467-8162-73c44ba7a15c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -414.655, - "y": -63.294, - "z": 554.675 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f2b", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f2b", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootMoney [0] (7) [75092692-da47-459b-a0b7-4ddb431f6a2a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -316.480957, + "y": 3.133, + "z": -89.9519958 + }, + "Rotation": { + "x": -6.36110944e-15, + "y": 33.4854622, + "z": 2.16104013e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f20", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f20", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20c9e95fdffc1051f2c", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66cbc20c9e95fdffc1051f2b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + ] + }, + { + "Id": "Lootstreet (10) [c290a84f-f44f-490a-89bb-4808bd4c573a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -347.564, + "y": -58.811, + "z": 463.163 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f22", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f22", + "_tpl": "5c1265fc86f7743f896a21c2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (20) [37f9cbdf-6e7b-45a7-9114-9c7f265cb446]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -342.965, - "y": -63.479, - "z": 534.264 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f2e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f2e", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (14) [f9c20adf-fdba-4b2f-b548-0f259af4356d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -402.264, + "y": -63.294, + "z": 551.596 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f24", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f24", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (26) [c30d21ce-2a5f-49b2-a4b3-54b9cc0ffc17]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -212.489975, - "y": -63.5, - "z": 459.400024 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f31", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f31", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (15) [6ba50ce4-1ae6-4586-bbd4-0de842bef353]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -403.755, + "y": -63.294, + "z": 554.393 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f27", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f27", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051f28", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbc20c9e95fdffc1051f27", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - }, - { - "_id": "66cbc20c9e95fdffc1051f32", - "_tpl": "573718ba2459775a75491131", - "parentId": "66cbc20c9e95fdffc1051f31", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + ] + }, + { + "Id": "Lootstreet (16) [0530a9b8-b7d1-4467-8162-73c44ba7a15c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -414.655, + "y": -63.294, + "z": 554.675 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f2b", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f2b", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051f2c", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66cbc20c9e95fdffc1051f2b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Lootstreet (27) [00020dc9-0a95-473f-837e-215f87e9b56c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -208.090073, - "y": -63.95, - "z": 457.74 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f35", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f35", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (20) [37f9cbdf-6e7b-45a7-9114-9c7f265cb446]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -342.965, + "y": -63.479, + "z": 534.264 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f2e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f2e", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbc20c9e95fdffc1051f36", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbc20c9e95fdffc1051f35", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + ] + }, + { + "Id": "Lootstreet (26) [c30d21ce-2a5f-49b2-a4b3-54b9cc0ffc17]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -212.489975, + "y": -63.5, + "z": 459.400024 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f31", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f31", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051f32", + "_tpl": "573718ba2459775a75491131", + "parentId": "66cbc20c9e95fdffc1051f31", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Lootstreet (35) [c23ff244-138f-457d-8956-add7d3f60041]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.340073, - "y": -64.159, - "z": 452.39 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f39", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f39", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (27) [00020dc9-0a95-473f-837e-215f87e9b56c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -208.090073, + "y": -63.95, + "z": 457.74 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f35", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f35", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051f36", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbc20c9e95fdffc1051f35", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - }, - { - "_id": "66cbc20c9e95fdffc1051f3a", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66cbc20c9e95fdffc1051f39", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + ] + }, + { + "Id": "Lootstreet (35) [c23ff244-138f-457d-8956-add7d3f60041]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.340073, + "y": -64.159, + "z": 452.39 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f39", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f39", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051f3a", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66cbc20c9e95fdffc1051f39", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Lootstreet (38) [2bb5f9bf-5186-4881-aaf0-965407126bdf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -158.855, - "y": -64.159, - "z": 451.078 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f3c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f3c", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (38) [2bb5f9bf-5186-4881-aaf0-965407126bdf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -158.855, + "y": -64.159, + "z": 451.078 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f3c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f3c", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (39) [73762605-de20-48e6-90f0-9ae35d09ce3f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -157.562, - "y": -64.159, - "z": 452.159 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f3e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f3e", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (39) [73762605-de20-48e6-90f0-9ae35d09ce3f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -157.562, + "y": -64.159, + "z": 452.159 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f3e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f3e", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (42) [b5c4fbaa-2478-4cd4-b6eb-9e130e4174b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -148.688, - "y": -64.131, - "z": 439.039 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f40", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f40", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (42) [b5c4fbaa-2478-4cd4-b6eb-9e130e4174b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -148.688, + "y": -64.131, + "z": 439.039 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f40", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f40", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (45) [a9ee1850-99af-48a6-ae6c-7dad414ace34]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -137.889, - "y": -64.131, - "z": 438.169 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f42", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f42", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (45) [a9ee1850-99af-48a6-ae6c-7dad414ace34]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -137.889, + "y": -64.131, + "z": 438.169 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f42", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f42", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (48) [a2bb5691-5f24-4a2e-9f39-b043b71aed59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 142.300049, - "y": -47.278, - "z": 131.619019 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f44", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f44", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (48) [a2bb5691-5f24-4a2e-9f39-b043b71aed59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 142.300049, + "y": -47.278, + "z": 131.619019 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f44", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f44", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (49) [4feb2095-92cd-4d42-8b93-328c01ce1937]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 138.169, - "y": -47.632, - "z": 131.459 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f46", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f46", - "_tpl": "5c1265fc86f7743f896a21c2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (49) [4feb2095-92cd-4d42-8b93-328c01ce1937]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 138.169, + "y": -47.632, + "z": 131.459 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f46", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f46", + "_tpl": "5c1265fc86f7743f896a21c2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (5) [eadac11a-7cb8-4bf4-898e-85c9aa468444]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -402.516, - "y": -58.837, - "z": 469.865 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f48", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f48", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (5) [eadac11a-7cb8-4bf4-898e-85c9aa468444]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -402.516, + "y": -58.837, + "z": 469.865 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f48", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f48", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet (7) [c32ba5cc-0af5-45a6-9c7a-df74a24e169a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -393.731, - "y": -57.704, - "z": 470.165 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f4b", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f4b", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Lootstreet (7) [c32ba5cc-0af5-45a6-9c7a-df74a24e169a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -393.731, + "y": -57.704, + "z": 470.165 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f4b", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f4b", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051f4c", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbc20c9e95fdffc1051f4b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - }, - { - "_id": "66cbc20c9e95fdffc1051f4c", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbc20c9e95fdffc1051f4b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + ] + }, + { + "Id": "Lootstreet [67c11292-ff6c-4910-8aac-34dd3f728b64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -482.865, + "y": -58.061, + "z": 465.553 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f4e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f4e", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootstreet [67c11292-ff6c-4910-8aac-34dd3f728b64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -482.865, - "y": -58.061, - "z": 465.553 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f4e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f4e", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools [0] (1) [08cfc6f1-494b-4b83-abc9-6ce097cfd021]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -333.460938, + "y": -2.252, + "z": -82.34 + }, + "Rotation": { + "x": 0.0, + "y": 90.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f50", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f50", + "_tpl": "5b07db875acfc40dc528a5f6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [0] (1) [08cfc6f1-494b-4b83-abc9-6ce097cfd021]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -333.460938, - "y": -2.252, - "z": -82.34 - }, - "Rotation": { - "x": 0.0, - "y": 90.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f50", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f50", - "_tpl": "5b07db875acfc40dc528a5f6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [0] (3) [64fbe9e6-7c13-4fea-a8c2-2796b5ef8640]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 99.17297, + "y": -47.368, + "z": 110.182007 + }, + "Rotation": { + "x": 0.0, + "y": 329.341248, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f52", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f52", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [0] (3) [64fbe9e6-7c13-4fea-a8c2-2796b5ef8640]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 99.17297, - "y": -47.368, - "z": 110.182007 - }, - "Rotation": { - "x": 0.0, - "y": 329.341248, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f52", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f52", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [1] (1) [1c4767a4-7a8f-4350-961c-9d62e72b89e5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 400.4541, + "y": -53.773, + "z": 86.70401 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f54", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f54", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [1] (1) [1c4767a4-7a8f-4350-961c-9d62e72b89e5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 400.4541, - "y": -53.773, - "z": 86.70401 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f54", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f54", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools [1] (2) [062513c8-0a44-4009-8acb-76891d503870]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 400.6289, + "y": -53.773, + "z": 86.453 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f56", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f56", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [1] (2) [062513c8-0a44-4009-8acb-76891d503870]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 400.6289, - "y": -53.773, - "z": 86.453 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f56", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f56", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools [1] (31) [dbfb0fe5-4f11-42d6-afd4-e310085e5aee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -515.926, + "y": -21.323, + "z": 238.905029 + }, + "Rotation": { + "x": 3.9756934e-16, + "y": 5.952038, + "z": 5.402599e-8 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f58", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f58", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [1] (31) [dbfb0fe5-4f11-42d6-afd4-e310085e5aee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -515.926, - "y": -21.323, - "z": 238.905029 - }, - "Rotation": { - "x": 3.9756934e-16, - "y": 5.952038, - "z": 5.402599e-8 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f58", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f58", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools [1] (33) [9b0b2eec-fd38-49de-8c86-2cc4059e4631]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -515.51, + "y": -22.138, + "z": 235.609985 + }, + "Rotation": { + "x": 0.0, + "y": 36.03776, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f5a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f5a", + "_tpl": "57347c2e24597744902c94a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [1] (33) [9b0b2eec-fd38-49de-8c86-2cc4059e4631]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -515.51, - "y": -22.138, - "z": 235.609985 - }, - "Rotation": { - "x": 0.0, - "y": 36.03776, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f5a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f5a", - "_tpl": "57347c2e24597744902c94a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [1] (38) [044d7e08-81c5-41d8-9380-4f24c619af86]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -294.828, + "y": 3.596, + "z": -97.42999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f5c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f5c", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [1] (38) [044d7e08-81c5-41d8-9380-4f24c619af86]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -294.828, - "y": 3.596, - "z": -97.42999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f5c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f5c", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [1] (41) [fda12fe9-6558-4ab7-a04b-0cb2634772b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 141.853027, + "y": -44.239, + "z": 130.13 + }, + "Rotation": { + "x": 0.0, + "y": 54.04056, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f5e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f5e", + "_tpl": "5672cb724bdc2dc2088b456b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [1] (41) [fda12fe9-6558-4ab7-a04b-0cb2634772b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 141.853027, - "y": -44.239, - "z": 130.13 - }, - "Rotation": { - "x": 0.0, - "y": 54.04056, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f5e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f5e", - "_tpl": "5672cb724bdc2dc2088b456b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (103) [05ee6d34-2317-49a9-b714-c11daf71ae59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 444.933, + "y": -53.8509979, + "z": 178.4701 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f60", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f60", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (103) [05ee6d34-2317-49a9-b714-c11daf71ae59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 444.933, - "y": -53.8509979, - "z": 178.4701 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f60", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f60", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (106) [dd50507b-ccc6-4ed5-8d78-6a2c4c96c817]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 450.0387, + "y": -52.925, + "z": 151.536835 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f62", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f62", + "_tpl": "5d40412b86f7743cb332ac3a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (106) [dd50507b-ccc6-4ed5-8d78-6a2c4c96c817]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 450.0387, - "y": -52.925, - "z": 151.536835 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f62", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f62", - "_tpl": "5d40412b86f7743cb332ac3a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (109) [e2023d92-135b-40e4-9ca8-3d6cb2b3469a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 450.428375, + "y": -50.322, + "z": 154.161957 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f64", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f64", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (109) [e2023d92-135b-40e4-9ca8-3d6cb2b3469a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 450.428375, - "y": -50.322, - "z": 154.161957 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f64", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f64", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (115) [062134a8-2b1c-4f70-9226-678fe86fa8f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 432.960175, + "y": -52.9149971, + "z": 142.357956 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f66", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f66", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (115) [062134a8-2b1c-4f70-9226-678fe86fa8f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 432.960175, - "y": -52.9149971, - "z": 142.357956 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f66", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f66", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (119) [930b5a2d-dbcd-4185-b31c-fa264b6f5454]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 455.81958, + "y": -53.334, + "z": 137.50708 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f68", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f68", + "_tpl": "59faf98186f774067b6be103", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (119) [930b5a2d-dbcd-4185-b31c-fa264b6f5454]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 455.81958, - "y": -53.334, - "z": 137.50708 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f68", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f68", - "_tpl": "59faf98186f774067b6be103", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (120) [b9ff6a75-15ad-4103-9071-88bc895f5928]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 454.437378, + "y": -54.121, + "z": 141.477921 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f6a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f6a", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (120) [b9ff6a75-15ad-4103-9071-88bc895f5928]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 454.437378, - "y": -54.121, - "z": 141.477921 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f6a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f6a", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (126) [e4e7f85d-15ad-4c1f-bbb2-34c00ec275b3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 410.3942, + "y": -52.953, + "z": 172.732864 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f6c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f6c", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (126) [e4e7f85d-15ad-4c1f-bbb2-34c00ec275b3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 410.3942, - "y": -52.953, - "z": 172.732864 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f6c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f6c", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (128) [2836b2f6-008f-45fc-9789-174964529eca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 415.456757, + "y": -53.2889977, + "z": 159.27478 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f6e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f6e", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (128) [2836b2f6-008f-45fc-9789-174964529eca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 415.456757, - "y": -53.2889977, - "z": 159.27478 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f6e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f6e", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (132) [335e599e-9d40-4180-a16d-cdd588d46e7e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 390.934753, + "y": -53.163, + "z": 144.584579 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f70", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f70", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (132) [335e599e-9d40-4180-a16d-cdd588d46e7e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 390.934753, - "y": -53.163, - "z": 144.584579 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f70", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f70", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (133) [71997fbc-8e62-4ebc-bd11-33962c546c79]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 395.485474, + "y": -53.294, + "z": 142.780243 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f72", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f72", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (133) [71997fbc-8e62-4ebc-bd11-33962c546c79]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 395.485474, - "y": -53.294, - "z": 142.780243 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f72", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f72", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (134) [a3f2ef47-60be-4a25-89a3-a42b99e8c50f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 397.937744, + "y": -53.654, + "z": 140.760559 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f74", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f74", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (134) [a3f2ef47-60be-4a25-89a3-a42b99e8c50f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 397.937744, - "y": -53.654, - "z": 140.760559 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f74", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f74", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (138) [8a2d6557-6a8e-40d2-9f16-40258b416dc9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 404.102173, + "y": -52.972, + "z": 134.058838 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f76", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f76", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (138) [8a2d6557-6a8e-40d2-9f16-40258b416dc9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 404.102173, - "y": -52.972, - "z": 134.058838 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f76", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f76", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (142) [b0aa2b02-d559-4bac-9da0-978b096c874a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 400.098, + "y": -53.597, + "z": 94.82351 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f78", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f78", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (142) [b0aa2b02-d559-4bac-9da0-978b096c874a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 400.098, - "y": -53.597, - "z": 94.82351 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f78", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f78", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (144) [ad192c92-9ea1-4262-b7c0-0be7273cd3e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 398.967743, + "y": -53.0039978, + "z": 96.99126 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f7a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f7a", + "_tpl": "5e2af02c86f7746d420957d4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (144) [ad192c92-9ea1-4262-b7c0-0be7273cd3e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 398.967743, - "y": -53.0039978, - "z": 96.99126 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f7a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f7a", - "_tpl": "5e2af02c86f7746d420957d4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (148) [e6da495b-ece2-40aa-9345-b6855eec3f04]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 425.835, + "y": -53.3099976, + "z": 70.97985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f7c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f7c", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (148) [e6da495b-ece2-40aa-9345-b6855eec3f04]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 425.835, - "y": -53.3099976, - "z": 70.97985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f7c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f7c", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (151) [d91cb9a0-db6d-42f5-88dc-8ad7ee23056c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 426.415039, + "y": -53.3509979, + "z": 68.0663757 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f7e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f7e", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (151) [d91cb9a0-db6d-42f5-88dc-8ad7ee23056c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 426.415039, - "y": -53.3509979, - "z": 68.0663757 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f7e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f7e", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (153) [003733f8-ede1-4393-ad7e-fab0027be6b6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 422.757629, + "y": -53.964, + "z": 65.7510757 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f80", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f80", + "_tpl": "619cbfccbedcde2f5b3f7bdd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (153) [003733f8-ede1-4393-ad7e-fab0027be6b6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 422.757629, - "y": -53.964, - "z": 65.7510757 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f80", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f80", - "_tpl": "619cbfccbedcde2f5b3f7bdd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (2) [d42044be-9bbd-4dd1-a153-3478ffbed458]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -121.504028, + "y": -21.281, + "z": -11.5369873 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f82", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f82", + "_tpl": "57347c5b245977448d35f6e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (2) [d42044be-9bbd-4dd1-a153-3478ffbed458]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -121.504028, - "y": -21.281, - "z": -11.5369873 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f82", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f82", - "_tpl": "57347c5b245977448d35f6e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (31) [c5504604-86cf-4c9d-b99f-acd95a4f26a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -143.568, + "y": 0.744, + "z": -74.759 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f84", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f84", + "_tpl": "59e35abd86f7741778269d82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (31) [c5504604-86cf-4c9d-b99f-acd95a4f26a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -143.568, - "y": 0.744, - "z": -74.759 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f84", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f84", - "_tpl": "59e35abd86f7741778269d82", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (34) [b5404d67-b573-4a94-8a18-13d2376dcea7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -341.66394, + "y": 0.082, + "z": -88.1349945 + }, + "Rotation": { + "x": 0.0, + "y": 358.127441, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f86", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f86", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (34) [b5404d67-b573-4a94-8a18-13d2376dcea7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -341.66394, - "y": 0.082, - "z": -88.1349945 - }, - "Rotation": { - "x": 0.0, - "y": 358.127441, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f86", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f86", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (38) [92a6710f-b6cd-4e90-a76d-96c9132d4e0c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -141.13501, + "y": -2.578, + "z": -89.79201 + }, + "Rotation": { + "x": 0.0, + "y": 90.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f88", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f88", + "_tpl": "5733279d245977289b77ec24", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (38) [92a6710f-b6cd-4e90-a76d-96c9132d4e0c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -141.13501, - "y": -2.578, - "z": -89.79201 - }, - "Rotation": { - "x": 0.0, - "y": 90.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f88", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f88", - "_tpl": "5733279d245977289b77ec24", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (4) [661ff9cc-b438-4a5c-9706-314b871532e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -141.175049, + "y": -2.929, + "z": -90.058 + }, + "Rotation": { + "x": 0.0, + "y": 90.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f8a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f8a", + "_tpl": "5d4041f086f7743cac3f22a7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (4) [661ff9cc-b438-4a5c-9706-314b871532e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -141.175049, - "y": -2.929, - "z": -90.058 - }, - "Rotation": { - "x": 0.0, - "y": 90.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f8a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f8a", - "_tpl": "5d4041f086f7743cac3f22a7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (42) [5abfbccd-5549-43cd-92f7-bae6f665dc4f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -265.875977, + "y": 0.251, + "z": -148.626 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f8c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f8c", + "_tpl": "60391afc25aff57af81f7085", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (42) [5abfbccd-5549-43cd-92f7-bae6f665dc4f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -265.875977, - "y": 0.251, - "z": -148.626 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f8c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f8c", - "_tpl": "60391afc25aff57af81f7085", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (42) [c84bd78d-7ba8-43fe-bbc9-beac0d75dc4d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -205.370972, + "y": -2.89, + "z": -91.72 + }, + "Rotation": { + "x": 0.0, + "y": 327.230469, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f8e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f8e", + "_tpl": "5d1c819a86f774771b0acd6c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (42) [c84bd78d-7ba8-43fe-bbc9-beac0d75dc4d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -205.370972, - "y": -2.89, - "z": -91.72 - }, - "Rotation": { - "x": 0.0, - "y": 327.230469, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f8e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f8e", - "_tpl": "5d1c819a86f774771b0acd6c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (45) [e344aad4-fd7b-42d9-9dba-497eed8a6176]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -209.922974, + "y": -2.55, + "z": -92.54401 + }, + "Rotation": { + "x": 0.0, + "y": 18.4715462, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f90", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f90", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (45) [e344aad4-fd7b-42d9-9dba-497eed8a6176]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -209.922974, - "y": -2.55, - "z": -92.54401 - }, - "Rotation": { - "x": 0.0, - "y": 18.4715462, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f90", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f90", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (46) [7c9f2d87-8ce7-44f9-ae34-f793c1b14acb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -294.021973, + "y": 2.926, + "z": -86.7709961 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f92", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f92", + "_tpl": "590c5f0d86f77413997acfab", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (46) [7c9f2d87-8ce7-44f9-ae34-f793c1b14acb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -294.021973, - "y": 2.926, - "z": -86.7709961 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f92", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f92", - "_tpl": "590c5f0d86f77413997acfab", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (47) [33eb6da4-f19d-4fc8-a4f9-e864b435552d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -232.987061, + "y": -2.807, + "z": -109.009 + }, + "Rotation": { + "x": 0.0, + "y": 37.53403, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f94", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f94", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (47) [33eb6da4-f19d-4fc8-a4f9-e864b435552d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -232.987061, - "y": -2.807, - "z": -109.009 - }, - "Rotation": { - "x": 0.0, - "y": 37.53403, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f94", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f94", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (47) [a757e603-95be-4c49-b346-da5e13909c23]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -293.602051, + "y": 2.926, + "z": -86.868 + }, + "Rotation": { + "x": 0.0, + "y": 318.0055, + "z": -4.32207969e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f96", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f96", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (47) [a757e603-95be-4c49-b346-da5e13909c23]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -293.602051, - "y": 2.926, - "z": -86.868 - }, - "Rotation": { - "x": 0.0, - "y": 318.0055, - "z": -4.32207969e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f96", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f96", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootTools [2] (52) [cd8db5de-213f-44f1-9147-ec0666dc6525]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -300.511963, + "y": 2.904, + "z": -77.429 + }, + "Rotation": { + "x": 0.0, + "y": 359.72995, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f98", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f98", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (52) [cd8db5de-213f-44f1-9147-ec0666dc6525]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -300.511963, - "y": 2.904, - "z": -77.429 - }, - "Rotation": { - "x": 0.0, - "y": 359.72995, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f98", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f98", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (54) [88e5f502-6959-472d-a809-212ff83bf728]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -306.782959, + "y": 2.946, + "z": -75.0359955 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f9a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f9a", + "_tpl": "5cc80f79e4a949033c7343b2", + "upd": { + "StackObjectsCount": 11 + } } - } - ] - }, - { - "Id": "LootTools [2] (54) [88e5f502-6959-472d-a809-212ff83bf728]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -306.782959, - "y": 2.946, - "z": -75.0359955 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f9a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f9a", - "_tpl": "5cc80f79e4a949033c7343b2", - "upd": { - "StackObjectsCount": 11 + { + "Id": "Loottools [2] (54) [fc36a0b1-8ae0-4a0c-9fe1-f473aa7197ca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -141.225952, + "y": 3.248, + "z": -77.843 + }, + "Rotation": { + "x": 0.0, + "y": 301.5147, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f9c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f9c", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (54) [fc36a0b1-8ae0-4a0c-9fe1-f473aa7197ca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -141.225952, - "y": 3.248, - "z": -77.843 - }, - "Rotation": { - "x": 0.0, - "y": 301.5147, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f9c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f9c", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (55) [47f23c47-1e4b-4178-8870-013379379e7d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -141.21106, + "y": 3.632, + "z": -77.448 + }, + "Rotation": { + "x": 0.0, + "y": 301.5147, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051f9e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051f9e", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (55) [47f23c47-1e4b-4178-8870-013379379e7d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -141.21106, - "y": 3.632, - "z": -77.448 - }, - "Rotation": { - "x": 0.0, - "y": 301.5147, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051f9e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051f9e", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (55) [8bbfafad-9441-49d3-9dc9-78176613acab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -306.555054, + "y": 2.946, + "z": -75.188 + }, + "Rotation": { + "x": 1.27222189e-14, + "y": 53.8061752, + "z": -4.32208026e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fa0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fa0", + "_tpl": "5a608bf24f39f98ffc77720e", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "LootTools [2] (55) [8bbfafad-9441-49d3-9dc9-78176613acab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -306.555054, - "y": 2.946, - "z": -75.188 - }, - "Rotation": { - "x": 1.27222189e-14, - "y": 53.8061752, - "z": -4.32208026e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fa0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fa0", - "_tpl": "5a608bf24f39f98ffc77720e", - "upd": { - "StackObjectsCount": 20 + ] + }, + { + "Id": "Loottools [2] (6) [3d74078e-e8b0-4b28-9eda-2b328358b473]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -341.276978, + "y": 0.165, + "z": -86.287 + }, + "Rotation": { + "x": 0.0, + "y": 320.2969, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fa2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fa2", + "_tpl": "590a3cd386f77436f20848cb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (6) [3d74078e-e8b0-4b28-9eda-2b328358b473]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -341.276978, - "y": 0.165, - "z": -86.287 - }, - "Rotation": { - "x": 0.0, - "y": 320.2969, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fa2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fa2", - "_tpl": "590a3cd386f77436f20848cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (60) [33028192-77d9-4727-a03d-92baabd2a0b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -362.619019, + "y": -3.244, + "z": -88.593 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fa4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fa4", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (60) [33028192-77d9-4727-a03d-92baabd2a0b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -362.619019, - "y": -3.244, - "z": -88.593 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fa4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fa4", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (61) [da7b3c44-1186-4c29-983e-343f9f4d897f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -362.590942, + "y": -2.918, + "z": -88.98801 + }, + "Rotation": { + "x": 0.0, + "y": 327.2002, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fa6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fa6", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (61) [da7b3c44-1186-4c29-983e-343f9f4d897f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -362.590942, - "y": -2.918, - "z": -88.98801 - }, - "Rotation": { - "x": 0.0, - "y": 327.2002, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fa6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fa6", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (62) [088b5839-e229-43de-b905-ce1091c56bec]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -362.625977, + "y": -2.519, + "z": -88.215 + }, + "Rotation": { + "x": 0.0, + "y": 327.2002, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fa8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fa8", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (62) [088b5839-e229-43de-b905-ce1091c56bec]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -362.625977, - "y": -2.519, - "z": -88.215 - }, - "Rotation": { - "x": 0.0, - "y": 327.2002, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fa8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fa8", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (63) [fe8e6333-5e96-4e4c-965a-55d4a5e9f82d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -362.5, + "y": -2.904, + "z": -90.054 + }, + "Rotation": { + "x": 0.0, + "y": 296.73642, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051faa", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051faa", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (63) [fe8e6333-5e96-4e4c-965a-55d4a5e9f82d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -362.5, - "y": -2.904, - "z": -90.054 - }, - "Rotation": { - "x": 0.0, - "y": 296.73642, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051faa", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051faa", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (65) [17231810-b9ed-4979-8755-abce3d3c82bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -362.618042, + "y": 2.94, + "z": -88.382 + }, + "Rotation": { + "x": 0.0, + "y": 339.004181, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fac", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fac", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (65) [17231810-b9ed-4979-8755-abce3d3c82bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -362.618042, - "y": 2.94, - "z": -88.382 - }, - "Rotation": { - "x": 0.0, - "y": 339.004181, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fac", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fac", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (66) [682ac348-f45c-47b1-8b88-a3df696287de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -362.602051, + "y": 3.236, + "z": -87.53999 + }, + "Rotation": { + "x": 0.0, + "y": 339.004181, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fae", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fae", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (66) [682ac348-f45c-47b1-8b88-a3df696287de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -362.602051, - "y": 3.236, - "z": -87.53999 - }, - "Rotation": { - "x": 0.0, - "y": 339.004181, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fae", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fae", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (67) [e85cf30d-2ea4-4aa1-9f18-c84147b196b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -362.634033, + "y": 3.692, + "z": -88.003006 + }, + "Rotation": { + "x": 0.0, + "y": 26.11267, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fb0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fb0", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (67) [e85cf30d-2ea4-4aa1-9f18-c84147b196b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -362.634033, - "y": 3.692, - "z": -88.003006 - }, - "Rotation": { - "x": 0.0, - "y": 26.11267, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fb0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fb0", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (69) [30dd6a4f-8872-490d-9faa-26151799a38a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -302.858032, + "y": 2.897, + "z": -74.8289948 + }, + "Rotation": { + "x": 0.0, + "y": 66.37226, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fb2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fb2", + "_tpl": "655c67782a1356436041c9c5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (69) [30dd6a4f-8872-490d-9faa-26151799a38a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -302.858032, - "y": 2.897, - "z": -74.8289948 - }, - "Rotation": { - "x": 0.0, - "y": 66.37226, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fb2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fb2", - "_tpl": "655c67782a1356436041c9c5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (69) [e1cec771-a870-4b3f-ae81-350e29a9606c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -361.246948, + "y": 3.41, + "z": -86.409 + }, + "Rotation": { + "x": 0.0, + "y": 58.78925, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fb4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fb4", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (69) [e1cec771-a870-4b3f-ae81-350e29a9606c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -361.246948, - "y": 3.41, - "z": -86.409 - }, - "Rotation": { - "x": 0.0, - "y": 58.78925, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fb4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fb4", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (7) [0b96352f-a6a0-45ed-aab2-473c42370a7d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -341.531, + "y": 0.082, + "z": -86.629 + }, + "Rotation": { + "x": 0.0, + "y": 320.2969, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fb6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fb6", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (7) [0b96352f-a6a0-45ed-aab2-473c42370a7d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -341.531, - "y": 0.082, - "z": -86.629 - }, - "Rotation": { - "x": 0.0, - "y": 320.2969, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fb6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fb6", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (73) [01157ad1-7ae7-425b-9db6-08525eb2c322]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -291.740967, + "y": 2.937, + "z": -102.981995 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fb8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fb8", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (73) [01157ad1-7ae7-425b-9db6-08525eb2c322]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -291.740967, - "y": 2.937, - "z": -102.981995 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fb8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fb8", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (74) [f45c3fe4-3e9c-48d0-9a48-ea69f7f1c7e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -325.36, + "y": 3.002, + "z": -77.7680054 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fbc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fbc", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc1051fbd", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbc20c9e95fdffc1051fbc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbc20c9e95fdffc1051fbe", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbc20c9e95fdffc1051fbc", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "LootTools [2] (74) [f45c3fe4-3e9c-48d0-9a48-ea69f7f1c7e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -325.36, - "y": 3.002, - "z": -77.7680054 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fbc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fbc", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "LootTools [2] (77) [43ed6c36-4299-4131-b41d-7bf084da93fb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -325.437, + "y": 3.002, + "z": -77.3370056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051fbd", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbc20c9e95fdffc1051fbc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fc0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fc0", + "_tpl": "6065880c132d4d12c81fd8da", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "LootTools [2] (78) [073b4325-685b-4acb-b5ec-824ad389dec1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -325.286, + "y": 3.002, + "z": -77.425 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc1051fbe", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbc20c9e95fdffc1051fbc", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fc2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fc2", + "_tpl": "6565b91666492762f5029c0b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (77) [43ed6c36-4299-4131-b41d-7bf084da93fb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -325.437, - "y": 3.002, - "z": -77.3370056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fc0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fc0", - "_tpl": "6065880c132d4d12c81fd8da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (8) [a46496d3-c0e4-406e-85b3-7a71691f5718]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -344.246948, + "y": -0.672, + "z": -86.58 + }, + "Rotation": { + "x": 0.0, + "y": 320.2969, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fc4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fc4", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (78) [073b4325-685b-4acb-b5ec-824ad389dec1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -325.286, - "y": 3.002, - "z": -77.425 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fc2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fc2", - "_tpl": "6565b91666492762f5029c0b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (81) [3e24433d-98f7-4290-b38e-6e65e246d4a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -324.956055, + "y": 3.379, + "z": -74.8269958 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fc6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fc6", + "_tpl": "5c78f2882e22165df16b832e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (8) [a46496d3-c0e4-406e-85b3-7a71691f5718]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -344.246948, - "y": -0.672, - "z": -86.58 - }, - "Rotation": { - "x": 0.0, - "y": 320.2969, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fc4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fc4", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (83) [6dbd5619-1b8a-4a4f-a82e-2dd4f221c41c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -324.661, + "y": 2.854, + "z": -74.503006 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fc8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fc8", + "_tpl": "57cffcdd24597763f5110006", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (81) [3e24433d-98f7-4290-b38e-6e65e246d4a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -324.956055, - "y": 3.379, - "z": -74.8269958 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fc6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fc6", - "_tpl": "5c78f2882e22165df16b832e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (84) [70aa4754-c2a7-4e6f-99e5-67b07355d5c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -324.762939, + "y": 2.907, + "z": -74.808 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fca", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fca", + "_tpl": "5c1bc7752e221602b1779b34", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (83) [6dbd5619-1b8a-4a4f-a82e-2dd4f221c41c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -324.661, - "y": 2.854, - "z": -74.503006 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fc8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fc8", - "_tpl": "57cffcdd24597763f5110006", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (85) [34414335-1a2c-49e2-a1b7-d7952269153a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -232.946045, + "y": -6.215, + "z": -102.093 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fcc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fcc", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (84) [70aa4754-c2a7-4e6f-99e5-67b07355d5c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -324.762939, - "y": 2.907, - "z": -74.808 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fca", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fca", - "_tpl": "5c1bc7752e221602b1779b34", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (86) [cc9d88f6-77be-4d1f-8fe6-123fe4f556b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -272.817017, + "y": -0.08059996, + "z": -136.492 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fce", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fce", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (85) [34414335-1a2c-49e2-a1b7-d7952269153a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -232.946045, - "y": -6.215, - "z": -102.093 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fcc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fcc", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (87) [035b41da-fcab-4b1b-b02e-7e7cc42adf08]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -271.49, + "y": 0.154, + "z": -130.917 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fd0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fd0", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (86) [cc9d88f6-77be-4d1f-8fe6-123fe4f556b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -272.817017, - "y": -0.08059996, - "z": -136.492 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fce", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fce", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (9) [fb0806a0-a5e2-400c-9623-6b4cad13bb8e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -341.58606, + "y": 0.125, + "z": -87.048996 + }, + "Rotation": { + "x": 0.0, + "y": 320.2969, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fd2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fd2", + "_tpl": "5734779624597737e04bf329", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (87) [035b41da-fcab-4b1b-b02e-7e7cc42adf08]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -271.49, - "y": 0.154, - "z": -130.917 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fd0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fd0", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (90) [8a809f3a-f7c5-4a0e-a5f2-fe1490f14967]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -261.557983, + "y": 0.727, + "z": -149.715 + }, + "Rotation": { + "x": 0.0, + "y": 85.43389, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fd4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fd4", + "_tpl": "5734779624597737e04bf329", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (9) [fb0806a0-a5e2-400c-9623-6b4cad13bb8e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -341.58606, - "y": 0.125, - "z": -87.048996 - }, - "Rotation": { - "x": 0.0, - "y": 320.2969, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fd2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fd2", - "_tpl": "5734779624597737e04bf329", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools [2] (92) [654c4ccb-b6f5-406e-95e8-ff1bf2507ba7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -297.818, + "y": -6.753, + "z": -103.091995 + }, + "Rotation": { + "x": 0.0, + "y": 328.183258, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fd6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fd6", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (90) [8a809f3a-f7c5-4a0e-a5f2-fe1490f14967]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -261.557983, - "y": 0.727, - "z": -149.715 - }, - "Rotation": { - "x": 0.0, - "y": 85.43389, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fd4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fd4", - "_tpl": "5734779624597737e04bf329", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (97) [21315905-5b17-4234-a27e-cb90b57f6337]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -237.906, + "y": -0.555, + "z": -146.455 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fd8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fd8", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [2] (92) [654c4ccb-b6f5-406e-95e8-ff1bf2507ba7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -297.818, - "y": -6.753, - "z": -103.091995 - }, - "Rotation": { - "x": 0.0, - "y": 328.183258, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fd6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fd6", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (98) [403e2032-47db-4170-b836-b0042e812b24]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -237.89502, + "y": 0.306, + "z": -146.472 + }, + "Rotation": { + "x": 0.0, + "y": 41.5428238, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fda", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fda", + "_tpl": "5e2af02c86f7746d420957d4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (97) [21315905-5b17-4234-a27e-cb90b57f6337]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -237.906, - "y": -0.555, - "z": -146.455 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fd8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fd8", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTools [2] (99) [055367da-d7ac-494f-80d5-fbb0cea94113]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.842041, + "y": -20.5159988, + "z": -15.5510254 + }, + "Rotation": { + "x": -2.54444377e-14, + "y": 278.0758, + "z": 4.322081e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fdc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fdc", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTools [2] (98) [403e2032-47db-4170-b836-b0042e812b24]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -237.89502, - "y": 0.306, - "z": -146.472 - }, - "Rotation": { - "x": 0.0, - "y": 41.5428238, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fda", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fda", - "_tpl": "5e2af02c86f7746d420957d4", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "LootTools [2] (99) [055367da-d7ac-494f-80d5-fbb0cea94113]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.842041, - "y": -20.5159988, - "z": -15.5510254 - }, - "Rotation": { - "x": -2.54444377e-14, - "y": 278.0758, - "z": 4.322081e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fdc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fdc", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loottools (10) [be263576-f4f6-4b4a-bbd2-db07bd4d4815]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -607.959, - "y": -28.465, - "z": -181.567 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fde", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fde", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loottools (101) [c69ec3ce-f99c-4b49-b91c-1a4f9bb2ce59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -681.021, - "y": -25.289, - "z": -220.584 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fe0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fe0", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loottools (102) [8198ae15-4e83-4e86-89e5-4332f97d7c55]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -680.46, - "y": -25.289, - "z": -222.574 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fe2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fe2", - "_tpl": "5d40425986f7743185265461", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools (10) [be263576-f4f6-4b4a-bbd2-db07bd4d4815]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -607.959, + "y": -28.465, + "z": -181.567 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fde", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fde", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (104) [8b2c1e8a-671a-4c37-abfc-d85629730b7e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -706.714, - "y": -25.346, - "z": -238.486 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fe4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fe4", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (101) [c69ec3ce-f99c-4b49-b91c-1a4f9bb2ce59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -681.021, + "y": -25.289, + "z": -220.584 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fe0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fe0", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (105) [aa102eec-8d16-4a9e-8a1b-ac5ab2b564ed]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -708.075, - "y": -25.346, - "z": -238.393 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fe6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fe6", - "_tpl": "5d63d33b86f7746ea9275524", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (102) [8198ae15-4e83-4e86-89e5-4332f97d7c55]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -680.46, + "y": -25.289, + "z": -222.574 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fe2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fe2", + "_tpl": "5d40425986f7743185265461", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (108) [175d3189-e508-4854-b21c-a8be0a445d89]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -686.716, - "y": -25.169, - "z": -195.118 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fe8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fe8", - "_tpl": "577e1c9d2459773cd707c525", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (104) [8b2c1e8a-671a-4c37-abfc-d85629730b7e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -706.714, + "y": -25.346, + "z": -238.486 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fe4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fe4", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (109) [cdec95c7-be65-426a-b4c7-5d747c2f3906]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -685.947, - "y": -25.169, - "z": -193.567 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fea", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fea", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (105) [aa102eec-8d16-4a9e-8a1b-ac5ab2b564ed]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -708.075, + "y": -25.346, + "z": -238.393 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fe6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fe6", + "_tpl": "5d63d33b86f7746ea9275524", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (11) [1ab3440c-40eb-4b91-97a7-0f80e6a408b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -608.236, - "y": -28.465, - "z": -181.699 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fec", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fec", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (108) [175d3189-e508-4854-b21c-a8be0a445d89]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -686.716, + "y": -25.169, + "z": -195.118 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fe8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fe8", + "_tpl": "577e1c9d2459773cd707c525", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (114) [302a3ebd-5698-454b-896b-b0622d1efaaf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -617.873, - "y": -28.445, - "z": -167.557 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051fee", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051fee", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (109) [cdec95c7-be65-426a-b4c7-5d747c2f3906]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -685.947, + "y": -25.169, + "z": -193.567 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fea", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fea", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (116) [cb674838-caca-4e9e-98be-436bd6e2a343]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -616.297, - "y": -28.084, - "z": -168.133 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ff0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ff0", - "_tpl": "619cbfeb6b8a1b37a54eebfa", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (11) [1ab3440c-40eb-4b91-97a7-0f80e6a408b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -608.236, + "y": -28.465, + "z": -181.699 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fec", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fec", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (122) [fac11b73-f7f7-4cb2-8244-8d0e446e7cfb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -638.196, - "y": -25.8, - "z": -281.003 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ff2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ff2", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (114) [302a3ebd-5698-454b-896b-b0622d1efaaf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -617.873, + "y": -28.445, + "z": -167.557 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051fee", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051fee", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (123) [765efc08-ccc3-419b-86ce-bea0e3d4a557]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -639.16, - "y": -25.8, - "z": -279.986 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ff4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ff4", - "_tpl": "590c2b4386f77425357b6123", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (116) [cb674838-caca-4e9e-98be-436bd6e2a343]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -616.297, + "y": -28.084, + "z": -168.133 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ff0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ff0", + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (124) [df48d4e7-46ee-4385-9c7b-fea22b0fd1ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -638.468, - "y": -25.638, - "z": -281.768 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ff6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ff6", - "_tpl": "5bc9b355d4351e6d1509862a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (122) [fac11b73-f7f7-4cb2-8244-8d0e446e7cfb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -638.196, + "y": -25.8, + "z": -281.003 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ff2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ff2", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (125) [1493a778-4a56-4437-a0af-1e563de2c709]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -632.35, - "y": -25.428, - "z": -221.238 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ff8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ff8", - "_tpl": "590a358486f77429692b2790", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (123) [765efc08-ccc3-419b-86ce-bea0e3d4a557]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -639.16, + "y": -25.8, + "z": -279.986 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ff4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ff4", + "_tpl": "590c2b4386f77425357b6123", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (136) [c57af56b-3ab8-411c-be9c-c6be89fa6afe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -609.317, - "y": -28.649, - "z": -166.947 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ffa", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ffa", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (124) [df48d4e7-46ee-4385-9c7b-fea22b0fd1ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -638.468, + "y": -25.638, + "z": -281.768 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ff6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ff6", + "_tpl": "5bc9b355d4351e6d1509862a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (137) [e3e1c78a-f61f-45ea-beba-af096a57eea4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -609.451, - "y": -28.649, - "z": -168.911 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ffc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ffc", - "_tpl": "590c311186f77424d1667482", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (125) [1493a778-4a56-4437-a0af-1e563de2c709]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -632.35, + "y": -25.428, + "z": -221.238 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ff8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ff8", + "_tpl": "590a358486f77429692b2790", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (138) [04e6a38a-cd82-4297-a9d6-d0e9df453a1c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -625.077, - "y": -25.306, - "z": -248.939 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1051ffe", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1051ffe", - "_tpl": "5d63d33b86f7746ea9275524", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (136) [c57af56b-3ab8-411c-be9c-c6be89fa6afe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -609.317, + "y": -28.649, + "z": -166.947 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ffa", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ffa", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (14) [534c2f4c-39d1-4674-aecb-7e943a93152d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -598.136, - "y": -28.027, - "z": -176.606 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052000", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052000", - "_tpl": "59faf98186f774067b6be103", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (137) [e3e1c78a-f61f-45ea-beba-af096a57eea4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -609.451, + "y": -28.649, + "z": -168.911 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ffc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ffc", + "_tpl": "590c311186f77424d1667482", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (140) [fa6ba4b7-7580-4012-8e26-f4b4f7c2612a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -626.006, - "y": -25.306, - "z": -251.41 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052002", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052002", - "_tpl": "590a3d9c86f774385926e510", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (138) [04e6a38a-cd82-4297-a9d6-d0e9df453a1c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -625.077, + "y": -25.306, + "z": -248.939 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1051ffe", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1051ffe", + "_tpl": "5d63d33b86f7746ea9275524", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (142) [1b1c1f81-ddf1-4e06-9d4b-97ffdc2acca5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -653.713, - "y": -25.28, - "z": -221.964 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052004", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052004", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (14) [534c2f4c-39d1-4674-aecb-7e943a93152d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -598.136, + "y": -28.027, + "z": -176.606 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052000", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052000", + "_tpl": "59faf98186f774067b6be103", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (144) [9f29c2e9-7734-440f-ba8d-219477cae2f0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -654.79, - "y": -25.28, - "z": -226.528 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052006", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052006", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (140) [fa6ba4b7-7580-4012-8e26-f4b4f7c2612a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -626.006, + "y": -25.306, + "z": -251.41 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052002", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052002", + "_tpl": "590a3d9c86f774385926e510", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (146) [cacc1338-70f1-4a59-b0ee-cf67030367bb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -650.954, - "y": -25.28, - "z": -224.672 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052008", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052008", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (142) [1b1c1f81-ddf1-4e06-9d4b-97ffdc2acca5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -653.713, + "y": -25.28, + "z": -221.964 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052004", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052004", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (148) [da69ff09-f3af-4fbb-be12-7e90d2c75420]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -647.151, - "y": -25.28, - "z": -224.541 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105200a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105200a", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (144) [9f29c2e9-7734-440f-ba8d-219477cae2f0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -654.79, + "y": -25.28, + "z": -226.528 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052006", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052006", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (149) [e70fb0fe-df2b-4bad-8f6a-eceea4efaa2e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -646.567, - "y": -25.28, - "z": -224.962 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105200c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105200c", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (146) [cacc1338-70f1-4a59-b0ee-cf67030367bb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -650.954, + "y": -25.28, + "z": -224.672 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052008", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052008", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (150) [31e61fbd-b8d0-4099-8acf-726e97e03f56]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -647.122, - "y": -25.28, - "z": -224.012 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105200e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105200e", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (148) [da69ff09-f3af-4fbb-be12-7e90d2c75420]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -647.151, + "y": -25.28, + "z": -224.541 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105200a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105200a", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (151) [197aa5e7-2d92-4ef3-ae2f-5dc6e0d26748]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -646.092, - "y": -25.28, - "z": -222.912 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052010", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052010", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (149) [e70fb0fe-df2b-4bad-8f6a-eceea4efaa2e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -646.567, + "y": -25.28, + "z": -224.962 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105200c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105200c", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (152) [316b03c5-cbef-4c32-97d9-1dacdc580dc2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -647.296, - "y": -25.28, - "z": -228.175 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052012", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052012", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (150) [31e61fbd-b8d0-4099-8acf-726e97e03f56]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -647.122, + "y": -25.28, + "z": -224.012 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105200e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105200e", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (153) [8974ae5a-11aa-4ecb-a368-7fe5c59ba6f3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -647.497, - "y": -25.28, - "z": -228.658 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052014", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052014", - "_tpl": "57347c5b245977448d35f6e1", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (151) [197aa5e7-2d92-4ef3-ae2f-5dc6e0d26748]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -646.092, + "y": -25.28, + "z": -222.912 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052010", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052010", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (154) [7ec3d4e0-85a4-4bdd-aa9a-5cf25e3867e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -647.804, - "y": -25.28, - "z": -229.15 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052016", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052016", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (152) [316b03c5-cbef-4c32-97d9-1dacdc580dc2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -647.296, + "y": -25.28, + "z": -228.175 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052012", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052012", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (155) [05267ec9-9245-409e-b6b7-683e79a40b3f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -655.179, - "y": -25.28, - "z": -221.864 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052018", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052018", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (153) [8974ae5a-11aa-4ecb-a368-7fe5c59ba6f3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -647.497, + "y": -25.28, + "z": -228.658 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052014", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052014", + "_tpl": "57347c5b245977448d35f6e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (156) [1be219d1-eabc-4c40-92e3-12117c248b08]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -653.294, - "y": -25.28, - "z": -218.891 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105201a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105201a", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (154) [7ec3d4e0-85a4-4bdd-aa9a-5cf25e3867e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -647.804, + "y": -25.28, + "z": -229.15 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052016", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052016", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (158) [64aa04ce-80d1-4971-9468-830b238a1085]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -655.125, - "y": -25.28, - "z": -217.116 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105201c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105201c", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (155) [05267ec9-9245-409e-b6b7-683e79a40b3f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -655.179, + "y": -25.28, + "z": -221.864 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052018", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052018", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (16) [1b90a60f-765a-4d8d-a83c-5220aed44a93]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -598.9, - "y": -28.027, - "z": -180.197 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105201e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105201e", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (156) [1be219d1-eabc-4c40-92e3-12117c248b08]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -653.294, + "y": -25.28, + "z": -218.891 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105201a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105201a", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (161) [e94b92ec-7a7a-4660-a1ec-541800b8af9b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -655.624, - "y": -25.28, - "z": -215.963 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052020", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052020", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (158) [64aa04ce-80d1-4971-9468-830b238a1085]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -655.125, + "y": -25.28, + "z": -217.116 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105201c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105201c", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (162) [d57c4689-5f89-44b8-a52f-09cdb3e3230b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -652.733, - "y": -25.28, - "z": -216.161 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052022", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052022", - "_tpl": "5e2af00086f7746d3f3c33f7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (16) [1b90a60f-765a-4d8d-a83c-5220aed44a93]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -598.9, + "y": -28.027, + "z": -180.197 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105201e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105201e", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (19) [a0d68967-690e-4ca9-ba77-0ae2c4680edc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -599.244, - "y": -28.027, - "z": -180.584 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052024", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052024", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (161) [e94b92ec-7a7a-4660-a1ec-541800b8af9b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -655.624, + "y": -25.28, + "z": -215.963 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052020", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052020", + "_tpl": "5c06779c86f77426e00dd782", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (2) [e756f3ed-306e-4e97-8144-66ffd997c786]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -603.458, - "y": -27.9031, - "z": -172.303 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052026", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052026", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (162) [d57c4689-5f89-44b8-a52f-09cdb3e3230b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -652.733, + "y": -25.28, + "z": -216.161 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052022", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052022", + "_tpl": "5e2af00086f7746d3f3c33f7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (20) [a367a86d-4cdf-4ca1-83eb-32351122370a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -599.728, - "y": -28.027, - "z": -183.619 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052028", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052028", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (19) [a0d68967-690e-4ca9-ba77-0ae2c4680edc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -599.244, + "y": -28.027, + "z": -180.584 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052024", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052024", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (3) [108cdb75-f5de-4803-a13b-d832aeb54e90]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -607.39, - "y": -28.465, - "z": -178.031 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105202a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105202a", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (2) [e756f3ed-306e-4e97-8144-66ffd997c786]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -603.458, + "y": -27.9031, + "z": -172.303 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052026", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052026", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (35) [19677983-3a4e-4f59-b0d4-f5c16ea84636]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -620.225, - "y": -28.652, - "z": -169.31 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105202c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105202c", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (20) [a367a86d-4cdf-4ca1-83eb-32351122370a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -599.728, + "y": -28.027, + "z": -183.619 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052028", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052028", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (38) [2a9a9929-28ee-4716-9101-fc6df0f0e1de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -623.654, - "y": -28.652, - "z": -176.879 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105202e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105202e", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (3) [108cdb75-f5de-4803-a13b-d832aeb54e90]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -607.39, + "y": -28.465, + "z": -178.031 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105202a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105202a", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (40) [a9a91e74-917c-4413-b27e-b6313c7a7637]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -623.598, - "y": -28.652, - "z": -177.519 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052030", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052030", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (35) [19677983-3a4e-4f59-b0d4-f5c16ea84636]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -620.225, + "y": -28.652, + "z": -169.31 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105202c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105202c", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (43) [30ed5250-c823-4078-aa98-aabaa90a6dcb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -600.742, - "y": -27.968, - "z": -169.867 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052032", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052032", - "_tpl": "590c5c9f86f77477c91c36e7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (38) [2a9a9929-28ee-4716-9101-fc6df0f0e1de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -623.654, + "y": -28.652, + "z": -176.879 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105202e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105202e", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (47) [aa36bb53-8c7b-401d-b043-31b96d2a4248]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -680.798, - "y": -25.37, - "z": -186.649 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052034", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052034", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (40) [a9a91e74-917c-4413-b27e-b6313c7a7637]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -623.598, + "y": -28.652, + "z": -177.519 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052030", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052030", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (51) [06ab7068-cf35-4d68-b44f-9b02ca2f9417]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -613.199, - "y": -25.992, - "z": -211.821 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052036", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052036", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (43) [30ed5250-c823-4078-aa98-aabaa90a6dcb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -600.742, + "y": -27.968, + "z": -169.867 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052032", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052032", + "_tpl": "590c5c9f86f77477c91c36e7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (52) [0d84d5fc-06c1-4d31-adc1-3bfb79ebf5be]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -692.225, - "y": -25.642, - "z": -204.47 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052038", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052038", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (47) [aa36bb53-8c7b-401d-b043-31b96d2a4248]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -680.798, + "y": -25.37, + "z": -186.649 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052034", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052034", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (54) [73773864-a965-4f66-b681-258534d0c754]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -668.493, - "y": -26.064003, - "z": -246.727 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105203a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105203a", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (51) [06ab7068-cf35-4d68-b44f-9b02ca2f9417]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -613.199, + "y": -25.992, + "z": -211.821 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052036", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052036", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (55) [2f41d598-b0b6-4640-be91-075f6d9e6da1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -668.126, - "y": -26.064003, - "z": -246.752 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105203c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105203c", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (52) [0d84d5fc-06c1-4d31-adc1-3bfb79ebf5be]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -692.225, + "y": -25.642, + "z": -204.47 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052038", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052038", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (58) [546c71e0-d5fb-4d07-80ff-468a969e8404]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -627.061, - "y": -25.766, - "z": -250.569 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105203e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105203e", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (54) [73773864-a965-4f66-b681-258534d0c754]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -668.493, + "y": -26.064003, + "z": -246.727 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105203a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105203a", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (59) [3d06e32b-2455-4360-b0f1-831d3667da1a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -675.006, - "y": -26.064003, - "z": -245.112 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052040", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052040", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (55) [2f41d598-b0b6-4640-be91-075f6d9e6da1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -668.126, + "y": -26.064003, + "z": -246.752 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105203c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105203c", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (6) [a21b2bf0-3eb5-428e-830a-a90115d37b57]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -607.872, - "y": -28.465, - "z": -181.921 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052042", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052042", - "_tpl": "590c2b4386f77425357b6123", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (58) [546c71e0-d5fb-4d07-80ff-468a969e8404]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -627.061, + "y": -25.766, + "z": -250.569 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105203e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105203e", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (61) [474899a5-07f5-410e-9b5f-341c212770a2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -669.461, - "y": -25.728, - "z": -230.337 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052044", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052044", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (59) [3d06e32b-2455-4360-b0f1-831d3667da1a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -675.006, + "y": -26.064003, + "z": -245.112 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052040", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052040", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (62) [77477aa1-139d-4d75-9169-745d049ea605]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -669.108, - "y": -25.728, - "z": -230.717 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052046", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052046", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (6) [a21b2bf0-3eb5-428e-830a-a90115d37b57]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -607.872, + "y": -28.465, + "z": -181.921 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052042", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052042", + "_tpl": "590c2b4386f77425357b6123", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (63) [7295285d-5ac8-4448-b0f8-9af26a4729d3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -659.002, - "y": -25.606, - "z": -229.459 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052048", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052048", - "_tpl": "61bf7b6302b3924be92fa8c3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (61) [474899a5-07f5-410e-9b5f-341c212770a2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -669.461, + "y": -25.728, + "z": -230.337 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052044", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052044", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "Loottools (62) [77477aa1-139d-4d75-9169-745d049ea605]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -669.108, + "y": -25.728, + "z": -230.717 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052046", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052046", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (64) [89825dd8-ef8a-40c2-8fec-d03394dff843]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -658.978, - "y": -25.606, - "z": -229.112 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105204a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105204a", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (63) [7295285d-5ac8-4448-b0f8-9af26a4729d3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -659.002, + "y": -25.606, + "z": -229.459 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052048", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052048", + "_tpl": "61bf7b6302b3924be92fa8c3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (67) [4575cb91-30e0-4362-8e8a-bfd5c3219d39]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -622.448, - "y": -25.884, - "z": -232.651 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105204c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105204c", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (64) [89825dd8-ef8a-40c2-8fec-d03394dff843]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -658.978, + "y": -25.606, + "z": -229.112 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105204a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105204a", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (68) [ec1265e0-13c9-464a-84d0-8190fcfb38cf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -623.527, - "y": -25.884, - "z": -232.376 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105204e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105204e", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (67) [4575cb91-30e0-4362-8e8a-bfd5c3219d39]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -622.448, + "y": -25.884, + "z": -232.651 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105204c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105204c", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (69) [48b790da-0e18-4f53-bf18-967db3983a4d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -623.829, - "y": -25.884, - "z": -232.25 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052050", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052050", - "_tpl": "590c2b4386f77425357b6123", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (68) [ec1265e0-13c9-464a-84d0-8190fcfb38cf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -623.527, + "y": -25.884, + "z": -232.376 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105204e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105204e", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (69) [d5cc0dd7-15a5-4dbc-87a2-5626b3556000]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -632.489, - "y": -25.98, - "z": -267.586 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052052", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052052", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (69) [48b790da-0e18-4f53-bf18-967db3983a4d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -623.829, + "y": -25.884, + "z": -232.25 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052050", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052050", + "_tpl": "590c2b4386f77425357b6123", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (7) [e3b9de10-1aa3-4c54-ad2d-2e70d1a3b454]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -608.689, - "y": -28.465, - "z": -181.615 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052054", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052054", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (69) [d5cc0dd7-15a5-4dbc-87a2-5626b3556000]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -632.489, + "y": -25.98, + "z": -267.586 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052052", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052052", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (70) [77c49fd1-9465-47ce-8d96-a46dba3d2801]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -619.862, - "y": -25.242, - "z": -227.488 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052056", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052056", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (7) [e3b9de10-1aa3-4c54-ad2d-2e70d1a3b454]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -608.689, + "y": -28.465, + "z": -181.615 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052054", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052054", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (70) [8c13aba7-0de3-4e6e-ba5b-c33a018c1247]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -623.829, - "y": -26.141, - "z": -232.25 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052058", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052058", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (70) [77c49fd1-9465-47ce-8d96-a46dba3d2801]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -619.862, + "y": -25.242, + "z": -227.488 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052056", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052056", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (74) [4eab3d26-d382-454d-9d9e-d83d9d04657c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -621.862, - "y": -26.439, - "z": -232.812 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105205a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105205a", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (70) [8c13aba7-0de3-4e6e-ba5b-c33a018c1247]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -623.829, + "y": -26.141, + "z": -232.25 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052058", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052058", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (76) [2bd9bd92-af1b-4306-9b1d-a044f1bca5b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -633.678, - "y": -25.359, - "z": -237.356 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105205c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105205c", - "_tpl": "59faff1d86f7746c51718c9c", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (74) [4eab3d26-d382-454d-9d9e-d83d9d04657c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -621.862, + "y": -26.439, + "z": -232.812 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105205a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105205a", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (77) [2de41574-9d1d-4147-bb17-659ca0dc1eb6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -633.653, - "y": -25.359, - "z": -236.994 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105205e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105205e", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (76) [2bd9bd92-af1b-4306-9b1d-a044f1bca5b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -633.678, + "y": -25.359, + "z": -237.356 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105205c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105205c", + "_tpl": "59faff1d86f7746c51718c9c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (78) [4b2aa30b-a526-458b-8e27-62e613f2bf47]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -623.289, - "y": -26.439, - "z": -232.368 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052060", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052060", - "_tpl": "5d1b327086f7742525194449", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (77) [2de41574-9d1d-4147-bb17-659ca0dc1eb6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -633.653, + "y": -25.359, + "z": -236.994 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105205e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105205e", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (80) [00f45963-efb0-4444-9c93-e5f35667ac30]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -630.157, - "y": -25.06, - "z": -241.2 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052062", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052062", - "_tpl": "590a358486f77429692b2790", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (78) [4b2aa30b-a526-458b-8e27-62e613f2bf47]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -623.289, + "y": -26.439, + "z": -232.368 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052060", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052060", + "_tpl": "5d1b327086f7742525194449", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (80) [968ab227-2cf0-4f6e-9d36-924b8d9ed730]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -626.987, - "y": -25.863, - "z": -233.086 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052064", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052064", - "_tpl": "5d1b327086f7742525194449", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (80) [00f45963-efb0-4444-9c93-e5f35667ac30]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -630.157, + "y": -25.06, + "z": -241.2 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052062", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052062", + "_tpl": "590a358486f77429692b2790", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (81) [5c1d1505-5f6d-4a49-9c8d-4b421323433f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -626.987, - "y": -26.167, - "z": -233.086 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052066", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052066", - "_tpl": "590c31c586f774245e3141b2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (80) [968ab227-2cf0-4f6e-9d36-924b8d9ed730]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -626.987, + "y": -25.863, + "z": -233.086 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052064", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052064", + "_tpl": "5d1b327086f7742525194449", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (81) [eee3fdb8-87c5-4903-bc23-6e32793e10a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -630.129, - "y": -25.06, - "z": -240.793 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052068", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052068", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (81) [5c1d1505-5f6d-4a49-9c8d-4b421323433f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -626.987, + "y": -26.167, + "z": -233.086 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052066", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052066", + "_tpl": "590c31c586f774245e3141b2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (82) [2e1897fa-487d-422c-9691-56b167f0af33]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -626.523, - "y": -26.167, - "z": -233.224 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105206a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105206a", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (81) [eee3fdb8-87c5-4903-bc23-6e32793e10a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -630.129, + "y": -25.06, + "z": -240.793 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052068", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052068", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (82) [b664d962-f5b0-4093-8acc-25883da9269c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -633.338, - "y": -25.541, - "z": -246.825 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105206c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105206c", - "_tpl": "59e3556c86f7741776641ac2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (82) [2e1897fa-487d-422c-9691-56b167f0af33]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -626.523, + "y": -26.167, + "z": -233.224 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105206a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105206a", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (85) [412c0d81-052f-4a22-b932-c572c113fbc9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -633.292, - "y": -24.97, - "z": -228.698 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105206e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105206e", - "_tpl": "5e2af02c86f7746d420957d4", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (82) [b664d962-f5b0-4093-8acc-25883da9269c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -633.338, + "y": -25.541, + "z": -246.825 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105206c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105206c", + "_tpl": "59e3556c86f7741776641ac2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (86) [e020023b-eb4a-4619-9013-9eb5abf4995c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -634.451, - "y": -24.97, - "z": -228.316 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052070", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052070", - "_tpl": "59e36c6f86f774176c10a2a7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (85) [412c0d81-052f-4a22-b932-c572c113fbc9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -633.292, + "y": -24.97, + "z": -228.698 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105206e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105206e", + "_tpl": "5e2af02c86f7746d420957d4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (88) [f602a942-86ad-42c1-8d2b-c6166ef1def5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -635.296, - "y": -25.326, - "z": -222.173 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052072", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052072", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (86) [e020023b-eb4a-4619-9013-9eb5abf4995c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -634.451, + "y": -24.97, + "z": -228.316 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052070", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052070", + "_tpl": "59e36c6f86f774176c10a2a7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (9) [6ad02346-23b3-4d45-9f69-036de7ef9de1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -609.001, - "y": -28.465, - "z": -181.315 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052074", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052074", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (88) [f602a942-86ad-42c1-8d2b-c6166ef1def5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -635.296, + "y": -25.326, + "z": -222.173 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052072", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052072", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (94) [c37c438d-700c-4416-8add-aef21119cb89]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -667.515, - "y": -25.951, - "z": -254.064 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052076", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052076", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (9) [6ad02346-23b3-4d45-9f69-036de7ef9de1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -609.001, + "y": -28.465, + "z": -181.315 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052074", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052074", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools (99) [51799655-914e-4ffc-a16f-fca1ad009326]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -681.3105, - "y": -25.289, - "z": -221.51889 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052078", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052078", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (94) [c37c438d-700c-4416-8add-aef21119cb89]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -667.515, + "y": -25.951, + "z": -254.064 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052076", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052076", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [0] (1) [23258f20-1623-4534-86ab-9bce82f8f095]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 407.833984, - "y": -52.743, - "z": -42.1589966 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105207a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105207a", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools (99) [51799655-914e-4ffc-a16f-fca1ad009326]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -681.3105, + "y": -25.289, + "z": -221.51889 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052078", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052078", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [0] (10) [30cef5a8-47c9-4cb9-8f7f-7ee0a98a92a3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 403.8999, - "y": -52.312, - "z": -49.6710052 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105207c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105207c", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools [0] (1) [23258f20-1623-4534-86ab-9bce82f8f095]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 407.833984, + "y": -52.743, + "z": -42.1589966 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105207a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105207a", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [0] (4) [73f4761e-a256-48f7-b1b8-b7424daca00b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 407.165039, - "y": -52.133, - "z": -40.1049957 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105207e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105207e", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools [0] (10) [30cef5a8-47c9-4cb9-8f7f-7ee0a98a92a3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 403.8999, + "y": -52.312, + "z": -49.6710052 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105207c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105207c", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [0] (5) [79ec5c70-706f-4b68-bf08-e16946e55e98]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 408.849121, - "y": -52.376, - "z": -39.888 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052080", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052080", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools [0] (4) [73f4761e-a256-48f7-b1b8-b7424daca00b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 407.165039, + "y": -52.133, + "z": -40.1049957 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105207e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105207e", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "Loottools [0] (5) [79ec5c70-706f-4b68-bf08-e16946e55e98]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 408.849121, + "y": -52.376, + "z": -39.888 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052080", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052080", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [0] (6) [1aeeb1dc-241a-4c70-8231-f93652c6f3d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 408.846924, - "y": -53.164, - "z": -38.905 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052082", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052082", - "_tpl": "5e2aee0a86f774755a234b62", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools [0] (6) [1aeeb1dc-241a-4c70-8231-f93652c6f3d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 408.846924, + "y": -53.164, + "z": -38.905 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052082", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052082", + "_tpl": "5e2aee0a86f774755a234b62", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [0] (7) [dba1cb65-8872-4c20-a7f4-f25b7dcf5319]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 406.884033, - "y": -52.578, - "z": -44.7019958 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052084", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052084", - "_tpl": "5d6fc78386f77449d825f9dc", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools [0] (7) [dba1cb65-8872-4c20-a7f4-f25b7dcf5319]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 406.884033, + "y": -52.578, + "z": -44.7019958 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052084", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052084", + "_tpl": "5d6fc78386f77449d825f9dc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools [0] (8) [6d17d25e-b73e-49a9-81f0-79dfbcbc53da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 408.179932, - "y": -52.336, - "z": -48.5890045 - }, - "Rotation": { - "x": 0.0, - "y": 93.90962, - "z": 5.186496e-6 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052086", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052086", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Loottools [0] (8) [6d17d25e-b73e-49a9-81f0-79dfbcbc53da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 408.179932, + "y": -52.336, + "z": -48.5890045 + }, + "Rotation": { + "x": 0.0, + "y": 93.90962, + "z": 5.186496e-6 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052086", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052086", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools_buildings [2] (101) [5739bdcb-bea9-466a-9867-65c1aeb94801]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 36.006958, - "y": -45.533, - "z": 126.850006 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052088", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052088", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools_buildings [2] (101) [5739bdcb-bea9-466a-9867-65c1aeb94801]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 36.006958, + "y": -45.533, + "z": 126.850006 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052088", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052088", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loottools_buildings [2] (108) [f3613564-8417-4421-973f-e74e397b5523]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 60.70398, - "y": -45.676, - "z": 119.539 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105208a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105208a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loottools_buildings [2] (108) [f3613564-8417-4421-973f-e74e397b5523]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 60.70398, + "y": -45.676, + "z": 119.539 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105208a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105208a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "luj1_chem_container1 [4769c1c8-3917-460a-9208-b434bde94095]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -186.06189, - "y": -2.7302, - "z": -86.1152039 - }, - "Rotation": { - "x": 1.04949251e-7, - "y": 13.0688772, - "z": -4.192726e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105208c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105208c", - "_tpl": "5b43237186f7742f3a4ab252", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "luj1_chem_container1 [4769c1c8-3917-460a-9208-b434bde94095]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -186.06189, + "y": -2.7302, + "z": -86.1152039 + }, + "Rotation": { + "x": 1.04949251e-7, + "y": 13.0688772, + "z": -4.192726e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105208c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105208c", + "_tpl": "5b43237186f7742f3a4ab252", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds (14) [3ed4ed12-e403-4b61-a21a-ab261bb07bb6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 97.254, - "y": -46.67, - "z": 72.89 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105208e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105208e", - "_tpl": "5c10c8fd86f7743d7d706df3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "meds (14) [3ed4ed12-e403-4b61-a21a-ab261bb07bb6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 97.254, + "y": -46.67, + "z": 72.89 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105208e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105208e", + "_tpl": "5c10c8fd86f7743d7d706df3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds (15) [aa7719d1-fa2f-48fd-b80a-b2d13258ec67]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 97.366, - "y": -46.67, - "z": 70.193 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052090", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052090", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "meds (15) [aa7719d1-fa2f-48fd-b80a-b2d13258ec67]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 97.366, + "y": -46.67, + "z": 70.193 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052090", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052090", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds (4) [28412523-ad9d-43e0-9055-4f1b5d9e323e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -305.307, - "y": -60.892, - "z": 491.963 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052092", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052092", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "meds (4) [28412523-ad9d-43e0-9055-4f1b5d9e323e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -305.307, + "y": -60.892, + "z": 491.963 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052092", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052092", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "meds (9) [271e47a7-ad39-454b-b151-39c5aac3e494]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 314.253, - "y": -59.22, - "z": 314.824 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052094", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052094", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "meds (9) [271e47a7-ad39-454b-b151-39c5aac3e494]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 314.253, + "y": -59.22, + "z": 314.824 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052094", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052094", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (1) [0ca6681f-9f56-41b8-a3fd-9e6096d813d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -617.995, - "y": -25.066, - "z": -231.229 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052096", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052096", - "_tpl": "62850c28da09541f43158cca", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (1) [0ca6681f-9f56-41b8-a3fd-9e6096d813d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -617.995, + "y": -25.066, + "z": -231.229 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052096", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052096", + "_tpl": "62850c28da09541f43158cca", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (1) [c0308e84-55a8-4742-a014-2e0fbba18f5f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -838.566, - "y": -58.014, - "z": 476.31 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052098", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052098", - "_tpl": "5fc4b9b17283c4046c5814d7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (1) [c0308e84-55a8-4742-a014-2e0fbba18f5f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -838.566, + "y": -58.014, + "z": 476.31 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052098", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052098", + "_tpl": "5fc4b9b17283c4046c5814d7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (10) [ba974b99-0946-4e22-9e08-d5064b0df0c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -631.255, - "y": -25.234, - "z": -256.978 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105209a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105209a", - "_tpl": "5df8e085bb49d91fb446d6a8", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (10) [ba974b99-0946-4e22-9e08-d5064b0df0c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -631.255, + "y": -25.234, + "z": -256.978 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105209a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105209a", + "_tpl": "5df8e085bb49d91fb446d6a8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (11) [50c7779b-d398-4ec2-a12b-de3506a73859]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -655.565, - "y": -25.969, - "z": -302.013 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105209c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105209c", - "_tpl": "5926f34786f77469195bfe92", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (11) [50c7779b-d398-4ec2-a12b-de3506a73859]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -655.565, + "y": -25.969, + "z": -302.013 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105209c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105209c", + "_tpl": "5926f34786f77469195bfe92", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (16) [651f5e1d-0038-42c3-a874-d43be2f8724d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -677.306, - "y": -25.866, - "z": -338.14 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105209e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105209e", - "_tpl": "5caf187cae92157c28402e43", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (16) [651f5e1d-0038-42c3-a874-d43be2f8724d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -677.306, + "y": -25.866, + "z": -338.14 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105209e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105209e", + "_tpl": "5caf187cae92157c28402e43", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (17) [d22acc7e-1549-49cf-a6de-2354489b9ed3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -676.722, - "y": -25.866, - "z": -338.14 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520a0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520a0", - "_tpl": "5b86a0e586f7745b600ccb23", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (17) [d22acc7e-1549-49cf-a6de-2354489b9ed3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -676.722, + "y": -25.866, + "z": -338.14 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520a0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520a0", + "_tpl": "5b86a0e586f7745b600ccb23", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (19) [2ec8ff27-7eef-4d36-9fbf-eabce26e3715]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -672.11, - "y": -25.866, - "z": -338.88 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520a2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520a2", - "_tpl": "5addbb6e5acfc408fb1393fd", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (19) [2ec8ff27-7eef-4d36-9fbf-eabce26e3715]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -672.11, + "y": -25.866, + "z": -338.88 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520a2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520a2", + "_tpl": "5addbb6e5acfc408fb1393fd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (2) [2ae79a88-f99a-42e5-b3c6-6d2c382f783b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -614.43, - "y": -23.631, - "z": -216.638 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520a4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520a4", - "_tpl": "5f63418ef5750b524b45f116", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (2) [2ae79a88-f99a-42e5-b3c6-6d2c382f783b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -614.43, + "y": -23.631, + "z": -216.638 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520a4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520a4", + "_tpl": "5f63418ef5750b524b45f116", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (20) [758c90b0-f5f7-4fb9-9023-d1c974be6ed2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -670.47, - "y": -25.866, - "z": -340.03 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520a6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520a6", - "_tpl": "5c0125fc0db834001a669aa3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (20) [758c90b0-f5f7-4fb9-9023-d1c974be6ed2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -670.47, + "y": -25.866, + "z": -340.03 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520a6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520a6", + "_tpl": "5c0125fc0db834001a669aa3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (21) [e2914db9-f27f-48c2-9cf2-d8d290356a5b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -667.96, - "y": -25.866, - "z": -338.81 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520a8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520a8", - "_tpl": "5a705e128dc32e000d46d258", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (21) [e2914db9-f27f-48c2-9cf2-d8d290356a5b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -667.96, + "y": -25.866, + "z": -338.81 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520a8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520a8", + "_tpl": "5a705e128dc32e000d46d258", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (23) [4d13e6d5-b2b9-4635-b97b-ff865e580880]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -663.35, - "y": -25.866, - "z": -339.47 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520aa", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520aa", - "_tpl": "61714b2467085e45ef140b2c", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (23) [4d13e6d5-b2b9-4635-b97b-ff865e580880]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -663.35, + "y": -25.866, + "z": -339.47 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520aa", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520aa", + "_tpl": "61714b2467085e45ef140b2c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (25) [4cde4ace-3393-4939-bb48-880a9cb2de23]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -655.959, - "y": -25.059, - "z": -247.176 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520ac", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520ac", - "_tpl": "5bffcf7a0db83400232fea79", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (25) [4cde4ace-3393-4939-bb48-880a9cb2de23]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -655.959, + "y": -25.059, + "z": -247.176 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520ac", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520ac", + "_tpl": "5bffcf7a0db83400232fea79", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (26) [2975e997-a9c4-4d64-9ace-0abfc144767a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -655.312, - "y": -25.476, - "z": -241.313 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520ae", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520ae", - "_tpl": "5d025cc1d7ad1a53845279ef", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (26) [2975e997-a9c4-4d64-9ace-0abfc144767a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -655.312, + "y": -25.476, + "z": -241.313 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520ae", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520ae", + "_tpl": "5d025cc1d7ad1a53845279ef", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (28) [52b148f2-bfb2-40bd-96e3-ddf336ae208d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -684.75, - "y": -26.53, - "z": -227.847 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520b0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520b0", - "_tpl": "6284bd5f95250a29bc628a30", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (28) [52b148f2-bfb2-40bd-96e3-ddf336ae208d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -684.75, + "y": -26.53, + "z": -227.847 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520b0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520b0", + "_tpl": "6284bd5f95250a29bc628a30", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (29) [91231589-cb0c-4aa4-82d2-4363358a8541]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -675.29, - "y": -25.674, - "z": -161.533 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520b2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520b2", - "_tpl": "5bbdb811d4351e45020113c7", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (29) [91231589-cb0c-4aa4-82d2-4363358a8541]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -675.29, + "y": -25.674, + "z": -161.533 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520b2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520b2", + "_tpl": "5bbdb811d4351e45020113c7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (30) [d774f592-8930-4623-8175-af6a37cb7b18]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -652.466, - "y": -25.108, - "z": -162.594 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520b4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520b4", - "_tpl": "5addbfe15acfc4001a5fc58b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (30) [d774f592-8930-4623-8175-af6a37cb7b18]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -652.466, + "y": -25.108, + "z": -162.594 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520b4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520b4", + "_tpl": "5addbfe15acfc4001a5fc58b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (35) [324c9c99-be88-4dca-8fcc-16c8f194b4a7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -671.35, - "y": -24.094, - "z": -169.59 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520b6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520b6", - "_tpl": "5df8e085bb49d91fb446d6a8", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (35) [324c9c99-be88-4dca-8fcc-16c8f194b4a7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -671.35, + "y": -24.094, + "z": -169.59 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520b6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520b6", + "_tpl": "5df8e085bb49d91fb446d6a8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (37) [90699676-fc21-4fb0-9e96-190f92980db7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -673.123, - "y": -24.094, - "z": -168.957 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520b8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520b8", - "_tpl": "5d0236dad7ad1a0940739d29", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (37) [90699676-fc21-4fb0-9e96-190f92980db7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -673.123, + "y": -24.094, + "z": -168.957 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520b8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520b8", + "_tpl": "5d0236dad7ad1a0940739d29", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (38) [e838807d-d716-47be-b0b6-9fe58ce6715e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -659.0337, - "y": -25.689, - "z": -150.300262 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520ba", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520ba", - "_tpl": "5addc7db5acfc4001669f279", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (38) [e838807d-d716-47be-b0b6-9fe58ce6715e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -659.0337, + "y": -25.689, + "z": -150.300262 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520ba", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520ba", + "_tpl": "5addc7db5acfc4001669f279", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (39) [0994b655-8eeb-4cf0-8f6e-3a72130b640f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -651.577, - "y": -25.56, - "z": -152.411 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520bc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520bc", - "_tpl": "5b3f7c005acfc4704b4a1de8", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (39) [0994b655-8eeb-4cf0-8f6e-3a72130b640f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -651.577, + "y": -25.56, + "z": -152.411 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520bc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520bc", + "_tpl": "5b3f7c005acfc4704b4a1de8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (4) [26f2b5f8-56ba-4769-9eaf-8f874beb1f3e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -614.609, - "y": -23.631, - "z": -214.779 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520be", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520be", - "_tpl": "5a788068c5856700137e4c8f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (4) [26f2b5f8-56ba-4769-9eaf-8f874beb1f3e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -614.609, + "y": -23.631, + "z": -214.779 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520be", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520be", + "_tpl": "5a788068c5856700137e4c8f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (4) [2fe575a1-d12d-4936-a33e-85cc67fc382a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -537.09, - "y": -57.747, - "z": 470.645 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520c0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520c0", - "_tpl": "615d8fd3290d254f5e6b2edc", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (4) [2fe575a1-d12d-4936-a33e-85cc67fc382a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -537.09, + "y": -57.747, + "z": 470.645 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520c0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520c0", + "_tpl": "615d8fd3290d254f5e6b2edc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (41) [5d9dbfc9-9da8-43fe-b64b-4da9c43f27ad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -651.885, - "y": -25.56, - "z": -152.984 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520c2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520c2", - "_tpl": "56ea8d2fd2720b7c698b4570", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (41) [5d9dbfc9-9da8-43fe-b64b-4da9c43f27ad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -651.885, + "y": -25.56, + "z": -152.984 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520c2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520c2", + "_tpl": "56ea8d2fd2720b7c698b4570", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (45) [a10a973e-6b7e-42d1-9e4d-4ee380579f5f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -633.581, - "y": -26.03, - "z": -155.159 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520c4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520c4", - "_tpl": "5c6d10e82e221601da357b07", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (45) [a10a973e-6b7e-42d1-9e4d-4ee380579f5f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -633.581, + "y": -26.03, + "z": -155.159 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520c4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520c4", + "_tpl": "5c6d10e82e221601da357b07", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (46) [d78ca4bf-a46b-4be6-9d5a-e81cf9f8a623]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -593.361, - "y": -28.55, - "z": -170.48 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520c6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520c6", - "_tpl": "5c82343a2e221644f31c0611", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (46) [d78ca4bf-a46b-4be6-9d5a-e81cf9f8a623]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -593.361, + "y": -28.55, + "z": -170.48 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520c6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520c6", + "_tpl": "5c82343a2e221644f31c0611", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (48) [b014d1ff-1913-4643-a183-d7046a390b8f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -597.685, - "y": -26.291, - "z": -190.003 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520c8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520c8", - "_tpl": "5c1bc5612e221602b5429350", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (48) [b014d1ff-1913-4643-a183-d7046a390b8f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -597.685, + "y": -26.291, + "z": -190.003 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520c8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520c8", + "_tpl": "5c1bc5612e221602b5429350", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (5) [71f08e02-f351-4b8a-9657-dce5fbc68e1d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -613.213, - "y": -23.631, - "z": -212.612 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520ca", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520ca", - "_tpl": "5c07c5ed0db834001b73571c", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (5) [71f08e02-f351-4b8a-9657-dce5fbc68e1d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -613.213, + "y": -23.631, + "z": -212.612 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520ca", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520ca", + "_tpl": "5c07c5ed0db834001b73571c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (50) [9a410253-77ba-43fa-82a3-eee561c9fdbe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -601.379, - "y": -26.291, - "z": -187.849 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520cc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520cc", - "_tpl": "5b86a0e586f7745b600ccb23", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (50) [9a410253-77ba-43fa-82a3-eee561c9fdbe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -601.379, + "y": -26.291, + "z": -187.849 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520cc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520cc", + "_tpl": "5b86a0e586f7745b600ccb23", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (52) [20f0d1fe-4466-437a-8d78-6c2915802049]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -638.827, - "y": -28.177, - "z": -195.457 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520ce", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520ce", - "_tpl": "570fd79bd2720bc7458b4583", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (52) [20f0d1fe-4466-437a-8d78-6c2915802049]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -638.827, + "y": -28.177, + "z": -195.457 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520ce", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520ce", + "_tpl": "570fd79bd2720bc7458b4583", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (53) [223c0e80-db02-49a2-b198-b6a927e7da3b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -638.659, - "y": -28.177, - "z": -195.903 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520d0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520d0", - "_tpl": "5a6b5ed88dc32e000c52ec86", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (53) [223c0e80-db02-49a2-b198-b6a927e7da3b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -638.659, + "y": -28.177, + "z": -195.903 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520d0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520d0", + "_tpl": "5a6b5ed88dc32e000c52ec86", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (56) [9d12be03-eb29-4520-86d8-5832fd87dbc6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -614.308, - "y": -28.6397, - "z": -174.111 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520d2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520d2", - "_tpl": "5cf638cbd7f00c06595bc936", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (56) [9d12be03-eb29-4520-86d8-5832fd87dbc6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -614.308, + "y": -28.6397, + "z": -174.111 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520d2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520d2", + "_tpl": "5cf638cbd7f00c06595bc936", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (57) [d691601a-9bd1-4f2e-a300-6262a558643a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -614.295, - "y": -28.6397, - "z": -174.482 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520d4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520d4", - "_tpl": "5c9a25172e2216000f20314e", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (57) [d691601a-9bd1-4f2e-a300-6262a558643a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -614.295, + "y": -28.6397, + "z": -174.482 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520d4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520d4", + "_tpl": "5c9a25172e2216000f20314e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (59) [cb895018-a8f6-40b5-a770-f2c9e44f9101]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -622.379, - "y": -25.603, - "z": -249.734 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520d6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520d6", - "_tpl": "5f2aa4559b44de6b1b4e68d1", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (59) [cb895018-a8f6-40b5-a770-f2c9e44f9101]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -622.379, + "y": -25.603, + "z": -249.734 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520d6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520d6", + "_tpl": "5f2aa4559b44de6b1b4e68d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (61) [351e9e8c-d69d-4698-a515-bd39a46ab679]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -622.791, - "y": -25.603, - "z": -250.741 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520d8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520d8", - "_tpl": "5b7d63de5acfc400170e2f8d", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (61) [351e9e8c-d69d-4698-a515-bd39a46ab679]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -622.791, + "y": -25.603, + "z": -250.741 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520d8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520d8", + "_tpl": "5b7d63de5acfc400170e2f8d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (62) [8b827b7b-f1e3-4f03-ba01-79157287cc86]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -622.438, - "y": -25.603, - "z": -250.987 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520da", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520da", - "_tpl": "60a23797a37c940de7062d02", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (62) [8b827b7b-f1e3-4f03-ba01-79157287cc86]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -622.438, + "y": -25.603, + "z": -250.987 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520da", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520da", + "_tpl": "60a23797a37c940de7062d02", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (64) [1a447196-9a86-473c-9a18-67e09b475eb7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -912.112, - "y": -47.37, - "z": 264.666 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520dc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520dc", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (64) [1a447196-9a86-473c-9a18-67e09b475eb7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -912.112, + "y": -47.37, + "z": 264.666 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520dc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520dc", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (65) [f8847e58-92c7-40e0-a34b-b2a9e7508616]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -910.347, - "y": -47.37, - "z": 263.436 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520de", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520de", - "_tpl": "5d024f5cd7ad1a04a067e91a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (65) [f8847e58-92c7-40e0-a34b-b2a9e7508616]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -910.347, + "y": -47.37, + "z": 263.436 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520de", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520de", + "_tpl": "5d024f5cd7ad1a04a067e91a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (66) [6083fb8b-d026-44a3-a0aa-3cc5990087ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -910.67, - "y": -47.37, - "z": 263.117 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520e0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520e0", - "_tpl": "58d2664f86f7747fec5834f6", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (66) [6083fb8b-d026-44a3-a0aa-3cc5990087ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -910.67, + "y": -47.37, + "z": 263.117 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520e0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520e0", + "_tpl": "58d2664f86f7747fec5834f6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (68) [719d6238-01ed-43cf-99cd-4e67b0398eb4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -910.963, - "y": -47.37, - "z": 260.279 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520e2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520e2", - "_tpl": "5649b2314bdc2d79388b4576", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (68) [719d6238-01ed-43cf-99cd-4e67b0398eb4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -910.963, + "y": -47.37, + "z": 260.279 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520e2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520e2", + "_tpl": "5649b2314bdc2d79388b4576", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (69) [dd76c2e9-5885-4006-bc0c-7430cdea329f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -910.101, - "y": -47.37, - "z": 261.228 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520e4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520e4", - "_tpl": "5947fa2486f77425b47c1a9b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods (69) [dd76c2e9-5885-4006-bc0c-7430cdea329f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -910.101, + "y": -47.37, + "z": 261.228 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520e4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520e4", + "_tpl": "5947fa2486f77425b47c1a9b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods [ea023cf6-b754-410f-ae2c-ebb132d74c40]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -838.336, - "y": -58.014, - "z": 475.419 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520e6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520e6", - "_tpl": "5b057b4f5acfc4771e1bd3e9", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Mods [ea023cf6-b754-410f-ae2c-ebb132d74c40]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -838.336, + "y": -58.014, + "z": 475.419 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520e6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520e6", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office food (10) [e2f6bed0-13e5-46a9-a560-ac93429e881d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -318.573853, - "y": -60.445, - "z": 490.690918 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520e8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520e8", - "_tpl": "5c12688486f77426843c7d32", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "office food (10) [e2f6bed0-13e5-46a9-a560-ac93429e881d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -318.573853, + "y": -60.445, + "z": 490.690918 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520e8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520e8", + "_tpl": "5c12688486f77426843c7d32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office food (12) [e27aaef2-239f-4c97-b802-76fc8526a528]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -319.205, - "y": -60.445, - "z": 482.478 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520ea", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520ea", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "office food (12) [e27aaef2-239f-4c97-b802-76fc8526a528]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -319.205, + "y": -60.445, + "z": 482.478 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520ea", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520ea", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office food (5) [76f37824-17f6-4141-b20c-50ed9f67ed52]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -306.862, - "y": -56.454, - "z": 482.601 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520ec", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520ec", - "_tpl": "590c651286f7741e566b6461", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "office food (5) [76f37824-17f6-4141-b20c-50ed9f67ed52]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -306.862, + "y": -56.454, + "z": 482.601 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520ec", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520ec", + "_tpl": "590c651286f7741e566b6461", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office food (6) [c26f824b-e065-44ac-bef6-cc88c3970622]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -319.497, - "y": -56.452, - "z": 491.298 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520ee", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520ee", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "office food (6) [c26f824b-e065-44ac-bef6-cc88c3970622]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -319.497, + "y": -56.452, + "z": 491.298 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520ee", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520ee", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office food (7) [6f0a6daa-80ec-4a2c-8ef6-ad27b096355a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -319.865, - "y": -56.452, - "z": 490.77 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520f0", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520f0", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "office food (7) [6f0a6daa-80ec-4a2c-8ef6-ad27b096355a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -319.865, + "y": -56.452, + "z": 490.77 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520f0", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520f0", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office food (8) [d50d7b67-1e9a-4bf5-a964-713ff495d195]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -321.414, - "y": -56.452, - "z": 490.251 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520f2", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520f2", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "office food (8) [d50d7b67-1e9a-4bf5-a964-713ff495d195]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -321.414, + "y": -56.452, + "z": 490.251 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520f2", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520f2", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Pick_10 [9c1bf10a-bcec-4f9c-a240-f8ce55500154]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -222.50647, - "y": -34.567, - "z": 188.95462 - }, - "Rotation": { - "x": 345.953735, - "y": 178.385452, - "z": 0.833296 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -222.688232, - "y": -34.0668, - "z": 188.586029 + ] + }, + { + "Id": "Pick_10 [9c1bf10a-bcec-4f9c-a240-f8ce55500154]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -222.50647, + "y": -34.567, + "z": 188.95462 + }, + "Rotation": { + "x": 345.953735, + "y": 178.385452, + "z": 0.833296 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -222.688232, + "y": -34.0668, + "z": 188.586029 + }, + "Rotation": { + "x": 343.90274, + "y": 83.34232, + "z": -3.37673337e-5 + } }, - "Rotation": { - "x": 343.90274, - "y": 83.34232, - "z": -3.37673337e-5 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -220.337158, - "y": -34.5221024, - "z": 192.5061 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -220.337158, + "y": -34.5221024, + "z": 192.5061 + }, + "Rotation": { + "x": 349.0679, + "y": 357.9775, + "z": 6.249918e-7 + } }, - "Rotation": { - "x": 349.0679, - "y": 357.9775, - "z": 6.249918e-7 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -222.50647, - "y": -34.567, - "z": 188.95462 - }, - "Rotation": { - "x": 345.953735, - "y": 178.385452, - "z": 0.833296 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -222.50647, + "y": -34.567, + "z": 188.95462 + }, + "Rotation": { + "x": 345.953735, + "y": 178.385452, + "z": 0.833296 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520f4", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520f4", - "_tpl": "64e74a534d49d23b2c39d31b", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520f4", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520f4", + "_tpl": "64e74a534d49d23b2c39d31b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_termilnal_laptop [bf9a20c5-fd36-47af-a281-4012521cdbcd]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -627.0381, - "y": -26.768, - "z": -233.99501 - }, - "Rotation": { - "x": 286.995667, - "y": 286.807678, - "z": 354.7317 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -627.0381, - "y": -26.768, - "z": -233.99501 + ] + }, + { + "Id": "quest_termilnal_laptop [bf9a20c5-fd36-47af-a281-4012521cdbcd]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -627.0381, + "y": -26.768, + "z": -233.99501 + }, + "Rotation": { + "x": 286.995667, + "y": 286.807678, + "z": 354.7317 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -627.0381, + "y": -26.768, + "z": -233.99501 + }, + "Rotation": { + "x": 286.995667, + "y": 286.807678, + "z": 354.7317 + } }, - "Rotation": { - "x": 286.995667, - "y": 286.807678, - "z": 354.7317 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -606.379639, - "y": -29.3618984, - "z": -181.9668 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -606.379639, + "y": -29.3618984, + "z": -181.9668 + }, + "Rotation": { + "x": 0.6690073, + "y": 355.609222, + "z": 0.395003527 + } }, - "Rotation": { - "x": 0.6690073, - "y": 355.609222, - "z": 0.395003527 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -628.243042, - "y": -29.8, - "z": -157.554047 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -628.243042, + "y": -29.8, + "z": -157.554047 + }, + "Rotation": { + "x": 359.978149, + "y": 294.562744, + "z": 312.674561 + } }, - "Rotation": { - "x": 359.978149, - "y": 294.562744, - "z": 312.674561 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": -645.7322, - "y": -26.143, - "z": -230.2492 - }, - "Rotation": { - "x": 358.74234, - "y": 109.389938, - "z": -8.48642e-6 + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": -645.7322, + "y": -26.143, + "z": -230.2492 + }, + "Rotation": { + "x": 358.74234, + "y": 109.389938, + "z": -8.48642e-6 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520f6", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520f6", - "_tpl": "661421c7c1f2f548c50ee649", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520f6", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520f6", + "_tpl": "661421c7c1f2f548c50ee649", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_termilnal_laptop_final [c3b58df7-fbac-4874-80ed-4a0d5ff5366c]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -331.90332, - "y": 6.855, - "z": -89.85501 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -312.0475, - "y": 6.859, - "z": -81.76201 - }, - "Rotation": { - "x": 0.06733144, - "y": 0, - "z": 0 - } + { + "Id": "quest_termilnal_laptop_final [c3b58df7-fbac-4874-80ed-4a0d5ff5366c]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -331.90332, + "y": 6.855, + "z": -89.85501 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -324.2682, - "y": 6.98, - "z": -87.591 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -312.0475, + "y": 6.859, + "z": -81.76201 + }, + "Rotation": { + "x": 0.06733144, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 1.15322447, - "y": 334.861725, - "z": 0.873669267 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": -331.90332, - "y": 6.855, - "z": -89.85501 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -324.2682, + "y": 6.98, + "z": -87.591 + }, + "Rotation": { + "x": 1.15322447, + "y": 334.861725, + "z": 0.873669267 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": -341.53772, - "y": 6.867, - "z": -76.75 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": -331.90332, + "y": 6.855, + "z": -89.85501 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": -341.53772, + "y": 6.867, + "z": -76.75 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520f8", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520f8", - "_tpl": "661423200d240a5f5d0f679b", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520f8", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520f8", + "_tpl": "661423200d240a5f5d0f679b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_termilnal_letter [1059726e-1bef-421d-87e0-6ecd6e296c2d]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 410.756348, - "y": -53.08418, - "z": 159.376 - }, - "Rotation": { - "x": 271.147034, - "y": 196.694687, - "z": 257.599121 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 446.198975, - "y": -49.8801765, - "z": 148.943024 + ] + }, + { + "Id": "quest_termilnal_letter [1059726e-1bef-421d-87e0-6ecd6e296c2d]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 410.756348, + "y": -53.08418, + "z": 159.376 + }, + "Rotation": { + "x": 271.147034, + "y": 196.694687, + "z": 257.599121 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 446.198975, + "y": -49.8801765, + "z": 148.943024 + }, + "Rotation": { + "x": 88.50537, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 88.50537, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 410.756348, - "y": -53.08418, - "z": 159.376 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 410.756348, + "y": -53.08418, + "z": 159.376 + }, + "Rotation": { + "x": 271.147034, + "y": 196.694687, + "z": 257.599121 + } }, - "Rotation": { - "x": 271.147034, - "y": 196.694687, - "z": 257.599121 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 329.034424, - "y": -55.28478, - "z": 130.208008 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 329.034424, + "y": -55.28478, + "z": 130.208008 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 87.98923 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 87.98923 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 281.8828, - "y": -51.67848, - "z": 161.129913 + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 281.8828, + "y": -51.67848, + "z": 161.129913 + }, + "Rotation": { + "x": 271.90802, + "y": 121.936531, + "z": 264.525757 + } }, - "Rotation": { - "x": 271.90802, - "y": 121.936531, - "z": 264.525757 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 250.959229, - "y": -54.9648628, - "z": 142.134033 - }, - "Rotation": { - "x": 270.664978, - "y": 0, - "z": 0 + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 250.959229, + "y": -54.9648628, + "z": 142.134033 + }, + "Rotation": { + "x": 270.664978, + "y": 0, + "z": 0 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520fa", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520fa", - "_tpl": "6614238e0d240a5f5d0f679d", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520fa", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520fa", + "_tpl": "6614238e0d240a5f5d0f679d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest_termilnal_skier_phone [dd417e51-ee02-4de5-8a58-3846870c9092]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -645.5958, - "y": -26.1405983, - "z": -230.260635 - }, - "Rotation": { - "x": 270.0, - "y": 18.64675, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -628.3096, - "y": -26.39891, - "z": -233.695572 - }, - "Rotation": { - "x": 86.25744, - "y": 43.20028, - "z": 223.2477 - } + { + "Id": "quest_termilnal_skier_phone [dd417e51-ee02-4de5-8a58-3846870c9092]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -645.5958, + "y": -26.1405983, + "z": -230.260635 + }, + "Rotation": { + "x": 270.0, + "y": 18.64675, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -606.2258, - "y": -29.36282, - "z": -181.893555 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -628.3096, + "y": -26.39891, + "z": -233.695572 + }, + "Rotation": { + "x": 86.25744, + "y": 43.20028, + "z": 223.2477 + } }, - "Rotation": { - "x": 274.425934, - "y": 303.8441, - "z": 56.2350273 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -629.152, - "y": -29.3669, - "z": -157.660583 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -606.2258, + "y": -29.36282, + "z": -181.893555 + }, + "Rotation": { + "x": 274.425934, + "y": 303.8441, + "z": 56.2350273 + } }, - "Rotation": { - "x": 270.413544, - "y": 180, - "z": 180 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": -645.5958, - "y": -26.1405983, - "z": -230.260635 - }, - "Rotation": { - "x": 270, - "y": 18.64675, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520fc", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520fc", - "_tpl": "6614217b6d9d5abcad0ff098", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "SAS1 [1] (11) [d8387661-a9b7-482e-b118-65199cffd120]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -552.9468, - "y": -31.2057, - "z": -128.2434 - }, - "Rotation": { - "x": 3.78392053, - "y": 140.427933, - "z": 90.8721161 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc10520fe", - "Items": [ - { - "_id": "66cbc20c9e95fdffc10520fe", - "_tpl": "5a294d7c86f7740651337cf9", - "upd": { - "StackObjectsCount": 1 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -629.152, + "y": -29.3669, + "z": -157.660583 + }, + "Rotation": { + "x": 270.413544, + "y": 180, + "z": 180 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": -645.5958, + "y": -26.1405983, + "z": -230.260635 + }, + "Rotation": { + "x": 270, + "y": 18.64675, + "z": 0 + } } - } - ] - }, - { - "Id": "SAS2 [1] (12) [b8cfff7c-6465-4684-959a-4fce38ae5d12]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 81.4337158, - "y": -31.8154, - "z": -166.845 - }, - "Rotation": { - "x": 358.933075, - "y": 228.742966, - "z": 102.927826 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052100", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052100", - "_tpl": "5a294d8486f774068638cd93", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520fc", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520fc", + "_tpl": "6614217b6d9d5abcad0ff098", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "smlltools (7) [bf0c5eac-26d8-4b97-9c8a-3b7e3a9a1d17]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -535.047, - "y": -17.073, - "z": -336.592 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 89.3969345 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052102", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052102", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "SAS1 [1] (11) [d8387661-a9b7-482e-b118-65199cffd120]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -552.9468, + "y": -31.2057, + "z": -128.2434 + }, + "Rotation": { + "x": 3.78392053, + "y": 140.427933, + "z": 90.8721161 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc10520fe", + "Items": [ + { + "_id": "66cbc20c9e95fdffc10520fe", + "_tpl": "5a294d7c86f7740651337cf9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "surgical_kit_Sanitar [0f8a4b99-b0be-4017-8c28-113dc2c9cea7]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -314.594971, - "y": -55.7136, - "z": 480.1718 - }, - "Rotation": { - "x": -2.72140346e-6, - "y": 90.0, - "z": 179.200577 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052104", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052104", - "_tpl": "5efdafc1e70b5e33f86de058", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "SAS2 [1] (12) [b8cfff7c-6465-4684-959a-4fce38ae5d12]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 81.4337158, + "y": -31.8154, + "z": -166.845 + }, + "Rotation": { + "x": 358.933075, + "y": 228.742966, + "z": 102.927826 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052100", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052100", + "_tpl": "5a294d8486f774068638cd93", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (1) [af9de021-1951-454b-bb17-7219ca08a169]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -778.717, - "y": -57.54, - "z": 488.918 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052106", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052106", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "smlltools (7) [bf0c5eac-26d8-4b97-9c8a-3b7e3a9a1d17]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -535.047, + "y": -17.073, + "z": -336.592 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 89.3969345 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052102", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052102", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (10) [a8004b7f-82b4-4ec5-82b9-f67002df8be0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.939, - "y": -45.357, - "z": 134.374 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052108", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052108", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "surgical_kit_Sanitar [0f8a4b99-b0be-4017-8c28-113dc2c9cea7]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -314.594971, + "y": -55.7136, + "z": 480.1718 + }, + "Rotation": { + "x": -2.72140346e-6, + "y": 90.0, + "z": 179.200577 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052104", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052104", + "_tpl": "5efdafc1e70b5e33f86de058", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (102) [61d933d0-56be-4058-8e8a-f5f12077bb51]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 241.975, - "y": -62.666, - "z": 433.37 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105210a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105210a", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (1) [af9de021-1951-454b-bb17-7219ca08a169]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -778.717, + "y": -57.54, + "z": 488.918 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052106", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052106", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (11) [81ef8319-1d8f-444f-a4b8-34c9570135d5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -652.414, - "y": -57.876, - "z": 476.338 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105210c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105210c", - "_tpl": "5d63d33b86f7746ea9275524", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (10) [a8004b7f-82b4-4ec5-82b9-f67002df8be0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.939, + "y": -45.357, + "z": 134.374 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052108", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052108", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (12) [162e3d9e-d1de-469f-9b49-ed5e7c68f0ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 47.454, - "y": -45.623, - "z": 145.229 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105210e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105210e", - "_tpl": "590c2e1186f77425357b6124", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (102) [61d933d0-56be-4058-8e8a-f5f12077bb51]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 241.975, + "y": -62.666, + "z": 433.37 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105210a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105210a", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (16) [c0bd3741-3a67-405f-81d9-e2aba0056edb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 38.7, - "y": -45.442, - "z": 93.62 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052110", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052110", - "_tpl": "66b37f114410565a8f6789e2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (11) [81ef8319-1d8f-444f-a4b8-34c9570135d5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -652.414, + "y": -57.876, + "z": 476.338 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105210c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105210c", + "_tpl": "5d63d33b86f7746ea9275524", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (16) [f9fc473a-75a5-4639-bbab-f36fad200aef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -638.743, - "y": -58.399, - "z": 473.811 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052112", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052112", - "_tpl": "56742c2e4bdc2d95058b456d", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (12) [162e3d9e-d1de-469f-9b49-ed5e7c68f0ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 47.454, + "y": -45.623, + "z": 145.229 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105210e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105210e", + "_tpl": "590c2e1186f77425357b6124", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (17) [c8eb4421-ba80-481e-b83b-69a96fe6c72c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.273, - "y": -45.442, - "z": 93.961 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052114", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052114", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (16) [c0bd3741-3a67-405f-81d9-e2aba0056edb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 38.7, + "y": -45.442, + "z": 93.62 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052110", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052110", + "_tpl": "66b37f114410565a8f6789e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (18) [337deffc-b9e7-4331-8227-a6880f019743]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 29.477, - "y": -45.7, - "z": 101.979 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052116", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052116", - "_tpl": "5bc9b355d4351e6d1509862a", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (16) [f9fc473a-75a5-4639-bbab-f36fad200aef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -638.743, + "y": -58.399, + "z": 473.811 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052112", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052112", + "_tpl": "56742c2e4bdc2d95058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (18) [3f3bee6f-0dad-4545-8663-8aa9cb1250a4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -638.583, - "y": -58.399, - "z": 473.126 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052118", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052118", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (17) [c8eb4421-ba80-481e-b83b-69a96fe6c72c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.273, + "y": -45.442, + "z": 93.961 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052114", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052114", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (19) [1471885b-8d34-4207-859b-283389a88f95]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 30.124, - "y": -45.7, - "z": 101.528 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105211a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105211a", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (18) [337deffc-b9e7-4331-8227-a6880f019743]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 29.477, + "y": -45.7, + "z": 101.979 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052116", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052116", + "_tpl": "5bc9b355d4351e6d1509862a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (20) [b54c0eaa-a34e-4a1f-8589-33d55c40740c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 127.93, - "y": -47.377, - "z": 129.496 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105211c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105211c", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (18) [3f3bee6f-0dad-4545-8663-8aa9cb1250a4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -638.583, + "y": -58.399, + "z": 473.126 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052118", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052118", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (22) [aff33ad5-a8a0-4c9c-a7c0-fed2b103caf0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 127.851, - "y": -48.061, - "z": 131.451 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105211e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105211e", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (19) [1471885b-8d34-4207-859b-283389a88f95]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 30.124, + "y": -45.7, + "z": 101.528 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105211a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105211a", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (25) [7c46e6c1-341a-4fbb-b4f8-526385cb3f42]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 164.46, - "y": -47.008, - "z": 110.453 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052120", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052120", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (20) [b54c0eaa-a34e-4a1f-8589-33d55c40740c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 127.93, + "y": -47.377, + "z": 129.496 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105211c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105211c", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (28) [9b1f82f9-b3ef-4d2f-8c7e-bce9455c79bc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -574.754, - "y": -58.098, - "z": 483.95 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052122", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052122", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (22) [aff33ad5-a8a0-4c9c-a7c0-fed2b103caf0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 127.851, + "y": -48.061, + "z": 131.451 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105211e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105211e", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (3) [358b1a78-327c-4879-bbc8-a7c2a8310142]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -777.993, - "y": -57.54, - "z": 490.557 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052124", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052124", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (25) [7c46e6c1-341a-4fbb-b4f8-526385cb3f42]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 164.46, + "y": -47.008, + "z": 110.453 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052120", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052120", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (31) [f1577374-c235-433e-a95c-34920edc8f9c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -578.1, - "y": -58.098, - "z": 490.68 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052126", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052126", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (28) [9b1f82f9-b3ef-4d2f-8c7e-bce9455c79bc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -574.754, + "y": -58.098, + "z": 483.95 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052122", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052122", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (33) [f783642c-fd45-4750-ba6c-575f9665eeab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -570.296, - "y": -58.098, - "z": 490.362 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052128", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052128", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (3) [358b1a78-327c-4879-bbc8-a7c2a8310142]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -777.993, + "y": -57.54, + "z": 490.557 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052124", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052124", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (36) [e22cbe83-fd51-494f-bafa-79bfaece0355]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 160.169, - "y": -47.39, - "z": 65.724 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105212a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105212a", - "_tpl": "5d1b36a186f7742523398433", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (31) [f1577374-c235-433e-a95c-34920edc8f9c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -578.1, + "y": -58.098, + "z": 490.68 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052126", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052126", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (37) [1e51111c-9b0b-4457-b774-43f0f793019b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 160.601, - "y": -47.39, - "z": 65.775 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105212c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105212c", - "_tpl": "61bf7b6302b3924be92fa8c3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (33) [f783642c-fd45-4750-ba6c-575f9665eeab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -570.296, + "y": -58.098, + "z": 490.362 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052128", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052128", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (37) [a4a65418-00e7-4b8e-8275-21302f9ef0f8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -558.625, - "y": -57.982, - "z": 491.713 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105212e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105212e", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (36) [e22cbe83-fd51-494f-bafa-79bfaece0355]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 160.169, + "y": -47.39, + "z": 65.724 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105212a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105212a", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (38) [ad5bba88-b1b6-4063-bfa6-e281aea59055]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -557.724, - "y": -57.982, - "z": 492.103 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052130", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052130", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (37) [1e51111c-9b0b-4457-b774-43f0f793019b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 160.601, + "y": -47.39, + "z": 65.775 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105212c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105212c", + "_tpl": "61bf7b6302b3924be92fa8c3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (40) [ffa55a07-3b9e-4270-8414-987ae98b8355]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -558.84, - "y": -57.838, - "z": 483.736 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052132", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052132", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (37) [a4a65418-00e7-4b8e-8275-21302f9ef0f8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -558.625, + "y": -57.982, + "z": 491.713 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105212e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105212e", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (41) [c871631c-8020-496f-8be0-1380cc263082]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -530.732, - "y": -58.246, - "z": 479.114 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052134", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052134", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (38) [ad5bba88-b1b6-4063-bfa6-e281aea59055]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -557.724, + "y": -57.982, + "z": 492.103 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052130", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052130", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (42) [77e3906a-9eec-4e9a-814c-031c9297fe11]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -530.763, - "y": -58.246, - "z": 479.782 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052136", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052136", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (40) [ffa55a07-3b9e-4270-8414-987ae98b8355]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -558.84, + "y": -57.838, + "z": 483.736 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052132", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052132", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (45) [11c2e96c-7df1-46b0-bc0d-b000b0f2e93c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -527.583, - "y": -57.908, - "z": 469.646 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052138", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052138", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (41) [c871631c-8020-496f-8be0-1380cc263082]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -530.732, + "y": -58.246, + "z": 479.114 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052134", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052134", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (45) [273d544c-528b-45f2-8fa7-ea170ccc452e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.951, - "y": -46.926, - "z": 58.271 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105213a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105213a", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (42) [77e3906a-9eec-4e9a-814c-031c9297fe11]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -530.763, + "y": -58.246, + "z": 479.782 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052136", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052136", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (46) [0d87ad60-64c6-4185-b5cf-c5d811cb1eb4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 117.378, - "y": -46.926, - "z": 58.768 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105213c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105213c", - "_tpl": "5d1b32c186f774252167a530", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (45) [11c2e96c-7df1-46b0-bc0d-b000b0f2e93c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -527.583, + "y": -57.908, + "z": 469.646 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052138", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052138", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (5) [9169b207-64a9-4edb-b725-f5602530927b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -772.565, - "y": -57.977, - "z": 462.976 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105213e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105213e", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (45) [273d544c-528b-45f2-8fa7-ea170ccc452e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.951, + "y": -46.926, + "z": 58.271 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105213a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105213a", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (52) [04dc6116-9b28-46a2-b6e6-7e17210e2ab6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -558.813, - "y": -58.242, - "z": 496.244 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052140", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052140", - "_tpl": "5d40425986f7743185265461", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (46) [0d87ad60-64c6-4185-b5cf-c5d811cb1eb4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 117.378, + "y": -46.926, + "z": 58.768 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105213c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105213c", + "_tpl": "5d1b32c186f774252167a530", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (54) [4ec7eef4-c9c7-4eba-9c02-7f8b59df51ce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -537.491, - "y": -58.546, - "z": 501.18 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052142", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052142", - "_tpl": "57347c1124597737fb1379e3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (5) [9169b207-64a9-4edb-b725-f5602530927b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -772.565, + "y": -57.977, + "z": 462.976 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105213e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105213e", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (56) [0b0f3529-7443-4e51-950a-4ed0d5b5c859]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 140.453, - "y": -47.314, - "z": 121.749 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052144", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052144", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (52) [04dc6116-9b28-46a2-b6e6-7e17210e2ab6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -558.813, + "y": -58.242, + "z": 496.244 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052140", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052140", + "_tpl": "5d40425986f7743185265461", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (6) [7ff531db-e882-4084-a505-0bc9b0484ad4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -772.261, - "y": -57.977, - "z": 463.612 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052146", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052146", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (54) [4ec7eef4-c9c7-4eba-9c02-7f8b59df51ce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -537.491, + "y": -58.546, + "z": 501.18 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052142", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052142", + "_tpl": "57347c1124597737fb1379e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (65) [8a8b2781-0ed7-4795-b5d8-8b5fb8683d34]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -354.713, - "y": -61.004, - "z": 528.271 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052148", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052148", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (56) [0b0f3529-7443-4e51-950a-4ed0d5b5c859]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 140.453, + "y": -47.314, + "z": 121.749 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052144", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052144", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (66) [b1b3ab4c-507e-4698-95dc-f765a4fdc529]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -354.713, - "y": -60.514, - "z": 528.271 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105214a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105214a", - "_tpl": "57347c5b245977448d35f6e1", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (6) [7ff531db-e882-4084-a505-0bc9b0484ad4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -772.261, + "y": -57.977, + "z": 463.612 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052146", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052146", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (67) [70e3575a-50a5-4783-add8-3b877668f8be]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -354.227, - "y": -60.514, - "z": 527.933 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105214c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105214c", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (65) [8a8b2781-0ed7-4795-b5d8-8b5fb8683d34]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -354.713, + "y": -61.004, + "z": 528.271 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052148", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052148", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (69) [0ff8170a-5b74-436d-bfb9-2289be9741bd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -357.941, - "y": -60.803, - "z": 530.661 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105214e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105214e", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (66) [b1b3ab4c-507e-4698-95dc-f765a4fdc529]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -354.713, + "y": -60.514, + "z": 528.271 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105214a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105214a", + "_tpl": "57347c5b245977448d35f6e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (70) [723864f0-ae6f-4bb0-9598-0341baaea9d0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -357.316, - "y": -60.803, - "z": 530.226 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052150", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052150", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (67) [70e3575a-50a5-4783-add8-3b877668f8be]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -354.227, + "y": -60.514, + "z": 527.933 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105214c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105214c", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (72) [cfadd73b-f3da-4eac-9c58-ce1421541d36]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -571.942, - "y": -58.098, - "z": 486.559 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052152", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052152", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (69) [0ff8170a-5b74-436d-bfb9-2289be9741bd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -357.941, + "y": -60.803, + "z": 530.661 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105214e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105214e", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (73) [70a69610-1c8e-46c6-a203-ce349ad3fd59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 229.021011, - "y": -63.327, - "z": 434.5999 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052154", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052154", - "_tpl": "5e2af22086f7746d3f3c33fa", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (70) [723864f0-ae6f-4bb0-9598-0341baaea9d0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -357.316, + "y": -60.803, + "z": 530.226 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052150", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052150", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (74) [f20d8885-6a02-4ae5-9c66-2bf5bb1bf3dc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 229.556, - "y": -63.327, - "z": 434.33 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052156", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052156", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (72) [cfadd73b-f3da-4eac-9c58-ce1421541d36]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -571.942, + "y": -58.098, + "z": 486.559 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052152", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052152", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (75) [2cc5018c-e7bd-49a9-935a-6104f94cc0e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 200.917969, - "y": -58.881, - "z": 349.377075 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052158", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052158", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (73) [70a69610-1c8e-46c6-a203-ce349ad3fd59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 229.021011, + "y": -63.327, + "z": 434.5999 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052154", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052154", + "_tpl": "5e2af22086f7746d3f3c33fa", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (76) [2df099b3-7e8f-4737-aade-65145447b8e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 203.108, - "y": -58.881, - "z": 349.527 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105215a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105215a", - "_tpl": "590c35a486f774273531c822", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (74) [f20d8885-6a02-4ae5-9c66-2bf5bb1bf3dc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 229.556, + "y": -63.327, + "z": 434.33 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052156", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052156", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (77) [b7475d32-bb2c-4377-83d0-521249f5897f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 198.591, - "y": -62.039, - "z": 351.254 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105215c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105215c", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (75) [2cc5018c-e7bd-49a9-935a-6104f94cc0e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 200.917969, + "y": -58.881, + "z": 349.377075 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052158", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052158", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (82) [4ae6b51b-0739-4cc9-a5a3-1c9e9e93a3a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 206.855011, - "y": -62.501, - "z": 433.576 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105215e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105215e", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (76) [2df099b3-7e8f-4737-aade-65145447b8e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 203.108, + "y": -58.881, + "z": 349.527 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105215a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105215a", + "_tpl": "590c35a486f774273531c822", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (87) [ce6b5358-b887-4df3-a460-851cbcd70856]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 205.626, - "y": -63.169, - "z": 436.989 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052160", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052160", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (77) [b7475d32-bb2c-4377-83d0-521249f5897f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 198.591, + "y": -62.039, + "z": 351.254 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105215c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105215c", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (88) [54d56725-58b8-40e0-84e2-5d72666fa81d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 205.352, - "y": -63.169, - "z": 437.398 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052162", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052162", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (82) [4ae6b51b-0739-4cc9-a5a3-1c9e9e93a3a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 206.855011, + "y": -62.501, + "z": 433.576 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105215e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105215e", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (9) [3bcacdf6-bca4-4949-8ebd-5467cc6134c8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -742.985, - "y": -58.81, - "z": 476.448 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052164", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052164", - "_tpl": "5d1b32c186f774252167a530", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (87) [ce6b5358-b887-4df3-a460-851cbcd70856]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 205.626, + "y": -63.169, + "z": 436.989 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052160", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052160", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (92) [13d6254e-40c9-477b-989a-6e9dcc9022ea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 249.776, - "y": -61.57, - "z": 437.3 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052166", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052166", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (88) [54d56725-58b8-40e0-84e2-5d72666fa81d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 205.352, + "y": -63.169, + "z": 437.398 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052162", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052162", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (93) [476540da-f3df-44bd-9e21-30eccde698ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 248.557, - "y": -62.012, - "z": 434.368 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052168", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052168", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (9) [3bcacdf6-bca4-4949-8ebd-5467cc6134c8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -742.985, + "y": -58.81, + "z": 476.448 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052164", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052164", + "_tpl": "5d1b32c186f774252167a530", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (95) [f53dec89-dd95-473d-aa15-375b5fe4a0d4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 248.209, - "y": -62.012, - "z": 431.612 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105216a", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105216a", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (92) [13d6254e-40c9-477b-989a-6e9dcc9022ea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 249.776, + "y": -61.57, + "z": 437.3 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052166", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052166", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (99) [a7f0e35c-51b2-49d9-a95b-975259eeda4c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 245.29, - "y": -62.666, - "z": 425.816 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105216c", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105216c", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (93) [476540da-f3df-44bd-9e21-30eccde698ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 248.557, + "y": -62.012, + "z": 434.368 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052168", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052168", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools [7153d852-e910-44bc-b6ac-a1e42db5ef0d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -779.605, - "y": -57.54, - "z": 488.159 - }, - "Rotation": { - "x": 0.0, - "y": 34.86594, - "z": -2.16103956e-7 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc105216e", - "Items": [ - { - "_id": "66cbc20c9e95fdffc105216e", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "tools (95) [f53dec89-dd95-473d-aa15-375b5fe4a0d4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 248.209, + "y": -62.012, + "z": 431.612 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105216a", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105216a", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "universal_sup1 (1) [5a2ac90c-9e55-40f0-93d5-bb910d67df44]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -223.680054, - "y": 2.367, - "z": -98.151 - }, - "Rotation": { - "x": 0.0, - "y": 3.33714581, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052170", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052170", - "_tpl": "5c0530ee86f774697952d952", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools (99) [a7f0e35c-51b2-49d9-a95b-975259eeda4c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 245.29, + "y": -62.666, + "z": 425.816 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105216c", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105216c", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "universal_sup1 (3) [04abc87d-d689-47c9-8cc9-35fb3ec3b2dc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -351.864, - "y": -0.682, - "z": -91.019 - }, - "Rotation": { - "x": 0.0, - "y": 3.33714581, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052172", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052172", - "_tpl": "5af0534a86f7743b6f354284", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools [7153d852-e910-44bc-b6ac-a1e42db5ef0d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -779.605, + "y": -57.54, + "z": 488.159 + }, + "Rotation": { + "x": 0.0, + "y": 34.86594, + "z": -2.16103956e-7 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc105216e", + "Items": [ + { + "_id": "66cbc20c9e95fdffc105216e", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "universal_sup1 (7) [c4c50475-6681-4853-9b59-9b78b171b125]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -197.453, - "y": 2.342, - "z": -76.18201 - }, - "Rotation": { - "x": 0.0, - "y": 3.33714581, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052174", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052174", - "_tpl": "655c663a6689c676ce57af85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "universal_sup1 (1) [5a2ac90c-9e55-40f0-93d5-bb910d67df44]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -223.680054, + "y": 2.367, + "z": -98.151 + }, + "Rotation": { + "x": 0.0, + "y": 3.33714581, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052170", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052170", + "_tpl": "5c0530ee86f774697952d952", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "universal_sup1 (9) [eba9e57d-4923-4b9e-b338-d54f3f0d8216]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -328.823, - "y": -0.079, - "z": -74.6759949 - }, - "Rotation": { - "x": 0.0, - "y": 3.33714581, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052176", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052176", - "_tpl": "5c1267ee86f77416ec610f72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "universal_sup1 (3) [04abc87d-d689-47c9-8cc9-35fb3ec3b2dc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -351.864, + "y": -0.682, + "z": -91.019 + }, + "Rotation": { + "x": 0.0, + "y": 3.33714581, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052172", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052172", + "_tpl": "5af0534a86f7743b6f354284", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "VAZ_2106_Closed [0] 0(Clone) [d6e31a68-81d5-4a33-a6e0-32ec01eb3fec]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -84.76083, - "y": -21.167, - "z": 4.527503 - }, - "Rotation": { - "x": -0.00013980543, - "y": 325.627747, - "z": 183.296112 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbc20c9e95fdffc1052179", - "Items": [ - { - "_id": "66cbc20c9e95fdffc1052179", - "_tpl": "657024d8c5d7d4cb4d078567", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "universal_sup1 (7) [c4c50475-6681-4853-9b59-9b78b171b125]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -197.453, + "y": 2.342, + "z": -76.18201 + }, + "Rotation": { + "x": 0.0, + "y": 3.33714581, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052174", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052174", + "_tpl": "655c663a6689c676ce57af85", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "universal_sup1 (9) [eba9e57d-4923-4b9e-b338-d54f3f0d8216]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -328.823, + "y": -0.079, + "z": -74.6759949 + }, + "Rotation": { + "x": 0.0, + "y": 3.33714581, + "z": 0.0 }, - { - "_id": "66cbc20c9e95fdffc105217a", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbc20c9e95fdffc1052179", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052176", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052176", + "_tpl": "5c1267ee86f77416ec610f72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - } - ], - "Banners": [ - { - "id": "5807c3f124597746bf2db2ce", - "pic": { - "path": "CONTENT\/banners\/banner_scav.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT\/banners\/banner_scavraider.jpg", - "rcid": "" + ] + }, + { + "Id": "VAZ_2106_Closed [0] 0(Clone) [d6e31a68-81d5-4a33-a6e0-32ec01eb3fec]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -84.76083, + "y": -21.167, + "z": 4.527503 + }, + "Rotation": { + "x": -0.00013980543, + "y": 325.627747, + "z": 183.296112 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbc20c9e95fdffc1052179", + "Items": [ + { + "_id": "66cbc20c9e95fdffc1052179", + "_tpl": "657024d8c5d7d4cb4d078567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbc20c9e95fdffc105217a", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbc20c9e95fdffc1052179", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + } + ] } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT\/banners\/banner_emissary.jpg", - "rcid": "" + ], + "Banners": [ + { + "id": "5807c3f124597746bf2db2ce", + "pic": { + "path": "CONTENT\/banners\/banner_scav.jpg", + "rcid": "" + } + }, + { + "id": "5c1b857086f77465f465faa4", + "pic": { + "path": "CONTENT\/banners\/banner_scavraider.jpg", + "rcid": "" + } + }, + { + "id": "64c0ad6af99768b777048f4e", + "pic": { + "path": "CONTENT\/banners\/banner_emissary.jpg", + "rcid": "" + } } - } - ] + ] + } } } \ No newline at end of file diff --git a/Fuyu.Platform.Server/embedded/database/locations/tarkovstreets.json b/Fuyu.Platform.Server/embedded/database/locations/tarkovstreets.json index 97707c70..30e6faa5 100644 --- a/Fuyu.Platform.Server/embedded/database/locations/tarkovstreets.json +++ b/Fuyu.Platform.Server/embedded/database/locations/tarkovstreets.json @@ -1,85307 +1,85310 @@ { - "serverId": "TRAINING_659885_24_08_2024_01_38_59", - "serverSettings": { - "TraderServerSettings": { - "TraderServices": { - "ExUsecLoyalty": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ExUsecLoyalty", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966ff54c3ef01b6f3ffad8" + "err": 0, + "data": { + "serverId": "TRAINING_659885_24_08_2024_01_38_59", + "serverSettings": { + "TraderServerSettings": { + "TraderServices": { + "ExUsecLoyalty": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ExUsecLoyalty", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966ff54c3ef01b6f3ffad8" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.09 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.09 + }, + "ServiceItemCost": { + "569668774bdc2da2298b4568": { + "Count": 2500 + }, + "61bf7c024770ee6f9c6b8b53": { + "Count": 2 } - } - }, - "ServiceItemCost": { - "569668774bdc2da2298b4568": { - "Count": 2500 }, - "61bf7c024770ee6f9c6b8b53": { - "Count": 2 - } - }, - "UniqueItems": [] - }, - "ZryachiyAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ZryachiyAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "6396701b9113f06a7c3b2379" + "UniqueItems": [] + }, + "ZryachiyAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ZryachiyAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "6396701b9113f06a7c3b2379" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.18 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.18 + }, + "ServiceItemCost": { + "62a0a16d0b9d3c46de5b6e97": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 2000 } - } - }, - "ServiceItemCost": { - "62a0a16d0b9d3c46de5b6e97": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 2000 - } - }, - "UniqueItems": [] - }, - "CultistsAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "CultistsAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966fccac6f8f3c677b9d89" + "UniqueItems": [] + }, + "CultistsAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "CultistsAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966fccac6f8f3c677b9d89" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.03 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.03 + }, + "ServiceItemCost": { + "5c12613b86f7743bbe2c3f76": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 1000 } - } - }, - "ServiceItemCost": { - "5c12613b86f7743bbe2c3f76": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 1000 - } - }, - "UniqueItems": [ - "64d0b40fbe2eed70e254e2d4" - ] - }, - "PlayerTaxi": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "PlayerTaxi", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrBotCover": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrBotCover", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "TransitItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "TransitItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + "UniqueItems": [ + "64d0b40fbe2eed70e254e2d4" + ] + }, + "PlayerTaxi": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "PlayerTaxi", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrBotCover": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrBotCover", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "TransitItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "TransitItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + } } - } - }, - "BTRServerSettings": { - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.77, - "BodySwingIntensity": 0.506, - "ServerMapBTRSettings": { - "Develop": { - "MapID": "develop", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "TarkovStreets": { - "MapID": "TarkovStreets", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "Woods": { - "MapID": "Woods", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 180.0, - "y": 360.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 + "BTRServerSettings": { + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.77, + "BodySwingIntensity": 0.506, + "ServerMapBTRSettings": { + "Develop": { + "MapID": "develop", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "TarkovStreets": { + "MapID": "TarkovStreets", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "Woods": { + "MapID": "Woods", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 180.0, + "y": 360.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + } } } - } - }, - "profile": null, - "locationLoot": { - "Enabled": true, - "EnableCoop": true, - "ForceOnlineRaidInPVE": true, - "Locked": false, - "Insurance": true, - "SafeLocation": false, - "Name": "Streets of Tarkov", - "Description": "The downtown Tarkov with banks, malls, hotels and all the other things a striving modern city could have needed.", - "Scene": { - "path": "maps\/city_preset.bundle", - "rcid": "city.scenespreset.asset" - }, - "Area": 0.0, - "RequiredPlayerLevelMin": 0, - "RequiredPlayerLevelMax": 100, - "PmcMaxPlayersInGroup": 5, - "ScavMaxPlayersInGroup": 4, - "MinPlayers": 12, - "MaxPlayers": 16, - "MaxCoopGroup": 20, - "exit_count": 1, - "exit_access_time": 40, - "exit_time": 2, - "Preview": { - "path": "", - "rcid": "" - }, - "IconX": 670, - "IconY": 620, - "filter_ex": [], - "waves": [ - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 3, - "slots_max": 4, - "SpawnPoints": "ZoneSW00", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 1, - "time_min": -1, - "time_max": -1, - "slots_min": 2, - "slots_max": 3, - "SpawnPoints": "ZoneCarShowroom", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 2, - "time_min": -1, - "time_max": -1, - "slots_min": 3, - "slots_max": 4, - "SpawnPoints": "ZoneStilo", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 3, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 1, - "SpawnPoints": "ZoneSnipeStilo", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "marksman", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 4, - "time_min": -1, - "time_max": -1, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "ZoneCard1", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 5, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 1, - "SpawnPoints": "ZoneSnipeCard", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "marksman", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 6, - "time_min": -1, - "time_max": -1, - "slots_min": 2, - "slots_max": 3, - "SpawnPoints": "ZoneHotel_1", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 7, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 1, - "SpawnPoints": "ZoneSnipeBuilding", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "marksman", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 8, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 1, - "SpawnPoints": "ZoneSnipeSW01", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "marksman", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 9, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 4, - "SpawnPoints": "ZoneSW01", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 10, - "time_min": -1, - "time_max": -1, - "slots_min": 1, - "slots_max": 4, - "SpawnPoints": "ZoneConstruction", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 11, - "time_min": -1, - "time_max": -1, - "slots_min": 2, - "slots_max": 3, - "SpawnPoints": "ZoneHotel_2", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "number": 12, - "time_min": -1, - "time_max": -1, - "slots_min": 2, - "slots_max": 4, - "SpawnPoints": "ZoneConcordia_1", - "BotSide": "Savage", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault", - "SpawnMode": [ - "regular", - "pve" - ] - } - ], - "limits": [ - { - "items": [ - "64d4b23dc1b37504b41ac2b6" - ], - "min": 1, - "max": 1 - } - ], - "AveragePlayTime": 50, - "AveragePlayerLevel": 40, - "EscapeTimeLimit": 50, - "EscapeTimeLimitPVE": 50, - "EscapeTimeLimitCoop": 30, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 10, - "MaxDistToFreePoint": 250, - "MinDistToFreePoint": 90, - "MaxBotPerZone": 5, - "OpenZones": "ZoneSW01,ZoneConstruction,ZoneCarShowroom,ZoneCinema,ZoneFactory,ZoneHotel_1,ZoneHotel_2,ZoneConcordia_1,ZoneConcordiaParking,ZoneSnipeCinema,ZoneSnipeCarShowroom,ZoneSnipeBuilding,ZoneSnipeSW01", - "OcculsionCullingEnabled": false, - "GlobalLootChanceModifier": 0.17, - "GlobalLootChanceModifierPvE": 0.37, - "OldSpawn": true, - "OfflineOldSpawn": true, - "NewSpawn": true, - "OfflineNewSpawn": true, - "BotMax": 48, - "BotMaxPvE": 48, - "BotStart": 122, - "BotStartPlayer": 0, - "BotStop": 2200, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 290, - "BotSpawnTimeOnMax": 360, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOffMax": 25, - "BotMaxPlayer": 0, - "BotEasy": 10, - "BotNormal": 40, - "BotHard": 50, - "BotImpossible": 0, - "BotAssault": 80, - "BotMarksman": 20, - "DisabledScavExits": "", - "MinPlayerLvlAccessKeys": 0, - "AccessKeys": [], - "UnixDateTime": 1621511450, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "sav_summon_seconds": 60, - "matching_min_seconds": 60, - "GenerateLocalLootCache": true, - "PlayersRequestCount": -1, - "NonWaveGroupScenario": { - "MinToBeGroup": 2, - "MaxToBeGroup": 3, - "Chance": 50.0, - "Enabled": true }, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 14, - "GlobalContainerChanceModifier": 1.0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 1.0, - "Scattering": 1.0, - "GainSight": 1.0, - "MarksmanAccuratyCoef": 1.0, - "VisibleDistance": 1.0, - "MinExfiltrationTime": 1800.0, - "MaxExfiltrationTime": 2200.0, - "DistToActivatePvE": 260.0, - "DistToSleepPvE": 300.0, - "DistToActivate": 260.0, - "DistToSleep": 300.0, - "AdditionalHostilitySettings": [ + "profile": null, + "locationLoot": { + "Enabled": true, + "EnableCoop": true, + "ForceOnlineRaidInPVE": true, + "Locked": false, + "Insurance": true, + "SafeLocation": false, + "Name": "Streets of Tarkov", + "Description": "The downtown Tarkov with banks, malls, hotels and all the other things a striving modern city could have needed.", + "Scene": { + "path": "maps\/city_preset.bundle", + "rcid": "city.scenespreset.asset" + }, + "Area": 0.0, + "RequiredPlayerLevelMin": 0, + "RequiredPlayerLevelMax": 100, + "PmcMaxPlayersInGroup": 5, + "ScavMaxPlayersInGroup": 4, + "MinPlayers": 12, + "MaxPlayers": 16, + "MaxCoopGroup": 20, + "exit_count": 1, + "exit_access_time": 40, + "exit_time": 2, + "Preview": { + "path": "", + "rcid": "" + }, + "IconX": 670, + "IconY": 620, + "filter_ex": [], + "waves": [ { - "BotRole": "pmcBEAR", - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 90 - }, - { - "BotRole": "pmcUSEC", - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 75 - } - ] - }, - "exits": [ - { - "Name": "E1", - "EntryPoints": "E6_1,E1_2", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "E2", - "EntryPoints": "E2_3,E1_2", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "E3", - "EntryPoints": "E2_3,E3_4", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "E4", - "EntryPoints": "E4_5,E3_4", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "E5", - "EntryPoints": "E4_5,E5_6", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "E6", - "EntryPoints": "E6_1,E5_6", - "Chance": 0.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 0.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "E7_car", - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "Chance": 50.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 4, - "ExfiltrationTime": 60.0, - "PassageRequirement": "TransferItem", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "5449016a4bdc2d6f028b456f", - "RequirementTip": "EXFIL_Item", - "Count": 5000, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 50.0, - "CountPVE": 5000, - "ExfiltrationTimePVE": 60.0, - "PlayersCountPVE": 4 - }, - { - "Name": "E8_yard", - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "Chance": 40.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 40.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "E9_sniper", - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 6.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 6.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Exit_E10_coop", - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "ScavCooperation", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "EXFIL_Cooperate", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "E7", - "EntryPoints": "E6_1,E5_6", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "E8", - "EntryPoints": "E6_1,E5_6", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0, - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - } - ], - "DisabledForScav": false, - "ExitZones": "5c82534488a45046451a2386", - "SpawnPointParams": [ - { - "Id": "010b0da2-f753-43e3-8b0f-a83ae86e6f4e", - "Position": { - "x": 142.932, - "y": 6.69, - "z": 361.238 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 24 - }, - { - "Id": "01346f2c-c43a-4603-8ad3-4686e3efddfe", - "Position": { - "x": 203.780014, - "y": 1.170002, - "z": 190.65 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 3, + "slots_max": 4, + "SpawnPoints": "ZoneSW00", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "02a6e1c5-42a9-4671-970b-1df2a1cd93cc", - "Position": { - "x": 204.66, - "y": 3.545, - "z": 404.31 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 1, + "time_min": -1, + "time_max": -1, + "slots_min": 2, + "slots_max": 3, + "SpawnPoints": "ZoneCarShowroom", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneConcordia_1", - "CorePointId": 8 - }, - { - "Id": "0312f9fe-9566-40e4-8ceb-681703da27af", - "Position": { - "x": 63.6960144, - "y": 0.270000458, - "z": -55.2399979 - }, - "Rotation": 84.2096558, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "number": 2, + "time_min": -1, + "time_max": -1, + "slots_min": 3, + "slots_max": 4, + "SpawnPoints": "ZoneStilo", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneCard1", - "CorePointId": 6 - }, - { - "Id": "0364c889-0780-41d9-8cce-ac309fbb529e", - "Position": { - "x": -133.321, - "y": 0.6079955, - "z": -26.729 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "number": 3, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 1, + "SpawnPoints": "ZoneSnipeStilo", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "marksman", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneStilo", - "CorePointId": 22 - }, - { - "Id": "04579db6-ef1c-4d02-be02-032f4b838985", - "Position": { - "x": 39.257, - "y": 2.829, - "z": 200.375 - }, - "Rotation": 359.110931, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 4, + "time_min": -1, + "time_max": -1, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "ZoneCard1", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneColumn", - "CorePointId": 14 - }, - { - "Id": "045df890-4270-4ff6-b632-b926d95acccc", - "Position": { - "x": 204.58, - "y": 6.91, - "z": 297.1 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "number": 5, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 1, + "SpawnPoints": "ZoneSnipeCard", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "marksman", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneConstruction", - "CorePointId": 2 - }, - { - "Id": "04d3fdcc-6cb7-4485-8e4c-c88ef2318690", - "Position": { - "x": 171.993011, - "y": 0.544002533, - "z": 153.186 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "number": 6, + "time_min": -1, + "time_max": -1, + "slots_min": 2, + "slots_max": 3, + "SpawnPoints": "ZoneHotel_1", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "05381357-3db8-406b-b007-e7290f406ede", - "Position": { - "x": -178.507, - "y": 2.451, - "z": 415.023 - }, - "Rotation": 11.8153534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "number": 7, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 1, + "SpawnPoints": "ZoneSnipeBuilding", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "marksman", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "055b9120-abe9-4455-a08b-9841bb1fb1e7", - "Position": { - "x": 184.824, - "y": 2.528, - "z": 186.987 - }, - "Rotation": 24.4516544, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 8, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 1, + "SpawnPoints": "ZoneSnipeSW01", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "marksman", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "061e1b50-93bb-4d8e-8a78-79c6d4235b83", - "Position": { - "x": 100.71, - "y": -1.854, - "z": -162.53 - }, - "Rotation": 2.51932168, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "number": 9, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 4, + "SpawnPoints": "ZoneSW01", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "06e00b7c-c4b2-4b41-9b5f-f185b9caf444", - "Position": { - "x": 53.182, - "y": 4.531, - "z": -138.587 - }, - "Rotation": 270.557, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 10, + "time_min": -1, + "time_max": -1, + "slots_min": 1, + "slots_max": 4, + "SpawnPoints": "ZoneConstruction", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "07b43bcb-b19f-4009-8e7a-b646d1427c10", - "Position": { - "x": 58.914, - "y": 2.65034533, - "z": 324.237 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "number": 11, + "time_min": -1, + "time_max": -1, + "slots_min": 2, + "slots_max": 3, + "SpawnPoints": "ZoneHotel_2", + "BotSide": "Savage", + "BotPreset": "normal", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 1 - }, - { - "Id": "07beeaca-f6b0-4ff1-ae20-dbbe9cfc0ca4", - "Position": { - "x": 53.22, - "y": 4.781, - "z": -130.649 - }, - "Rotation": 259.938782, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 + { + "number": 12, + "time_min": -1, + "time_max": -1, + "slots_min": 2, + "slots_max": 4, + "SpawnPoints": "ZoneConcordia_1", + "BotSide": "Savage", + "BotPreset": "hard", + "isPlayers": false, + "WildSpawnType": "assault", + "SpawnMode": [ + "regular", + "pve" + ] + } + ], + "limits": [ + { + "items": [ + "64d4b23dc1b37504b41ac2b6" + ], + "min": 1, + "max": 1 + } + ], + "AveragePlayTime": 50, + "AveragePlayerLevel": 40, + "EscapeTimeLimit": 50, + "EscapeTimeLimitPVE": 50, + "EscapeTimeLimitCoop": 30, + "Rules": "Normal", + "IsSecret": false, + "doors": [], + "tmp_location_field_remove_me": 0, + "MinDistToExitPoint": 10, + "MaxDistToFreePoint": 250, + "MinDistToFreePoint": 90, + "MaxBotPerZone": 5, + "OpenZones": "ZoneSW01,ZoneConstruction,ZoneCarShowroom,ZoneCinema,ZoneFactory,ZoneHotel_1,ZoneHotel_2,ZoneConcordia_1,ZoneConcordiaParking,ZoneSnipeCinema,ZoneSnipeCarShowroom,ZoneSnipeBuilding,ZoneSnipeSW01", + "OcculsionCullingEnabled": false, + "GlobalLootChanceModifier": 0.17, + "GlobalLootChanceModifierPvE": 0.37, + "OldSpawn": true, + "OfflineOldSpawn": true, + "NewSpawn": true, + "OfflineNewSpawn": true, + "BotMax": 48, + "BotMaxPvE": 48, + "BotStart": 122, + "BotStartPlayer": 0, + "BotStop": 2200, + "BotMaxTimePlayer": 0, + "BotSpawnTimeOnMin": 290, + "BotSpawnTimeOnMax": 360, + "BotSpawnTimeOffMin": 20, + "BotSpawnTimeOffMax": 25, + "BotMaxPlayer": 0, + "BotEasy": 10, + "BotNormal": 40, + "BotHard": 50, + "BotImpossible": 0, + "BotAssault": 80, + "BotMarksman": 20, + "DisabledScavExits": "", + "MinPlayerLvlAccessKeys": 0, + "AccessKeys": [], + "UnixDateTime": 1621511450, + "users_gather_seconds": 0, + "users_spawn_seconds_n": 120, + "users_spawn_seconds_n2": 200, + "users_summon_seconds": 0, + "sav_summon_seconds": 60, + "matching_min_seconds": 60, + "GenerateLocalLootCache": true, + "PlayersRequestCount": -1, + "NonWaveGroupScenario": { + "MinToBeGroup": 2, + "MaxToBeGroup": 3, + "Chance": 50.0, + "Enabled": true + }, + "BotSpawnCountStep": 3, + "BotSpawnPeriodCheck": 14, + "GlobalContainerChanceModifier": 1.0, + "MinMaxBots": [], + "BotLocationModifier": { + "AccuracySpeed": 1.0, + "Scattering": 1.0, + "GainSight": 1.0, + "MarksmanAccuratyCoef": 1.0, + "VisibleDistance": 1.0, + "MinExfiltrationTime": 1800.0, + "MaxExfiltrationTime": 2200.0, + "DistToActivatePvE": 260.0, + "DistToSleepPvE": 300.0, + "DistToActivate": 260.0, + "DistToSleep": 300.0, + "AdditionalHostilitySettings": [ + { + "BotRole": "pmcBEAR", + "AlwaysEnemies": [ + "pmcBot", + "exUsec", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar", + "bossKnight" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcUSEC" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 75, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 90 + }, + { + "BotRole": "pmcUSEC", + "AlwaysEnemies": [ + "pmcBot", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcBEAR" + }, + { + "EnemyChance": 15, + "Role": "exUsec" + }, + { + "EnemyChance": 15, + "Role": "bossKnight" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 90, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 75 } - }, - "BotZoneName": "", - "CorePointId": 0 + ] }, - { - "Id": "08d42d8a-2c4d-4c8d-b23c-3e06b284df92", - "Position": { - "x": 232.64, - "y": 3.49, - "z": 409.53 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 43 - } + "exits": [ + { + "Name": "E1", + "EntryPoints": "E6_1,E1_2", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "09e762e3-f015-40cf-958e-4cdab50a3384", - "Position": { - "x": 271.1, - "y": 3.526, - "z": 374.04 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "E2", + "EntryPoints": "E2_3,E1_2", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneConcordia_1", - "CorePointId": 8 - }, - { - "Id": "0a1cae8d-6b53-40d2-a7e5-91771dc05803", - "Position": { - "x": -134.814, - "y": 3.058, - "z": 399.605 - }, - "Rotation": 271.2534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Name": "E3", + "EntryPoints": "E2_3,E3_4", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0a95f5de-4fed-4aab-8381-b537a5415d88", - "Position": { - "x": -163.933, - "y": 3.158, - "z": 183.069 - }, - "Rotation": 74.27901, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Name": "E4", + "EntryPoints": "E4_5,E3_4", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0ad67b7c-8bf9-4666-9796-bdcb12cd44cd", - "Position": { - "x": -164.56, - "y": 2.26, - "z": 291.57 - }, - "Rotation": 130.584167, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Name": "E5", + "EntryPoints": "E4_5,E5_6", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneFactory", - "CorePointId": 5 - }, - { - "Id": "0aea1cd2-c0d4-4aa5-a755-d4980deefa0e", - "Position": { - "x": 39.23, - "y": 2.872, - "z": 222.293 - }, - "Rotation": 359.110931, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Name": "E6", + "EntryPoints": "E6_1,E5_6", + "Chance": 0.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 0.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneColumn", - "CorePointId": 14 - }, - { - "Id": "0afff689-6beb-46a2-aece-4c1380e986fd", - "Position": { - "x": -59.838, - "y": 3.202, - "z": -147.273 - }, - "Rotation": 2.51925588, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Name": "E7_car", + "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", + "Chance": 50.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 4, + "ExfiltrationTime": 60.0, + "PassageRequirement": "TransferItem", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "5449016a4bdc2d6f028b456f", + "RequirementTip": "EXFIL_Item", + "Count": 5000, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 50.0, + "CountPVE": 5000, + "ExfiltrationTimePVE": 60.0, + "PlayersCountPVE": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0b1dbcb2-f978-42d7-bdf6-5f2ae6177baf", - "Position": { - "x": 269.506, - "y": -1.227, - "z": 379.56 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Name": "E8_yard", + "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", + "Chance": 40.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 40.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "0bbeb406-a8e4-4c45-bbc3-555023319a9b", - "Position": { - "x": -50.196, - "y": 5.152, - "z": -31.695 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Name": "E9_sniper", + "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 6.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 6.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "0c6e07b3-3e37-4169-ad60-4d4a8a0c304a", - "Position": { - "x": -84.273, - "y": 1.464, - "z": 177.886 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Name": "Exit_E10_coop", + "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "ScavCooperation", + "ExfiltrationType": "SharedTimer", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "EXFIL_Cooperate", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneHotel_1", - "CorePointId": 6 - }, - { - "Id": "0d70b594-1e3b-4c84-b3bb-8dfd15a6f105", - "Position": { - "x": 224.564011, - "y": 0.5250015, - "z": 182.244 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Name": "E7", + "EntryPoints": "E6_1,E5_6", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "0decbe7a-e53c-4756-adfc-b6b3bd57be51", - "Position": { - "x": -147.78, - "y": 14.9, - "z": -7.22999954 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Name": "E8", + "EntryPoints": "E6_1,E5_6", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "RequiredSlot": "FirstPrimaryWeapon", + "Id": "", + "RequirementTip": "", + "Count": 0, + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 + } + ], + "DisabledForScav": false, + "ExitZones": "5c82534488a45046451a2386", + "SpawnPointParams": [ + { + "Id": "010b0da2-f753-43e3-8b0f-a83ae86e6f4e", + "Position": { + "x": 142.932, + "y": 6.69, + "z": 361.238 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 24 }, - "BotZoneName": "ZoneSnipeStilo", - "CorePointId": 18 - }, - { - "Id": "0f5fc468-ee34-4417-b9f7-1eb488500bcd", - "Position": { - "x": 100.996, - "y": 2.6838336, - "z": 271.171021 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "01346f2c-c43a-4603-8ad3-4686e3efddfe", + "Position": { + "x": 203.780014, + "y": 1.170002, + "z": 190.65 + }, + "Rotation": 101.827583, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "0fc1edd9-6234-49d5-b6f2-fdbca041de7a", - "Position": { - "x": 211.142, - "y": -1.221, - "z": 341.592 - }, - "Rotation": 4.729597, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "02a6e1c5-42a9-4671-970b-1df2a1cd93cc", + "Position": { + "x": 204.66, + "y": 3.545, + "z": 404.31 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordia_1", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "10a75815-d786-43e2-9639-6b94071433f8", - "Position": { - "x": 7.45797729, - "y": 1.77900016, - "z": 153.593964 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0312f9fe-9566-40e4-8ceb-681703da27af", + "Position": { + "x": 63.6960144, + "y": 0.270000458, + "z": -55.2399979 + }, + "Rotation": 84.2096558, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneCard1", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "111667a7-3ece-4abc-a025-93eae7d99923", - "Position": { - "x": 226.77002, - "y": 0.458999634, - "z": 218.89 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "0364c889-0780-41d9-8cce-ac309fbb529e", + "Position": { + "x": -133.321, + "y": 0.6079955, + "z": -26.729 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 22 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 1 - }, - { - "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", - "Position": { - "x": 12.6679993, - "y": 2.538, - "z": 456.494 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "04579db6-ef1c-4d02-be02-032f4b838985", + "Position": { + "x": 39.257, + "y": 2.829, + "z": 200.375 + }, + "Rotation": 359.110931, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 14 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "12aec958-35b1-4808-810d-3a446152514c", - "Position": { - "x": -231.978, - "y": 2.312, - "z": 344.996 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "045df890-4270-4ff6-b632-b926d95acccc", + "Position": { + "x": 204.58, + "y": 6.91, + "z": 297.1 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneConstruction", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "12bb197b-bc6b-449c-9cf1-54ed289a364b", - "Position": { - "x": 228.885, - "y": 4.007, - "z": 176.279 - }, - "Rotation": 243.713043, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "04d3fdcc-6cb7-4485-8e4c-c88ef2318690", + "Position": { + "x": 171.993011, + "y": 0.544002533, + "z": 153.186 + }, + "Rotation": 73.40837, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "139af8b7-7e40-41b3-ac53-5a02e15a295d", - "Position": { - "x": 236.810013, - "y": 0.458999634, - "z": 216.9 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "05381357-3db8-406b-b007-e7290f406ede", + "Position": { + "x": -178.507, + "y": 2.451, + "z": 415.023 + }, + "Rotation": 11.8153534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 1 - }, - { - "Id": "14f8ecf6-8a2d-4372-a992-aa688bdd2a9e", - "Position": { - "x": 39.037, - "y": 2.848, - "z": 203.36 - }, - "Rotation": 359.110931, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "055b9120-abe9-4455-a08b-9841bb1fb1e7", + "Position": { + "x": 184.824, + "y": 2.528, + "z": 186.987 + }, + "Rotation": 24.4516544, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneColumn", - "CorePointId": 14 - }, - { - "Id": "154171f2-bc80-49dc-abc2-d8f8dc500dc3", - "Position": { - "x": -74.66, - "y": 0.9370003, - "z": 75.15 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "061e1b50-93bb-4d8e-8a78-79c6d4235b83", + "Position": { + "x": 100.71, + "y": -1.854, + "z": -162.53 + }, + "Rotation": 2.51932168, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHotel_2", - "CorePointId": 7 - }, - { - "Id": "156e4a8d-d22b-40f8-9b73-900e9a7452f4", - "Position": { - "x": -76.42, - "y": 0.9370003, - "z": 76.47 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "06e00b7c-c4b2-4b41-9b5f-f185b9caf444", + "Position": { + "x": 53.182, + "y": 4.531, + "z": -138.587 + }, + "Rotation": 270.557, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHotel_2", - "CorePointId": 7 - }, - { - "Id": "1642625e-f60d-48fa-a83a-462639772442", - "Position": { - "x": -59.862, - "y": 3.737, - "z": -148.574 - }, - "Rotation": 2.51925588, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "07b43bcb-b19f-4009-8e7a-b646d1427c10", + "Position": { + "x": 58.914, + "y": 2.65034533, + "z": 324.237 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "17748101-4c7c-4dfc-b0f7-904b99959bd5", - "Position": { - "x": -47.515, - "y": 0.612, - "z": -67.681 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "07beeaca-f6b0-4ff1-ae20-dbbe9cfc0ca4", + "Position": { + "x": 53.22, + "y": 4.781, + "z": -130.649 + }, + "Rotation": 259.938782, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "181f7000-df70-4bc7-bff3-a709291c907f", - "Position": { - "x": 5.847992, - "y": 1.77900016, - "z": 153.694 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "08d42d8a-2c4d-4c8d-b23c-3e06b284df92", + "Position": { + "x": 232.64, + "y": 3.49, + "z": 409.53 + }, + "Rotation": 169.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 43 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "185bf0c6-463a-49f1-8075-8f48bdc9f50d", - "Position": { - "x": 215.331, - "y": 3.37095356, - "z": 331.588 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "09e762e3-f015-40cf-958e-4cdab50a3384", + "Position": { + "x": 271.1, + "y": 3.526, + "z": 374.04 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordia_1", + "CorePointId": 8 }, - "BotZoneName": "ZoneConstruction", - "CorePointId": 2 - }, - { - "Id": "193e004b-47e0-4a83-9346-c042cfdb0e0d", - "Position": { - "x": 208.555, - "y": 3.935, - "z": 296.639 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 42 - } + { + "Id": "0a1cae8d-6b53-40d2-a7e5-91771dc05803", + "Position": { + "x": -134.814, + "y": 3.058, + "z": 399.605 + }, + "Rotation": 271.2534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1a12fe62-5b4c-4569-9442-226daeb537be", - "Position": { - "x": 186.85, - "y": 3.529, - "z": 460.53 - }, - "Rotation": 134.938431, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0a95f5de-4fed-4aab-8381-b537a5415d88", + "Position": { + "x": -163.933, + "y": 3.158, + "z": 183.069 + }, + "Rotation": 74.27901, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1a739b38-2308-4cdf-9997-ed0a40f835d7", - "Position": { - "x": -44.833, - "y": 6.678, - "z": -114.215 - }, - "Rotation": 272.519379, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "0ad67b7c-8bf9-4666-9796-bdcb12cd44cd", + "Position": { + "x": -164.56, + "y": 2.26, + "z": 291.57 + }, + "Rotation": 130.584167, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneFactory", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", - "Position": { - "x": 15.6880035, - "y": 2.538, - "z": 455.654022 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0aea1cd2-c0d4-4aa5-a755-d4980deefa0e", + "Position": { + "x": 39.23, + "y": 2.872, + "z": 222.293 + }, + "Rotation": 359.110931, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 14 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1b431641-ac71-49e5-a807-7988e4799d44", - "Position": { - "x": 209.973, - "y": -1.221, - "z": 341.66 - }, - "Rotation": 4.729597, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "0afff689-6beb-46a2-aece-4c1380e986fd", + "Position": { + "x": -59.838, + "y": 3.202, + "z": -147.273 + }, + "Rotation": 2.51925588, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", - "Position": { - "x": -7.321991, - "y": 1.658, - "z": 149.903992 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0b1dbcb2-f978-42d7-bdf6-5f2ae6177baf", + "Position": { + "x": 269.506, + "y": -1.227, + "z": 379.56 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1c5de52e-7857-41a4-8fa6-a0437a1046c1", - "Position": { - "x": -227.329, - "y": 5.26, - "z": 277.332 - }, - "Rotation": 25.0000076, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "0bbeb406-a8e4-4c45-bbc3-555023319a9b", + "Position": { + "x": -50.196, + "y": 5.152, + "z": -31.695 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1c9382e9-e618-4ebe-9034-f53406add842", - "Position": { - "x": -58.206, - "y": 3.214, - "z": -146.784 - }, - "Rotation": 2.51925588, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "0c6e07b3-3e37-4169-ad60-4d4a8a0c304a", + "Position": { + "x": -84.273, + "y": 1.464, + "z": 177.886 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_1", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1cb8c71d-cba3-4641-a415-b1832dd587df", - "Position": { - "x": -16.305, - "y": 2.763, - "z": -133.662 - }, - "Rotation": 92.51915, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0d70b594-1e3b-4c84-b3bb-8dfd15a6f105", + "Position": { + "x": 224.564011, + "y": 0.5250015, + "z": 182.244 + }, + "Rotation": 101.827583, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1cf92628-65d1-4217-b59c-224284364c66", - "Position": { - "x": -132.87, - "y": 14.9, - "z": -10.3600006 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "0decbe7a-e53c-4756-adfc-b6b3bd57be51", + "Position": { + "x": -147.78, + "y": 14.9, + "z": -7.22999954 + }, + "Rotation": 11.7017088, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSnipeStilo", + "CorePointId": 18 }, - "BotZoneName": "ZoneSnipeStilo", - "CorePointId": 18 - }, - { - "Id": "1da69ad5-800f-4c52-a49c-83ad83567849", - "Position": { - "x": -136.856, - "y": 2.565, - "z": 399.57 - }, - "Rotation": 271.2534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "0f5fc468-ee34-4417-b9f7-1eb488500bcd", + "Position": { + "x": 100.996, + "y": 2.6838336, + "z": 271.171021 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1e4fc352-3e96-4811-8cf1-a50b60e9b7d5", - "Position": { - "x": -158.92, - "y": 0.74, - "z": -27.77 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "0fc1edd9-6234-49d5-b6f2-fdbca041de7a", + "Position": { + "x": 211.142, + "y": -1.221, + "z": 341.592 + }, + "Rotation": 4.729597, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 21 - }, - { - "Id": "1f4c6216-b846-4666-86fa-9bf5ac1b54b2", - "Position": { - "x": 214.87001, - "y": -4.46999741, - "z": 30.41 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "10a75815-d786-43e2-9639-6b94071433f8", + "Position": { + "x": 7.45797729, + "y": 1.77900016, + "z": 153.593964 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 19 - }, - { - "Id": "1fa271eb-c22e-4e42-bb34-1428367909f5", - "Position": { - "x": -96.61, - "y": 0.9370003, - "z": 83.2299957 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "111667a7-3ece-4abc-a025-93eae7d99923", + "Position": { + "x": 226.77002, + "y": 0.458999634, + "z": 218.89 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 1 }, - "BotZoneName": "ZoneHotel_2", - "CorePointId": 7 - }, - { - "Id": "1fa87642-c899-4952-b848-2401a677f05d", - "Position": { - "x": 227.794, - "y": 3.945, - "z": 174.694 - }, - "Rotation": 270.745667, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", + "Position": { + "x": 12.6679993, + "y": 2.538, + "z": 456.494 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1fb19a14-dc93-43ef-b701-479a362a5647", - "Position": { - "x": 60.7000122, - "y": 0.520000458, - "z": 169.49 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "12aec958-35b1-4808-810d-3a446152514c", + "Position": { + "x": -231.978, + "y": 2.312, + "z": 344.996 + }, + "Rotation": 16.7069, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "202f0646-b477-4e45-a8a8-5959a1b802c8", - "Position": { - "x": -170.34, - "y": 2.26, - "z": 287.44 - }, - "Rotation": 130.584167, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "12bb197b-bc6b-449c-9cf1-54ed289a364b", + "Position": { + "x": 228.885, + "y": 4.007, + "z": 176.279 + }, + "Rotation": 243.713043, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactory", - "CorePointId": 5 - }, - { - "Id": "205c1c16-f3d6-4504-a1f0-5916e08fe58b", - "Position": { - "x": 232.682, - "y": -2.049, - "z": -103.148 - }, - "Rotation": 4.72974443, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "139af8b7-7e40-41b3-ac53-5a02e15a295d", + "Position": { + "x": 236.810013, + "y": 0.458999634, + "z": 216.9 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "20a712ad-fd79-4983-89e4-5234075c9638", - "Position": { - "x": 221.598, - "y": 3.94900012, - "z": 175.266 - }, - "Rotation": 188.465591, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "14f8ecf6-8a2d-4372-a992-aa688bdd2a9e", + "Position": { + "x": 39.037, + "y": 2.848, + "z": 203.36 + }, + "Rotation": 359.110931, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 14 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "20d71bb7-6e77-4e5b-99d4-34d76ee7b84b", - "Position": { - "x": 85.81, - "y": 5.4, - "z": 348.52 - }, - "Rotation": 150.2019, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "154171f2-bc80-49dc-abc2-d8f8dc500dc3", + "Position": { + "x": -74.66, + "y": 0.9370003, + "z": 75.15 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_2", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "21de733a-84ef-4b78-aa96-c6f73c383f00", - "Position": { - "x": 235.6, - "y": 0.458999634, - "z": 213.8 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "156e4a8d-d22b-40f8-9b73-900e9a7452f4", + "Position": { + "x": -76.42, + "y": 0.9370003, + "z": 76.47 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_2", + "CorePointId": 7 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", - "Position": { - "x": 12.2680054, - "y": 2.538, - "z": 449.444 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1642625e-f60d-48fa-a83a-462639772442", + "Position": { + "x": -59.862, + "y": 3.737, + "z": -148.574 + }, + "Rotation": 2.51925588, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "229d48d3-7c76-4e31-9915-378f24415d31", - "Position": { - "x": 256.02, - "y": -1.227, - "z": 357.65 - }, - "Rotation": 180.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "17748101-4c7c-4dfc-b0f7-904b99959bd5", + "Position": { + "x": -47.515, + "y": 0.612, + "z": -67.681 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "22cecca7-d665-4c86-9447-43769d7bc357", - "Position": { - "x": 137.993011, - "y": -1.41999817, - "z": -55.086 - }, - "Rotation": 329.075928, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "181f7000-df70-4bc7-bff3-a709291c907f", + "Position": { + "x": 5.847992, + "y": 1.77900016, + "z": 153.694 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCard1", - "CorePointId": 19 - }, - { - "Id": "22f77e01-a62e-48d0-8b4c-91b61244a341", - "Position": { - "x": 76.42502, - "y": -0.629997253, - "z": 86.182 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "185bf0c6-463a-49f1-8075-8f48bdc9f50d", + "Position": { + "x": 215.331, + "y": 3.37095356, + "z": 331.588 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneConstruction", + "CorePointId": 2 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "25b34c1e-1071-42b0-9e4c-dc6135b20ca8", - "Position": { - "x": 55.02, - "y": 11.9036674, - "z": 297.38 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "193e004b-47e0-4a83-9346-c042cfdb0e0d", + "Position": { + "x": 208.555, + "y": 3.935, + "z": 296.639 + }, + "Rotation": 334.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 42 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSnipeCarShowroom", - "CorePointId": 11 - }, - { - "Id": "2645fcda-b265-4ae4-abc4-745f23bfb036", - "Position": { - "x": -189.93, - "y": 8.76, - "z": 421.67 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "1a12fe62-5b4c-4569-9442-226daeb537be", + "Position": { + "x": 186.85, + "y": 3.529, + "z": 460.53 + }, + "Rotation": 134.938431, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCinema", - "CorePointId": 4 - }, - { - "Id": "27a58c7b-bbe4-450f-b7fc-9232111ac811", - "Position": { - "x": -134.489, - "y": 2.515, - "z": 399.622 - }, - "Rotation": 271.2534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "1a739b38-2308-4cdf-9997-ed0a40f835d7", + "Position": { + "x": -44.833, + "y": 6.678, + "z": -114.215 + }, + "Rotation": 272.519379, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2860e2ed-22f6-4163-b8e2-d64fcd051a7e", - "Position": { - "x": -176.75, - "y": 1.218, - "z": 105.23 - }, - "Rotation": 94.72969, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", + "Position": { + "x": 15.6880035, + "y": 2.538, + "z": 455.654022 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "287a00e5-afa8-4255-991d-598e2cc0f455", - "Position": { - "x": 231.865, - "y": -2.049, - "z": -106.136 - }, - "Rotation": 4.72974443, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1b431641-ac71-49e5-a807-7988e4799d44", + "Position": { + "x": 209.973, + "y": -1.221, + "z": 341.66 + }, + "Rotation": 4.729597, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "287bf35f-5cdc-44dc-97b6-c035d5054bfa", - "Position": { - "x": 6.354004, - "y": 1.77900016, - "z": 158.00296 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", + "Position": { + "x": -7.321991, + "y": 1.658, + "z": 149.903992 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2881f9ca-471c-4f18-beb7-45a0f178ab6f", - "Position": { - "x": -86.032, - "y": 1.464, - "z": 178.024 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "1c5de52e-7857-41a4-8fa6-a0437a1046c1", + "Position": { + "x": -227.329, + "y": 5.26, + "z": 277.332 + }, + "Rotation": 25.0000076, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHotel_1", - "CorePointId": 6 - }, - { - "Id": "28cc9ecf-5756-497c-9e7f-32eb985f027c", - "Position": { - "x": 71.815, - "y": 2.701, - "z": 266.432 - }, - "Rotation": 93.85756, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "1c9382e9-e618-4ebe-9034-f53406add842", + "Position": { + "x": -58.206, + "y": 3.214, + "z": -146.784 + }, + "Rotation": 2.51925588, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "2962b45b-9335-48da-869d-bf579455f280", - "Position": { - "x": 164.554016, - "y": 0.544002533, - "z": 138.12 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "1cb8c71d-cba3-4641-a415-b1832dd587df", + "Position": { + "x": -16.305, + "y": 2.763, + "z": -133.662 + }, + "Rotation": 92.51915, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "2a0f649a-ad74-43ae-a6a9-26dd04f64eb0", - "Position": { - "x": -205.115, - "y": 3.367, - "z": 182.111 - }, - "Rotation": 4.729717, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 34 - } + { + "Id": "1cf92628-65d1-4217-b59c-224284364c66", + "Position": { + "x": -132.87, + "y": 14.9, + "z": -10.3600006 + }, + "Rotation": 11.7017088, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSnipeStilo", + "CorePointId": 18 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2a63de9c-7537-41ca-9670-de45fba8892c", - "Position": { - "x": 187.061, - "y": 1.574, - "z": 189.557 - }, - "Rotation": 24.4516544, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1da69ad5-800f-4c52-a49c-83ad83567849", + "Position": { + "x": -136.856, + "y": 2.565, + "z": 399.57 + }, + "Rotation": 271.2534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2b34ce3d-efd4-4567-be57-f570135c65bb", - "Position": { - "x": 214.818, - "y": 3.37095356, - "z": 329.919 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "1e4fc352-3e96-4811-8cf1-a50b60e9b7d5", + "Position": { + "x": -158.92, + "y": 0.74, + "z": -27.77 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 21 }, - "BotZoneName": "ZoneConstruction", - "CorePointId": 2 - }, - { - "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", - "Position": { - "x": -7.441986, - "y": 1.65800035, - "z": 146.70401 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1f4c6216-b846-4666-86fa-9bf5ac1b54b2", + "Position": { + "x": 214.87001, + "y": -4.46999741, + "z": 30.41 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 19 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2e7b1c7a-a66e-4c90-9937-53a61ca5e7da", - "Position": { - "x": -179.339, - "y": 2.451, - "z": 416.352 - }, - "Rotation": 11.8153534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "1fa271eb-c22e-4e42-bb34-1428367909f5", + "Position": { + "x": -96.61, + "y": 0.9370003, + "z": 83.2299957 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_2", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2e904d20-0a47-458c-92e2-6f51d7b600dc", - "Position": { - "x": 261.511, - "y": -5.94, - "z": 49.977 - }, - "Rotation": 319.729767, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1fa87642-c899-4952-b848-2401a677f05d", + "Position": { + "x": 227.794, + "y": 3.945, + "z": 174.694 + }, + "Rotation": 270.745667, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "306490d5-614d-4bd6-81e9-79d5d18332e4", - "Position": { - "x": -16.872, - "y": 2.633, - "z": 242.265 - }, - "Rotation": 158.789185, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1fb19a14-dc93-43ef-b701-479a362a5647", + "Position": { + "x": 60.7000122, + "y": 0.520000458, + "z": 169.49 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "ZoneColumn", - "CorePointId": 14 - }, - { - "Id": "31802d49-5363-437c-86d4-bdf80b7d0e94", - "Position": { - "x": -176.596, - "y": 2.455, - "z": 466.984 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "202f0646-b477-4e45-a8a8-5959a1b802c8", + "Position": { + "x": -170.34, + "y": 2.26, + "z": 287.44 + }, + "Rotation": 130.584167, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneFactory", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "31b03139-35c1-40c8-91cb-a367701ee0d8", - "Position": { - "x": -70.735, - "y": 1.464, - "z": 154.221008 - }, - "Rotation": 331.5, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "205c1c16-f3d6-4504-a1f0-5916e08fe58b", + "Position": { + "x": 232.682, + "y": -2.049, + "z": -103.148 + }, + "Rotation": 4.72974443, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHotel_1", - "CorePointId": 6 - }, - { - "Id": "324de29c-ed55-45f0-8b62-5a6f125d89ee", - "Position": { - "x": 271.36, - "y": -1.16, - "z": 376.28 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "20a712ad-fd79-4983-89e4-5234075c9638", + "Position": { + "x": 221.598, + "y": 3.94900012, + "z": 175.266 + }, + "Rotation": 188.465591, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3256e08f-c8ba-48a5-a37c-589440e95266", - "Position": { - "x": -258.28, - "y": 2.86, - "z": 140.75 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "20d71bb7-6e77-4e5b-99d4-34d76ee7b84b", + "Position": { + "x": 85.81, + "y": 5.4, + "z": 348.52 + }, + "Rotation": 150.2019, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "ZoneMvd", - "CorePointId": 23 - }, - { - "Id": "333d8134-55fa-4556-9214-59703d6fd4cf", - "Position": { - "x": -111.692, - "y": 0.659, - "z": -28.424 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "21de733a-84ef-4b78-aa96-c6f73c383f00", + "Position": { + "x": 235.6, + "y": 0.458999634, + "z": 213.8 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "34f4b186-867c-431d-b706-d4114867c969", - "Position": { - "x": -203.631, - "y": 3.367, - "z": 180.776 - }, - "Rotation": 4.729717, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 34 - } + { + "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", + "Position": { + "x": 12.2680054, + "y": 2.538, + "z": 449.444 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3563d32b-aae5-4f04-a95d-36d8455b42f0", - "Position": { - "x": 234.745, - "y": -2.049, - "z": -103.385 - }, - "Rotation": 4.72974443, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "229d48d3-7c76-4e31-9915-378f24415d31", + "Position": { + "x": 256.02, + "y": -1.227, + "z": 357.65 + }, + "Rotation": 180.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "35c84f0b-bdc1-4499-814d-f904a9dfe896", - "Position": { - "x": 102.07, - "y": -1.854, - "z": -158.58 - }, - "Rotation": 2.51932168, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "22cecca7-d665-4c86-9447-43769d7bc357", + "Position": { + "x": 137.993011, + "y": -1.41999817, + "z": -55.086 + }, + "Rotation": 329.075928, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneCard1", + "CorePointId": 19 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "35f2a220-0007-455b-ac2d-a79a402ed0e1", - "Position": { - "x": -192.295, - "y": 3.137, - "z": 345.684 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "22f77e01-a62e-48d0-8b4c-91b61244a341", + "Position": { + "x": 76.42502, + "y": -0.629997253, + "z": 86.182 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "36aea5ca-a3cd-494f-b215-7ebad42453c5", - "Position": { - "x": 201.178, - "y": 3.545, - "z": 401.783 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "25b34c1e-1071-42b0-9e4c-dc6135b20ca8", + "Position": { + "x": 55.02, + "y": 11.9036674, + "z": 297.38 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSnipeCarShowroom", + "CorePointId": 11 }, - "BotZoneName": "ZoneConcordia_1", - "CorePointId": 8 - }, - { - "Id": "379f1724-3244-4a26-a604-857607bab059", - "Position": { - "x": -150.644, - "y": 0.65, - "z": -63.383 - }, - "Rotation": 15.3466482, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "2645fcda-b265-4ae4-abc4-745f23bfb036", + "Position": { + "x": -189.93, + "y": 8.76, + "z": 421.67 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneCinema", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3928558f-893e-4c30-a981-1a93e4ba9468", - "Position": { - "x": -182.94, - "y": 2.41, - "z": 413.56 - }, - "Rotation": 11.8153534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "27a58c7b-bbe4-450f-b7fc-9232111ac811", + "Position": { + "x": -134.489, + "y": 2.515, + "z": 399.622 + }, + "Rotation": 271.2534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "39637b62-6c87-4fee-bc32-446b3e76ad65", - "Position": { - "x": -152.333, - "y": 0.736, - "z": -66.574 - }, - "Rotation": 15.3466482, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "2860e2ed-22f6-4163-b8e2-d64fcd051a7e", + "Position": { + "x": -176.75, + "y": 1.218, + "z": 105.23 + }, + "Rotation": 94.72969, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3a49af12-a9d4-44fb-b6e1-241cfd48661f", - "Position": { - "x": 175.964, - "y": 3.093, - "z": 234.797 - }, - "Rotation": 356.824432, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "287a00e5-afa8-4255-991d-598e2cc0f455", + "Position": { + "x": 231.865, + "y": -2.049, + "z": -106.136 + }, + "Rotation": 4.72974443, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3b54601a-2e4b-4991-988e-962f1ee45668", - "Position": { - "x": 1.82800293, - "y": 1.77900016, - "z": 155.083984 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "287bf35f-5cdc-44dc-97b6-c035d5054bfa", + "Position": { + "x": 6.354004, + "y": 1.77900016, + "z": 158.00296 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3c5202ab-9df1-464d-bceb-f7b0c94978b3", - "Position": { - "x": -192.658, - "y": 4.993, - "z": 386.326 - }, - "Rotation": 190.496658, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2881f9ca-471c-4f18-beb7-45a0f178ab6f", + "Position": { + "x": -86.032, + "y": 1.464, + "z": 178.024 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_1", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3d6f0b05-6fa2-414a-8e6a-1c725ee7c98b", - "Position": { - "x": 52.732, - "y": 4.531, - "z": -135.649 - }, - "Rotation": 269.1392, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "28cc9ecf-5756-497c-9e7f-32eb985f027c", + "Position": { + "x": 71.815, + "y": 2.701, + "z": 266.432 + }, + "Rotation": 93.85756, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3da963bd-5ff6-4d70-ab3c-50dbc5291d93", - "Position": { - "x": -50.879, - "y": 0.668, - "z": -67.271 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "2962b45b-9335-48da-869d-bf579455f280", + "Position": { + "x": 164.554016, + "y": 0.544002533, + "z": 138.12 + }, + "Rotation": 73.40837, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3db8e614-519e-4848-851c-760a101b1f23", - "Position": { - "x": 244.650009, - "y": -5.369999, - "z": 28.72 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "2a0f649a-ad74-43ae-a6a9-26dd04f64eb0", + "Position": { + "x": -205.115, + "y": 3.367, + "z": 182.111 + }, + "Rotation": 4.729717, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 34 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 19 - }, - { - "Id": "3f2579e6-c7a4-46c3-8b3f-c5e46b2f2179", - "Position": { - "x": 185.6, - "y": 3.529, - "z": 459.37 - }, - "Rotation": 134.938431, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2a63de9c-7537-41ca-9670-de45fba8892c", + "Position": { + "x": 187.061, + "y": 1.574, + "z": 189.557 + }, + "Rotation": 24.4516544, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "40456b8a-17a5-48ec-acfc-fcaccffbb369", - "Position": { - "x": -235.154, - "y": 2.846, - "z": 345.06 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2b34ce3d-efd4-4567-be57-f570135c65bb", + "Position": { + "x": 214.818, + "y": 3.37095356, + "z": 329.919 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneConstruction", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "415f3cfd-a781-4cce-af45-a6e5e540c2d8", - "Position": { - "x": 99.35, - "y": 2.76, - "z": 446.78 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", + "Position": { + "x": -7.441986, + "y": 1.65800035, + "z": 146.70401 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4196d6bb-4b89-4ef2-91e3-e82e20842b80", - "Position": { - "x": -15.846, - "y": 2.633, - "z": 232.6 - }, - "Rotation": 114.231476, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2e7b1c7a-a66e-4c90-9937-53a61ca5e7da", + "Position": { + "x": -179.339, + "y": 2.451, + "z": 416.352 + }, + "Rotation": 11.8153534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneColumn", - "CorePointId": 1 - }, - { - "Id": "43007ffd-1e13-45a2-a1ff-826711e427c8", - "Position": { - "x": -161.81, - "y": 14.9, - "z": -4.299999 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "2e904d20-0a47-458c-92e2-6f51d7b600dc", + "Position": { + "x": 261.511, + "y": -5.94, + "z": 49.977 + }, + "Rotation": 319.729767, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSnipeStilo", - "CorePointId": 18 - }, - { - "Id": "434372f3-b06c-4ff2-bddd-ea5c49e64980", - "Position": { - "x": 155.767, - "y": 3.624, - "z": 428.614 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "306490d5-614d-4bd6-81e9-79d5d18332e4", + "Position": { + "x": -16.872, + "y": 2.633, + "z": 242.265 + }, + "Rotation": 158.789185, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 14 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "43487182-ef1f-40e8-b1fa-02bc10c698fe", - "Position": { - "x": 41.18, - "y": 28.512, - "z": -20.71 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "31802d49-5363-437c-86d4-bdf80b7d0e94", + "Position": { + "x": -176.596, + "y": 2.455, + "z": 466.984 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSnipeCard", - "CorePointId": 16 - }, - { - "Id": "43ae42e9-dda2-4b49-ba08-9f65c2938075", - "Position": { - "x": -24.67, - "y": 21.1835, - "z": 228.13 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "31b03139-35c1-40c8-91cb-a367701ee0d8", + "Position": { + "x": -70.735, + "y": 1.464, + "z": 154.221008 + }, + "Rotation": 331.5, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_1", + "CorePointId": 6 }, - "BotZoneName": "ZoneSnipeBuilding", - "CorePointId": 12 - }, - { - "Id": "449f9c89-4da0-4cce-a2d1-768eab547d90", - "Position": { - "x": -65.996, - "y": 2.699, - "z": 459.747 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "324de29c-ed55-45f0-8b62-5a6f125d89ee", + "Position": { + "x": 271.36, + "y": -1.16, + "z": 376.28 + }, + "Rotation": 334.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4598a010-a486-47b8-8242-fd738fccb250", - "Position": { - "x": 270.52, - "y": -4.431, - "z": 88.67 - }, - "Rotation": 268.542847, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3256e08f-c8ba-48a5-a37c-589440e95266", + "Position": { + "x": -258.28, + "y": 2.86, + "z": 140.75 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneMvd", + "CorePointId": 23 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "459dcb35-edf8-4a0f-b8c3-292aed6e54f8", - "Position": { - "x": -242.312, - "y": 3.685, - "z": 242.94 - }, - "Rotation": 205.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "333d8134-55fa-4556-9214-59703d6fd4cf", + "Position": { + "x": -111.692, + "y": 0.659, + "z": -28.424 + }, + "Rotation": 107.519135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "45ee04b7-c90a-45d9-a774-a2462823e1d9", - "Position": { - "x": 45.792, - "y": 2.717, - "z": 417.082 - }, - "Rotation": 241.253387, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "34f4b186-867c-431d-b706-d4114867c969", + "Position": { + "x": -203.631, + "y": 3.367, + "z": 180.776 + }, + "Rotation": 4.729717, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 34 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4605736c-cf1a-4d87-86b2-2e79ef9be905", - "Position": { - "x": 167.700012, - "y": -3.73999786, - "z": 29.57 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "3563d32b-aae5-4f04-a95d-36d8455b42f0", + "Position": { + "x": 234.745, + "y": -2.049, + "z": -103.385 + }, + "Rotation": 4.72974443, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "461b6342-cc1c-4217-8d98-ddd3f56471ba", - "Position": { - "x": 157.0, - "y": 3.624, - "z": 430.76 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "35c84f0b-bdc1-4499-814d-f904a9dfe896", + "Position": { + "x": 102.07, + "y": -1.854, + "z": -158.58 + }, + "Rotation": 2.51932168, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "489874fa-2e4b-4351-b54a-40785d13404f", - "Position": { - "x": 186.511, - "y": 1.574, - "z": 188.445 - }, - "Rotation": 24.4516544, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "35f2a220-0007-455b-ac2d-a79a402ed0e1", + "Position": { + "x": -192.295, + "y": 3.137, + "z": 345.684 + }, + "Rotation": 16.7069, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4954677b-e5db-40c3-a31a-991cf0078667", - "Position": { - "x": 186.79, - "y": 3.529, - "z": 454.4 - }, - "Rotation": 134.938431, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "36aea5ca-a3cd-494f-b215-7ebad42453c5", + "Position": { + "x": 201.178, + "y": 3.545, + "z": 401.783 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordia_1", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "49dbe3ee-602c-41ad-977b-03391cb6ef85", - "Position": { - "x": -106.422, - "y": 0.662, - "z": -29.223 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "379f1724-3244-4a26-a604-857607bab059", + "Position": { + "x": -150.644, + "y": 0.65, + "z": -63.383 + }, + "Rotation": 15.3466482, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4a2321cc-5cff-43fb-9fd9-8503c30409b5", - "Position": { - "x": -231.985, - "y": 2.196, - "z": 342.49 - }, - "Rotation": 340.000031, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3928558f-893e-4c30-a981-1a93e4ba9468", + "Position": { + "x": -182.94, + "y": 2.41, + "z": 413.56 + }, + "Rotation": 11.8153534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4a9efa42-ff64-4c11-ae45-45a81138e501", - "Position": { - "x": 195.240021, - "y": 1.24000168, - "z": 221.27 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "39637b62-6c87-4fee-bc32-446b3e76ad65", + "Position": { + "x": -152.333, + "y": 0.736, + "z": -66.574 + }, + "Rotation": 15.3466482, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 1 - }, - { - "Id": "4ae950be-2966-4fe7-8828-a5c8db249dd1", - "Position": { - "x": 172.87001, - "y": 0.544002533, - "z": 154.790009 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "3a49af12-a9d4-44fb-b6e1-241cfd48661f", + "Position": { + "x": 175.964, + "y": 3.093, + "z": 234.797 + }, + "Rotation": 356.824432, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "4afab3b8-1bf3-4a60-add4-c35c282330de", - "Position": { - "x": -243.129, - "y": 3.43, - "z": 240.565 - }, - "Rotation": 205.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "3b54601a-2e4b-4991-988e-962f1ee45668", + "Position": { + "x": 1.82800293, + "y": 1.77900016, + "z": 155.083984 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4b26980e-06ac-478c-9c8f-2944b1df8c53", - "Position": { - "x": 204.5, - "y": 4.051, - "z": 297.93 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "3c5202ab-9df1-464d-bceb-f7b0c94978b3", + "Position": { + "x": -192.658, + "y": 4.993, + "z": 386.326 + }, + "Rotation": 190.496658, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneConstruction", - "CorePointId": 2 - }, - { - "Id": "4be30299-8bd5-40a7-8ddb-567fcf24fe8e", - "Position": { - "x": -10.37, - "y": 2.763, - "z": -135.41 - }, - "Rotation": 92.51915, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3d6f0b05-6fa2-414a-8e6a-1c725ee7c98b", + "Position": { + "x": 52.732, + "y": 4.531, + "z": -135.649 + }, + "Rotation": 269.1392, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4daed50e-63c1-40b8-8aac-652854043bb7", - "Position": { - "x": 144.930008, - "y": -1.41999817, - "z": -42.8000031 - }, - "Rotation": 329.075928, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "3da963bd-5ff6-4d70-ab3c-50dbc5291d93", + "Position": { + "x": -50.879, + "y": 0.668, + "z": -67.271 + }, + "Rotation": 107.519135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCard1", - "CorePointId": 19 - }, - { - "Id": "4e394534-0f48-48d1-9eea-9f220a71ab7c", - "Position": { - "x": -180.504, - "y": 2.451, - "z": 419.05 - }, - "Rotation": 11.8153534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "3db8e614-519e-4848-851c-760a101b1f23", + "Position": { + "x": 244.650009, + "y": -5.369999, + "z": 28.72 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 19 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4e6a55b9-afc8-43a5-8829-a975360bdd1d", - "Position": { - "x": 233.368, - "y": -2.049, - "z": -107.123 - }, - "Rotation": 4.72974443, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3f2579e6-c7a4-46c3-8b3f-c5e46b2f2179", + "Position": { + "x": 185.6, + "y": 3.529, + "z": 459.37 + }, + "Rotation": 134.938431, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4e7b02cf-f280-4adf-bf55-efba0ff91ab1", - "Position": { - "x": 243.63, - "y": -5.369999, - "z": 29.31 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "40456b8a-17a5-48ec-acfc-fcaccffbb369", + "Position": { + "x": -235.154, + "y": 2.846, + "z": 345.06 + }, + "Rotation": 16.7069, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 19 - }, - { - "Id": "4e876370-2396-4517-81c1-c535811d18e0", - "Position": { - "x": -2.321991, - "y": 1.65800035, - "z": 147.134 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "415f3cfd-a781-4cce-af45-a6e5e540c2d8", + "Position": { + "x": 99.35, + "y": 2.76, + "z": 446.78 + }, + "Rotation": 169.729568, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4eac1ca9-b5e9-4152-8a37-1b6a9ceb31c0", - "Position": { - "x": 227.6, - "y": 3.351, - "z": 410.72 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 43 - } + { + "Id": "4196d6bb-4b89-4ef2-91e3-e82e20842b80", + "Position": { + "x": -15.846, + "y": 2.633, + "z": 232.6 + }, + "Rotation": 114.231476, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4ef9cea7-5a05-48f7-a2f9-ec3d8c293e46", - "Position": { - "x": -175.222, - "y": 2.455, - "z": 468.656 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "43007ffd-1e13-45a2-a1ff-826711e427c8", + "Position": { + "x": -161.81, + "y": 14.9, + "z": -4.299999 + }, + "Rotation": 11.7017088, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSnipeStilo", + "CorePointId": 18 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4f151837-42df-4901-a690-eb2a0e8da35b", - "Position": { - "x": -152.769, - "y": 9.669, - "z": -26.856 - }, - "Rotation": 2.51923227, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "434372f3-b06c-4ff2-bddd-ea5c49e64980", + "Position": { + "x": 155.767, + "y": 3.624, + "z": 428.614 + }, + "Rotation": 169.729568, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4f682901-0a40-4edf-a6c6-498a55dd3eb0", - "Position": { - "x": -61.464, - "y": 2.699, - "z": 457.351 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "43487182-ef1f-40e8-b1fa-02bc10c698fe", + "Position": { + "x": 41.18, + "y": 28.512, + "z": -20.71 + }, + "Rotation": 11.7017088, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSnipeCard", + "CorePointId": 16 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4f6db5dd-430f-4630-91d5-062efb217391", - "Position": { - "x": -155.71, - "y": 0.74, - "z": -22.7799988 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "43ae42e9-dda2-4b49-ba08-9f65c2938075", + "Position": { + "x": -24.67, + "y": 21.1835, + "z": 228.13 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneSnipeBuilding", + "CorePointId": 12 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 22 - }, - { - "Id": "4f865c11-d533-4fce-9833-fe41a6cb52af", - "Position": { - "x": 7.097992, - "y": 1.80700016, - "z": 159.374 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "449f9c89-4da0-4cce-a2d1-768eab547d90", + "Position": { + "x": -65.996, + "y": 2.699, + "z": 459.747 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4fa6a8fd-fbae-4fb9-8a46-2fd88ac12e03", - "Position": { - "x": -150.592, - "y": 9.644, - "z": -23.594 - }, - "Rotation": 2.51923227, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "4598a010-a486-47b8-8242-fd738fccb250", + "Position": { + "x": 270.52, + "y": -4.431, + "z": 88.67 + }, + "Rotation": 268.542847, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4fb0d413-cf19-4580-8217-b2d6ca431e91", - "Position": { - "x": 7.289978, - "y": 1.77900016, - "z": 160.726959 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "459dcb35-edf8-4a0f-b8c3-292aed6e54f8", + "Position": { + "x": -242.312, + "y": 3.685, + "z": 242.94 + }, + "Rotation": 205.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5014556a-cb4b-42e5-b95d-35dc2d519fbd", - "Position": { - "x": 78.042, - "y": 2.837, - "z": 286.172 - }, - "Rotation": 86.38937, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "45ee04b7-c90a-45d9-a774-a2462823e1d9", + "Position": { + "x": 45.792, + "y": 2.717, + "z": 417.082 + }, + "Rotation": 241.253387, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "507e4e1d-a245-4f88-9f2b-6050cd4a6c38", - "Position": { - "x": 231.32, - "y": 3.49, - "z": 410.43 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 43 - } + { + "Id": "4605736c-cf1a-4d87-86b2-2e79ef9be905", + "Position": { + "x": 167.700012, + "y": -3.73999786, + "z": 29.57 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "508ee6c4-a51c-42a4-b365-49dff28153e5", - "Position": { - "x": -253.98999, - "y": 3.09, - "z": 125.359993 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "461b6342-cc1c-4217-8d98-ddd3f56471ba", + "Position": { + "x": 157.0, + "y": 3.624, + "z": 430.76 + }, + "Rotation": 169.729568, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneMvd", - "CorePointId": 23 - }, - { - "Id": "513389c0-537c-4b78-8605-eb3a3bedc851", - "Position": { - "x": -47.652, - "y": 0.668, - "z": -65.516 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "489874fa-2e4b-4351-b54a-40785d13404f", + "Position": { + "x": 186.511, + "y": 1.574, + "z": 188.445 + }, + "Rotation": 24.4516544, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "51d31613-2013-4a87-911f-5b2fb4d44c25", - "Position": { - "x": 44.472, - "y": 2.717, - "z": 414.922 - }, - "Rotation": 241.253387, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "4954677b-e5db-40c3-a31a-991cf0078667", + "Position": { + "x": 186.79, + "y": 3.529, + "z": 454.4 + }, + "Rotation": 134.938431, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "523ddb61-fa1c-460d-be68-4f7638f6d80d", - "Position": { - "x": 244.71, - "y": -3.21, - "z": -36.95 - }, - "Rotation": 259.729858, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "49dbe3ee-602c-41ad-977b-03391cb6ef85", + "Position": { + "x": -106.422, + "y": 0.662, + "z": -29.223 + }, + "Rotation": 107.519135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5343c1f2-9f3b-49c5-b70a-d4ae14b2f593", - "Position": { - "x": 170.02002, - "y": -3.73999786, - "z": 30.06 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "4a2321cc-5cff-43fb-9fd9-8503c30409b5", + "Position": { + "x": -231.985, + "y": 2.196, + "z": 342.49 + }, + "Rotation": 340.000031, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "53d5357a-a058-4392-aaef-a53443c5d80f", - "Position": { - "x": -123.55, - "y": 5.102994, - "z": -31.5099983 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "4a9efa42-ff64-4c11-ae45-45a81138e501", + "Position": { + "x": 195.240021, + "y": 1.24000168, + "z": 221.27 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 1 }, - "BotZoneName": "ZoneClimova", - "CorePointId": 22 - }, - { - "Id": "5419341d-08ed-4bee-bad9-a964af07ac11", - "Position": { - "x": -234.277, - "y": 2.196, - "z": 342.105 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4ae950be-2966-4fe7-8828-a5c8db249dd1", + "Position": { + "x": 172.87001, + "y": 0.544002533, + "z": 154.790009 + }, + "Rotation": 73.40837, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "54e4c97c-6be6-48be-80d7-d6c3ac3b0dd5", - "Position": { - "x": 200.801, - "y": 3.545, - "z": 405.031 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4afab3b8-1bf3-4a60-add4-c35c282330de", + "Position": { + "x": -243.129, + "y": 3.43, + "z": 240.565 + }, + "Rotation": 205.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneConcordia_1", - "CorePointId": 8 - }, - { - "Id": "5581eaa0-24fc-4470-9f22-28a83ac0c30f", - "Position": { - "x": 258.023, - "y": -1.227, - "z": 357.136 - }, - "Rotation": 180.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4b26980e-06ac-478c-9c8f-2944b1df8c53", + "Position": { + "x": 204.5, + "y": 4.051, + "z": 297.93 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneConstruction", + "CorePointId": 2 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "55969eb0-e827-41db-974a-cd045ff773b4", - "Position": { - "x": 175.713, - "y": 3.172, - "z": 236.73 - }, - "Rotation": 356.824432, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4be30299-8bd5-40a7-8ddb-567fcf24fe8e", + "Position": { + "x": -10.37, + "y": 2.763, + "z": -135.41 + }, + "Rotation": 92.51915, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5631f698-bbc6-48ca-9794-b4f9ffaa844f", - "Position": { - "x": 144.582, - "y": 3.531, - "z": 357.876 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4daed50e-63c1-40b8-8aac-652854043bb7", + "Position": { + "x": 144.930008, + "y": -1.41999817, + "z": -42.8000031 + }, + "Rotation": 329.075928, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneCard1", + "CorePointId": 19 }, - "BotZoneName": "", - "CorePointId": 24 - }, - { - "Id": "566d2f6b-240c-47b2-a985-0868f5a20b38", - "Position": { - "x": -48.546, - "y": 0.668, - "z": -67.733 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "4e394534-0f48-48d1-9eea-9f220a71ab7c", + "Position": { + "x": -180.504, + "y": 2.451, + "z": 419.05 + }, + "Rotation": 11.8153534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "56ae82fe-7073-45e7-82bf-a94494b5a509", - "Position": { - "x": 179.062, - "y": 3.048, - "z": 233.031 - }, - "Rotation": 356.824432, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4e6a55b9-afc8-43a5-8829-a975360bdd1d", + "Position": { + "x": 233.368, + "y": -2.049, + "z": -107.123 + }, + "Rotation": 4.72974443, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "587f4c37-b43e-4319-a238-f394bf59609d", - "Position": { - "x": -226.569, - "y": 5.26, - "z": 279.065 - }, - "Rotation": 25.0000076, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "4e7b02cf-f280-4adf-bf55-efba0ff91ab1", + "Position": { + "x": 243.63, + "y": -5.369999, + "z": 29.31 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 19 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5b161871-7fe0-4764-925b-75a5d9320859", - "Position": { - "x": -65.728, - "y": 2.699, - "z": 457.559 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "4e876370-2396-4517-81c1-c535811d18e0", + "Position": { + "x": -2.321991, + "y": 1.65800035, + "z": 147.134 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5b82909f-dc67-4eda-9891-6dba11185f27", - "Position": { - "x": -80.18, - "y": 0.9370003, - "z": 74.08 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "4eac1ca9-b5e9-4152-8a37-1b6a9ceb31c0", + "Position": { + "x": 227.6, + "y": 3.351, + "z": 410.72 + }, + "Rotation": 169.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 43 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHotel_2", - "CorePointId": 7 - }, - { - "Id": "5c0c1dfb-b30c-47c9-8363-d974cd2c64ea", - "Position": { - "x": -29.74, - "y": 5.15, - "z": -64.77 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "4ef9cea7-5a05-48f7-a2f9-ec3d8c293e46", + "Position": { + "x": -175.222, + "y": 2.455, + "z": 468.656 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "5caf5e1b-0113-41fc-9867-007e37ffe906", - "Position": { - "x": 1.6579895, - "y": 1.77900016, - "z": 153.353973 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4f151837-42df-4901-a690-eb2a0e8da35b", + "Position": { + "x": -152.769, + "y": 9.669, + "z": -26.856 + }, + "Rotation": 2.51923227, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5cfd77db-4ab6-45ec-a4d4-a4a30c9e75ce", - "Position": { - "x": 211.905, - "y": -0.33, - "z": 343.2 - }, - "Rotation": 4.729597, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "4f682901-0a40-4edf-a6c6-498a55dd3eb0", + "Position": { + "x": -61.464, + "y": 2.699, + "z": 457.351 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5e71697b-66ad-4483-ae3d-a9833c72a56e", - "Position": { - "x": -50.974, - "y": 5.152, - "z": -29.5530014 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "4f6db5dd-430f-4630-91d5-062efb217391", + "Position": { + "x": -155.71, + "y": 0.74, + "z": -22.7799988 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 22 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "5e92a302-e46c-4acc-adc8-b349b40b5fd7", - "Position": { - "x": 272.018, - "y": -1.16, - "z": 375.369 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "4f865c11-d533-4fce-9833-fe41a6cb52af", + "Position": { + "x": 7.097992, + "y": 1.80700016, + "z": 159.374 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5e94b930-e010-4351-adca-75983b52e6cc", - "Position": { - "x": -46.111, - "y": 0.616, - "z": -67.664 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "4fa6a8fd-fbae-4fb9-8a46-2fd88ac12e03", + "Position": { + "x": -150.592, + "y": 9.644, + "z": -23.594 + }, + "Rotation": 2.51923227, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "60ac962f-60e7-4049-b52b-bbcc48bd2a86", - "Position": { - "x": 257.34, - "y": -5.94, - "z": 50.955 - }, - "Rotation": 319.729767, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4fb0d413-cf19-4580-8217-b2d6ca431e91", + "Position": { + "x": 7.289978, + "y": 1.77900016, + "z": 160.726959 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "61264e7e-0ca3-42ea-8537-fa9b655df5be", - "Position": { - "x": 170.335, - "y": -1.451, - "z": -129.286 - }, - "Rotation": 268.9683, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5014556a-cb4b-42e5-b95d-35dc2d519fbd", + "Position": { + "x": 78.042, + "y": 2.837, + "z": 286.172 + }, + "Rotation": 86.38937, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", - "Position": { - "x": 8.807999, - "y": 2.36800027, - "z": 455.754 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "507e4e1d-a245-4f88-9f2b-6050cd4a6c38", + "Position": { + "x": 231.32, + "y": 3.49, + "z": 410.43 + }, + "Rotation": 169.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 43 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "61c81abf-01bb-4bd2-ab66-8f5a814f0057", - "Position": { - "x": -52.284, - "y": -0.179458022, - "z": 386.267 - }, - "Rotation": 92.4, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "508ee6c4-a51c-42a4-b365-49dff28153e5", + "Position": { + "x": -253.98999, + "y": 3.09, + "z": 125.359993 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneMvd", + "CorePointId": 23 }, - "BotZoneName": "ZoneCinema", - "CorePointId": 4 - }, - { - "Id": "61d1d7d8-6ac0-4016-95da-ebe68c4744e3", - "Position": { - "x": -100.35, - "y": 2.32, - "z": 268.45 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "513389c0-537c-4b78-8605-eb3a3bedc851", + "Position": { + "x": -47.652, + "y": 0.668, + "z": -65.516 + }, + "Rotation": 107.519135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactory", - "CorePointId": 5 - }, - { - "Id": "61f00796-7769-4b8c-bb50-403f4e402c5f", - "Position": { - "x": 76.02602, - "y": -0.629997253, - "z": 88.469 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "51d31613-2013-4a87-911f-5b2fb4d44c25", + "Position": { + "x": 44.472, + "y": 2.717, + "z": 414.922 + }, + "Rotation": 241.253387, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "6255bec3-90bb-498e-bb37-1f5933f3a4f7", - "Position": { - "x": 114.480011, - "y": 0.920002, - "z": 189.07 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "523ddb61-fa1c-460d-be68-4f7638f6d80d", + "Position": { + "x": 244.71, + "y": -3.21, + "z": -36.95 + }, + "Rotation": 259.729858, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "6255df32-b929-4e02-8db9-ddf69e716491", - "Position": { - "x": -188.923, - "y": 3.137, - "z": 340.446 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "5343c1f2-9f3b-49c5-b70a-d4ae14b2f593", + "Position": { + "x": 170.02002, + "y": -3.73999786, + "z": 30.06 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "62f5b14d-cb51-4529-b572-f5a8f5815bb5", - "Position": { - "x": 9.936005, - "y": 1.80700016, - "z": 160.441986 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "53d5357a-a058-4392-aaef-a53443c5d80f", + "Position": { + "x": -123.55, + "y": 5.102994, + "z": -31.5099983 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneClimova", + "CorePointId": 22 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6334d0e4-3651-4ed3-ba11-5dcb4a8ac4e6", - "Position": { - "x": -176.32, - "y": 1.218, - "z": 106.89 - }, - "Rotation": 94.72969, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5419341d-08ed-4bee-bad9-a964af07ac11", + "Position": { + "x": -234.277, + "y": 2.196, + "z": 342.105 + }, + "Rotation": 16.7069, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "63444352-4ee3-421d-a8c1-57ac5a7c6a73", - "Position": { - "x": 209.379, - "y": 4.051, - "z": 298.748 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "54e4c97c-6be6-48be-80d7-d6c3ac3b0dd5", + "Position": { + "x": 200.801, + "y": 3.545, + "z": 405.031 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordia_1", + "CorePointId": 8 }, - "BotZoneName": "ZoneConstruction", - "CorePointId": 2 - }, - { - "Id": "6425842e-d951-4538-8b44-ab6fccfae4c4", - "Position": { - "x": 205.631, - "y": 3.935, - "z": 296.404 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 42 - } + { + "Id": "5581eaa0-24fc-4470-9f22-28a83ac0c30f", + "Position": { + "x": 258.023, + "y": -1.227, + "z": 357.136 + }, + "Rotation": 180.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "644ed4d0-3425-4182-aa00-57d7e80bb6b5", - "Position": { - "x": 44.8300171, - "y": 0.270000458, - "z": -36.85 - }, - "Rotation": 309.888733, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "55969eb0-e827-41db-974a-cd045ff773b4", + "Position": { + "x": 175.713, + "y": 3.172, + "z": 236.73 + }, + "Rotation": 356.824432, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCard1", - "CorePointId": 6 - }, - { - "Id": "652f7306-0e6f-46d5-b5f4-d68c1c2ba7a7", - "Position": { - "x": 212.68, - "y": -1.22, - "z": 350.13 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5631f698-bbc6-48ca-9794-b4f9ffaa844f", + "Position": { + "x": 144.582, + "y": 3.531, + "z": 357.876 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 24 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "652ff695-e5d8-4116-ab84-2ede0f413783", - "Position": { - "x": -147.52, - "y": 0.13, - "z": -67.43 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "566d2f6b-240c-47b2-a985-0868f5a20b38", + "Position": { + "x": -48.546, + "y": 0.668, + "z": -67.733 + }, + "Rotation": 107.519135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneClimova", - "CorePointId": 21 - }, - { - "Id": "65894af8-198d-4e4a-ac91-315d3aaf72d4", - "Position": { - "x": -135.79, - "y": 2.34, - "z": 401.49 - }, - "Rotation": 271.2534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "56ae82fe-7073-45e7-82bf-a94494b5a509", + "Position": { + "x": 179.062, + "y": 3.048, + "z": 233.031 + }, + "Rotation": 356.824432, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "65b0fa2b-7240-46b5-ae78-0299d3db59a9", - "Position": { - "x": -71.95, - "y": 1.464, - "z": 154.769989 - }, - "Rotation": 331.5, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "587f4c37-b43e-4319-a238-f394bf59609d", + "Position": { + "x": -226.569, + "y": 5.26, + "z": 279.065 + }, + "Rotation": 25.0000076, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHotel_1", - "CorePointId": 6 - }, - { - "Id": "66816fda-2ae8-4b0a-9452-3177cd74bcd5", - "Position": { - "x": 143.03, - "y": 3.52, - "z": 359.66 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5b161871-7fe0-4764-925b-75a5d9320859", + "Position": { + "x": -65.728, + "y": 2.699, + "z": 457.559 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 24 - }, - { - "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", - "Position": { - "x": 12.1080017, - "y": 2.538, - "z": 450.534027 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5b82909f-dc67-4eda-9891-6dba11185f27", + "Position": { + "x": -80.18, + "y": 0.9370003, + "z": 74.08 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_2", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "67aaeb50-4931-4d58-98dc-2d0437e2f61f", - "Position": { - "x": 206.164, - "y": 6.932, - "z": 299.252 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "5c0c1dfb-b30c-47c9-8363-d974cd2c64ea", + "Position": { + "x": -29.74, + "y": 5.15, + "z": -64.77 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "ZoneConstruction", - "CorePointId": 2 - }, - { - "Id": "6903453e-7bf1-414a-9b0c-bb7a6a9b01d4", - "Position": { - "x": 271.007, - "y": 3.526, - "z": 371.175 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5caf5e1b-0113-41fc-9867-007e37ffe906", + "Position": { + "x": 1.6579895, + "y": 1.77900016, + "z": 153.353973 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneConcordia_1", - "CorePointId": 8 - }, - { - "Id": "697b3ab2-3b1f-49d2-8682-ff9cef2632aa", - "Position": { - "x": 89.824, - "y": 2.6838336, - "z": 314.917 - }, - "Rotation": 187.999588, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "5cfd77db-4ab6-45ec-a4d4-a4a30c9e75ce", + "Position": { + "x": 211.905, + "y": -0.33, + "z": 343.2 + }, + "Rotation": 4.729597, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "699750da-15c5-4b86-9997-7dc18be81b1c", - "Position": { - "x": 209.839, - "y": 3.935, - "z": 297.28 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 42 - } + { + "Id": "5e71697b-66ad-4483-ae3d-a9833c72a56e", + "Position": { + "x": -50.974, + "y": 5.152, + "z": -29.5530014 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6c27f4e5-06ad-4932-a056-b0c2c343d498", - "Position": { - "x": 258.622, - "y": -5.94, - "z": 48.843 - }, - "Rotation": 319.729767, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5e92a302-e46c-4acc-adc8-b349b40b5fd7", + "Position": { + "x": 272.018, + "y": -1.16, + "z": 375.369 + }, + "Rotation": 334.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6c90c26e-cfca-4e75-986b-de60d0c7459c", - "Position": { - "x": 211.97, - "y": 0.444, - "z": 345.289 - }, - "Rotation": 4.729597, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "5e94b930-e010-4351-adca-75983b52e6cc", + "Position": { + "x": -46.111, + "y": 0.616, + "z": -67.664 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6cfbccb6-7a27-4476-897d-049e95a5386b", - "Position": { - "x": 274.053, - "y": 4.782, - "z": 518.326 - }, - "Rotation": 236.6915, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "60ac962f-60e7-4049-b52b-bbcc48bd2a86", + "Position": { + "x": 257.34, + "y": -5.94, + "z": 50.955 + }, + "Rotation": 319.729767, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6d99aad4-c884-48fe-ac03-6edbbdc51052", - "Position": { - "x": 106.65, - "y": -1.854, - "z": -162.6 - }, - "Rotation": 2.51932168, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "61264e7e-0ca3-42ea-8537-fa9b655df5be", + "Position": { + "x": 170.335, + "y": -1.451, + "z": -129.286 + }, + "Rotation": 268.9683, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6db0b08e-c99d-4652-ab28-cdabde2e580b", - "Position": { - "x": 271.827, - "y": 3.526, - "z": 369.477 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", + "Position": { + "x": 8.807999, + "y": 2.36800027, + "z": 455.754 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneConcordia_1", - "CorePointId": 8 - }, - { - "Id": "6dd8ddac-8495-4faf-82c8-d1a44b785cba", - "Position": { - "x": -134.383, - "y": 2.545, - "z": 395.888 - }, - "Rotation": 180.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "61c81abf-01bb-4bd2-ab66-8f5a814f0057", + "Position": { + "x": -52.284, + "y": -0.179458022, + "z": 386.267 + }, + "Rotation": 92.4, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneCinema", + "CorePointId": 4 }, - "BotZoneName": "ZoneCinema", - "CorePointId": 4 - }, - { - "Id": "6dfa9fb0-fdde-45cd-9ec1-685f4ba55936", - "Position": { - "x": -69.316, - "y": 1.464, - "z": 156.097 - }, - "Rotation": 331.5, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "61d1d7d8-6ac0-4016-95da-ebe68c4744e3", + "Position": { + "x": -100.35, + "y": 2.32, + "z": 268.45 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneFactory", + "CorePointId": 5 }, - "BotZoneName": "ZoneHotel_1", - "CorePointId": 6 - }, - { - "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", - "Position": { - "x": 10.3880005, - "y": 2.538, - "z": 457.094025 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "61f00796-7769-4b8c-bb50-403f4e402c5f", + "Position": { + "x": 76.02602, + "y": -0.629997253, + "z": 88.469 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6e8ffcae-9065-4bec-8a45-1323f038d52a", - "Position": { - "x": 142.39, - "y": 3.52, - "z": 361.571 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6255bec3-90bb-498e-bb37-1f5933f3a4f7", + "Position": { + "x": 114.480011, + "y": 0.920002, + "z": 189.07 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 24 - }, - { - "Id": "6f685b3e-cf6a-4e34-8a6e-c5fee3b1308d", - "Position": { - "x": -157.981, - "y": 9.684, - "z": -26.729 - }, - "Rotation": 2.51923227, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "6255df32-b929-4e02-8db9-ddf69e716491", + "Position": { + "x": -188.923, + "y": 3.137, + "z": 340.446 + }, + "Rotation": 16.7069, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6fa19d8b-0a96-4aa3-8441-9d9d66649d3c", - "Position": { - "x": -195.373, - "y": 4.992, - "z": 384.652 - }, - "Rotation": 190.496658, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "62f5b14d-cb51-4529-b572-f5a8f5815bb5", + "Position": { + "x": 9.936005, + "y": 1.80700016, + "z": 160.441986 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "70d61a52-e9f7-4723-9def-9b74589114f2", - "Position": { - "x": -1.164, - "y": -3.71, - "z": -4.179001 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "6334d0e4-3651-4ed3-ba11-5dcb4a8ac4e6", + "Position": { + "x": -176.32, + "y": 1.218, + "z": 106.89 + }, + "Rotation": 94.72969, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "71098951-d846-4225-a9bc-6b418505bdcc", - "Position": { - "x": 177.294, - "y": 3.093, - "z": 234.762 - }, - "Rotation": 356.824432, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "63444352-4ee3-421d-a8c1-57ac5a7c6a73", + "Position": { + "x": 209.379, + "y": 4.051, + "z": 298.748 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneConstruction", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "710a9d07-1e95-4c9d-9afa-8bcc668384af", - "Position": { - "x": 81.4, - "y": 2.757, - "z": 297.38 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "6425842e-d951-4538-8b44-ab6fccfae4c4", + "Position": { + "x": 205.631, + "y": 3.935, + "z": 296.404 + }, + "Rotation": 334.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 42 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "7111ac4a-289a-443a-95ce-78c53ebf65bf", - "Position": { - "x": 224.400009, - "y": 0.458999634, - "z": 219.96 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "644ed4d0-3425-4182-aa00-57d7e80bb6b5", + "Position": { + "x": 44.8300171, + "y": 0.270000458, + "z": -36.85 + }, + "Rotation": 309.888733, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneCard1", + "CorePointId": 6 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 1 - }, - { - "Id": "71af2152-6961-4e52-b9c5-d6e8925766a6", - "Position": { - "x": -162.0, - "y": 2.26, - "z": 289.52 - }, - "Rotation": 130.584167, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "652f7306-0e6f-46d5-b5f4-d68c1c2ba7a7", + "Position": { + "x": 212.68, + "y": -1.22, + "z": 350.13 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "ZoneFactory", - "CorePointId": 5 - }, - { - "Id": "728e4433-9258-45dd-aa16-537bea125482", - "Position": { - "x": 251.740021, - "y": -1.06999969, - "z": 148.39 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "652ff695-e5d8-4116-ab84-2ede0f413783", + "Position": { + "x": -147.52, + "y": 0.13, + "z": -67.43 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneClimova", + "CorePointId": 21 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "7358f6b2-61ea-47db-8b99-e8ed4df5f93c", - "Position": { - "x": -161.686, - "y": 3.221, - "z": 180.655 - }, - "Rotation": 74.27901, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "65894af8-198d-4e4a-ac91-315d3aaf72d4", + "Position": { + "x": -135.79, + "y": 2.34, + "z": 401.49 + }, + "Rotation": 271.2534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7433262f-ef82-43b6-b06e-a8c77ba35fd8", - "Position": { - "x": 211.022, - "y": 0.465, - "z": 346.075 - }, - "Rotation": 272.480042, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "65b0fa2b-7240-46b5-ae78-0299d3db59a9", + "Position": { + "x": -71.95, + "y": 1.464, + "z": 154.769989 + }, + "Rotation": 331.5, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_1", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7476377d-3918-48b1-9a1c-e5b54b54b1ef", - "Position": { - "x": -225.555, - "y": 5.226, - "z": 282.178 - }, - "Rotation": 25.0000076, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "66816fda-2ae8-4b0a-9452-3177cd74bcd5", + "Position": { + "x": 143.03, + "y": 3.52, + "z": 359.66 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 24 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "74effe05-4c97-43b5-aabe-7d21e692d290", - "Position": { - "x": -243.08, - "y": 3.685, - "z": 243.479 - }, - "Rotation": 205.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", + "Position": { + "x": 12.1080017, + "y": 2.538, + "z": 450.534027 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "74fec939-e642-4552-b77f-6dde15bd3e3e", - "Position": { - "x": 89.28, - "y": 35.02, - "z": 101.34 - }, - "Rotation": 270.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "67aaeb50-4931-4d58-98dc-2d0437e2f61f", + "Position": { + "x": 206.164, + "y": 6.932, + "z": 299.252 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneConstruction", + "CorePointId": 2 }, - "BotZoneName": "ZoneSnipeSW01", - "CorePointId": 13 - }, - { - "Id": "751c9d22-ec5d-4a08-878c-707fa1de6a87", - "Position": { - "x": -84.9, - "y": 1.464, - "z": 175.6 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "6903453e-7bf1-414a-9b0c-bb7a6a9b01d4", + "Position": { + "x": 271.007, + "y": 3.526, + "z": 371.175 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordia_1", + "CorePointId": 8 }, - "BotZoneName": "ZoneHotel_1", - "CorePointId": 6 - }, - { - "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", - "Position": { - "x": -4.18898, - "y": 1.79799974, - "z": 148.65 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "697b3ab2-3b1f-49d2-8682-ff9cef2632aa", + "Position": { + "x": 89.824, + "y": 2.6838336, + "z": 314.917 + }, + "Rotation": 187.999588, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "75be936b-36ee-4cc4-8172-ef1298934a7d", - "Position": { - "x": -14.886, - "y": 2.763, - "z": -139.338 - }, - "Rotation": 92.51915, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "699750da-15c5-4b86-9997-7dc18be81b1c", + "Position": { + "x": 209.839, + "y": 3.935, + "z": 297.28 + }, + "Rotation": 334.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 42 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "75ce069c-ef5a-4ae0-b129-7242d1464303", - "Position": { - "x": -162.757, - "y": 3.221, - "z": 177.965 - }, - "Rotation": 4.72961473, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "6c27f4e5-06ad-4932-a056-b0c2c343d498", + "Position": { + "x": 258.622, + "y": -5.94, + "z": 48.843 + }, + "Rotation": 319.729767, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7676ad3f-03fb-4038-8496-aa2de51085ba", - "Position": { - "x": -178.03, - "y": 1.218, - "z": 107.92 - }, - "Rotation": 94.72969, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6c90c26e-cfca-4e75-986b-de60d0c7459c", + "Position": { + "x": 211.97, + "y": 0.444, + "z": 345.289 + }, + "Rotation": 4.729597, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "772342a5-99ea-4c96-977f-810d9837bdf9", - "Position": { - "x": 251.63, - "y": -1.06999969, - "z": 145.41 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "6cfbccb6-7a27-4476-897d-049e95a5386b", + "Position": { + "x": 274.053, + "y": 4.782, + "z": 518.326 + }, + "Rotation": 236.6915, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "7755c05d-ebc4-46e3-9a64-36b7cb6a0004", - "Position": { - "x": -77.38, - "y": 0.9370003, - "z": 75.04 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "6d99aad4-c884-48fe-ac03-6edbbdc51052", + "Position": { + "x": 106.65, + "y": -1.854, + "z": -162.6 + }, + "Rotation": 2.51932168, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHotel_2", - "CorePointId": 7 - }, - { - "Id": "77e51dcb-6def-4189-bc03-346d6f5dfb69", - "Position": { - "x": 207.76, - "y": 3.545, - "z": 404.55 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6db0b08e-c99d-4652-ab28-cdabde2e580b", + "Position": { + "x": 271.827, + "y": 3.526, + "z": 369.477 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordia_1", + "CorePointId": 8 }, - "BotZoneName": "ZoneConcordia_1", - "CorePointId": 8 - }, - { - "Id": "78016165-ce25-4d02-95ff-722b489ed206", - "Position": { - "x": 173.44, - "y": -1.21999741, - "z": 57.7399979 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "6dd8ddac-8495-4faf-82c8-d1a44b785cba", + "Position": { + "x": -134.383, + "y": 2.545, + "z": 395.888 + }, + "Rotation": 180.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneCinema", + "CorePointId": 4 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "783ff352-0728-4169-8f1e-42c2695ae52c", - "Position": { - "x": 158.33, - "y": 3.624, - "z": 428.53 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6dfa9fb0-fdde-45cd-9ec1-685f4ba55936", + "Position": { + "x": -69.316, + "y": 1.464, + "z": 156.097 + }, + "Rotation": 331.5, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_1", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7869473c-17c2-4db8-ab57-c5a0546d5a69", - "Position": { - "x": -155.781, - "y": 9.671, - "z": -26.933 - }, - "Rotation": 2.51923227, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", + "Position": { + "x": 10.3880005, + "y": 2.538, + "z": 457.094025 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "789e2418-ed73-40b7-be6c-e3ed899e1a40", - "Position": { - "x": 244.86, - "y": -3.21, - "z": -40.06 - }, - "Rotation": 259.729858, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6e8ffcae-9065-4bec-8a45-1323f038d52a", + "Position": { + "x": 142.39, + "y": 3.52, + "z": 361.571 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 24 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "791d24fb-58b0-42f5-99fa-22808dea06b0", - "Position": { - "x": -93.88, - "y": 0.9370003, - "z": 86.85 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "6f685b3e-cf6a-4e34-8a6e-c5fee3b1308d", + "Position": { + "x": -157.981, + "y": 9.684, + "z": -26.729 + }, + "Rotation": 2.51923227, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHotel_2", - "CorePointId": 7 - }, - { - "Id": "796cca85-8415-45d3-833c-c3fa8ca9bddb", - "Position": { - "x": -52.407, - "y": 0.668, - "z": -66.38 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "6fa19d8b-0a96-4aa3-8441-9d9d66649d3c", + "Position": { + "x": -195.373, + "y": 4.992, + "z": 384.652 + }, + "Rotation": 190.496658, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7971091e-99f8-4447-a39e-debba6500638", - "Position": { - "x": -135.394, - "y": 2.545, - "z": 399.657 - }, - "Rotation": 180.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "70d61a52-e9f7-4723-9def-9b74589114f2", + "Position": { + "x": -1.164, + "y": -3.71, + "z": -4.179001 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "ZoneCinema", - "CorePointId": 4 - }, - { - "Id": "79a51362-4e5f-47ba-afaf-290b94f9cf9e", - "Position": { - "x": -206.343, - "y": 3.367, - "z": 180.998 - }, - "Rotation": 4.729717, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 34 - } + { + "Id": "71098951-d846-4225-a9bc-6b418505bdcc", + "Position": { + "x": 177.294, + "y": 3.093, + "z": 234.762 + }, + "Rotation": 356.824432, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7da44254-8e5b-4118-ac6a-abcc0ae75548", - "Position": { - "x": -190.088, - "y": 3.137, - "z": 338.111 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "710a9d07-1e95-4c9d-9afa-8bcc668384af", + "Position": { + "x": 81.4, + "y": 2.757, + "z": 297.38 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7f644e0e-ba02-4107-a625-f38c4c31f714", - "Position": { - "x": 166.96, - "y": -1.451, - "z": -132.76 - }, - "Rotation": 268.9683, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7111ac4a-289a-443a-95ce-78c53ebf65bf", + "Position": { + "x": 224.400009, + "y": 0.458999634, + "z": 219.96 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7fac5df5-82b9-449e-b7e4-b241a6abeba5", - "Position": { - "x": -16.71, - "y": 2.684, - "z": 238.5 - }, - "Rotation": 114.231476, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "71af2152-6961-4e52-b9c5-d6e8925766a6", + "Position": { + "x": -162.0, + "y": 2.26, + "z": 289.52 + }, + "Rotation": 130.584167, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneFactory", + "CorePointId": 5 }, - "BotZoneName": "ZoneColumn", - "CorePointId": 1 - }, - { - "Id": "7feb1fb6-35a3-4a7e-b601-6f7bb93678ce", - "Position": { - "x": 165.540009, - "y": -1.27999878, - "z": 106.77 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "728e4433-9258-45dd-aa16-537bea125482", + "Position": { + "x": 251.740021, + "y": -1.06999969, + "z": 148.39 + }, + "Rotation": 101.827583, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "8246f7ef-a3d2-40e1-ba24-1388d889f5f6", - "Position": { - "x": -65.706, - "y": 2.699, - "z": 461.359 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "7358f6b2-61ea-47db-8b99-e8ed4df5f93c", + "Position": { + "x": -161.686, + "y": 3.221, + "z": 180.655 + }, + "Rotation": 74.27901, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8285cec6-97d0-431f-82ff-e57d864866ca", - "Position": { - "x": -31.202, - "y": 2.615, - "z": 465.022 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "7433262f-ef82-43b6-b06e-a8c77ba35fd8", + "Position": { + "x": 211.022, + "y": 0.465, + "z": 346.075 + }, + "Rotation": 272.480042, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "83a14b06-b652-4ffb-ba34-809569d8fb5d", - "Position": { - "x": -87.68, - "y": 1.464, - "z": 178.296 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "7476377d-3918-48b1-9a1c-e5b54b54b1ef", + "Position": { + "x": -225.555, + "y": 5.226, + "z": 282.178 + }, + "Rotation": 25.0000076, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHotel_1", - "CorePointId": 6 - }, - { - "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", - "Position": { - "x": -4.34199524, - "y": 1.65800035, - "z": 151.643982 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "74effe05-4c97-43b5-aabe-7d21e692d290", + "Position": { + "x": -243.08, + "y": 3.685, + "z": 243.479 + }, + "Rotation": 205.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "84983058-e647-4955-a40a-1efe6c6b959b", - "Position": { - "x": 245.03, - "y": -3.21, - "z": -38.56 - }, - "Rotation": 259.729858, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "74fec939-e642-4552-b77f-6dde15bd3e3e", + "Position": { + "x": 89.28, + "y": 35.02, + "z": 101.34 + }, + "Rotation": 270.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSnipeSW01", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8536e7fb-41b9-4bf3-ba73-dc0dc779ebe4", - "Position": { - "x": 173.77002, - "y": -1.21999741, - "z": 56.25 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "751c9d22-ec5d-4a08-878c-707fa1de6a87", + "Position": { + "x": -84.9, + "y": 1.464, + "z": 175.6 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_1", + "CorePointId": 6 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "882227cc-5a26-41d8-9cb9-a0d8d10b8444", - "Position": { - "x": -227.27, - "y": 5.226, - "z": 282.533 - }, - "Rotation": 25.0000076, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", + "Position": { + "x": -4.18898, + "y": 1.79799974, + "z": 148.65 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8856f072-af58-4681-9d85-67747fdd940f", - "Position": { - "x": 38.52002, - "y": 0.11000061, - "z": -46.7979965 - }, - "Rotation": 309.888733, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "75be936b-36ee-4cc4-8172-ef1298934a7d", + "Position": { + "x": -14.886, + "y": 2.763, + "z": -139.338 + }, + "Rotation": 92.51915, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCard1", - "CorePointId": 6 - }, - { - "Id": "890d1bf3-071b-48f6-b241-c968af8c9bfa", - "Position": { - "x": -136.07, - "y": 0.13, - "z": -71.29 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "75ce069c-ef5a-4ae0-b129-7242d1464303", + "Position": { + "x": -162.757, + "y": 3.221, + "z": 177.965 + }, + "Rotation": 4.72961473, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneClimova", - "CorePointId": 21 - }, - { - "Id": "89342b83-2833-4b91-8ec9-5657095bd0b0", - "Position": { - "x": -191.392, - "y": 3.137, - "z": 344.702 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "7676ad3f-03fb-4038-8496-aa2de51085ba", + "Position": { + "x": -178.03, + "y": 1.218, + "z": 107.92 + }, + "Rotation": 94.72969, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "89c13411-d85b-4a57-a353-6abe09c131ae", - "Position": { - "x": 140.690018, - "y": -1.41999817, - "z": -51.709 - }, - "Rotation": 329.075928, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "772342a5-99ea-4c96-977f-810d9837bdf9", + "Position": { + "x": 251.63, + "y": -1.06999969, + "z": 145.41 + }, + "Rotation": 101.827583, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "ZoneCard1", - "CorePointId": 19 - }, - { - "Id": "89d6c4f6-9c38-4163-b3ac-ac926bf47b6f", - "Position": { - "x": -165.629, - "y": 3.158, - "z": 183.074 - }, - "Rotation": 74.27901, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "7755c05d-ebc4-46e3-9a64-36b7cb6a0004", + "Position": { + "x": -77.38, + "y": 0.9370003, + "z": 75.04 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_2", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8b0b1cf1-f045-4a53-bf61-6f14adc71f75", - "Position": { - "x": -151.106, - "y": 0.736, - "z": -66.902 - }, - "Rotation": 15.3466482, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "77e51dcb-6def-4189-bc03-346d6f5dfb69", + "Position": { + "x": 207.76, + "y": 3.545, + "z": 404.55 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordia_1", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8b2329e2-3502-4c63-b744-6f3065ff3530", - "Position": { - "x": -58.333, - "y": 3.214, - "z": -145.348 - }, - "Rotation": 2.51925588, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "78016165-ce25-4d02-95ff-722b489ed206", + "Position": { + "x": 173.44, + "y": -1.21999741, + "z": 57.7399979 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8b301a0d-e694-4f24-b938-32329a5084f5", - "Position": { - "x": 11.1879883, - "y": 1.78800011, - "z": 159.064 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "783ff352-0728-4169-8f1e-42c2695ae52c", + "Position": { + "x": 158.33, + "y": 3.624, + "z": 428.53 + }, + "Rotation": 169.729568, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8b30ae56-93f7-49c6-bba1-639213bca1dd", - "Position": { - "x": 79.89801, - "y": 0.8840027, - "z": 165.156 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "7869473c-17c2-4db8-ab57-c5a0546d5a69", + "Position": { + "x": -155.781, + "y": 9.671, + "z": -26.933 + }, + "Rotation": 2.51923227, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "8b443b20-57e1-4d87-80e5-e4891e3995a2", - "Position": { - "x": 259.068024, - "y": -5.336998, - "z": 76.575 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "789e2418-ed73-40b7-be6c-e3ed899e1a40", + "Position": { + "x": 244.86, + "y": -3.21, + "z": -40.06 + }, + "Rotation": 259.729858, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "8cec45df-ee6b-47bf-84f3-c3c4d38088a2", - "Position": { - "x": -61.886, - "y": 2.699, - "z": 461.654 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "791d24fb-58b0-42f5-99fa-22808dea06b0", + "Position": { + "x": -93.88, + "y": 0.9370003, + "z": 86.85 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_2", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8e8fd66a-db92-49fd-9c82-2cd7a7ff1d5e", - "Position": { - "x": -136.26, - "y": 2.34, - "z": 402.74 - }, - "Rotation": 271.2534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "796cca85-8415-45d3-833c-c3fa8ca9bddb", + "Position": { + "x": -52.407, + "y": 0.668, + "z": -66.38 + }, + "Rotation": 107.519135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8eb7065a-df86-48c9-ace7-bc6e59372ad3", - "Position": { - "x": 214.21, - "y": 3.99899983, - "z": 172.474 - }, - "Rotation": 171.956467, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7971091e-99f8-4447-a39e-debba6500638", + "Position": { + "x": -135.394, + "y": 2.545, + "z": 399.657 + }, + "Rotation": 180.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneCinema", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8ec2c153-7918-41f5-926c-193cd886144d", - "Position": { - "x": 184.840012, - "y": -4.199997, - "z": 30.2 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "79a51362-4e5f-47ba-afaf-290b94f9cf9e", + "Position": { + "x": -206.343, + "y": 3.367, + "z": 180.998 + }, + "Rotation": 4.729717, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 34 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "8ee254ee-954f-4f9f-b04d-23abb8cecf7e", - "Position": { - "x": -31.017, - "y": 2.615, - "z": 466.544 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "7da44254-8e5b-4118-ac6a-abcc0ae75548", + "Position": { + "x": -190.088, + "y": 3.137, + "z": 338.111 + }, + "Rotation": 16.7069, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8f1d72e8-8dee-4a6b-b86c-412a0cca080c", - "Position": { - "x": 234.399, - "y": -2.049, - "z": -105.547 - }, - "Rotation": 4.72974443, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7f644e0e-ba02-4107-a625-f38c4c31f714", + "Position": { + "x": 166.96, + "y": -1.451, + "z": -132.76 + }, + "Rotation": 268.9683, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8faf7e0f-ba4a-4b7b-9ed7-642d84db17d2", - "Position": { - "x": -43.209, - "y": 6.7, - "z": -114.198 - }, - "Rotation": 272.519379, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "7fac5df5-82b9-449e-b7e4-b241a6abeba5", + "Position": { + "x": -16.71, + "y": 2.684, + "z": 238.5 + }, + "Rotation": 114.231476, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "906d71d5-db71-47c1-8a58-0f48f58daea1", - "Position": { - "x": -32.585, - "y": 2.615, - "z": 466.542 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "7feb1fb6-35a3-4a7e-b601-6f7bb93678ce", + "Position": { + "x": 165.540009, + "y": -1.27999878, + "z": 106.77 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "91635471-4f27-4156-9801-9dbdf80f2970", - "Position": { - "x": -226.153, - "y": 5.226, - "z": 280.783 - }, - "Rotation": 25.0000076, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "8246f7ef-a3d2-40e1-ba24-1388d889f5f6", + "Position": { + "x": -65.706, + "y": 2.699, + "z": 461.359 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9192c8e7-db7e-4e06-b21d-dbcc19b518a1", - "Position": { - "x": -153.62, - "y": 0.13, - "z": -64.64 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "8285cec6-97d0-431f-82ff-e57d864866ca", + "Position": { + "x": -31.202, + "y": 2.615, + "z": 465.022 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneClimova", - "CorePointId": 21 - }, - { - "Id": "92f91bd5-3f81-434d-8138-93106b553eba", - "Position": { - "x": 43.74, - "y": 28.512, - "z": -17.0099983 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "83a14b06-b652-4ffb-ba34-809569d8fb5d", + "Position": { + "x": -87.68, + "y": 1.464, + "z": 178.296 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_1", + "CorePointId": 6 }, - "BotZoneName": "ZoneSnipeCard", - "CorePointId": 16 - }, - { - "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", - "Position": { - "x": -4.271988, - "y": 1.65800035, - "z": 153.023987 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", + "Position": { + "x": -4.34199524, + "y": 1.65800035, + "z": 151.643982 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "934cdbef-b43f-4690-aa4a-b34dc193abd0", - "Position": { - "x": 99.03, - "y": -1.854, - "z": -158.78 - }, - "Rotation": 2.51932168, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "84983058-e647-4955-a40a-1efe6c6b959b", + "Position": { + "x": 245.03, + "y": -3.21, + "z": -38.56 + }, + "Rotation": 259.729858, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "95453f5c-5ca5-405f-8872-ea088ca155c3", - "Position": { - "x": -32.607, - "y": 2.615, - "z": 465.087 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "8536e7fb-41b9-4bf3-ba73-dc0dc779ebe4", + "Position": { + "x": 173.77002, + "y": -1.21999741, + "z": 56.25 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "97185451-3b24-4e74-baa1-6a706f09c520", - "Position": { - "x": 4.9119873, - "y": 1.77900016, - "z": 160.613983 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "882227cc-5a26-41d8-9cb9-a0d8d10b8444", + "Position": { + "x": -227.27, + "y": 5.226, + "z": 282.533 + }, + "Rotation": 25.0000076, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", - "Position": { - "x": 9.087997, - "y": 2.568, - "z": 452.543976 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8856f072-af58-4681-9d85-67747fdd940f", + "Position": { + "x": 38.52002, + "y": 0.11000061, + "z": -46.7979965 + }, + "Rotation": 309.888733, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneCard1", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "977a32c1-58c1-48cd-89ce-5ed7005bf17a", - "Position": { - "x": -3.191, - "y": -3.71, - "z": -6.13499832 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "890d1bf3-071b-48f6-b241-c968af8c9bfa", + "Position": { + "x": -136.07, + "y": 0.13, + "z": -71.29 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneClimova", + "CorePointId": 21 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "98b9afb9-fe15-4d48-8967-b1d47adea1d8", - "Position": { - "x": 208.592, - "y": -1.22, - "z": 350.427 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "89342b83-2833-4b91-8ec9-5657095bd0b0", + "Position": { + "x": -191.392, + "y": 3.137, + "z": 344.702 + }, + "Rotation": 16.7069, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "992d7410-2184-4b7c-b079-d16c572a4f50", - "Position": { - "x": 184.84, - "y": 3.41262436, - "z": 328.16 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "89c13411-d85b-4a57-a353-6abe09c131ae", + "Position": { + "x": 140.690018, + "y": -1.41999817, + "z": -51.709 + }, + "Rotation": 329.075928, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneCard1", + "CorePointId": 19 }, - "BotZoneName": "ZoneConstruction", - "CorePointId": 2 - }, - { - "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", - "Position": { - "x": 18.5980072, - "y": 2.36800027, - "z": 456.764 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "89d6c4f6-9c38-4163-b3ac-ac926bf47b6f", + "Position": { + "x": -165.629, + "y": 3.158, + "z": 183.074 + }, + "Rotation": 74.27901, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9a07d7bf-ce18-4a8f-99ab-34ecc4de2066", - "Position": { - "x": -166.71, - "y": 23.1993332, - "z": 390.43 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "8b0b1cf1-f045-4a53-bf61-6f14adc71f75", + "Position": { + "x": -151.106, + "y": 0.736, + "z": -66.902 + }, + "Rotation": 15.3466482, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSnipeCinema", - "CorePointId": 10 - }, - { - "Id": "9a413516-5be1-4aec-a95f-8888dfc8156d", - "Position": { - "x": 114.210007, - "y": 1.25, - "z": 192.06 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "8b2329e2-3502-4c63-b744-6f3065ff3530", + "Position": { + "x": -58.333, + "y": 3.214, + "z": -145.348 + }, + "Rotation": 2.51925588, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "9a479113-f5ac-433e-aa4b-b6f6c6b8d5e4", - "Position": { - "x": -106.95, - "y": 0.662, - "z": -30.759 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "8b301a0d-e694-4f24-b938-32329a5084f5", + "Position": { + "x": 11.1879883, + "y": 1.78800011, + "z": 159.064 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9b4cc2e1-662c-4f96-af4f-f022527d9868", - "Position": { - "x": 167.909988, - "y": -1.451, - "z": -128.53 - }, - "Rotation": 268.9683, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8b30ae56-93f7-49c6-bba1-639213bca1dd", + "Position": { + "x": 79.89801, + "y": 0.8840027, + "z": 165.156 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9c57887e-d1c9-4e0f-94e6-558d49b96faf", - "Position": { - "x": 229.38, - "y": 3.37, - "z": 410.74 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 43 - } + { + "Id": "8b443b20-57e1-4d87-80e5-e4891e3995a2", + "Position": { + "x": 259.068024, + "y": -5.336998, + "z": 76.575 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9cd18fce-5603-47fa-b65d-156ac3831471", - "Position": { - "x": 222.497009, - "y": 0.5250015, - "z": 182.676 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "8cec45df-ee6b-47bf-84f3-c3c4d38088a2", + "Position": { + "x": -61.886, + "y": 2.699, + "z": 461.654 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "9dae10d1-d98d-4d24-a3d1-4dbdbd950b51", - "Position": { - "x": -16.387, - "y": 2.633, - "z": 231.312 - }, - "Rotation": 114.231476, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8e8fd66a-db92-49fd-9c82-2cd7a7ff1d5e", + "Position": { + "x": -136.26, + "y": 2.34, + "z": 402.74 + }, + "Rotation": 271.2534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneColumn", - "CorePointId": 1 - }, - { - "Id": "9dd4bcc0-062e-45a4-9346-2b488ed4ad72", - "Position": { - "x": 10.3280029, - "y": 1.78800011, - "z": 156.053986 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8eb7065a-df86-48c9-ace7-bc6e59372ad3", + "Position": { + "x": 214.21, + "y": 3.99899983, + "z": 172.474 + }, + "Rotation": 171.956467, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9e12f9ea-7135-43ec-b452-dd5367f4ad6d", - "Position": { - "x": 271.591, - "y": -1.227, - "z": 379.893 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8ec2c153-7918-41f5-926c-193cd886144d", + "Position": { + "x": 184.840012, + "y": -4.199997, + "z": 30.2 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "9e3921e7-bbaa-4e02-8129-e9efd26cdd7f", - "Position": { - "x": 38.39, - "y": 2.159, - "z": 194.976 - }, - "Rotation": 301.882233, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8ee254ee-954f-4f9f-b04d-23abb8cecf7e", + "Position": { + "x": -31.017, + "y": 2.615, + "z": 466.544 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneColumn", - "CorePointId": 14 - }, - { - "Id": "9e3be350-92e3-434b-befc-b12ccbb2af45", - "Position": { - "x": -244.442, - "y": 2.193, - "z": 237.972 - }, - "Rotation": 205.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } + { + "Id": "8f1d72e8-8dee-4a6b-b86c-412a0cca080c", + "Position": { + "x": 234.399, + "y": -2.049, + "z": -105.547 + }, + "Rotation": 4.72974443, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9ead0db7-f999-4582-a518-9bb612621df4", - "Position": { - "x": 147.22, - "y": 3.531, - "z": 358.0 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8faf7e0f-ba4a-4b7b-9ed7-642d84db17d2", + "Position": { + "x": -43.209, + "y": 6.7, + "z": -114.198 + }, + "Rotation": 272.519379, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 24 - }, - { - "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", - "Position": { - "x": 14.9980011, - "y": 2.568, - "z": 453.814 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "906d71d5-db71-47c1-8a58-0f48f58daea1", + "Position": { + "x": -32.585, + "y": 2.615, + "z": 466.542 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a029f0ad-07f0-48be-9cb2-99038e395964", - "Position": { - "x": 189.16, - "y": 1.670002, - "z": 206.87 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "91635471-4f27-4156-9801-9dbdf80f2970", + "Position": { + "x": -226.153, + "y": 5.226, + "z": 280.783 + }, + "Rotation": 25.0000076, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "a08fc7a4-eda9-4331-a2cf-b62215dc517d", - "Position": { - "x": 188.930023, - "y": 0.6000023, - "z": 195.19 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "9192c8e7-db7e-4e06-b21d-dbcc19b518a1", + "Position": { + "x": -153.62, + "y": 0.13, + "z": -64.64 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneClimova", + "CorePointId": 21 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "a0bca4c5-ae22-462c-9aa1-290ba3023b84", - "Position": { - "x": -230.641, - "y": 2.196, - "z": 342.45 - }, - "Rotation": 340.000031, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "92f91bd5-3f81-434d-8138-93106b553eba", + "Position": { + "x": 43.74, + "y": 28.512, + "z": -17.0099983 + }, + "Rotation": 11.7017088, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSnipeCard", + "CorePointId": 16 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a17e55c9-4a1c-4fa8-85a8-d87a26a3963e", - "Position": { - "x": -192.37, - "y": 8.76, - "z": 421.58 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", + "Position": { + "x": -4.271988, + "y": 1.65800035, + "z": 153.023987 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCinema", - "CorePointId": 4 - }, - { - "Id": "a2afda58-3556-4186-aad7-72c7f34a1334", - "Position": { - "x": 211.085, - "y": 3.935, - "z": 297.4 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 42 - } + { + "Id": "934cdbef-b43f-4690-aa4a-b34dc193abd0", + "Position": { + "x": 99.03, + "y": -1.854, + "z": -158.78 + }, + "Rotation": 2.51932168, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a3ab1bc5-47c5-4b00-a364-770d046ce559", - "Position": { - "x": -108.95, - "y": 0.662, - "z": -28.307 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "95453f5c-5ca5-405f-8872-ea088ca155c3", + "Position": { + "x": -32.607, + "y": 2.615, + "z": 465.087 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a4125a80-2cb6-499a-83ca-076543ef10ff", - "Position": { - "x": 142.932, - "y": 3.622, - "z": 357.98 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "97185451-3b24-4e74-baa1-6a706f09c520", + "Position": { + "x": 4.9119873, + "y": 1.77900016, + "z": 160.613983 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 24 - }, - { - "Id": "a63229d5-341a-4635-9850-e5c64b3ffbed", - "Position": { - "x": 81.32602, - "y": 0.8840027, - "z": 163.591 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", + "Position": { + "x": 9.087997, + "y": 2.568, + "z": 452.543976 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "a6ac7812-b011-4b25-9b74-9743e79ad4ee", - "Position": { - "x": -111.445, - "y": 0.668, - "z": -30.917 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "977a32c1-58c1-48cd-89ce-5ed7005bf17a", + "Position": { + "x": -3.191, + "y": -3.71, + "z": -6.13499832 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a6b0f695-68d1-480c-8f64-996725d71036", - "Position": { - "x": 168.3, - "y": -1.451, - "z": -130.72 - }, - "Rotation": 270.487122, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "98b9afb9-fe15-4d48-8967-b1d47adea1d8", + "Position": { + "x": 208.592, + "y": -1.22, + "z": 350.427 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a6c5a7ee-cf62-459b-b12c-736ffe3df693", - "Position": { - "x": 77.91002, - "y": 0.700000763, - "z": 165.45 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "992d7410-2184-4b7c-b079-d16c572a4f50", + "Position": { + "x": 184.84, + "y": 3.41262436, + "z": 328.16 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneConstruction", + "CorePointId": 2 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "a7d04223-058d-45b1-9d83-daa7f72d1993", - "Position": { - "x": 95.922, - "y": 2.684, - "z": 306.475 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", + "Position": { + "x": 18.5980072, + "y": 2.36800027, + "z": 456.764 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "a7da54ab-17cd-4c31-bd7e-9b585c69c68f", - "Position": { - "x": 164.280014, - "y": 0.544002533, - "z": 136.68 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "9a07d7bf-ce18-4a8f-99ab-34ecc4de2066", + "Position": { + "x": -166.71, + "y": 23.1993332, + "z": 390.43 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSnipeCinema", + "CorePointId": 10 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "a7f9760b-60ce-4f25-bb16-4bee3ce36964", - "Position": { - "x": 269.852, - "y": -1.227, - "z": 381.269 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9a413516-5be1-4aec-a95f-8888dfc8156d", + "Position": { + "x": 114.210007, + "y": 1.25, + "z": 192.06 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "a9bd8162-167c-40e5-9027-20a2fe5b6ef9", - "Position": { - "x": -195.641, - "y": 4.992, - "z": 387.005 - }, - "Rotation": 190.496658, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9a479113-f5ac-433e-aa4b-b6f6c6b8d5e4", + "Position": { + "x": -106.95, + "y": 0.662, + "z": -30.759 + }, + "Rotation": 107.519135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a9dffad6-bc0d-48ae-a314-acd62b128fd8", - "Position": { - "x": 45.106, - "y": 2.717, - "z": 413.596 - }, - "Rotation": 241.253387, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "9b4cc2e1-662c-4f96-af4f-f022527d9868", + "Position": { + "x": 167.909988, + "y": -1.451, + "z": -128.53 + }, + "Rotation": 268.9683, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "aa9222f5-c4ee-4569-8e5e-7689d4bad545", - "Position": { - "x": 93.93, - "y": 2.579, - "z": 451.26 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9c57887e-d1c9-4e0f-94e6-558d49b96faf", + "Position": { + "x": 229.38, + "y": 3.37, + "z": 410.74 + }, + "Rotation": 169.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 43 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ac155f80-d9a7-431b-8608-0e6e74287afd", - "Position": { - "x": 273.3, - "y": -1.16, - "z": 377.25 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "9cd18fce-5603-47fa-b65d-156ac3831471", + "Position": { + "x": 222.497009, + "y": 0.5250015, + "z": 182.676 + }, + "Rotation": 101.827583, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ac9ba776-03cd-4e17-acb3-89c9b5dfcef2", - "Position": { - "x": -194.21, - "y": 8.76, - "z": 423.09 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "9dae10d1-d98d-4d24-a3d1-4dbdbd950b51", + "Position": { + "x": -16.387, + "y": 2.633, + "z": 231.312 + }, + "Rotation": 114.231476, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 1 }, - "BotZoneName": "ZoneCinema", - "CorePointId": 4 - }, - { - "Id": "ad1c216e-f87e-47c7-9b43-c29ffbc8667f", - "Position": { - "x": -12.53, - "y": 2.633, - "z": 231.915 - }, - "Rotation": 114.231476, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9dd4bcc0-062e-45a4-9346-2b488ed4ad72", + "Position": { + "x": 10.3280029, + "y": 1.78800011, + "z": 156.053986 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneColumn", - "CorePointId": 1 - }, - { - "Id": "ad520f4e-287f-4059-be3b-1966572cedbc", - "Position": { - "x": 260.210022, - "y": -1.199997, - "z": 130.040009 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "9e12f9ea-7135-43ec-b452-dd5367f4ad6d", + "Position": { + "x": 271.591, + "y": -1.227, + "z": 379.893 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "ad71c83a-8552-468e-9bbb-7530d53b1cb0", - "Position": { - "x": 104.25, - "y": -1.854, - "z": -162.48 - }, - "Rotation": 2.51932168, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "9e3921e7-bbaa-4e02-8129-e9efd26cdd7f", + "Position": { + "x": 38.39, + "y": 2.159, + "z": 194.976 + }, + "Rotation": 301.882233, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 14 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "adce64c7-8895-4530-bbd2-16644a35224a", - "Position": { - "x": 185.35, - "y": 3.529, - "z": 451.26 - }, - "Rotation": 134.938431, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9e3be350-92e3-434b-befc-b12ccbb2af45", + "Position": { + "x": -244.442, + "y": 2.193, + "z": 237.972 + }, + "Rotation": 205.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ade8885f-b41b-4e5f-a31d-4a5ff0aef1e7", - "Position": { - "x": -162.386, - "y": 3.158, - "z": 182.139 - }, - "Rotation": 74.27901, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "9ead0db7-f999-4582-a518-9bb612621df4", + "Position": { + "x": 147.22, + "y": 3.531, + "z": 358.0 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 24 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "adf8872a-3fa9-49ea-a987-467df258cc8e", - "Position": { - "x": -98.32, - "y": 0.9370003, - "z": 86.31 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", + "Position": { + "x": 14.9980011, + "y": 2.568, + "z": 453.814 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHotel_2", - "CorePointId": 7 - }, - { - "Id": "aea27585-1f8c-49dc-9524-88fe4e9f0bdd", - "Position": { - "x": 46.174, - "y": 2.717, - "z": 415.754 - }, - "Rotation": 241.253387, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "a029f0ad-07f0-48be-9cb2-99038e395964", + "Position": { + "x": 189.16, + "y": 1.670002, + "z": 206.87 + }, + "Rotation": 101.827583, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "aeab5681-09ec-47fb-87d5-571b6e33522f", - "Position": { - "x": -181.525, - "y": 2.451, - "z": 415.068 - }, - "Rotation": 11.8153534, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "a08fc7a4-eda9-4331-a2cf-b62215dc517d", + "Position": { + "x": 188.930023, + "y": 0.6000023, + "z": 195.19 + }, + "Rotation": 101.827583, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "aeb13e1b-ba7b-4f2c-92a8-3d7120b32dbe", - "Position": { - "x": -50.789, - "y": 0.668, - "z": -65.073 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "a0bca4c5-ae22-462c-9aa1-290ba3023b84", + "Position": { + "x": -230.641, + "y": 2.196, + "z": 342.45 + }, + "Rotation": 340.000031, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "af2c001e-a978-4c68-9acc-eac8709cdc7c", - "Position": { - "x": 177.514, - "y": 3.093, - "z": 236.545 - }, - "Rotation": 356.824432, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a17e55c9-4a1c-4fa8-85a8-d87a26a3963e", + "Position": { + "x": -192.37, + "y": 8.76, + "z": 421.58 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneCinema", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "afeea4fe-da60-4cd1-b581-7174c5512baa", - "Position": { - "x": -119.24, - "y": 14.9, - "z": -12.25 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "a2afda58-3556-4186-aad7-72c7f34a1334", + "Position": { + "x": 211.085, + "y": 3.935, + "z": 297.4 + }, + "Rotation": 334.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 42 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSnipeStilo", - "CorePointId": 18 - }, - { - "Id": "b0126d65-ba76-45ad-b25e-32f4f3509904", - "Position": { - "x": 7.85800171, - "y": 1.81900012, - "z": 161.583984 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a3ab1bc5-47c5-4b00-a364-770d046ce559", + "Position": { + "x": -108.95, + "y": 0.662, + "z": -28.307 + }, + "Rotation": 107.519135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b03c51d3-b7d5-4396-bc7e-4a7565779381", - "Position": { - "x": -135.905, - "y": 2.545, - "z": 395.469 - }, - "Rotation": 180.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "a4125a80-2cb6-499a-83ca-076543ef10ff", + "Position": { + "x": 142.932, + "y": 3.622, + "z": 357.98 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 24 }, - "BotZoneName": "ZoneCinema", - "CorePointId": 4 - }, - { - "Id": "b049c6f8-afb9-42f9-9591-2f265fef2097", - "Position": { - "x": 5.34100342, - "y": 1.77900016, - "z": 156.336975 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a63229d5-341a-4635-9850-e5c64b3ffbed", + "Position": { + "x": 81.32602, + "y": 0.8840027, + "z": 163.591 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b14d74dc-3024-493a-bc59-2f3fc244a185", - "Position": { - "x": 275.666, - "y": -4.431, - "z": 88.001 - }, - "Rotation": 275.694916, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a6ac7812-b011-4b25-9b74-9743e79ad4ee", + "Position": { + "x": -111.445, + "y": 0.668, + "z": -30.917 + }, + "Rotation": 107.519135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b1716b16-358e-4b58-895a-cd1ddfda9a82", - "Position": { - "x": 70.99402, - "y": 0.270000458, - "z": -49.2839966 - }, - "Rotation": 84.2096558, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "a6b0f695-68d1-480c-8f64-996725d71036", + "Position": { + "x": 168.3, + "y": -1.451, + "z": -130.72 + }, + "Rotation": 270.487122, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCard1", - "CorePointId": 7 - }, - { - "Id": "b2b5342f-f667-418d-aaa4-f7aab268c6f0", - "Position": { - "x": 245.6, - "y": -5.68999863, - "z": 24.8699989 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "a6c5a7ee-cf62-459b-b12c-736ffe3df693", + "Position": { + "x": 77.91002, + "y": 0.700000763, + "z": 165.45 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 19 - }, - { - "Id": "b375b2e4-d13f-4e81-9b58-672da90131f0", - "Position": { - "x": -152.382, - "y": 0.663, - "z": -62.95 - }, - "Rotation": 15.3466482, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "a7d04223-058d-45b1-9d83-daa7f72d1993", + "Position": { + "x": 95.922, + "y": 2.684, + "z": 306.475 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b58a00d0-24b7-4fa0-b3a7-23bb58f45ea9", - "Position": { - "x": -31.626, - "y": 0.615, - "z": -59.596 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "a7da54ab-17cd-4c31-bd7e-9b585c69c68f", + "Position": { + "x": 164.280014, + "y": 0.544002533, + "z": 136.68 + }, + "Rotation": 73.40837, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "b6da4994-667e-4dae-8798-3806d046a8df", - "Position": { - "x": 215.231, - "y": 3.37095356, - "z": 330.802 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "a7f9760b-60ce-4f25-bb16-4bee3ce36964", + "Position": { + "x": 269.852, + "y": -1.227, + "z": 381.269 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "ZoneConstruction", - "CorePointId": 2 - }, - { - "Id": "b7562271-f090-46ce-9283-32efd4f8219b", - "Position": { - "x": -30.119, - "y": 0.691, - "z": -63.183 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "a9bd8162-167c-40e5-9027-20a2fe5b6ef9", + "Position": { + "x": -195.641, + "y": 4.992, + "z": 387.005 + }, + "Rotation": 190.496658, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "b76b0cfb-c86b-4d56-8ea0-b7e4fb70c7ee", - "Position": { - "x": 234.572021, - "y": 0.458999634, - "z": 215.794 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "a9dffad6-bc0d-48ae-a314-acd62b128fd8", + "Position": { + "x": 45.106, + "y": 2.717, + "z": 413.596 + }, + "Rotation": 241.253387, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 1 - }, - { - "Id": "b792db98-04f7-49ec-9ac7-10939d7c13b1", - "Position": { - "x": 210.467, - "y": -1.22, - "z": 351.635 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "aa9222f5-c4ee-4569-8e5e-7689d4bad545", + "Position": { + "x": 93.93, + "y": 2.579, + "z": 451.26 + }, + "Rotation": 169.729568, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "b96df3dc-23f2-4e1d-8a9a-9fbe05a94f47", - "Position": { - "x": 8.007996, - "y": 1.80700016, - "z": 157.963959 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "ac155f80-d9a7-431b-8608-0e6e74287afd", + "Position": { + "x": 273.3, + "y": -1.16, + "z": 377.25 + }, + "Rotation": 334.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bb776772-5164-40f4-984b-67ce81dc2e4b", - "Position": { - "x": 206.924, - "y": 3.935, - "z": 295.835 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 42 - } + { + "Id": "ac9ba776-03cd-4e17-acb3-89c9b5dfcef2", + "Position": { + "x": -194.21, + "y": 8.76, + "z": 423.09 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneCinema", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bd18f6c5-b92c-4749-96e6-773a4468eb70", - "Position": { - "x": -35.53, - "y": 1.464, - "z": 156.55 - }, - "Rotation": 50.4, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "ad1c216e-f87e-47c7-9b43-c29ffbc8667f", + "Position": { + "x": -12.53, + "y": 2.633, + "z": 231.915 + }, + "Rotation": 114.231476, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 1 }, - "BotZoneName": "ZoneHotel_1", - "CorePointId": 6 - }, - { - "Id": "bd900053-2d23-4aa0-9259-535a936e0af1", - "Position": { - "x": 207.14, - "y": 4.051, - "z": 298.55 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "ad520f4e-287f-4059-be3b-1966572cedbc", + "Position": { + "x": 260.210022, + "y": -1.199997, + "z": 130.040009 + }, + "Rotation": 101.827583, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "ZoneConstruction", - "CorePointId": 2 - }, - { - "Id": "bdf5a017-bab7-4abe-be10-4a1879de7662", - "Position": { - "x": -175.044, - "y": 2.455, - "z": 466.141 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "ad71c83a-8552-468e-9bbb-7530d53b1cb0", + "Position": { + "x": 104.25, + "y": -1.854, + "z": -162.48 + }, + "Rotation": 2.51932168, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "beb2e36c-7cfe-4b66-af93-bc22bb6d1d49", - "Position": { - "x": 186.52002, - "y": -4.37999725, - "z": 30.82 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "adce64c7-8895-4530-bbd2-16644a35224a", + "Position": { + "x": 185.35, + "y": 3.529, + "z": 451.26 + }, + "Rotation": 134.938431, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "bfa6dec5-ec50-4b15-a823-78e95904fb5f", - "Position": { - "x": 75.69002, - "y": 0.5612259, - "z": 165.33 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "ade8885f-b41b-4e5f-a31d-4a5ff0aef1e7", + "Position": { + "x": -162.386, + "y": 3.158, + "z": 182.139 + }, + "Rotation": 74.27901, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "c0247ccc-9087-47fc-8260-2d23ac5bbb5b", - "Position": { - "x": 259.911, - "y": -5.94, - "z": 52.289 - }, - "Rotation": 319.729767, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "adf8872a-3fa9-49ea-a987-467df258cc8e", + "Position": { + "x": -98.32, + "y": 0.9370003, + "z": 86.31 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_2", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c0d22b84-22eb-4937-911b-bd020a0896eb", - "Position": { - "x": -166.03, - "y": 23.1993332, - "z": 410.85 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "aea27585-1f8c-49dc-9524-88fe4e9f0bdd", + "Position": { + "x": 46.174, + "y": 2.717, + "z": 415.754 + }, + "Rotation": 241.253387, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSnipeCinema", - "CorePointId": 10 - }, - { - "Id": "c1c352d8-20ea-4d4b-a349-de50185cd3b7", - "Position": { - "x": -191.95, - "y": 8.76, - "z": 423.31 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "aeab5681-09ec-47fb-87d5-571b6e33522f", + "Position": { + "x": -181.525, + "y": 2.451, + "z": 415.068 + }, + "Rotation": 11.8153534, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCinema", - "CorePointId": 4 - }, - { - "Id": "c1e6eaa9-74de-4da9-ac49-62faf320c4ab", - "Position": { - "x": 185.446, - "y": 3.529, - "z": 456.849 - }, - "Rotation": 134.938431, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "aeb13e1b-ba7b-4f2c-92a8-3d7120b32dbe", + "Position": { + "x": -50.789, + "y": 0.668, + "z": -65.073 + }, + "Rotation": 107.519135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c2477145-0481-4d79-a1cb-5e13f6454478", - "Position": { - "x": -176.05, - "y": 1.218, - "z": 108.38 - }, - "Rotation": 94.72969, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "af2c001e-a978-4c68-9acc-eac8709cdc7c", + "Position": { + "x": 177.514, + "y": 3.093, + "z": 236.545 + }, + "Rotation": 356.824432, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c2788494-4b1b-4462-a690-d338940786a1", - "Position": { - "x": -16.204, - "y": 2.633, - "z": 253.572 - }, - "Rotation": 111.727104, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "afeea4fe-da60-4cd1-b581-7174c5512baa", + "Position": { + "x": -119.24, + "y": 14.9, + "z": -12.25 + }, + "Rotation": 11.7017088, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSnipeStilo", + "CorePointId": 18 }, - "BotZoneName": "ZoneColumn", - "CorePointId": 14 - }, - { - "Id": "c2a3cb3b-a64f-485b-bf2b-c14fc5ec3938", - "Position": { - "x": 50.602, - "y": 4.465, - "z": -134.514 - }, - "Rotation": 273.305542, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b0126d65-ba76-45ad-b25e-32f4f3509904", + "Position": { + "x": 7.85800171, + "y": 1.81900012, + "z": 161.583984 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c36b37b1-e654-45b8-a921-4864d1a325a4", - "Position": { - "x": 3.79800415, - "y": 1.77900016, - "z": 153.68399 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b03c51d3-b7d5-4396-bc7e-4a7565779381", + "Position": { + "x": -135.905, + "y": 2.545, + "z": 395.469 + }, + "Rotation": 180.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneCinema", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c3efd361-ba77-4b03-b250-36a9cdf3d57c", - "Position": { - "x": 82.266, - "y": 2.791, - "z": 266.358 - }, - "Rotation": 322.1663, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "b049c6f8-afb9-42f9-9591-2f265fef2097", + "Position": { + "x": 5.34100342, + "y": 1.77900016, + "z": 156.336975 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "c420fa47-d274-451a-933d-81242771a03d", - "Position": { - "x": -171.35, - "y": 2.36, - "z": 285.08 - }, - "Rotation": 130.584167, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "b14d74dc-3024-493a-bc59-2f3fc244a185", + "Position": { + "x": 275.666, + "y": -4.431, + "z": 88.001 + }, + "Rotation": 275.694916, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactory", - "CorePointId": 5 - }, - { - "Id": "c4f99431-6392-40c5-8737-1b5332afc0cd", - "Position": { - "x": 101.45, - "y": 4.99, - "z": 312.85 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "b1716b16-358e-4b58-895a-cd1ddfda9a82", + "Position": { + "x": 70.99402, + "y": 0.270000458, + "z": -49.2839966 + }, + "Rotation": 84.2096558, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneCard1", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "c6345b94-6d0f-4a6b-a50b-ec1bbb22e402", - "Position": { - "x": 117.27002, - "y": 0.580001831, - "z": 188.66 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "b2b5342f-f667-418d-aaa4-f7aab268c6f0", + "Position": { + "x": 245.6, + "y": -5.68999863, + "z": 24.8699989 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 19 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "c731aad9-1cc6-45d5-90ac-2c4747b725b3", - "Position": { - "x": 258.721, - "y": -5.336998, - "z": 77.856 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "b375b2e4-d13f-4e81-9b58-672da90131f0", + "Position": { + "x": -152.382, + "y": 0.663, + "z": -62.95 + }, + "Rotation": 15.3466482, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "c736ae69-2631-4d51-b5ac-6a466c7c8dd8", - "Position": { - "x": 185.557, - "y": 1.574, - "z": 188.963 - }, - "Rotation": 24.4516544, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b58a00d0-24b7-4fa0-b3a7-23bb58f45ea9", + "Position": { + "x": -31.626, + "y": 0.615, + "z": -59.596 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c7f3fa28-80e6-45f3-9ace-6ade4e937035", - "Position": { - "x": 192.330017, - "y": 1.06999969, - "z": 221.81 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "b6da4994-667e-4dae-8798-3806d046a8df", + "Position": { + "x": 215.231, + "y": 3.37095356, + "z": 330.802 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneConstruction", + "CorePointId": 2 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 1 - }, - { - "Id": "c8a3c9e4-7998-41fa-b311-9e9feb35588c", - "Position": { - "x": -204.056, - "y": 3.367, - "z": 179.404 - }, - "Rotation": 4.729717, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 34 - } + { + "Id": "b7562271-f090-46ce-9283-32efd4f8219b", + "Position": { + "x": -30.119, + "y": 0.691, + "z": -63.183 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c8b04f3f-1f80-49a7-8530-3180b3ff71e9", - "Position": { - "x": 8.957977, - "y": 1.78800011, - "z": 157.02298 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b76b0cfb-c86b-4d56-8ea0-b7e4fb70c7ee", + "Position": { + "x": 234.572021, + "y": 0.458999634, + "z": 215.794 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c9a40002-42d3-429f-bc00-cefbeae602d5", - "Position": { - "x": 202.85, - "y": 3.545, - "z": 402.46 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b792db98-04f7-49ec-9ac7-10939d7c13b1", + "Position": { + "x": 210.467, + "y": -1.22, + "z": 351.635 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "ZoneConcordia_1", - "CorePointId": 8 - }, - { - "Id": "caa72953-e3fa-4dac-874c-ee5f4e14635d", - "Position": { - "x": 142.866, - "y": 3.622, - "z": 363.484 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b96df3dc-23f2-4e1d-8a9a-9fbe05a94f47", + "Position": { + "x": 8.007996, + "y": 1.80700016, + "z": 157.963959 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 24 - }, - { - "Id": "cceb9cac-d3d4-409e-a516-3604242f532c", - "Position": { - "x": -105.041, - "y": 2.32, - "z": 267.041016 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "bb776772-5164-40f4-984b-67ce81dc2e4b", + "Position": { + "x": 206.924, + "y": 3.935, + "z": 295.835 + }, + "Rotation": 334.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 42 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactory", - "CorePointId": 5 - }, - { - "Id": "cd4981a9-7fe0-4553-9b41-26a4b3b6596b", - "Position": { - "x": -36.052, - "y": 5.22, - "z": -64.392 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "bd18f6c5-b92c-4749-96e6-773a4468eb70", + "Position": { + "x": -35.53, + "y": 1.464, + "z": 156.55 + }, + "Rotation": 50.4, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_1", + "CorePointId": 6 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "cd6f8908-c870-4d10-a8e0-b213fe662301", - "Position": { - "x": 75.18001, - "y": -0.629997253, - "z": 92.28 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "bd900053-2d23-4aa0-9259-535a936e0af1", + "Position": { + "x": 207.14, + "y": 4.051, + "z": 298.55 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneConstruction", + "CorePointId": 2 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", - "Position": { - "x": -2.40397644, - "y": 1.65800035, - "z": 149.22 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "bdf5a017-bab7-4abe-be10-4a1879de7662", + "Position": { + "x": -175.044, + "y": 2.455, + "z": 466.141 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cdec5594-312a-47bc-a8ce-33abbfb7c4b3", - "Position": { - "x": -139.949, - "y": 2.545, - "z": 401.048 - }, - "Rotation": 180.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "beb2e36c-7cfe-4b66-af93-bc22bb6d1d49", + "Position": { + "x": 186.52002, + "y": -4.37999725, + "z": 30.82 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "ZoneCinema", - "CorePointId": 4 - }, - { - "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", - "Position": { - "x": -2.63198853, - "y": 1.65800035, - "z": 154.414 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "bfa6dec5-ec50-4b15-a823-78e95904fb5f", + "Position": { + "x": 75.69002, + "y": 0.5612259, + "z": 165.33 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cf94127f-36e9-4222-80fe-21168a27bee1", - "Position": { - "x": 244.576, - "y": -3.21, - "z": -41.784 - }, - "Rotation": 259.729858, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c0247ccc-9087-47fc-8260-2d23ac5bbb5b", + "Position": { + "x": 259.911, + "y": -5.94, + "z": 52.289 + }, + "Rotation": 319.729767, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cfa21779-49ad-49b5-ae7a-33bc0bd0f620", - "Position": { - "x": 98.71, - "y": 2.76, - "z": 450.63 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c0d22b84-22eb-4937-911b-bd020a0896eb", + "Position": { + "x": -166.03, + "y": 23.1993332, + "z": 410.85 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneSnipeCinema", + "CorePointId": 10 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cfc54492-4723-49f0-ae66-dc7b98b5be4a", - "Position": { - "x": 257.73, - "y": -1.227, - "z": 359.39 - }, - "Rotation": 180.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c1c352d8-20ea-4d4b-a349-de50185cd3b7", + "Position": { + "x": -191.95, + "y": 8.76, + "z": 423.31 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneCinema", + "CorePointId": 4 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "cfdbef81-7026-4035-af30-b22d33815b18", - "Position": { - "x": -153.903, - "y": 0.654, - "z": -64.471 - }, - "Rotation": 15.3466482, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "c1e6eaa9-74de-4da9-ac49-62faf320c4ab", + "Position": { + "x": 185.446, + "y": 3.529, + "z": 456.849 + }, + "Rotation": 134.938431, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cfe52d4d-3c94-4a43-a1f5-fd21852f5b8a", - "Position": { - "x": 126.700012, - "y": -1.41999817, - "z": -27.66 - }, - "Rotation": 64.55609, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "c2477145-0481-4d79-a1cb-5e13f6454478", + "Position": { + "x": -176.05, + "y": 1.218, + "z": 108.38 + }, + "Rotation": 94.72969, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCard1", - "CorePointId": 19 - }, - { - "Id": "cff247be-d051-48ed-9861-cc92b7e6ec09", - "Position": { - "x": -70.471, - "y": 1.464, - "z": 152.372009 - }, - "Rotation": 331.5, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "c2788494-4b1b-4462-a690-d338940786a1", + "Position": { + "x": -16.204, + "y": 2.633, + "z": 253.572 + }, + "Rotation": 111.727104, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 14 }, - "BotZoneName": "ZoneHotel_1", - "CorePointId": 6 - }, - { - "Id": "d0bcc73b-7a8c-49d4-b715-1841f401cd51", - "Position": { - "x": -59.728, - "y": 4.488, - "z": -149.696 - }, - "Rotation": 2.51925588, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "c2a3cb3b-a64f-485b-bf2b-c14fc5ec3938", + "Position": { + "x": 50.602, + "y": 4.465, + "z": -134.514 + }, + "Rotation": 273.305542, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d193cee0-4e4f-486a-a8cc-26834fd64b1a", - "Position": { - "x": -176.548, - "y": 2.455, - "z": 468.992 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c36b37b1-e654-45b8-a921-4864d1a325a4", + "Position": { + "x": 3.79800415, + "y": 1.77900016, + "z": 153.68399 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d4125c7a-6690-405b-ad08-ab66c3aa6d85", - "Position": { - "x": -42.942, - "y": 6.67, - "z": -115.674 - }, - "Rotation": 272.519379, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "c3efd361-ba77-4b03-b250-36a9cdf3d57c", + "Position": { + "x": 82.266, + "y": 2.791, + "z": 266.358 + }, + "Rotation": 322.1663, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d48f7e27-357b-48a5-b82c-0739be4b18d8", - "Position": { - "x": -254.2, - "y": 3.47, - "z": 149.62999 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "c420fa47-d274-451a-933d-81242771a03d", + "Position": { + "x": -171.35, + "y": 2.36, + "z": 285.08 + }, + "Rotation": 130.584167, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneFactory", + "CorePointId": 5 }, - "BotZoneName": "ZoneMvd", - "CorePointId": 23 - }, - { - "Id": "d4dcb5bb-9231-4404-b0ba-3544e0f5f240", - "Position": { - "x": -13.868, - "y": 2.763, - "z": -132.861 - }, - "Rotation": 92.51915, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c4f99431-6392-40c5-8737-1b5332afc0cd", + "Position": { + "x": 101.45, + "y": 4.99, + "z": 312.85 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d7acecde-c167-4c8c-b176-4bf56401de07", - "Position": { - "x": -2.675, - "y": -3.71, - "z": -4.22299957 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "c6345b94-6d0f-4a6b-a50b-ec1bbb22e402", + "Position": { + "x": 117.27002, + "y": 0.580001831, + "z": 188.66 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "d7b6bcfb-eaeb-42e0-a63f-69cf5c2f9d33", - "Position": { - "x": 53.22, - "y": 4.531, - "z": -132.52 - }, - "Rotation": 277.088135, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c731aad9-1cc6-45d5-90ac-2c4747b725b3", + "Position": { + "x": 258.721, + "y": -5.336998, + "z": 77.856 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d7f21299-b53b-48e4-984e-6aa9f81a5a88", - "Position": { - "x": -193.63, - "y": 3.137, - "z": 346.516 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "c736ae69-2631-4d51-b5ac-6a466c7c8dd8", + "Position": { + "x": 185.557, + "y": 1.574, + "z": 188.963 + }, + "Rotation": 24.4516544, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d86d8ead-2302-4817-858e-74fa428a244e", - "Position": { - "x": 216.25, - "y": 3.97299981, - "z": 174.019 - }, - "Rotation": 179.878723, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c7f3fa28-80e6-45f3-9ace-6ade4e937035", + "Position": { + "x": 192.330017, + "y": 1.06999969, + "z": 221.81 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d87780be-c25b-44b0-8340-27714ea6d4d0", - "Position": { - "x": -174.294, - "y": 1.218, - "z": 107.643 - }, - "Rotation": 94.72969, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c8a3c9e4-7998-41fa-b311-9e9feb35588c", + "Position": { + "x": -204.056, + "y": 3.367, + "z": 179.404 + }, + "Rotation": 4.729717, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 34 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "da0cccb8-0123-4e04-b765-f31434dc56a6", - "Position": { - "x": -195.947, - "y": 4.993, - "z": 389.306 - }, - "Rotation": 190.496658, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c8b04f3f-1f80-49a7-8530-3180b3ff71e9", + "Position": { + "x": 8.957977, + "y": 1.78800011, + "z": 157.02298 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "daaa4a02-1f51-460b-bdf8-29b3bd2c838b", - "Position": { - "x": 2.25097656, - "y": 1.82900012, - "z": 158.871979 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c9a40002-42d3-429f-bc00-cefbeae602d5", + "Position": { + "x": 202.85, + "y": 3.545, + "z": 402.46 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordia_1", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dae85c43-6039-4755-bfe0-c0a3de2a9f3b", - "Position": { - "x": 272.0, - "y": -1.16, - "z": 374.65 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "caa72953-e3fa-4dac-874c-ee5f4e14635d", + "Position": { + "x": 142.866, + "y": 3.622, + "z": 363.484 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 24 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "db356917-3655-4cb0-8e01-47eb593510e0", - "Position": { - "x": -149.896, - "y": 9.669, - "z": -27.344 - }, - "Rotation": 2.51923227, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "cceb9cac-d3d4-409e-a516-3604242f532c", + "Position": { + "x": -105.041, + "y": 2.32, + "z": 267.041016 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneFactory", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "db7bc1bb-113e-46a5-b900-a3381d24e458", - "Position": { - "x": -31.45, - "y": 0.6080003, - "z": -70.643 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "cd4981a9-7fe0-4553-9b41-26a4b3b6596b", + "Position": { + "x": -36.052, + "y": 5.22, + "z": -64.392 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "dbdc91e7-8a95-4cb6-abf0-9d5de4ee1da0", - "Position": { - "x": 226.23, - "y": 3.351, - "z": 410.5 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 43 - } + { + "Id": "cd6f8908-c870-4d10-a8e0-b213fe662301", + "Position": { + "x": 75.18001, + "y": -0.629997253, + "z": 92.28 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dd8b106c-8f50-4e33-bb3b-39388c0eab41", - "Position": { - "x": 43.754, - "y": 2.717, - "z": 416.533 - }, - "Rotation": 241.253387, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", + "Position": { + "x": -2.40397644, + "y": 1.65800035, + "z": 149.22 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dda96941-f096-45db-aab1-70014c1fd191", - "Position": { - "x": -96.1, - "y": 0.9370003, - "z": 87.0 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "cdec5594-312a-47bc-a8ce-33abbfb7c4b3", + "Position": { + "x": -139.949, + "y": 2.545, + "z": 401.048 + }, + "Rotation": 180.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneCinema", + "CorePointId": 4 }, - "BotZoneName": "ZoneHotel_2", - "CorePointId": 7 - }, - { - "Id": "ddca1267-6caa-4986-bd13-0ed29a81e6d2", - "Position": { - "x": 10.1600037, - "y": 1.78800011, - "z": 158.207977 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", + "Position": { + "x": -2.63198853, + "y": 1.65800035, + "z": 154.414 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "de0cd670-1399-475e-afca-036ff914ad5c", - "Position": { - "x": 268.66, - "y": -4.431, - "z": 88.95 - }, - "Rotation": 278.758, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "cf94127f-36e9-4222-80fe-21168a27bee1", + "Position": { + "x": 244.576, + "y": -3.21, + "z": -41.784 + }, + "Rotation": 259.729858, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "de658a62-65ad-4157-bd1d-282609a69eea", - "Position": { - "x": 39.309, - "y": 2.816, - "z": 220.356 - }, - "Rotation": 359.110931, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "cfa21779-49ad-49b5-ae7a-33bc0bd0f620", + "Position": { + "x": 98.71, + "y": 2.76, + "z": 450.63 + }, + "Rotation": 169.729568, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneColumn", - "CorePointId": 14 - }, - { - "Id": "df295b85-971d-4e9e-8239-018033690b5b", - "Position": { - "x": 274.105, - "y": -1.16, - "z": 376.208 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "cfc54492-4723-49f0-ae66-dc7b98b5be4a", + "Position": { + "x": 257.73, + "y": -1.227, + "z": 359.39 + }, + "Rotation": 180.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "df358bcd-eed4-444d-ac33-927a95ba26a5", - "Position": { - "x": 271.213, - "y": -1.227, - "z": 378.527 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "cfdbef81-7026-4035-af30-b22d33815b18", + "Position": { + "x": -153.903, + "y": 0.654, + "z": -64.471 + }, + "Rotation": 15.3466482, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "df949703-1471-4367-a395-3afa78fcf886", - "Position": { - "x": 0.79800415, - "y": 1.65800035, - "z": 155.874 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "cfe52d4d-3c94-4a43-a1f5-fd21852f5b8a", + "Position": { + "x": 126.700012, + "y": -1.41999817, + "z": -27.66 + }, + "Rotation": 64.55609, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneCard1", + "CorePointId": 19 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e168ad79-0ccc-4616-ad6a-7b26fc40b4a8", - "Position": { - "x": -141.018, - "y": 2.545, - "z": 400.981 - }, - "Rotation": 180.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "cff247be-d051-48ed-9861-cc92b7e6ec09", + "Position": { + "x": -70.471, + "y": 1.464, + "z": 152.372009 + }, + "Rotation": 331.5, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_1", + "CorePointId": 6 }, - "BotZoneName": "ZoneCinema", - "CorePointId": 4 - }, - { - "Id": "e1f4341e-2e35-421d-97ef-9e96f53287af", - "Position": { - "x": 203.155, - "y": -1.227, - "z": 405.033 - }, - "Rotation": 99.85764, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d0bcc73b-7a8c-49d4-b715-1841f401cd51", + "Position": { + "x": -59.728, + "y": 4.488, + "z": -149.696 + }, + "Rotation": 2.51925588, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "e25ed85f-57e7-484b-8c84-0787599de8e0", - "Position": { - "x": -103.881, - "y": 2.32, - "z": 267.981018 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "d193cee0-4e4f-486a-a8cc-26834fd64b1a", + "Position": { + "x": -176.548, + "y": 2.455, + "z": 468.992 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneFactory", - "CorePointId": 5 - }, - { - "Id": "e37f3a6f-de1c-4a0e-a19f-bd3c037ea3a2", - "Position": { - "x": 165.540009, - "y": -1.27999878, - "z": 106.77 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "d4125c7a-6690-405b-ad08-ab66c3aa6d85", + "Position": { + "x": -42.942, + "y": 6.67, + "z": -115.674 + }, + "Rotation": 272.519379, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "e3b68329-464d-4afd-b229-6e2dc607ce7f", - "Position": { - "x": 101.469, - "y": 2.676, - "z": 290.25 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "d48f7e27-357b-48a5-b82c-0739be4b18d8", + "Position": { + "x": -254.2, + "y": 3.47, + "z": 149.62999 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 + } + }, + "BotZoneName": "ZoneMvd", + "CorePointId": 23 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "e3b84d57-bdd7-4e38-ac5f-62dad937e572", - "Position": { - "x": -193.902, - "y": 4.993, - "z": 389.207 - }, - "Rotation": 190.496658, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d4dcb5bb-9231-4404-b0ba-3544e0f5f240", + "Position": { + "x": -13.868, + "y": 2.763, + "z": -132.861 + }, + "Rotation": 92.51915, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e3bc0dbe-e558-459d-93af-b30a39eb66d6", - "Position": { - "x": 75.3500061, - "y": -0.6969986, - "z": 90.2299957 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "d7acecde-c167-4c8c-b176-4bf56401de07", + "Position": { + "x": -2.675, + "y": -3.71, + "z": -4.22299957 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "ZoneSW01", - "CorePointId": 1 - }, - { - "Id": "e401a964-689a-464e-8b66-c485933f9c0d", - "Position": { - "x": 226.23, - "y": 3.351, - "z": 410.5 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d7b6bcfb-eaeb-42e0-a63f-69cf5c2f9d33", + "Position": { + "x": 53.22, + "y": 4.531, + "z": -132.52 + }, + "Rotation": 277.088135, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e5c87107-42a5-4019-a437-ef8f6d703122", - "Position": { - "x": 273.202, - "y": 4.781, - "z": 516.697 - }, - "Rotation": 236.6915, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d7f21299-b53b-48e4-984e-6aa9f81a5a88", + "Position": { + "x": -193.63, + "y": 3.137, + "z": 346.516 + }, + "Rotation": 16.7069, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", - "Position": { - "x": 14.447998, - "y": 2.568, - "z": 455.404022 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "d86d8ead-2302-4817-858e-74fa428a244e", + "Position": { + "x": 216.25, + "y": 3.97299981, + "z": 174.019 + }, + "Rotation": 179.878723, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e5e1d18b-da5b-4d2d-a445-54bd9117eee7", - "Position": { - "x": -203.697, - "y": 3.367, - "z": 182.271 - }, - "Rotation": 4.729717, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 34 - } + { + "Id": "d87780be-c25b-44b0-8340-27714ea6d4d0", + "Position": { + "x": -174.294, + "y": 1.218, + "z": 107.643 + }, + "Rotation": 94.72969, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e6509e2d-3b03-4079-8904-c499dc2efba4", - "Position": { - "x": 274.738, - "y": 4.782, - "z": 517.334 - }, - "Rotation": 236.6915, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "da0cccb8-0123-4e04-b765-f31434dc56a6", + "Position": { + "x": -195.947, + "y": 4.993, + "z": 389.306 + }, + "Rotation": 190.496658, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e751b2f9-4919-40d1-8877-b9c4bcbf5435", - "Position": { - "x": 275.417, - "y": 4.782, - "z": 516.126 - }, - "Rotation": 236.6915, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "daaa4a02-1f51-460b-bdf8-29b3bd2c838b", + "Position": { + "x": 2.25097656, + "y": 1.82900012, + "z": 158.871979 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e76e50a4-3455-4ccb-b48e-5b8d65b438a6", - "Position": { - "x": 143.030014, - "y": -1.41999817, - "z": -36.03 - }, - "Rotation": 329.075928, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "dae85c43-6039-4755-bfe0-c0a3de2a9f3b", + "Position": { + "x": 272.0, + "y": -1.16, + "z": 374.65 + }, + "Rotation": 334.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneCard1", - "CorePointId": 19 - }, - { - "Id": "e7bda50d-1f02-4340-b070-1a1224f9a29c", - "Position": { - "x": 65.73, - "y": 28.512, - "z": -16.0600014 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "db356917-3655-4cb0-8e01-47eb593510e0", + "Position": { + "x": -149.896, + "y": 9.669, + "z": -27.344 + }, + "Rotation": 2.51923227, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSnipeCard", - "CorePointId": 16 - }, - { - "Id": "e85c5ac2-720b-4583-a635-3694f4d3fa48", - "Position": { - "x": 273.069, - "y": -1.227, - "z": 375.708 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "db7bc1bb-113e-46a5-b900-a3381d24e458", + "Position": { + "x": -31.45, + "y": 0.6080003, + "z": -70.643 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "e8b8754b-c2a7-4563-be0f-74bc4b34cdee", - "Position": { - "x": 277.164, - "y": -4.431, - "z": 87.967 - }, - "Rotation": 266.614441, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "dbdc91e7-8a95-4cb6-abf0-9d5de4ee1da0", + "Position": { + "x": 226.23, + "y": 3.351, + "z": 410.5 + }, + "Rotation": 169.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 43 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e8fe4d28-96eb-465b-ad08-da508a650316", - "Position": { - "x": -50.032, - "y": 5.22, - "z": -62.1 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "dd8b106c-8f50-4e33-bb3b-39388c0eab41", + "Position": { + "x": 43.754, + "y": 2.717, + "z": 416.533 + }, + "Rotation": 241.253387, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "ea38f7d1-c46d-4d3d-9c87-46f96a244456", - "Position": { - "x": 216.150009, - "y": -4.46999741, - "z": 30.71 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "dda96941-f096-45db-aab1-70014c1fd191", + "Position": { + "x": -96.1, + "y": 0.9370003, + "z": 87.0 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneHotel_2", + "CorePointId": 7 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 19 - }, - { - "Id": "ea574eed-cdcd-4448-801b-a8398cc6b8df", - "Position": { - "x": 154.142, - "y": 3.624, - "z": 428.129 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "ddca1267-6caa-4986-bd13-0ed29a81e6d2", + "Position": { + "x": 10.1600037, + "y": 1.78800011, + "z": 158.207977 + }, + "Rotation": 335.685852, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "eb7f978a-0ef0-4d97-9b95-a4e7d214b321", - "Position": { - "x": 164.554016, - "y": 0.544002533, - "z": 138.12 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "de0cd670-1399-475e-afca-036ff914ad5c", + "Position": { + "x": 268.66, + "y": -4.431, + "z": 88.95 + }, + "Rotation": 278.758, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "eb9c6017-661e-409c-9bb6-ec997683109d", - "Position": { - "x": -173.311, - "y": 2.455, - "z": 467.431 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E6_1", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "de658a62-65ad-4157-bd1d-282609a69eea", + "Position": { + "x": 39.309, + "y": 2.816, + "z": 220.356 + }, + "Rotation": 359.110931, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 14 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ecafbe6f-9432-4728-b829-4a2f6530364d", - "Position": { - "x": 272.043, - "y": 4.773, - "z": 516.173 - }, - "Rotation": 236.6915, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E2_3", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "df295b85-971d-4e9e-8239-018033690b5b", + "Position": { + "x": 274.105, + "y": -1.16, + "z": 376.208 + }, + "Rotation": 334.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ecbbd00f-bea1-4402-a9af-648cb8f1a36e", - "Position": { - "x": 76.327, - "y": 2.838, - "z": 288.368 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "df358bcd-eed4-444d-ac33-927a95ba26a5", + "Position": { + "x": 271.213, + "y": -1.227, + "z": 378.527 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 3 - }, - { - "Id": "ecf814ba-b286-47e9-ad9d-fa5d2774eff7", - "Position": { - "x": -159.77, - "y": 0.74, - "z": -21.0299988 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "df949703-1471-4367-a395-3afa78fcf886", + "Position": { + "x": 0.79800415, + "y": 1.65800035, + "z": 155.874 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneStilo", - "CorePointId": 22 - }, - { - "Id": "eda9eef3-2654-4281-b8d5-5a24679c63dc", - "Position": { - "x": -109.617, - "y": 1.464, - "z": 73.128 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "e168ad79-0ccc-4616-ad6a-7b26fc40b4a8", + "Position": { + "x": -141.018, + "y": 2.545, + "z": 400.981 + }, + "Rotation": 180.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneCinema", + "CorePointId": 4 }, - "BotZoneName": "ZoneHotel_2", - "CorePointId": 7 - }, - { - "Id": "edab5daf-ca3c-450d-85d1-2a89a2840fe2", - "Position": { - "x": 57.3770142, - "y": 0.270000458, - "z": -55.4929962 - }, - "Rotation": 309.888733, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } + { + "Id": "e1f4341e-2e35-421d-97ef-9e96f53287af", + "Position": { + "x": 203.155, + "y": -1.227, + "z": 405.033 + }, + "Rotation": 99.85764, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "BotZoneName": "ZoneCard1", - "CorePointId": 6 - }, - { - "Id": "edd5229f-7229-4ef0-9093-daaac227f875", - "Position": { - "x": 272.319, - "y": -4.493, - "z": 87.688 - }, - "Rotation": 272.633484, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "e25ed85f-57e7-484b-8c84-0787599de8e0", + "Position": { + "x": -103.881, + "y": 2.32, + "z": 267.981018 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneFactory", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ef480bb8-3011-4504-ba7b-6e60f9e8f4f1", - "Position": { - "x": 58.61, - "y": 11.9036674, - "z": 309.91 - }, - "Rotation": 90.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } + { + "Id": "e37f3a6f-de1c-4a0e-a19f-bd3c037ea3a2", + "Position": { + "x": 165.540009, + "y": -1.27999878, + "z": 106.77 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "BotZoneName": "ZoneSnipeCarShowroom", - "CorePointId": 11 - }, - { - "Id": "ef5737c8-b0f7-4db9-a986-4206aea8fbb1", - "Position": { - "x": -42.919, - "y": 6.677, - "z": -117.171 - }, - "Rotation": 272.519379, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } + { + "Id": "e3b68329-464d-4afd-b229-6e2dc607ce7f", + "Position": { + "x": 101.469, + "y": 2.676, + "z": 290.25 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", - "Position": { - "x": -2.44697571, - "y": 1.65800035, - "z": 151.275 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "e3b84d57-bdd7-4e38-ac5f-62dad937e572", + "Position": { + "x": -193.902, + "y": 4.993, + "z": 389.207 + }, + "Rotation": 190.496658, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f2c496a8-ecb7-41d4-b04c-60a2577e430b", - "Position": { - "x": 210.91, - "y": -1.22, - "z": 350.161 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "e3bc0dbe-e558-459d-93af-b30a39eb66d6", + "Position": { + "x": 75.3500061, + "y": -0.6969986, + "z": 90.2299957 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 + } + }, + "BotZoneName": "ZoneSW01", + "CorePointId": 1 }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "f2e231e6-a45f-4f2a-a220-eb2fb3acd888", - "Position": { - "x": 91.666, - "y": 2.579, - "z": 450.023 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "e401a964-689a-464e-8b66-c485933f9c0d", + "Position": { + "x": 226.23, + "y": 3.351, + "z": 410.5 + }, + "Rotation": 169.7296, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f2f4ba88-575b-41f9-b1e4-7f611a152dd9", - "Position": { - "x": -10.48, - "y": 2.763, - "z": -137.96 - }, - "Rotation": 92.51915, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "e5c87107-42a5-4019-a437-ef8f6d703122", + "Position": { + "x": 273.202, + "y": 4.781, + "z": 516.697 + }, + "Rotation": 236.6915, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f34df586-086d-47f1-9e41-186199b6cbdd", - "Position": { - "x": 43.5800171, - "y": 0.270000458, - "z": -43.65 - }, - "Rotation": 309.888733, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "BotZoneName": "ZoneCard1", - "CorePointId": 7 - }, - { - "Id": "f37bc5a2-f959-4fed-97fb-703e942daa3a", - "Position": { - "x": 256.983, - "y": -5.336998, - "z": 77.123 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "f3ab0915-8eda-4702-bfd9-9fb761da24f2", - "Position": { - "x": -101.15, - "y": 2.32, - "z": 269.47 - }, - "Rotation": 353.8347, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "BotZoneName": "ZoneFactory", - "CorePointId": 5 - }, - { - "Id": "f3b6a67b-2630-487a-aec0-56062d52e87e", - "Position": { - "x": 186.308, - "y": 1.65, - "z": 186.469 - }, - "Rotation": 24.4516544, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f5c74f01-7de2-4a64-91f5-1781066dca6a", - "Position": { - "x": -32.96, - "y": 0.6080003, - "z": -69.863 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "BotZoneName": "ZoneStilo", - "CorePointId": 15 - }, - { - "Id": "f61dc8f4-8ab8-4a1b-9771-8c4d26568769", - "Position": { - "x": 9.347992, - "y": 1.77900016, - "z": 153.493988 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f6b9cd44-6c11-4c17-ac58-897b2af338ac", - "Position": { - "x": 155.154, - "y": 3.624, - "z": 430.339 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f6cc8fe9-efc2-4b01-bd68-87565e068436", - "Position": { - "x": -29.893, - "y": 2.615, - "z": 465.548 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f8a2b471-d0d2-4582-a20a-229dbd9fb883", - "Position": { - "x": 207.360016, - "y": 1.170002, - "z": 190.41 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "f963f1e2-d0d6-453d-b6f6-e0d6db9dfe6b", - "Position": { - "x": 259.267, - "y": -1.227, - "z": 358.498 - }, - "Rotation": 180.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "ZoneConcordiaParking", - "CorePointId": 9 - }, - { - "Id": "f9885491-30ff-42d2-816b-a9b01e0728b3", - "Position": { - "x": 187.990021, - "y": 1.78000259, - "z": 191.28 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "fb27922a-bde1-4d4e-8d54-2bebcc0985d4", - "Position": { - "x": 95.66, - "y": 2.65, - "z": 448.81 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E1_2", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fbc5976c-a95e-4fdf-8f0e-4e003bb9553b", - "Position": { - "x": 38.27, - "y": 2.159, - "z": 196.95 - }, - "Rotation": 301.882233, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "ZoneColumn", - "CorePointId": 14 - }, - { - "Id": "fbd80e0a-5159-44cd-98c4-d38df11908aa", - "Position": { - "x": 164.554016, - "y": 0.544002533, - "z": 138.12 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "BotZoneName": "ZoneSW00", - "CorePointId": 17 - }, - { - "Id": "fc8c0d11-fecf-4e65-9b95-ec8afe78073d", - "Position": { - "x": 244.69, - "y": -3.21, - "z": -35.49 - }, - "Rotation": 259.729858, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fca34cfa-fb20-4e4a-a530-eb53bbc0da2e", - "Position": { - "x": -155.72, - "y": 0.13, - "z": -58.1299973 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "All" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 40.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "BotZoneName": "ZoneClimova", - "CorePointId": 21 - }, - { - "Id": "fd538d06-6c39-4b38-8386-c45d0ed446b1", - "Position": { - "x": -46.121, - "y": 6.062, - "z": -114.006 - }, - "Rotation": 272.519379, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E4_5", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fd6734ed-6ba8-423b-8a7b-2943f31c6527", - "Position": { - "x": 3.097992, - "y": 1.77900016, - "z": 155.593964 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fe07dac4-1e9e-4ec8-9a4a-aef4c2fbe6aa", - "Position": { - "x": -242.591, - "y": 3.685, - "z": 242.089 - }, - "Rotation": 205.0, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E5_6", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fe111b2d-c512-47e8-b233-8b34d46d4595", - "Position": { - "x": 260.742, - "y": -5.94, - "z": 48.666 - }, - "Rotation": 319.729767, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fe3633fa-5a3d-46f1-9c56-8f30c2b61cc1", - "Position": { - "x": 170.078, - "y": -1.451, - "z": -132.837 - }, - "Rotation": 268.9683, - "Sides": [ - "All" - ], - "Categories": [ - "Player" - ], - "Infiltration": "E3_4", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - } - ], - "AirdropParameters": [ - { - "PlaneAirdropStartMin": 300, - "PlaneAirdropStartMax": 900, - "PlaneAirdropEnd": 2700, - "PlaneAirdropChance": 0.125, - "PlaneAirdropMax": 2, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropCooldownMax": 800, - "AirdropPointDeactivateDistance": 100, - "MinPlayersCountToSpawnAirdrop": 6, - "UnsuccessfulTryPenalty": 400 - } - ], - "BossLocationSpawn": [ - { - "BossName": "bossKolontay", - "BossChance": 25.0, - "BossZone": "ZoneClimova,ZoneMvd", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "followerKolontaySecurity", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": [ - { - "BossEscortType": "followerKolontayAssault", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "2" - }, - { - "BossEscortType": "followerKolontaySecurity", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "2" - }, - { - "BossEscortType": "followerGluharScout", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "0" - } - ], - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "BossName": "bossBoar", - "BossChance": 25.0, - "BossZone": "ZoneCarShowroom", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "followerBoar", - "BossEscortDifficult": "normal", - "BossEscortAmount": "6", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": [ - { - "BossEscortType": "followerBoar", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "4" - }, - { - "BossEscortType": "followerBoarClose1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "1" + { + "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", + "Position": { + "x": 14.447998, + "y": 2.568, + "z": 455.404022 + }, + "Rotation": 177.4608, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } }, - { - "BossEscortType": "followerBoarClose2", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "1" - } - ], - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "BossName": "bossBoarSniper", - "BossChance": 100.0, - "BossZone": "ZoneSnipeCarShowroom", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "bossBoarSniper", - "BossEscortDifficult": "normal", - "BossEscortAmount": "1,2", - "Time": 99999.0, - "TriggerId": "BossBoarBorn", - "TriggerName": "botEvent", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "TriggerId": "", - "TriggerName": "", - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "Delay": 0.0, - "SpawnMode": [ - "pve" - ] - } - ], - "MatchMakerMinPlayersByWaitTime": [ - { - "time": 60, - "minPlayers": 12 - }, - { - "time": 70, - "minPlayers": 10 - }, - { - "time": 120, - "minPlayers": 8 - }, - { - "time": 180, - "minPlayers": 7 - }, - { - "time": 250, - "minPlayers": 5 - }, - { - "time": 330, - "minPlayers": 3 - }, - { - "time": 420, - "minPlayers": 1 - } - ], - "transits": [ - { - "id": 3, - "active": false, - "name": "STR_TRANSIT_3", - "location": "Sandbox_high", - "description": "STR_TRANSIT_3_DESC", - "activateAfterSec": 420, - "target": "65b8d6f5cdde2479cb2a3125", - "time": 30, - "conditions": "STR_TRANSIT_3_COND" - }, - { - "id": 4, - "active": true, - "name": "STR_TRANSIT_4", - "location": "Interchange", - "description": "STR_TRANSIT_4_DESC", - "activateAfterSec": 420, - "target": "5714dbc024597771384a510d", - "time": 30, - "conditions": "STR_TRANSIT_4_COND" - }, - { - "id": 5, - "active": true, - "name": "STR_TRANSIT_5", - "location": "laboratory", - "description": "STR_TRANSIT_5_DESC", - "activateAfterSec": 420, - "target": "5b0fc42d86f7744a585f9105", - "time": 30, - "conditions": "STR_TRANSIT_5_COND" - } - ], - "Id": "TarkovStreets", - "_Id": "5714dc692459777137212e12", - "Loot": [ - { - "Id": "container_City_SE_04_courtyard_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b91058dd", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91058dd", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e5e1d18b-da5b-4d2d-a445-54bd9117eee7", + "Position": { + "x": -203.697, + "y": 3.367, + "z": 182.271 + }, + "Rotation": 4.729717, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 34 } }, - { - "_id": "66c90dbfc7d43f68b91058df", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c90dbfc7d43f68b91058dd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_04_courtyard_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b91058e1", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91058e1", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e6509e2d-3b03-4079-8904-c499dc2efba4", + "Position": { + "x": 274.738, + "y": 4.782, + "z": 517.334 + }, + "Rotation": 236.6915, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b91058e3", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66c90dbfc7d43f68b91058e1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 39 - } - } - ] - }, - { - "Id": "container_City_SE_04_courtyard_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b91058e5", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91058e5", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e751b2f9-4919-40d1-8877-b9c4bcbf5435", + "Position": { + "x": 275.417, + "y": 4.782, + "z": 516.126 + }, + "Rotation": 236.6915, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b91058e7", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c90dbfc7d43f68b91058e5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 32 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e76e50a4-3455-4ccb-b48e-5b8d65b438a6", + "Position": { + "x": 143.030014, + "y": -1.41999817, + "z": -36.03 + }, + "Rotation": 329.075928, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 } }, - { - "_id": "66c90dbfc7d43f68b91058e9", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66c90dbfc7d43f68b91058e5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneCard1", + "CorePointId": 19 + }, + { + "Id": "e7bda50d-1f02-4340-b070-1a1224f9a29c", + "Position": { + "x": 65.73, + "y": 28.512, + "z": -16.0600014 + }, + "Rotation": 11.7017088, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 } }, - { - "_id": "66c90dbfc7d43f68b91058eb", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66c90dbfc7d43f68b91058e5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00104", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSnipeCard", + "CorePointId": 16 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91058ed", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91058ed", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e85c5ac2-720b-4583-a635-3694f4d3fa48", + "Position": { + "x": 273.069, + "y": -1.227, + "z": 375.708 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b91058ef", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91058ed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 799 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b91058fd", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91058fd", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e8b8754b-c2a7-4563-be0f-74bc4b34cdee", + "Position": { + "x": 277.164, + "y": -4.431, + "z": 87.967 + }, + "Rotation": 266.614441, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b91058ff", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66c90dbfc7d43f68b91058fd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 3 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00074", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105901", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105901", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e8fe4d28-96eb-465b-ad08-da508a650316", + "Position": { + "x": -50.032, + "y": 5.22, + "z": -62.1 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 } }, - { - "_id": "66c90dbfc7d43f68b9105903", - "_tpl": "5c5db6552e2216001026119d", - "parentId": "66c90dbfc7d43f68b9105901", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneStilo", + "CorePointId": 15 + }, + { + "Id": "ea38f7d1-c46d-4d3d-9c87-46f96a244456", + "Position": { + "x": 216.150009, + "y": -4.46999741, + "z": 30.71 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 } }, - { - "_id": "66c90dbfc7d43f68b9105905", - "_tpl": "59e3596386f774176c10a2a2", - "parentId": "66c90dbfc7d43f68b9105901", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneSW00", + "CorePointId": 19 + }, + { + "Id": "ea574eed-cdcd-4448-801b-a8398cc6b8df", + "Position": { + "x": 154.142, + "y": 3.624, + "z": 428.129 + }, + "Rotation": 169.729568, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105907", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66c90dbfc7d43f68b9105901", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00043", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105909", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105909", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "eb7f978a-0ef0-4d97-9b95-a4e7d214b321", + "Position": { + "x": 164.554016, + "y": 0.544002533, + "z": 138.12 + }, + "Rotation": 73.40837, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 } }, - { - "_id": "66c90dbfc7d43f68b910590a", - "_tpl": "579204f224597773d619e051", - "parentId": "66c90dbfc7d43f68b9105909", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } + "BotZoneName": "ZoneSW00", + "CorePointId": 17 + }, + { + "Id": "eb9c6017-661e-409c-9bb6-ec997683109d", + "Position": { + "x": -173.311, + "y": 2.455, + "z": 467.431 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E6_1", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b910590b", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66c90dbfc7d43f68b910590a", - "slotId": "mod_magazine" + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ecafbe6f-9432-4728-b829-4a2f6530364d", + "Position": { + "x": 272.043, + "y": 4.773, + "z": 516.173 + }, + "Rotation": 236.6915, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E2_3", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } }, - { - "_id": "66c90dbfc7d43f68b910590f", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66c90dbfc7d43f68b910590b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ecbbd00f-bea1-4402-a9af-648cb8f1a36e", + "Position": { + "x": 76.327, + "y": 2.838, + "z": 288.368 + }, + "Rotation": 264.516571, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 } }, - { - "_id": "66c90dbfc7d43f68b910590c", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66c90dbfc7d43f68b910590a", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dbfc7d43f68b910590d", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66c90dbfc7d43f68b910590c", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dbfc7d43f68b910590e", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66c90dbfc7d43f68b910590a", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66c90dbfc7d43f68b9105911", - "_tpl": "590c311186f77424d1667482", - "parentId": "66c90dbfc7d43f68b9105909", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 3 + }, + { + "Id": "ecf814ba-b286-47e9-ad9d-fa5d2774eff7", + "Position": { + "x": -159.77, + "y": 0.74, + "z": -21.0299988 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 } }, - { - "_id": "66c90dbfc7d43f68b9105913", - "_tpl": "5c925fa22e221601da359b7b", - "parentId": "66c90dbfc7d43f68b9105909", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 15 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneStilo", + "CorePointId": 22 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105915", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105915", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 + { + "Id": "eda9eef3-2654-4281-b8d5-5a24679c63dc", + "Position": { + "x": -109.617, + "y": 1.464, + "z": 73.128 + }, + "Rotation": 162.1, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66c90dbfc7d43f68b9105917", - "_tpl": "5d1b371186f774253763a656", - "parentId": "66c90dbfc7d43f68b9105915", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneHotel_2", + "CorePointId": 7 + }, + { + "Id": "edab5daf-ca3c-450d-85d1-2a89a2840fe2", + "Position": { + "x": 57.3770142, + "y": 0.270000458, + "z": -55.4929962 + }, + "Rotation": 309.888733, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 } }, - { - "_id": "66c90dbfc7d43f68b9105919", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c90dbfc7d43f68b9105915", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneCard1", + "CorePointId": 6 + }, + { + "Id": "edd5229f-7229-4ef0-9093-daaac227f875", + "Position": { + "x": 272.319, + "y": -4.493, + "z": 87.688 + }, + "Rotation": 272.633484, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b910591b", - "_tpl": "60391a8b3364dc22b04d0ce5", - "parentId": "66c90dbfc7d43f68b9105915", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ef480bb8-3011-4504-ba7b-6e60f9e8f4f1", + "Position": { + "x": 58.61, + "y": 11.9036674, + "z": 309.91 + }, + "Rotation": 90.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 90 } }, - { - "_id": "66c90dbfc7d43f68b910591d", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dbfc7d43f68b9105915", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSnipeCarShowroom", + "CorePointId": 11 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b910591f", - "Items": [ - { - "_id": "66c90dbfc7d43f68b910591f", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ef5737c8-b0f7-4db9-a986-4206aea8fbb1", + "Position": { + "x": -42.919, + "y": 6.677, + "z": -117.171 + }, + "Rotation": 272.519379, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66c90dbfc7d43f68b9105921", - "_tpl": "5448fee04bdc2dbc018b4567", - "parentId": "66c90dbfc7d43f68b910591f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", + "Position": { + "x": -2.44697571, + "y": 1.65800035, + "z": 151.275 + }, + "Rotation": 3.67021, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105923", - "_tpl": "64be7110bf597ba84a0a41ea", - "parentId": "66c90dbfc7d43f68b910591f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f2c496a8-ecb7-41d4-b04c-60a2577e430b", + "Position": { + "x": 210.91, + "y": -1.22, + "z": 350.161 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105925", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66c90dbfc7d43f68b910591f", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 57 + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 + }, + { + "Id": "f2e231e6-a45f-4f2a-a220-eb2fb3acd888", + "Position": { + "x": 91.666, + "y": 2.579, + "z": 450.023 + }, + "Rotation": 169.729568, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105927", - "_tpl": "6601546f86889319850bd566", - "parentId": "66c90dbfc7d43f68b910591f", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 31 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f2f4ba88-575b-41f9-b1e4-7f611a152dd9", + "Position": { + "x": -10.48, + "y": 2.763, + "z": -137.96 + }, + "Rotation": 92.51915, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105929", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dbfc7d43f68b910591f", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b910592b", - "Items": [ - { - "_id": "66c90dbfc7d43f68b910592b", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f34df586-086d-47f1-9e41-186199b6cbdd", + "Position": { + "x": 43.5800171, + "y": 0.270000458, + "z": -43.65 + }, + "Rotation": 309.888733, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 } }, - { - "_id": "66c90dbfc7d43f68b910592d", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c90dbfc7d43f68b910592b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneCard1", + "CorePointId": 7 + }, + { + "Id": "f37bc5a2-f959-4fed-97fb-703e942daa3a", + "Position": { + "x": 256.983, + "y": -5.336998, + "z": 77.123 + }, + "Rotation": 278.614166, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 } }, - { - "_id": "66c90dbfc7d43f68b910592f", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c90dbfc7d43f68b910592b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00029", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105931", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105931", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f3ab0915-8eda-4702-bfd9-9fb761da24f2", + "Position": { + "x": -101.15, + "y": 2.32, + "z": 269.47 + }, + "Rotation": 353.8347, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66c90dbfc7d43f68b9105932", - "_tpl": "61bc85697113f767765c7fe7", - "parentId": "66c90dbfc7d43f68b9105931", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "BotZoneName": "ZoneFactory", + "CorePointId": 5 + }, + { + "Id": "f3b6a67b-2630-487a-aec0-56062d52e87e", + "Position": { + "x": 186.308, + "y": 1.65, + "z": 186.469 + }, + "Rotation": 24.4516544, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105933", - "_tpl": "6572fc809a866b80ab07eb59", - "parentId": "66c90dbfc7d43f68b9105932", - "slotId": "Soft_armor_front" - }, - { - "_id": "66c90dbfc7d43f68b9105934", - "_tpl": "6572fc8c9a866b80ab07eb5d", - "parentId": "66c90dbfc7d43f68b9105932", - "slotId": "Soft_armor_back" - }, - { - "_id": "66c90dbfc7d43f68b9105935", - "_tpl": "6572fc989a866b80ab07eb61", - "parentId": "66c90dbfc7d43f68b9105932", - "slotId": "Soft_armor_left" - }, - { - "_id": "66c90dbfc7d43f68b9105936", - "_tpl": "6572fca39a866b80ab07eb65", - "parentId": "66c90dbfc7d43f68b9105932", - "slotId": "soft_armor_right" - }, - { - "_id": "66c90dbfc7d43f68b9105937", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "66c90dbfc7d43f68b9105932", - "slotId": "Front_plate" - }, - { - "_id": "66c90dbfc7d43f68b9105938", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "66c90dbfc7d43f68b9105932", - "slotId": "Back_plate" - }, - { - "_id": "66c90dbfc7d43f68b910593a", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c90dbfc7d43f68b9105931", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 16 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f5c74f01-7de2-4a64-91f5-1781066dca6a", + "Position": { + "x": -32.96, + "y": 0.6080003, + "z": -69.863 + }, + "Rotation": 8.731616, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 } }, - { - "_id": "66c90dbfc7d43f68b910593c", - "_tpl": "573474f924597738002c6174", - "parentId": "66c90dbfc7d43f68b9105931", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00090", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneStilo", + "CorePointId": 15 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b910593e", - "Items": [ - { - "_id": "66c90dbfc7d43f68b910593e", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f61dc8f4-8ab8-4a1b-9771-8c4d26568769", + "Position": { + "x": 9.347992, + "y": 1.77900016, + "z": 153.493988 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105940", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b910593e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1130 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f6b9cd44-6c11-4c17-ac58-897b2af338ac", + "Position": { + "x": 155.154, + "y": 3.624, + "z": 430.339 + }, + "Rotation": 169.729568, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105942", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b910593e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 992 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00095", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105944", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105944", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f6cc8fe9-efc2-4b01-bd68-87565e068436", + "Position": { + "x": -29.893, + "y": 2.615, + "z": 465.548 + }, + "Rotation": 181.253433, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66c90dbfc7d43f68b9105946", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105944", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 766 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f8a2b471-d0d2-4582-a20a-229dbd9fb883", + "Position": { + "x": 207.360016, + "y": 1.170002, + "z": 190.41 + }, + "Rotation": 101.827583, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 } }, - { - "_id": "66c90dbfc7d43f68b9105948", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105944", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 904 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneSW00", + "CorePointId": 17 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "f963f1e2-d0d6-453d-b6f6-e0d6db9dfe6b", + "Position": { + "x": 259.267, + "y": -1.227, + "z": 358.498 + }, + "Rotation": 180.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneConcordiaParking", + "CorePointId": 9 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b910594a", - "Items": [ - { - "_id": "66c90dbfc7d43f68b910594a", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f9885491-30ff-42d2-816b-a9b01e0728b3", + "Position": { + "x": 187.990021, + "y": 1.78000259, + "z": 191.28 + }, + "Rotation": 101.827583, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 } }, - { - "_id": "66c90dbfc7d43f68b910594c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b910594a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 752 + "BotZoneName": "ZoneSW00", + "CorePointId": 17 + }, + { + "Id": "fb27922a-bde1-4d4e-8d54-2bebcc0985d4", + "Position": { + "x": 95.66, + "y": 2.65, + "z": 448.81 + }, + "Rotation": 169.729568, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E1_2", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "Id": "fbc5976c-a95e-4fdf-8f0e-4e003bb9553b", + "Position": { + "x": 38.27, + "y": 2.159, + "z": 196.95 + }, + "Rotation": 301.882233, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneColumn", + "CorePointId": 14 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b910594e", - "Items": [ - { - "_id": "66c90dbfc7d43f68b910594e", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fbd80e0a-5159-44cd-98c4-d38df11908aa", + "Position": { + "x": 164.554016, + "y": 0.544002533, + "z": 138.12 + }, + "Rotation": 73.40837, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 55 } }, - { - "_id": "66c90dbfc7d43f68b9105950", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66c90dbfc7d43f68b910594e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneSW00", + "CorePointId": 17 + }, + { + "Id": "fc8c0d11-fecf-4e65-9b95-ec8afe78073d", + "Position": { + "x": 244.69, + "y": -3.21, + "z": -35.49 + }, + "Rotation": 259.729858, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105952", - "_tpl": "5ca20abf86f77418567a43f2", - "parentId": "66c90dbfc7d43f68b910594e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "fca34cfa-fb20-4e4a-a530-eb53bbc0da2e", + "Position": { + "x": -155.72, + "y": 0.13, + "z": -58.1299973 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "All" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 40.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 } }, - { - "_id": "66c90dbfc7d43f68b9105954", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dbfc7d43f68b910594e", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneClimova", + "CorePointId": 21 + }, + { + "Id": "fd538d06-6c39-4b38-8386-c45d0ed446b1", + "Position": { + "x": -46.121, + "y": 6.062, + "z": -114.006 + }, + "Rotation": 272.519379, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E4_5", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 30 } }, - { - "_id": "66c90dbfc7d43f68b9105955", - "_tpl": "5f36a0e5fbf956000b716b65", - "parentId": "66c90dbfc7d43f68b910594e", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 1 - }, - "upd": { - "FireMode": { - "FireMode": "single" - } + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "fd6734ed-6ba8-423b-8a7b-2943f31c6527", + "Position": { + "x": 3.097992, + "y": 1.77900016, + "z": 155.593964 + }, + "Rotation": 57.23363, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105956", - "_tpl": "5f3e7801153b8571434a924c", - "parentId": "66c90dbfc7d43f68b9105955", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dbfc7d43f68b9105957", - "_tpl": "5f3e778efcd9b651187d7201", - "parentId": "66c90dbfc7d43f68b9105955", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c90dbfc7d43f68b9105958", - "_tpl": "5f3e7823ddc4f03b010e2045", - "parentId": "66c90dbfc7d43f68b9105955", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dbfc7d43f68b9105959", - "_tpl": "5f3e7897ddc4f03b010e204a", - "parentId": "66c90dbfc7d43f68b9105958", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dbfc7d43f68b910595a", - "_tpl": "5f3e78a7fbf956000b716b8e", - "parentId": "66c90dbfc7d43f68b9105958", - "slotId": "mod_sight_front" - }, - { - "_id": "66c90dbfc7d43f68b910595b", - "_tpl": "5f3e77b26cda304dcc634057", - "parentId": "66c90dbfc7d43f68b9105955", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dbfc7d43f68b910595f", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66c90dbfc7d43f68b910595b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 - } - }, - { - "_id": "66c90dbfc7d43f68b910595c", - "_tpl": "5f3e772a670e2a7b01739a52", - "parentId": "66c90dbfc7d43f68b9105955", - "slotId": "mod_trigger" - }, - { - "_id": "66c90dbfc7d43f68b910595d", - "_tpl": "5f3e76d86cda304dcc634054", - "parentId": "66c90dbfc7d43f68b9105955", - "slotId": "mod_hammer" - }, - { - "_id": "66c90dbfc7d43f68b910595e", - "_tpl": "5f3e777688ca2d00ad199d25", - "parentId": "66c90dbfc7d43f68b9105955", - "slotId": "mod_catch" - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00078", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105961", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105961", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fe07dac4-1e9e-4ec8-9a4a-aef4c2fbe6aa", + "Position": { + "x": -242.591, + "y": 3.685, + "z": 242.089 + }, + "Rotation": 205.0, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E5_6", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 } }, - { - "_id": "66c90dbfc7d43f68b9105963", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105961", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1140 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00041", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105965", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105965", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fe111b2d-c512-47e8-b233-8b34d46d4595", + "Position": { + "x": 260.742, + "y": -5.94, + "z": 48.666 + }, + "Rotation": 319.729767, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b9105967", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105965", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 873 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00086", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105969", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105969", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fe3633fa-5a3d-46f1-9c56-8f30c2b61cc1", + "Position": { + "x": 170.078, + "y": -1.451, + "z": -132.837 + }, + "Rotation": 268.9683, + "Sides": [ + "All" + ], + "Categories": [ + "Player" + ], + "Infiltration": "E3_4", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66c90dbfc7d43f68b910596b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105969", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "BotZoneName": "", + "CorePointId": 0 + } + ], + "AirdropParameters": [ + { + "PlaneAirdropStartMin": 300, + "PlaneAirdropStartMax": 900, + "PlaneAirdropEnd": 2700, + "PlaneAirdropChance": 0.125, + "PlaneAirdropMax": 2, + "PlaneAirdropCooldownMin": 700, + "PlaneAirdropCooldownMax": 800, + "AirdropPointDeactivateDistance": 100, + "MinPlayersCountToSpawnAirdrop": 6, + "UnsuccessfulTryPenalty": 400 + } + ], + "BossLocationSpawn": [ + { + "BossName": "bossKolontay", + "BossChance": 25.0, + "BossZone": "ZoneClimova,ZoneMvd", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "followerKolontaySecurity", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": [ + { + "BossEscortType": "followerKolontayAssault", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "2" }, - "upd": { - "StackObjectsCount": 914 - } - }, - { - "_id": "66c90dbfc7d43f68b910596d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105969", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 899 + { + "BossEscortType": "followerKolontaySecurity", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "2" + }, + { + "BossEscortType": "followerGluharScout", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "0" } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ], + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b910596f", - "Items": [ - { - "_id": "66c90dbfc7d43f68b910596f", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105971", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b910596f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 872 + { + "BossName": "bossBoar", + "BossChance": 25.0, + "BossZone": "ZoneCarShowroom", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "followerBoar", + "BossEscortDifficult": "normal", + "BossEscortAmount": "6", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": [ + { + "BossEscortType": "followerBoar", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "4" + }, + { + "BossEscortType": "followerBoarClose1", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "1" + }, + { + "BossEscortType": "followerBoarClose2", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "1" } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00087", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ], + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "bossBoarSniper", + "BossChance": 100.0, + "BossZone": "ZoneSnipeCarShowroom", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "bossBoarSniper", + "BossEscortDifficult": "normal", + "BossEscortAmount": "1,2", + "Time": 99999.0, + "TriggerId": "BossBoarBorn", + "TriggerName": "botEvent", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105973", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105973", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105975", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105973", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 944 - } - }, - { - "_id": "66c90dbfc7d43f68b9105977", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105973", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1064 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00096", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105979", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105979", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b910597b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105979", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 891 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b910597d", - "Items": [ - { - "_id": "66c90dbfc7d43f68b910597d", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b910597f", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dbfc7d43f68b910597d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105981", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dbfc7d43f68b910597d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105983", - "_tpl": "590c5bbd86f774785762df04", - "parentId": "66c90dbfc7d43f68b910597d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00073", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105985", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105985", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105987", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105985", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 721 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105989", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105989", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b910598b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105989", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1037 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "TriggerId": "", + "TriggerName": "", + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "Delay": 0.0, + "SpawnMode": [ + "pve" + ] + } + ], + "MatchMakerMinPlayersByWaitTime": [ + { + "time": 60, + "minPlayers": 12 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b910598d", - "Items": [ - { - "_id": "66c90dbfc7d43f68b910598d", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b910598f", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c90dbfc7d43f68b910598d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105991", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66c90dbfc7d43f68b910598d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 70, + "minPlayers": 10 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 120, + "minPlayers": 8 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105993", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105993", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105995", - "_tpl": "5755383e24597772cb798966", - "parentId": "66c90dbfc7d43f68b9105993", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00065", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 180, + "minPlayers": 7 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 250, + "minPlayers": 5 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105997", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105997", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105999", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105997", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 710 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00088", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 330, + "minPlayers": 3 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 420, + "minPlayers": 1 + } + ], + "transits": [ + { + "id": 3, + "active": false, + "name": "STR_TRANSIT_3", + "location": "Sandbox_high", + "description": "STR_TRANSIT_3_DESC", + "activateAfterSec": 420, + "target": "65b8d6f5cdde2479cb2a3125", + "time": 30, + "conditions": "STR_TRANSIT_3_COND" }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b910599b", - "Items": [ - { - "_id": "66c90dbfc7d43f68b910599b", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "id": 4, + "active": true, + "name": "STR_TRANSIT_4", + "location": "Interchange", + "description": "STR_TRANSIT_4_DESC", + "activateAfterSec": 420, + "target": "5714dbc024597771384a510d", + "time": 30, + "conditions": "STR_TRANSIT_4_COND" + }, + { + "id": 5, + "active": true, + "name": "STR_TRANSIT_5", + "location": "laboratory", + "description": "STR_TRANSIT_5_DESC", + "activateAfterSec": 420, + "target": "5b0fc42d86f7744a585f9105", + "time": 30, + "conditions": "STR_TRANSIT_5_COND" + } + ], + "Id": "TarkovStreets", + "_Id": "5714dc692459777137212e12", + "Loot": [ + { + "Id": "container_City_SE_04_courtyard_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b910599d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b910599b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 795 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b910599f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b910599b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 692 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b91058dd", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91058dd", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91058df", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c90dbfc7d43f68b91058dd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00105", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059a9", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059a9", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_courtyard_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059ab", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 756 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059ad", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059a9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 560 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b91058e1", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91058e1", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91058e3", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66c90dbfc7d43f68b91058e1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 39 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059b3", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059b3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_courtyard_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059b5", - "_tpl": "5d1b2ffd86f77425243e8d17", - "parentId": "66c90dbfc7d43f68b91059b3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059b7", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059b7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059b9", - "_tpl": "590c621186f774138d11ea29", - "parentId": "66c90dbfc7d43f68b91059b7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b91058e5", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91058e5", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91058e7", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c90dbfc7d43f68b91058e5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 32 + } + }, + { + "_id": "66c90dbfc7d43f68b91058e9", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66c90dbfc7d43f68b91058e5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91058eb", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66c90dbfc7d43f68b91058e5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059bb", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059bb", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00104", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059bd", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dbfc7d43f68b91059bb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00034", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059bf", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059bf", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059c1", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dbfc7d43f68b91059bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91058ed", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91058ed", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91058ef", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91058ed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 799 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00062", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b91059c3", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059c3", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059c5", - "_tpl": "5d6e68e6a4b9361c140bcfe0", - "parentId": "66c90dbfc7d43f68b91059c3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 4 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059c7", - "_tpl": "603618feffd42c541047f771", - "parentId": "66c90dbfc7d43f68b91059c3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b91058fd", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91058fd", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b91058ff", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66c90dbfc7d43f68b91058fd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 3 + } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00074", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059c9", - "_tpl": "5ba26812d4351e003201fef1", - "parentId": "66c90dbfc7d43f68b91059c3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 23 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059cb", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66c90dbfc7d43f68b91059c3", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105901", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105901", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 32 - } - }, - { - "_id": "66c90dbfc7d43f68b91059cd", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66c90dbfc7d43f68b91059c3", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105903", + "_tpl": "5c5db6552e2216001026119d", + "parentId": "66c90dbfc7d43f68b9105901", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105905", + "_tpl": "59e3596386f774176c10a2a2", + "parentId": "66c90dbfc7d43f68b9105901", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105907", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66c90dbfc7d43f68b9105901", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059cf", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059cf", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00043", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059d1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059cf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 668 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059d3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059cf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 942 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105909", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105909", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910590a", + "_tpl": "579204f224597773d619e051", + "parentId": "66c90dbfc7d43f68b9105909", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c90dbfc7d43f68b910590b", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66c90dbfc7d43f68b910590a", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dbfc7d43f68b910590f", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66c90dbfc7d43f68b910590b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66c90dbfc7d43f68b910590c", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66c90dbfc7d43f68b910590a", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dbfc7d43f68b910590d", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66c90dbfc7d43f68b910590c", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dbfc7d43f68b910590e", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66c90dbfc7d43f68b910590a", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66c90dbfc7d43f68b9105911", + "_tpl": "590c311186f77424d1667482", + "parentId": "66c90dbfc7d43f68b9105909", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105913", + "_tpl": "5c925fa22e221601da359b7b", + "parentId": "66c90dbfc7d43f68b9105909", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 15 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00091", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059d5", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059d5", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059d7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059d5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 713 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059d9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059d5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 823 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105915", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105915", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105917", + "_tpl": "5d1b371186f774253763a656", + "parentId": "66c90dbfc7d43f68b9105915", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105919", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c90dbfc7d43f68b9105915", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910591b", + "_tpl": "60391a8b3364dc22b04d0ce5", + "parentId": "66c90dbfc7d43f68b9105915", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910591d", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dbfc7d43f68b9105915", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b91059db", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059db", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059dd", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dbfc7d43f68b91059db", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059df", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059df", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059e1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059df", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 851 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b910591f", + "Items": [ + { + "_id": "66c90dbfc7d43f68b910591f", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105921", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "66c90dbfc7d43f68b910591f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105923", + "_tpl": "64be7110bf597ba84a0a41ea", + "parentId": "66c90dbfc7d43f68b910591f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105925", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66c90dbfc7d43f68b910591f", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 57 + } + }, + { + "_id": "66c90dbfc7d43f68b9105927", + "_tpl": "6601546f86889319850bd566", + "parentId": "66c90dbfc7d43f68b910591f", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 31 + } + }, + { + "_id": "66c90dbfc7d43f68b9105929", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dbfc7d43f68b910591f", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00044", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059e3", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059e3", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059e5", - "_tpl": "5d1b2fa286f77425227d1674", - "parentId": "66c90dbfc7d43f68b91059e3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059e7", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059e7", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059e9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059e7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b910592b", + "Items": [ + { + "_id": "66c90dbfc7d43f68b910592b", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 606 - } - }, - { - "_id": "66c90dbfc7d43f68b91059eb", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059e7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 954 + { + "_id": "66c90dbfc7d43f68b910592d", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c90dbfc7d43f68b910592b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910592f", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c90dbfc7d43f68b910592b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b91059ed", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059ed", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00029", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059ef", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c90dbfc7d43f68b91059ed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059f1", - "_tpl": "5e2af4d286f7746d4159f07a", - "parentId": "66c90dbfc7d43f68b91059ed", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105931", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105931", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105932", + "_tpl": "61bc85697113f767765c7fe7", + "parentId": "66c90dbfc7d43f68b9105931", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dbfc7d43f68b9105933", + "_tpl": "6572fc809a866b80ab07eb59", + "parentId": "66c90dbfc7d43f68b9105932", + "slotId": "Soft_armor_front" + }, + { + "_id": "66c90dbfc7d43f68b9105934", + "_tpl": "6572fc8c9a866b80ab07eb5d", + "parentId": "66c90dbfc7d43f68b9105932", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c90dbfc7d43f68b9105935", + "_tpl": "6572fc989a866b80ab07eb61", + "parentId": "66c90dbfc7d43f68b9105932", + "slotId": "Soft_armor_left" + }, + { + "_id": "66c90dbfc7d43f68b9105936", + "_tpl": "6572fca39a866b80ab07eb65", + "parentId": "66c90dbfc7d43f68b9105932", + "slotId": "soft_armor_right" + }, + { + "_id": "66c90dbfc7d43f68b9105937", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "66c90dbfc7d43f68b9105932", + "slotId": "Front_plate" + }, + { + "_id": "66c90dbfc7d43f68b9105938", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "66c90dbfc7d43f68b9105932", + "slotId": "Back_plate" + }, + { + "_id": "66c90dbfc7d43f68b910593a", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c90dbfc7d43f68b9105931", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66c90dbfc7d43f68b910593c", + "_tpl": "573474f924597738002c6174", + "parentId": "66c90dbfc7d43f68b9105931", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00099", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b91059f3", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059f3", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00090", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059f5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059f3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 770 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059f7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b91059f3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 642 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b910593e", + "Items": [ + { + "_id": "66c90dbfc7d43f68b910593e", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105940", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b910593e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1130 + } + }, + { + "_id": "66c90dbfc7d43f68b9105942", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b910593e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 992 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b91059f9", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059f9", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00095", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059fb", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c90dbfc7d43f68b91059f9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00042", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b91059fd", - "Items": [ - { - "_id": "66c90dbfc7d43f68b91059fd", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b91059ff", - "_tpl": "592c2d1a86f7746dbe2af32a", - "parentId": "66c90dbfc7d43f68b91059fd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105944", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105944", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105946", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105944", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 766 + } + }, + { + "_id": "66c90dbfc7d43f68b9105948", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105944", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 904 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00067", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105a01", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a01", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a03", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dbfc7d43f68b9105a01", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00093", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a05", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a05", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a07", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105a05", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 732 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b910594a", + "Items": [ + { + "_id": "66c90dbfc7d43f68b910594a", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910594c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b910594a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 752 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00098", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a09", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a09", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a0b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105a09", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 802 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105a0d", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a0d", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a0f", - "_tpl": "5ea034eb5aad6446a939737b", - "parentId": "66c90dbfc7d43f68b9105a0d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b910594e", + "Items": [ + { + "_id": "66c90dbfc7d43f68b910594e", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105a11", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66c90dbfc7d43f68b9105a0d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dbfc7d43f68b9105950", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66c90dbfc7d43f68b910594e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105a13", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105a0d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dbfc7d43f68b9105952", + "_tpl": "5ca20abf86f77418567a43f2", + "parentId": "66c90dbfc7d43f68b910594e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 901 - } - }, - { - "_id": "66c90dbfc7d43f68b9105a15", - "_tpl": "603619720ca681766b6a0fc4", - "parentId": "66c90dbfc7d43f68b9105a0d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c90dbfc7d43f68b9105954", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dbfc7d43f68b910594e", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105a17", - "_tpl": "62a0a043cf4a99369e2624a5", - "parentId": "66c90dbfc7d43f68b9105a0d", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105955", + "_tpl": "5f36a0e5fbf956000b716b65", + "parentId": "66c90dbfc7d43f68b910594e", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 1 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c90dbfc7d43f68b9105956", + "_tpl": "5f3e7801153b8571434a924c", + "parentId": "66c90dbfc7d43f68b9105955", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dbfc7d43f68b9105957", + "_tpl": "5f3e778efcd9b651187d7201", + "parentId": "66c90dbfc7d43f68b9105955", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dbfc7d43f68b9105958", + "_tpl": "5f3e7823ddc4f03b010e2045", + "parentId": "66c90dbfc7d43f68b9105955", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dbfc7d43f68b9105959", + "_tpl": "5f3e7897ddc4f03b010e204a", + "parentId": "66c90dbfc7d43f68b9105958", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dbfc7d43f68b910595a", + "_tpl": "5f3e78a7fbf956000b716b8e", + "parentId": "66c90dbfc7d43f68b9105958", + "slotId": "mod_sight_front" + }, + { + "_id": "66c90dbfc7d43f68b910595b", + "_tpl": "5f3e77b26cda304dcc634057", + "parentId": "66c90dbfc7d43f68b9105955", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dbfc7d43f68b910595f", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66c90dbfc7d43f68b910595b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66c90dbfc7d43f68b910595c", + "_tpl": "5f3e772a670e2a7b01739a52", + "parentId": "66c90dbfc7d43f68b9105955", + "slotId": "mod_trigger" + }, + { + "_id": "66c90dbfc7d43f68b910595d", + "_tpl": "5f3e76d86cda304dcc634054", + "parentId": "66c90dbfc7d43f68b9105955", + "slotId": "mod_hammer" + }, + { + "_id": "66c90dbfc7d43f68b910595e", + "_tpl": "5f3e777688ca2d00ad199d25", + "parentId": "66c90dbfc7d43f68b9105955", + "slotId": "mod_catch" } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105a19", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a19", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00078", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a1b", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dbfc7d43f68b9105a19", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105961", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105961", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105963", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105961", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1140 + } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00041", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a1d", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c90dbfc7d43f68b9105a19", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105965", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105965", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105967", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105965", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 873 + } } - }, - { - "_id": "66c90dbfc7d43f68b9105a1f", - "_tpl": "5e2af29386f7746d4159f077", - "parentId": "66c90dbfc7d43f68b9105a19", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105a21", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a21", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00086", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a22", - "_tpl": "5e81c3cbac2bb513793cdc75", - "parentId": "66c90dbfc7d43f68b9105a21", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105969", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105969", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910596b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105969", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 914 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66c90dbfc7d43f68b910596d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105969", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 899 } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a23", - "_tpl": "5e81c519cb2b95385c177551", - "parentId": "66c90dbfc7d43f68b9105a22", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dbfc7d43f68b9105a24", - "_tpl": "5e81c6bf763d9f754677beff", - "parentId": "66c90dbfc7d43f68b9105a22", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a25", - "_tpl": "5e81edc13397a21db957f6a1", - "parentId": "66c90dbfc7d43f68b9105a22", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b910596f", + "Items": [ + { + "_id": "66c90dbfc7d43f68b910596f", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105971", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b910596f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 872 + } + } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00087", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a26", - "_tpl": "5e81ee4dcb2b95385c177582", - "parentId": "66c90dbfc7d43f68b9105a25", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a27", - "_tpl": "5e81ee213397a21db957f6a6", - "parentId": "66c90dbfc7d43f68b9105a25", - "slotId": "mod_sight_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105973", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105973", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105975", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105973", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 944 + } + }, + { + "_id": "66c90dbfc7d43f68b9105977", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105973", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1064 + } + } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00096", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a28", - "_tpl": "5e81c4ca763d9f754677befa", - "parentId": "66c90dbfc7d43f68b9105a22", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a2c", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66c90dbfc7d43f68b9105a28", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105979", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105979", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910597b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105979", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 891 + } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a29", - "_tpl": "5e81c6a2ac2bb513793cdc7f", - "parentId": "66c90dbfc7d43f68b9105a22", - "slotId": "mod_trigger" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a2a", - "_tpl": "5e81c550763d9f754677befd", - "parentId": "66c90dbfc7d43f68b9105a22", - "slotId": "mod_hammer" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b910597d", + "Items": [ + { + "_id": "66c90dbfc7d43f68b910597d", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910597f", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dbfc7d43f68b910597d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105981", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dbfc7d43f68b910597d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105983", + "_tpl": "590c5bbd86f774785762df04", + "parentId": "66c90dbfc7d43f68b910597d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00073", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a2b", - "_tpl": "5e81c539cb2b95385c177553", - "parentId": "66c90dbfc7d43f68b9105a22", - "slotId": "mod_catch" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a2e", - "_tpl": "5fd4c4fa16cac650092f6771", - "parentId": "66c90dbfc7d43f68b9105a21", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105985", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105985", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105987", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105985", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 721 + } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a30", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dbfc7d43f68b9105a21", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105989", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105989", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910598b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105989", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1037 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00066", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105a32", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a32", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a34", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c90dbfc7d43f68b9105a32", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b910598d", + "Items": [ + { + "_id": "66c90dbfc7d43f68b910598d", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910598f", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c90dbfc7d43f68b910598d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105991", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66c90dbfc7d43f68b910598d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a3c", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a3c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a3e", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dbfc7d43f68b9105a3c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105993", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105993", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105995", + "_tpl": "5755383e24597772cb798966", + "parentId": "66c90dbfc7d43f68b9105993", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00056", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a40", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a40", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00065", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a42", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66c90dbfc7d43f68b9105a40", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105997", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105997", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105999", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105997", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 710 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00055", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a44", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a44", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00088", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a46", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66c90dbfc7d43f68b9105a44", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b910599b", + "Items": [ + { + "_id": "66c90dbfc7d43f68b910599b", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b910599d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b910599b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 795 + } + }, + { + "_id": "66c90dbfc7d43f68b910599f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b910599b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 692 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a48", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a48", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00105", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a4a", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c90dbfc7d43f68b9105a48", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059a9", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059a9", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059ab", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 756 + } + }, + { + "_id": "66c90dbfc7d43f68b91059ad", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059a9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 560 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00083", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a4c", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a4c", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a4e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105a4c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 625 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059b3", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059b3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059b5", + "_tpl": "5d1b2ffd86f77425243e8d17", + "parentId": "66c90dbfc7d43f68b91059b3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00061", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a5b", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a5b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a5d", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66c90dbfc7d43f68b9105a5b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00060", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a5f", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a5f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a61", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66c90dbfc7d43f68b9105a5f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059b7", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059b7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059b9", + "_tpl": "590c621186f774138d11ea29", + "parentId": "66c90dbfc7d43f68b91059b7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a63", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a63", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a65", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dbfc7d43f68b9105a63", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00058", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a67", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a67", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a69", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dbfc7d43f68b9105a67", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059bb", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059bb", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059bd", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dbfc7d43f68b91059bb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105a6b", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a6b", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00034", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a6d", - "_tpl": "5aa2ba19e5b5b00014028f4e", - "parentId": "66c90dbfc7d43f68b9105a6b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a6f", - "_tpl": "60b52e5bc7d8103275739d67", - "parentId": "66c90dbfc7d43f68b9105a6b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059bf", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059bf", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b91059c1", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dbfc7d43f68b91059bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00062", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a71", - "_tpl": "6601546f86889319850bd566", - "parentId": "66c90dbfc7d43f68b9105a6b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 19 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a73", - "_tpl": "5c3df7d588a4501f290594e5", - "parentId": "66c90dbfc7d43f68b9105a6b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b91059c3", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059c3", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 34 - } - }, - { - "_id": "66c90dbfc7d43f68b9105a75", - "_tpl": "5d1b36a186f7742523398433", - "parentId": "66c90dbfc7d43f68b9105a6b", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b91059c5", + "_tpl": "5d6e68e6a4b9361c140bcfe0", + "parentId": "66c90dbfc7d43f68b91059c3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 4 + } + }, + { + "_id": "66c90dbfc7d43f68b91059c7", + "_tpl": "603618feffd42c541047f771", + "parentId": "66c90dbfc7d43f68b91059c3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059c9", + "_tpl": "5ba26812d4351e003201fef1", + "parentId": "66c90dbfc7d43f68b91059c3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 23 + } + }, + { + "_id": "66c90dbfc7d43f68b91059cb", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66c90dbfc7d43f68b91059c3", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 32 + } + }, + { + "_id": "66c90dbfc7d43f68b91059cd", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66c90dbfc7d43f68b91059c3", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00033", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a77", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a77", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a79", - "_tpl": "62a09e974f842e1bd12da3f0", - "parentId": "66c90dbfc7d43f68b9105a77", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a7b", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a7b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a7d", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dbfc7d43f68b9105a7b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059cf", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059cf", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059d1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059cf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 668 + } + }, + { + "_id": "66c90dbfc7d43f68b91059d3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059cf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 942 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00031", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a7f", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a7f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00091", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a81", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dbfc7d43f68b9105a7f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00030", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105a83", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a83", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a85", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dbfc7d43f68b9105a83", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059d5", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059d5", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059d7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059d5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 713 + } + }, + { + "_id": "66c90dbfc7d43f68b91059d9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059d5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 823 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105a87", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a87", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a89", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66c90dbfc7d43f68b9105a87", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a8b", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c90dbfc7d43f68b9105a87", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b91059db", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059db", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105a8d", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c90dbfc7d43f68b9105a87", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b91059dd", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dbfc7d43f68b91059db", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00047", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105a8f", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a8f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a91", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66c90dbfc7d43f68b9105a8f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a93", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66c90dbfc7d43f68b9105a8f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059df", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059df", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105a95", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dbfc7d43f68b9105a8f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b91059e1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059df", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 851 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105a97", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105a97", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105a98", - "_tpl": "60a3c70cde5f453f634816a3", - "parentId": "66c90dbfc7d43f68b9105a97", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c90dbfc7d43f68b9105a99", - "_tpl": "6570fae34c65ab77a6015146", - "parentId": "66c90dbfc7d43f68b9105a98", - "slotId": "Soft_armor_front" + { + "Id": "container_City_NE_02_DesignStuff_00044", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a9a", - "_tpl": "6570fa1f4c65ab77a601512f", - "parentId": "66c90dbfc7d43f68b9105a98", - "slotId": "Soft_armor_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a9b", - "_tpl": "6570fb22584a51c23e03251f", - "parentId": "66c90dbfc7d43f68b9105a98", - "slotId": "Soft_armor_left" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059e3", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059e3", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059e5", + "_tpl": "5d1b2fa286f77425227d1674", + "parentId": "66c90dbfc7d43f68b91059e3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a9c", - "_tpl": "6570fb6ad3eefd23430f8c7c", - "parentId": "66c90dbfc7d43f68b9105a98", - "slotId": "soft_armor_right" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105a9d", - "_tpl": "6570fb8f4c65ab77a601514d", - "parentId": "66c90dbfc7d43f68b9105a98", - "slotId": "Collar" - }, - { - "_id": "66c90dbfc7d43f68b9105a9e", - "_tpl": "6570fbdd74d84423df065f60", - "parentId": "66c90dbfc7d43f68b9105a98", - "slotId": "Shoulder_l" - }, - { - "_id": "66c90dbfc7d43f68b9105a9f", - "_tpl": "6570fc41d3eefd23430f8c83", - "parentId": "66c90dbfc7d43f68b9105a98", - "slotId": "Shoulder_r" - }, - { - "_id": "66c90dbfc7d43f68b9105aa0", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "66c90dbfc7d43f68b9105a98", - "slotId": "Front_plate" - }, - { - "_id": "66c90dbfc7d43f68b9105aa1", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "66c90dbfc7d43f68b9105a98", - "slotId": "Back_plate" - }, - { - "_id": "66c90dbfc7d43f68b9105aa3", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dbfc7d43f68b9105a97", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059e7", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059e7", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105aa5", - "_tpl": "5aa2b89be5b5b0001569311f", - "parentId": "66c90dbfc7d43f68b9105a97", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b91059e9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059e7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 606 + } + }, + { + "_id": "66c90dbfc7d43f68b91059eb", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059e7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 954 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00075", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105aa7", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105aa7", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105aa9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105aa7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 981 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105aab", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105aa7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1080 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b91059ed", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059ed", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059ef", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c90dbfc7d43f68b91059ed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059f1", + "_tpl": "5e2af4d286f7746d4159f07a", + "parentId": "66c90dbfc7d43f68b91059ed", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105aad", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105aad", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00099", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105aaf", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c90dbfc7d43f68b9105aad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00079", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105ab1", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105ab1", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105ab3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105ab1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1083 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b91059f3", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059f3", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059f5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059f3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 770 + } + }, + { + "_id": "66c90dbfc7d43f68b91059f7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b91059f3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 642 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00100", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105ab5", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105ab5", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105ab7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105ab5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 643 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105ab9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105ab5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 627 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b91059f9", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059f9", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059fb", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c90dbfc7d43f68b91059f9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00102", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105abb", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105abb", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00042", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105abd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105abb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 801 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105abf", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105abb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 671 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b91059fd", + "Items": [ + { + "_id": "66c90dbfc7d43f68b91059fd", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b91059ff", + "_tpl": "592c2d1a86f7746dbe2af32a", + "parentId": "66c90dbfc7d43f68b91059fd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00053", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105ac1", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105ac1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00067", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105ac3", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dbfc7d43f68b9105ac1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105ac5", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105ac5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105ac7", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dbfc7d43f68b9105ac5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105a01", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a01", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a03", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dbfc7d43f68b9105a01", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00051", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105ac9", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105ac9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00093", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105acb", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c90dbfc7d43f68b9105ac9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00050", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105acd", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105acd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105acf", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66c90dbfc7d43f68b9105acd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a05", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a05", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a07", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105a05", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 732 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105ad1", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105ad1", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00098", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105ad3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105ad1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 900 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a09", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a09", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a0b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105a09", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 802 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105ad5", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105ad5", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105ad7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105ad5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 760 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105a0d", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a0d", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a0f", + "_tpl": "5ea034eb5aad6446a939737b", + "parentId": "66c90dbfc7d43f68b9105a0d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a11", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66c90dbfc7d43f68b9105a0d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a13", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105a0d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 901 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a15", + "_tpl": "603619720ca681766b6a0fc4", + "parentId": "66c90dbfc7d43f68b9105a0d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a17", + "_tpl": "62a0a043cf4a99369e2624a5", + "parentId": "66c90dbfc7d43f68b9105a0d", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105adf", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105adf", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105ae1", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105adf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 781 - } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00094", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105ae9", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105ae9", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105aeb", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105ae9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 688 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105a19", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a19", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a1b", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dbfc7d43f68b9105a19", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a1d", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c90dbfc7d43f68b9105a19", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a1f", + "_tpl": "5e2af29386f7746d4159f077", + "parentId": "66c90dbfc7d43f68b9105a19", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NE_02_DesignStuff_00085", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105aed", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105aed", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105aef", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dbfc7d43f68b9105aed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 931 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00121", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105af1", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105af1", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105af3", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dbfc7d43f68b9105af1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105a21", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a21", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a22", + "_tpl": "5e81c3cbac2bb513793cdc75", + "parentId": "66c90dbfc7d43f68b9105a21", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c90dbfc7d43f68b9105a23", + "_tpl": "5e81c519cb2b95385c177551", + "parentId": "66c90dbfc7d43f68b9105a22", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dbfc7d43f68b9105a24", + "_tpl": "5e81c6bf763d9f754677beff", + "parentId": "66c90dbfc7d43f68b9105a22", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dbfc7d43f68b9105a25", + "_tpl": "5e81edc13397a21db957f6a1", + "parentId": "66c90dbfc7d43f68b9105a22", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dbfc7d43f68b9105a26", + "_tpl": "5e81ee4dcb2b95385c177582", + "parentId": "66c90dbfc7d43f68b9105a25", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dbfc7d43f68b9105a27", + "_tpl": "5e81ee213397a21db957f6a6", + "parentId": "66c90dbfc7d43f68b9105a25", + "slotId": "mod_sight_front" + }, + { + "_id": "66c90dbfc7d43f68b9105a28", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "66c90dbfc7d43f68b9105a22", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dbfc7d43f68b9105a2c", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66c90dbfc7d43f68b9105a28", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a29", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "parentId": "66c90dbfc7d43f68b9105a22", + "slotId": "mod_trigger" + }, + { + "_id": "66c90dbfc7d43f68b9105a2a", + "_tpl": "5e81c550763d9f754677befd", + "parentId": "66c90dbfc7d43f68b9105a22", + "slotId": "mod_hammer" + }, + { + "_id": "66c90dbfc7d43f68b9105a2b", + "_tpl": "5e81c539cb2b95385c177553", + "parentId": "66c90dbfc7d43f68b9105a22", + "slotId": "mod_catch" + }, + { + "_id": "66c90dbfc7d43f68b9105a2e", + "_tpl": "5fd4c4fa16cac650092f6771", + "parentId": "66c90dbfc7d43f68b9105a21", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105a30", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dbfc7d43f68b9105a21", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00066", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105af5", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66c90dbfc7d43f68b9105af1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105a32", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a32", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105a34", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c90dbfc7d43f68b9105a32", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105af7", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dbfc7d43f68b9105af1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a3c", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a3c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a3e", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dbfc7d43f68b9105a3c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00029", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105af9", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105af9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00056", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105afb", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dbfc7d43f68b9105af9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a40", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a40", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a42", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66c90dbfc7d43f68b9105a40", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105afd", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105afd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00055", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105aff", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c90dbfc7d43f68b9105afd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a44", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a44", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a46", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66c90dbfc7d43f68b9105a44", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105b01", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b01", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105b03", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dbfc7d43f68b9105b01", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a48", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a48", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a4a", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c90dbfc7d43f68b9105a48", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00026", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105b05", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b05", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00083", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105b07", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66c90dbfc7d43f68b9105b05", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a4c", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a4c", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a4e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105a4c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 625 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105b09", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b09", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00061", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105b0b", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66c90dbfc7d43f68b9105b09", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a5b", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a5b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a5d", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66c90dbfc7d43f68b9105a5b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105b0d", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b0d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00060", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105b0f", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dbfc7d43f68b9105b0d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a5f", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a5f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a61", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66c90dbfc7d43f68b9105a5f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00019", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105b11", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b11", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105b13", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c90dbfc7d43f68b9105b11", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a63", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a63", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a65", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dbfc7d43f68b9105a63", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105b15", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b15", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dbfc7d43f68b9105b17", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c90dbfc7d43f68b9105b15", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105b19", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b19", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00058", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105b1b", - "_tpl": "5ad5cfbd86f7742c825d6104", - "parentId": "66c90dbfc7d43f68b9105b19", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105b1d", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b1d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105b1f", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dbfc7d43f68b9105b1d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a67", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a67", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a69", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dbfc7d43f68b9105a67", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105b21", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b21", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105b23", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dbfc7d43f68b9105b21", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dbfc7d43f68b9105b25", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b25", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105b27", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dbfc7d43f68b9105b25", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105a6b", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a6b", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a6d", + "_tpl": "5aa2ba19e5b5b00014028f4e", + "parentId": "66c90dbfc7d43f68b9105a6b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a6f", + "_tpl": "60b52e5bc7d8103275739d67", + "parentId": "66c90dbfc7d43f68b9105a6b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a71", + "_tpl": "6601546f86889319850bd566", + "parentId": "66c90dbfc7d43f68b9105a6b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 19 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a73", + "_tpl": "5c3df7d588a4501f290594e5", + "parentId": "66c90dbfc7d43f68b9105a6b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 34 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a75", + "_tpl": "5d1b36a186f7742523398433", + "parentId": "66c90dbfc7d43f68b9105a6b", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dbfc7d43f68b9105b29", - "Items": [ - { - "_id": "66c90dbfc7d43f68b9105b29", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00033", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dbfc7d43f68b9105b2b", - "_tpl": "5b4326435acfc433000ed01d", - "parentId": "66c90dbfc7d43f68b9105b29", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b2d", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dbfc7d43f68b9105b29", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a77", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a77", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105b2f", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dbfc7d43f68b9105b29", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105a79", + "_tpl": "62a09e974f842e1bd12da3f0", + "parentId": "66c90dbfc7d43f68b9105a77", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b31", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b31", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b33", - "_tpl": "66b37eb4acff495a29492407", - "parentId": "66c90dc0c7d43f68b9105b31", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b41", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b41", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b43", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c90dc0c7d43f68b9105b41", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a7b", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a7b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a7d", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dbfc7d43f68b9105a7b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b45", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b45", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00031", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b47", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c90dc0c7d43f68b9105b45", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b49", - "_tpl": "5af0534a86f7743b6f354284", - "parentId": "66c90dc0c7d43f68b9105b45", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a7f", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a7f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105b4b", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c90dc0c7d43f68b9105b45", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105a81", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dbfc7d43f68b9105a7f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00094", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105b4d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b4d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00030", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b4f", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc0c7d43f68b9105b4d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105b55", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b55", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b57", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc0c7d43f68b9105b55", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105a83", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a83", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a85", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dbfc7d43f68b9105a83", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b59", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b59", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b5b", - "_tpl": "57347baf24597738002c6178", - "parentId": "66c90dc0c7d43f68b9105b59", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b5d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b5d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b5f", - "_tpl": "5a7c74b3e899ef0014332c29", - "parentId": "66c90dc0c7d43f68b9105b5d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105a87", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a87", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a89", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66c90dbfc7d43f68b9105a87", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a8b", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c90dbfc7d43f68b9105a87", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a8d", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c90dbfc7d43f68b9105a87", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00118", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b61", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b61", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00047", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b63", - "_tpl": "5a9fbb74a2750c0032157181", - "parentId": "66c90dc0c7d43f68b9105b61", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b65", - "_tpl": "618ba91477b82356f91ae0e8", - "parentId": "66c90dc0c7d43f68b9105b61", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105a8f", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a8f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a91", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66c90dbfc7d43f68b9105a8f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105a93", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66c90dbfc7d43f68b9105a8f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a95", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dbfc7d43f68b9105a8f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc0c7d43f68b9105b67", - "_tpl": "57fd23e32459772d0805bcf1", - "parentId": "66c90dc0c7d43f68b9105b61", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00113", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b69", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b69", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b6b", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66c90dc0c7d43f68b9105b69", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b6d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b6d", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b6f", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66c90dc0c7d43f68b9105b6d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105a97", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105a97", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a98", + "_tpl": "60a3c70cde5f453f634816a3", + "parentId": "66c90dbfc7d43f68b9105a97", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dbfc7d43f68b9105a99", + "_tpl": "6570fae34c65ab77a6015146", + "parentId": "66c90dbfc7d43f68b9105a98", + "slotId": "Soft_armor_front" + }, + { + "_id": "66c90dbfc7d43f68b9105a9a", + "_tpl": "6570fa1f4c65ab77a601512f", + "parentId": "66c90dbfc7d43f68b9105a98", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c90dbfc7d43f68b9105a9b", + "_tpl": "6570fb22584a51c23e03251f", + "parentId": "66c90dbfc7d43f68b9105a98", + "slotId": "Soft_armor_left" + }, + { + "_id": "66c90dbfc7d43f68b9105a9c", + "_tpl": "6570fb6ad3eefd23430f8c7c", + "parentId": "66c90dbfc7d43f68b9105a98", + "slotId": "soft_armor_right" + }, + { + "_id": "66c90dbfc7d43f68b9105a9d", + "_tpl": "6570fb8f4c65ab77a601514d", + "parentId": "66c90dbfc7d43f68b9105a98", + "slotId": "Collar" + }, + { + "_id": "66c90dbfc7d43f68b9105a9e", + "_tpl": "6570fbdd74d84423df065f60", + "parentId": "66c90dbfc7d43f68b9105a98", + "slotId": "Shoulder_l" + }, + { + "_id": "66c90dbfc7d43f68b9105a9f", + "_tpl": "6570fc41d3eefd23430f8c83", + "parentId": "66c90dbfc7d43f68b9105a98", + "slotId": "Shoulder_r" + }, + { + "_id": "66c90dbfc7d43f68b9105aa0", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "66c90dbfc7d43f68b9105a98", + "slotId": "Front_plate" + }, + { + "_id": "66c90dbfc7d43f68b9105aa1", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "66c90dbfc7d43f68b9105a98", + "slotId": "Back_plate" + }, + { + "_id": "66c90dbfc7d43f68b9105aa3", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dbfc7d43f68b9105a97", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105aa5", + "_tpl": "5aa2b89be5b5b0001569311f", + "parentId": "66c90dbfc7d43f68b9105a97", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00075", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b71", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc0c7d43f68b9105b6d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105aa7", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105aa7", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105aa9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105aa7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 981 + } + }, + { + "_id": "66c90dbfc7d43f68b9105aab", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105aa7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1080 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b73", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b73", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b75", - "_tpl": "5bc9b156d4351e00367fbce9", - "parentId": "66c90dc0c7d43f68b9105b73", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105aad", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105aad", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105aaf", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c90dbfc7d43f68b9105aad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105b77", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b77", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00079", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b78", - "_tpl": "5ac66cb05acfc40198510a10", - "parentId": "66c90dc0c7d43f68b9105b77", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b79", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66c90dc0c7d43f68b9105b78", - "slotId": "mod_gas_block" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105ab1", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105ab1", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105ab3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105ab1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1083 + } + } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00100", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b7a", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66c90dc0c7d43f68b9105b79", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b7b", - "_tpl": "5ac72e615acfc43f67248aa0", - "parentId": "66c90dc0c7d43f68b9105b78", - "slotId": "mod_muzzle" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105ab5", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105ab5", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105ab7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105ab5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 643 + } + }, + { + "_id": "66c90dbfc7d43f68b9105ab9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105ab5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 627 + } + } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00102", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b7c", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66c90dc0c7d43f68b9105b78", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b7d", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66c90dc0c7d43f68b9105b78", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105abb", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105abb", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105abd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105abb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 801 + } + }, + { + "_id": "66c90dbfc7d43f68b9105abf", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105abb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 671 + } + } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00053", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b7e", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "66c90dc0c7d43f68b9105b78", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b7f", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66c90dc0c7d43f68b9105b78", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105ac1", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105ac1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105ac3", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dbfc7d43f68b9105ac1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b80", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66c90dc0c7d43f68b9105b78", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b81", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66c90dc0c7d43f68b9105b80", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105ac5", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105ac5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105ac7", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dbfc7d43f68b9105ac5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00051", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b83", - "_tpl": "5eea217fc64c5d0dfc05712a", - "parentId": "66c90dc0c7d43f68b9105b77", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105ac9", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105ac9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105acb", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c90dbfc7d43f68b9105ac9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b85", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b85", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00050", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b87", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66c90dc0c7d43f68b9105b85", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105acd", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105acd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105acf", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66c90dbfc7d43f68b9105acd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105b89", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b89", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b8b", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66c90dc0c7d43f68b9105b89", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105ad1", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105ad1", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dbfc7d43f68b9105ad3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105ad1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 900 + } } + ] + }, + { + "Id": "container_City_NE_02_DesignStuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b8d", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c90dc0c7d43f68b9105b89", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105ad5", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105ad5", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105ad7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105ad5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 760 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00062", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105b8f", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b8f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b91", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc0c7d43f68b9105b8f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00061", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105b93", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b93", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b95", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc0c7d43f68b9105b93", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105adf", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105adf", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105ae1", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105adf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 781 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00060", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105b97", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b97", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00094", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b99", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66c90dc0c7d43f68b9105b97", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105b9b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b9b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105b9d", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc0c7d43f68b9105b9b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105ae9", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105ae9", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105aeb", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105ae9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 688 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105b9f", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105b9f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NE_02_DesignStuff_00085", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ba1", - "_tpl": "5ad7242b86f7740a6a3abd43", - "parentId": "66c90dc0c7d43f68b9105b9f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105aed", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105aed", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105aef", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dbfc7d43f68b9105aed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 931 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105ba3", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ba3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00121", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ba5", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b9105ba3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105af1", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105af1", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105af3", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dbfc7d43f68b9105af1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105af5", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66c90dbfc7d43f68b9105af1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105af7", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dbfc7d43f68b9105af1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105ba7", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ba7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00029", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ba9", - "_tpl": "590c621186f774138d11ea29", - "parentId": "66c90dc0c7d43f68b9105ba7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105af9", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105af9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105afb", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dbfc7d43f68b9105af9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00067", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bab", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bab", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bad", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc0c7d43f68b9105bab", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 81 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105afd", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105afd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105aff", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c90dbfc7d43f68b9105afd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00105", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105baf", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105baf", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bb0", - "_tpl": "57f4c844245977379d5c14d1", - "parentId": "66c90dc0c7d43f68b9105baf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bb1", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66c90dc0c7d43f68b9105bb0", - "slotId": "mod_pistol_grip" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105b01", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b01", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b03", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dbfc7d43f68b9105b01", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00026", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bb2", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66c90dc0c7d43f68b9105bb0", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bb3", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66c90dc0c7d43f68b9105bb2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105b05", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b05", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b07", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66c90dbfc7d43f68b9105b05", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bb5", - "_tpl": "5b222d335acfc4771e1be099", - "parentId": "66c90dc0c7d43f68b9105baf", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105b09", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b09", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b0b", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66c90dbfc7d43f68b9105b09", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00122", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105bbd", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bbd", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bbf", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66c90dc0c7d43f68b9105bbd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105b0d", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b0d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b0f", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dbfc7d43f68b9105b0d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105bc1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bc1", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00019", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bc3", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc0c7d43f68b9105bc1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105b11", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b11", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b13", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c90dbfc7d43f68b9105b11", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00058", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bc5", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bc5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bc7", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dc0c7d43f68b9105bc5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105b15", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b15", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b17", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c90dbfc7d43f68b9105b15", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bc9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bc9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bcb", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66c90dc0c7d43f68b9105bc9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00056", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bcd", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bcd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bcf", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc0c7d43f68b9105bcd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 55 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105b19", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b19", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b1b", + "_tpl": "5ad5cfbd86f7742c825d6104", + "parentId": "66c90dbfc7d43f68b9105b19", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00055", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bd1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bd1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bd3", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b9105bd1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00090", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bd5", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bd5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bd7", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc0c7d43f68b9105bd5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105b1d", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b1d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b1f", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dbfc7d43f68b9105b1d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00087", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bd9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bd9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bdb", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc0c7d43f68b9105bd9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 64 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105b21", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b21", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b23", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dbfc7d43f68b9105b21", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00066", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bdd", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bdd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bdf", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc0c7d43f68b9105bdd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dbfc7d43f68b9105b25", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b25", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b27", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dbfc7d43f68b9105b25", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00065", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105be1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105be1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105be3", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc0c7d43f68b9105be1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dbfc7d43f68b9105b29", + "Items": [ + { + "_id": "66c90dbfc7d43f68b9105b29", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dbfc7d43f68b9105b2b", + "_tpl": "5b4326435acfc433000ed01d", + "parentId": "66c90dbfc7d43f68b9105b29", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b2d", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dbfc7d43f68b9105b29", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b2f", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dbfc7d43f68b9105b29", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105be5", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105be5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105be7", - "_tpl": "590c37d286f77443be3d7827", - "parentId": "66c90dc0c7d43f68b9105be5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b31", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b31", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b33", + "_tpl": "66b37eb4acff495a29492407", + "parentId": "66c90dc0c7d43f68b9105b31", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105be9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105be9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105beb", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc0c7d43f68b9105be9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b41", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b41", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b43", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c90dc0c7d43f68b9105b41", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00042", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bed", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bed", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bef", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc0c7d43f68b9105bed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b45", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b45", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b47", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c90dc0c7d43f68b9105b45", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b49", + "_tpl": "5af0534a86f7743b6f354284", + "parentId": "66c90dc0c7d43f68b9105b45", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b4b", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c90dc0c7d43f68b9105b45", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00041", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bf1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bf1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00094", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bf3", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b9105bf1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105b4d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b4d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b4f", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc0c7d43f68b9105b4d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bf5", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bf5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bf7", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "parentId": "66c90dc0c7d43f68b9105bf5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105b55", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b55", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b57", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc0c7d43f68b9105b55", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bf9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bf9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bfb", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66c90dc0c7d43f68b9105bf9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b59", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b59", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b5b", + "_tpl": "57347baf24597738002c6178", + "parentId": "66c90dc0c7d43f68b9105b59", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00025", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105bfd", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105bfd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105bff", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b9105bfd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c01", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c01", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c03", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dc0c7d43f68b9105c01", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b5d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b5d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b5f", + "_tpl": "5a7c74b3e899ef0014332c29", + "parentId": "66c90dc0c7d43f68b9105b5d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c05", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c05", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00118", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c07", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc0c7d43f68b9105c05", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c09", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c09", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c0b", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc0c7d43f68b9105c09", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b61", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b61", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b63", + "_tpl": "5a9fbb74a2750c0032157181", + "parentId": "66c90dc0c7d43f68b9105b61", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b65", + "_tpl": "618ba91477b82356f91ae0e8", + "parentId": "66c90dc0c7d43f68b9105b61", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b67", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "66c90dc0c7d43f68b9105b61", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00106", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105c0d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c0d", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00113", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c0f", - "_tpl": "618a431df1eb8e24b8741deb", - "parentId": "66c90dc0c7d43f68b9105c0d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c11", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66c90dc0c7d43f68b9105c0d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b69", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b69", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105b6b", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66c90dc0c7d43f68b9105b69", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c13", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66c90dc0c7d43f68b9105c0d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b6d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b6d", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b6f", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66c90dc0c7d43f68b9105b6d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b71", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc0c7d43f68b9105b6d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00116", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105c1d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c1d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c1f", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66c90dc0c7d43f68b9105c1d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 44 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b73", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b73", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b75", + "_tpl": "5bc9b156d4351e00367fbce9", + "parentId": "66c90dc0c7d43f68b9105b73", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00075", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c2d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c2d", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c2f", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105c2d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 728 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105b77", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b77", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b78", + "_tpl": "5ac66cb05acfc40198510a10", + "parentId": "66c90dc0c7d43f68b9105b77", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b79", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66c90dc0c7d43f68b9105b78", + "slotId": "mod_gas_block" + }, + { + "_id": "66c90dc0c7d43f68b9105b7a", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66c90dc0c7d43f68b9105b79", + "slotId": "mod_handguard" + }, + { + "_id": "66c90dc0c7d43f68b9105b7b", + "_tpl": "5ac72e615acfc43f67248aa0", + "parentId": "66c90dc0c7d43f68b9105b78", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc0c7d43f68b9105b7c", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66c90dc0c7d43f68b9105b78", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc0c7d43f68b9105b7d", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66c90dc0c7d43f68b9105b78", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc0c7d43f68b9105b7e", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "66c90dc0c7d43f68b9105b78", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc0c7d43f68b9105b7f", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66c90dc0c7d43f68b9105b78", + "slotId": "mod_stock" + }, + { + "_id": "66c90dc0c7d43f68b9105b80", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66c90dc0c7d43f68b9105b78", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc0c7d43f68b9105b81", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66c90dc0c7d43f68b9105b80", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b83", + "_tpl": "5eea217fc64c5d0dfc05712a", + "parentId": "66c90dc0c7d43f68b9105b77", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105c31", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c31", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c33", - "_tpl": "63d114019e35b334d82302f7", - "parentId": "66c90dc0c7d43f68b9105c31", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b85", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b85", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b87", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66c90dc0c7d43f68b9105b85", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105c35", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c35", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c38", - "_tpl": "573727c624597765cc785b5b", - "parentId": "66c90dc0c7d43f68b9105c35", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105b89", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b89", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b8b", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66c90dc0c7d43f68b9105b89", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105b8d", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c90dc0c7d43f68b9105b89", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00062", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c39", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c90dc0c7d43f68b9105c38", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c3b", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66c90dc0c7d43f68b9105c35", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105b8f", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b8f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b91", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc0c7d43f68b9105b8f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00114", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105c3d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c3d", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00061", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c3f", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66c90dc0c7d43f68b9105c3d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105b93", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b93", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105b95", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc0c7d43f68b9105b93", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00060", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c41", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66c90dc0c7d43f68b9105c3d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105b97", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b97", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105b99", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66c90dc0c7d43f68b9105b97", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c43", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "66c90dc0c7d43f68b9105c3d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105b9b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b9b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105b9d", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc0c7d43f68b9105b9b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00074", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c45", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c45", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c47", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc0c7d43f68b9105c45", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105b9f", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105b9f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ba1", + "_tpl": "5ad7242b86f7740a6a3abd43", + "parentId": "66c90dc0c7d43f68b9105b9f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00073", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c49", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c49", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c4b", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc0c7d43f68b9105c49", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105ba3", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ba3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ba5", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b9105ba3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c4d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c4d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c4f", - "_tpl": "5c1265fc86f7743f896a21c2", - "parentId": "66c90dc0c7d43f68b9105c4d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105ba7", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ba7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ba9", + "_tpl": "590c621186f774138d11ea29", + "parentId": "66c90dc0c7d43f68b9105ba7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c51", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c51", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00067", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c53", - "_tpl": "590c621186f774138d11ea29", - "parentId": "66c90dc0c7d43f68b9105c51", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bab", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bab", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bad", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc0c7d43f68b9105bab", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 81 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00050", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c55", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c55", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00105", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c57", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b9105c55", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105baf", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105baf", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bb0", + "_tpl": "57f4c844245977379d5c14d1", + "parentId": "66c90dc0c7d43f68b9105baf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bb1", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66c90dc0c7d43f68b9105bb0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc0c7d43f68b9105bb2", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66c90dc0c7d43f68b9105bb0", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc0c7d43f68b9105bb3", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66c90dc0c7d43f68b9105bb2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bb5", + "_tpl": "5b222d335acfc4771e1be099", + "parentId": "66c90dc0c7d43f68b9105baf", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c59", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c59", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00122", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c5b", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66c90dc0c7d43f68b9105c59", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105bbd", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bbd", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bbf", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66c90dc0c7d43f68b9105bbd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c5d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c5d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c5f", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc0c7d43f68b9105c5d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105bc1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bc1", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bc3", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc0c7d43f68b9105bc1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00047", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c61", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c61", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00058", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c63", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc0c7d43f68b9105c61", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bc5", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bc5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bc7", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dc0c7d43f68b9105bc5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c69", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c69", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c6b", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc0c7d43f68b9105c69", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bc9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bc9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bcb", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66c90dc0c7d43f68b9105bc9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00053", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c6d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c6d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00056", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c6f", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc0c7d43f68b9105c6d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bcd", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bcd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bcf", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc0c7d43f68b9105bcd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 55 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c71", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c71", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00055", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c73", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc0c7d43f68b9105c71", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bd1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bd1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bd3", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b9105bd1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00051", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c75", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c75", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00090", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c77", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66c90dc0c7d43f68b9105c75", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bd5", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bd5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bd7", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc0c7d43f68b9105bd5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c7d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c7d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00087", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c7f", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc0c7d43f68b9105c7d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105c81", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c81", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c83", - "_tpl": "544fb3f34bdc2d03748b456a", - "parentId": "66c90dc0c7d43f68b9105c81", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bd9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bd9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bdb", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc0c7d43f68b9105bd9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 64 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00034", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c85", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c85", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00066", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c87", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc0c7d43f68b9105c85", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00033", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c89", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c89", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c8b", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc0c7d43f68b9105c89", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bdd", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bdd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bdf", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc0c7d43f68b9105bdd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c8d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c8d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00065", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c8f", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc0c7d43f68b9105c8d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00031", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c91", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c91", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c93", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc0c7d43f68b9105c91", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105be1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105be1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105be3", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc0c7d43f68b9105be1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00099", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105c95", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c95", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c97", - "_tpl": "5b432c305acfc40019478128", - "parentId": "66c90dc0c7d43f68b9105c95", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c99", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c90dc0c7d43f68b9105c95", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105be5", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105be5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105be7", + "_tpl": "590c37d286f77443be3d7827", + "parentId": "66c90dc0c7d43f68b9105be5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00079", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105c9b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c9b", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105c9d", - "_tpl": "6567e7681265c8a131069b0f", - "parentId": "66c90dc0c7d43f68b9105c9b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00046", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105c9f", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105c9f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ca1", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc0c7d43f68b9105c9f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105be9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105be9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105beb", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc0c7d43f68b9105be9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00045", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105ca3", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ca3", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00042", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ca5", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dc0c7d43f68b9105ca3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00044", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105ca7", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ca7", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ca9", - "_tpl": "5ad5d49886f77455f9731921", - "parentId": "66c90dc0c7d43f68b9105ca7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bed", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bed", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bef", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc0c7d43f68b9105bed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00043", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105cab", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105cab", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00041", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cad", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66c90dc0c7d43f68b9105cab", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105caf", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105caf", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cb1", - "_tpl": "59e35de086f7741778269d84", - "parentId": "66c90dc0c7d43f68b9105caf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bf1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bf1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105cb3", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc0c7d43f68b9105caf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105bf3", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b9105bf1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00030", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105cb5", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105cb5", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cb7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105cb5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1064 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cb9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105cb5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 570 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bf5", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bf5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105bf7", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "parentId": "66c90dc0c7d43f68b9105bf5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00098", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105cbb", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105cbb", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cbd", - "_tpl": "603618feffd42c541047f771", - "parentId": "66c90dc0c7d43f68b9105cbb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cbf", - "_tpl": "5f63418ef5750b524b45f116", - "parentId": "66c90dc0c7d43f68b9105cbb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bf9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bf9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105bfb", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66c90dc0c7d43f68b9105bf9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00025", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cc1", - "_tpl": "668fe5c5f35310705d02b696", - "parentId": "66c90dc0c7d43f68b9105cbb", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cc3", - "_tpl": "5fd4c4fa16cac650092f6771", - "parentId": "66c90dc0c7d43f68b9105cbb", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105bfd", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105bfd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105bff", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b9105bfd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc0c7d43f68b9105cc5", - "_tpl": "5a27b281c4a28200741e1e52", - "parentId": "66c90dc0c7d43f68b9105cbb", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105cc7", - "_tpl": "571a279b24597720b4066566", - "parentId": "66c90dc0c7d43f68b9105cbb", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105cc9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105cc9", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ccb", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b9105cc9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00111", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105ccd", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ccd", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ccf", - "_tpl": "5a01c29586f77474660c694c", - "parentId": "66c90dc0c7d43f68b9105ccd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c01", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c01", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105cd1", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c90dc0c7d43f68b9105ccd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 31 + { + "_id": "66c90dc0c7d43f68b9105c03", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dc0c7d43f68b9105c01", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_01_DesignStuff_00102", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105cd3", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105cd3", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cd5", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c90dc0c7d43f68b9105cd3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cd7", - "_tpl": "5755356824597772cb798962", - "parentId": "66c90dc0c7d43f68b9105cd3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c05", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c05", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105cd9", - "_tpl": "60098ad7c2240c0fe85c570a", - "parentId": "66c90dc0c7d43f68b9105cd3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c07", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc0c7d43f68b9105c05", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_03_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105cdb", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105cdb", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105cdc", - "_tpl": "5c0e446786f7742013381639", - "parentId": "66c90dc0c7d43f68b9105cdb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c90dc0c7d43f68b9105cdd", - "_tpl": "657087577f6d4590ac0d2109", - "parentId": "66c90dc0c7d43f68b9105cdc", - "slotId": "Soft_armor_front" - }, - { - "_id": "66c90dc0c7d43f68b9105cde", - "_tpl": "6570880f4a747dbb63005ee5", - "parentId": "66c90dc0c7d43f68b9105cdc", - "slotId": "Soft_armor_back" - }, - { - "_id": "66c90dc0c7d43f68b9105cdf", - "_tpl": "65708afe4a747dbb63005eee", - "parentId": "66c90dc0c7d43f68b9105cdc", - "slotId": "Collar" + { + "Id": "container_City_NW_01_DesignStuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ce0", - "_tpl": "65708b4c4a747dbb63005ef3", - "parentId": "66c90dc0c7d43f68b9105cdc", - "slotId": "Groin" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ce2", - "_tpl": "5b4326435acfc433000ed01d", - "parentId": "66c90dc0c7d43f68b9105cdb", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c09", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c09", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c0b", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc0c7d43f68b9105c09", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00106", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ce4", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66c90dc0c7d43f68b9105cdb", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 10 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ce6", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66c90dc0c7d43f68b9105cdb", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105c0d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c0d", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c0f", + "_tpl": "618a431df1eb8e24b8741deb", + "parentId": "66c90dc0c7d43f68b9105c0d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c11", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66c90dc0c7d43f68b9105c0d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c13", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66c90dc0c7d43f68b9105c0d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_NW_03_DesignStuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105cec", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105cec", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00116", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cee", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105cec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 685 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cf0", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105cec", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1041 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105c1d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c1d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c1f", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66c90dc0c7d43f68b9105c1d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 44 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00088", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105cf2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105cf2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00075", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cf4", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc0c7d43f68b9105cf2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105cf6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105cf6", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105cf8", - "_tpl": "63d114019e35b334d82302f7", - "parentId": "66c90dc0c7d43f68b9105cf6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c2d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c2d", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105cfa", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66c90dc0c7d43f68b9105cf6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 4 + { + "_id": "66c90dc0c7d43f68b9105c2f", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105c2d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 728 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d00", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d00", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d02", - "_tpl": "59e3556c86f7741776641ac2", - "parentId": "66c90dc0c7d43f68b9105d00", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d04", - "_tpl": "5fd4c60f875c30179f5d04c2", - "parentId": "66c90dc0c7d43f68b9105d00", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105c31", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c31", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c33", + "_tpl": "63d114019e35b334d82302f7", + "parentId": "66c90dc0c7d43f68b9105c31", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d06", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66c90dc0c7d43f68b9105d00", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 8 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d08", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66c90dc0c7d43f68b9105d00", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105c35", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c35", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105d0a", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc0c7d43f68b9105d00", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c38", + "_tpl": "573727c624597765cc785b5b", + "parentId": "66c90dc0c7d43f68b9105c35", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c39", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c90dc0c7d43f68b9105c38", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c3b", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66c90dc0c7d43f68b9105c35", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105d0c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d0c", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00114", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d0e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105d0c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 658 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00041", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d10", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d10", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d13", - "_tpl": "5737330a2459776af32363a1", - "parentId": "66c90dc0c7d43f68b9105d10", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105c3d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c3d", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c3f", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66c90dc0c7d43f68b9105c3d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c41", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66c90dc0c7d43f68b9105c3d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c43", + "_tpl": "619256e5f8af2c1a4e1f5d92", + "parentId": "66c90dc0c7d43f68b9105c3d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00074", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d14", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c90dc0c7d43f68b9105d13", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d16", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66c90dc0c7d43f68b9105d10", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c45", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c45", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c47", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc0c7d43f68b9105c45", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d27", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d27", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00073", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d29", - "_tpl": "5ba26812d4351e003201fef1", - "parentId": "66c90dc0c7d43f68b9105d27", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 53 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d2b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d2b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d2e", - "_tpl": "573728f324597765e5728561", - "parentId": "66c90dc0c7d43f68b9105d2b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c49", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c49", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c4b", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc0c7d43f68b9105c49", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d2f", - "_tpl": "5737218f245977612125ba51", - "parentId": "66c90dc0c7d43f68b9105d2e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d31", - "_tpl": "5d6fc78386f77449d825f9dc", - "parentId": "66c90dc0c7d43f68b9105d2b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c4d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c4d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c4f", + "_tpl": "5c1265fc86f7743f896a21c2", + "parentId": "66c90dc0c7d43f68b9105c4d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00019", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d33", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d33", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d35", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c90dc0c7d43f68b9105d33", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 49 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00062", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d37", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d37", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d39", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c90dc0c7d43f68b9105d37", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c51", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c51", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c53", + "_tpl": "590c621186f774138d11ea29", + "parentId": "66c90dc0c7d43f68b9105c51", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d56", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d56", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00050", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d58", - "_tpl": "5e2aedd986f7746d404f3aa4", - "parentId": "66c90dc0c7d43f68b9105d56", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d5a", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b9105d56", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c55", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c55", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105d5c", - "_tpl": "5bc9c29cd4351e003562b8a3", - "parentId": "66c90dc0c7d43f68b9105d56", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c57", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b9105c55", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d5e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d5e", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d60", - "_tpl": "603618feffd42c541047f771", - "parentId": "66c90dc0c7d43f68b9105d5e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d62", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d62", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d64", - "_tpl": "5a718da68dc32e000d46d264", - "parentId": "66c90dc0c7d43f68b9105d62", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c59", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c59", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105d66", - "_tpl": "584924ec24597768f12ae244", - "parentId": "66c90dc0c7d43f68b9105d62", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c5b", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66c90dc0c7d43f68b9105c59", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d68", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d68", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d6a", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66c90dc0c7d43f68b9105d68", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d6c", - "_tpl": "5cf67a1bd7f00c06585fb6f3", - "parentId": "66c90dc0c7d43f68b9105d68", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c5d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c5d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c5f", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc0c7d43f68b9105c5d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00047", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d6e", - "_tpl": "55d48a634bdc2d8b2f8b456a", - "parentId": "66c90dc0c7d43f68b9105d68", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d70", - "_tpl": "647dd2b8a12ebf96c3031655", - "parentId": "66c90dc0c7d43f68b9105d68", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c61", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c61", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105d72", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "66c90dc0c7d43f68b9105d68", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c63", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc0c7d43f68b9105c61", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00047", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d74", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d74", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d76", - "_tpl": "5d6e68e6a4b9361c140bcfe0", - "parentId": "66c90dc0c7d43f68b9105d74", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 8 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d78", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66c90dc0c7d43f68b9105d74", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c69", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c69", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 3 + { + "_id": "66c90dc0c7d43f68b9105c6b", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc0c7d43f68b9105c69", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00053", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d7a", - "_tpl": "5d2f213448f0355009199284", - "parentId": "66c90dc0c7d43f68b9105d74", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d7c", - "_tpl": "65815f0e647e3d7246384e14", - "parentId": "66c90dc0c7d43f68b9105d74", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c6d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c6d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c6f", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc0c7d43f68b9105c6d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d7e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d7e", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d80", - "_tpl": "5e85a9a6eacf8c039e4e2ac1", - "parentId": "66c90dc0c7d43f68b9105d7e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 5 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d82", - "_tpl": "57ffb0062459777a045af529", - "parentId": "66c90dc0c7d43f68b9105d7e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c71", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c71", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c73", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc0c7d43f68b9105c71", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d84", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d84", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00051", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d86", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c90dc0c7d43f68b9105d84", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c75", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c75", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c77", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66c90dc0c7d43f68b9105c75", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d87", - "_tpl": "66b5f65ca7f72d197e70bcd6", - "parentId": "66c90dc0c7d43f68b9105d84", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c90dc0c7d43f68b9105d88", - "_tpl": "66b61cfae98be930d701c029", - "parentId": "66c90dc0c7d43f68b9105d87", - "slotId": "Helmet_top" - }, - { - "_id": "66c90dc0c7d43f68b9105d89", - "_tpl": "66b61ce0c5d72b027748867e", - "parentId": "66c90dc0c7d43f68b9105d87", - "slotId": "Helmet_back" - }, - { - "_id": "66c90dc0c7d43f68b9105d8b", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc0c7d43f68b9105d84", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d8d", - "_tpl": "5bd06f5d86f77427101ad47c", - "parentId": "66c90dc0c7d43f68b9105d84", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c7d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c7d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105d8f", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc0c7d43f68b9105d84", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c7f", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc0c7d43f68b9105c7d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105d99", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105d99", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d9b", - "_tpl": "5bed61680db834001d2c45ab", - "parentId": "66c90dc0c7d43f68b9105d99", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105d9d", - "_tpl": "5c6162682e22160010261a2b", - "parentId": "66c90dc0c7d43f68b9105d99", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105c81", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c81", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105d9f", - "_tpl": "6086b5392535c57a13424d70", - "parentId": "66c90dc0c7d43f68b9105d99", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c83", + "_tpl": "544fb3f34bdc2d03748b456a", + "parentId": "66c90dc0c7d43f68b9105c81", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105da1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105da1", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00034", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105da3", - "_tpl": "593d1fa786f7746da62d61ac", - "parentId": "66c90dc0c7d43f68b9105da1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105da5", - "_tpl": "5d5fca1ea4b93635fd598c07", - "parentId": "66c90dc0c7d43f68b9105da1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c85", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c85", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105da7", - "_tpl": "5fbc227aa56d053a3543f79e", - "parentId": "66c90dc0c7d43f68b9105da1", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c87", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc0c7d43f68b9105c85", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00014", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105da9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105da9", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00033", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105dab", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66c90dc0c7d43f68b9105da9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105dad", - "_tpl": "5d1c819a86f774771b0acd6c", - "parentId": "66c90dc0c7d43f68b9105da9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c89", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c89", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105daf", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "66c90dc0c7d43f68b9105da9", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c8b", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc0c7d43f68b9105c89", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00046", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105db1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105db1", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105db3", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66c90dc0c7d43f68b9105db1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 8 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105db5", - "_tpl": "5a38ebd9c4a282000d722a5b", - "parentId": "66c90dc0c7d43f68b9105db1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c8d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c8d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 3 + { + "_id": "66c90dc0c7d43f68b9105c8f", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc0c7d43f68b9105c8d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00031", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105db7", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c90dc0c7d43f68b9105db1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105db9", - "_tpl": "5a16bb52fcdbcb001a3b00dc", - "parentId": "66c90dc0c7d43f68b9105db1", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c91", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c91", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105dbb", - "_tpl": "5aa2a7e8e5b5b00016327c16", - "parentId": "66c90dc0c7d43f68b9105db1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105c93", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc0c7d43f68b9105c91", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105dc3", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105dc3", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00099", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105dc5", - "_tpl": "593d493f86f7745e6b2ceb22", - "parentId": "66c90dc0c7d43f68b9105dc3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105dc7", - "_tpl": "5a0abb6e1526d8000a025282", - "parentId": "66c90dc0c7d43f68b9105dc3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105c95", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c95", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105dc8", - "_tpl": "59e7711e86f7746cae05fbe1", - "parentId": "66c90dc0c7d43f68b9105dc3", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105c97", + "_tpl": "5b432c305acfc40019478128", + "parentId": "66c90dc0c7d43f68b9105c95", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105c99", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c90dc0c7d43f68b9105c95", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc0c7d43f68b9105dc9", - "_tpl": "657ba50c23918923cb0df56c", - "parentId": "66c90dc0c7d43f68b9105dc8", - "slotId": "Helmet_top" - }, - { - "_id": "66c90dc0c7d43f68b9105dca", - "_tpl": "657ba5439ba22f103e08139f", - "parentId": "66c90dc0c7d43f68b9105dc8", - "slotId": "Helmet_back" - }, - { - "_id": "66c90dc0c7d43f68b9105dcb", - "_tpl": "657ba57af58ba5a62501079e", - "parentId": "66c90dc0c7d43f68b9105dc8", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00042", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105dcd", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105dcd", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00079", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105dcf", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc0c7d43f68b9105dcd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 3 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105dd1", - "_tpl": "5a26ac0ec4a28200741e1e18", - "parentId": "66c90dc0c7d43f68b9105dcd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105c9b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c9b", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 9 + { + "_id": "66c90dc0c7d43f68b9105c9d", + "_tpl": "6567e7681265c8a131069b0f", + "parentId": "66c90dc0c7d43f68b9105c9b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00046", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105dd4", - "_tpl": "657025cfbfc87b3a34093253", - "parentId": "66c90dc0c7d43f68b9105dcd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105c9f", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105c9f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105ca1", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc0c7d43f68b9105c9f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00045", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105dd5", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66c90dc0c7d43f68b9105dd4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105dd8", - "_tpl": "5737287724597765e1625ae2", - "parentId": "66c90dc0c7d43f68b9105dcd", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105ca3", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ca3", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105dd9", - "_tpl": "573720e02459776143012541", - "parentId": "66c90dc0c7d43f68b9105dd8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + { + "_id": "66c90dc0c7d43f68b9105ca5", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dc0c7d43f68b9105ca3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00073", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105ddf", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ddf", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00044", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105de1", - "_tpl": "57513f07245977207e26a311", - "parentId": "66c90dc0c7d43f68b9105ddf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105de3", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66c90dc0c7d43f68b9105ddf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105ca7", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ca7", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ca9", + "_tpl": "5ad5d49886f77455f9731921", + "parentId": "66c90dc0c7d43f68b9105ca7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00061", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105de5", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105de5", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00043", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105de7", - "_tpl": "5af0534a86f7743b6f354284", - "parentId": "66c90dc0c7d43f68b9105de5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105de9", - "_tpl": "5b4325355acfc40019478126", - "parentId": "66c90dc0c7d43f68b9105de5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105cab", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105cab", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105cad", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66c90dc0c7d43f68b9105cab", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105dea", - "_tpl": "5b4329f05acfc47a86086aa1", - "parentId": "66c90dc0c7d43f68b9105de5", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - } - }, - { - "_id": "66c90dc0c7d43f68b9105deb", - "_tpl": "65711b07a330b8c9060f7b01", - "parentId": "66c90dc0c7d43f68b9105dea", - "slotId": "Helmet_top" - }, - { - "_id": "66c90dc0c7d43f68b9105dec", - "_tpl": "65711b489eb8c145180dbb9d", - "parentId": "66c90dc0c7d43f68b9105dea", - "slotId": "Helmet_back" - }, - { - "_id": "66c90dc0c7d43f68b9105ded", - "_tpl": "65711b9b65daf6aa960c9b1b", - "parentId": "66c90dc0c7d43f68b9105dea", - "slotId": "helmet_eyes" - }, - { - "_id": "66c90dc0c7d43f68b9105dee", - "_tpl": "65711bc79eb8c145180dbba1", - "parentId": "66c90dc0c7d43f68b9105dea", - "slotId": "helmet_jaw" - }, - { - "_id": "66c90dc0c7d43f68b9105def", - "_tpl": "65711b706d197c216005b31c", - "parentId": "66c90dc0c7d43f68b9105dea", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105df1", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66c90dc0c7d43f68b9105de5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105caf", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105caf", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105df3", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c90dc0c7d43f68b9105de5", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105cb1", + "_tpl": "59e35de086f7741778269d84", + "parentId": "66c90dc0c7d43f68b9105caf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105cb3", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc0c7d43f68b9105caf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e01", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e01", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e02", - "_tpl": "5ab8e4ed86f7742d8e50c7fa", - "parentId": "66c90dc0c7d43f68b9105e01", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e03", - "_tpl": "657044e971369562b300ce9b", - "parentId": "66c90dc0c7d43f68b9105e02", - "slotId": "Soft_armor_front" - }, - { - "_id": "66c90dc0c7d43f68b9105e04", - "_tpl": "657045741bd9beedc40b7299", - "parentId": "66c90dc0c7d43f68b9105e02", - "slotId": "Soft_armor_back" - }, - { - "_id": "66c90dc0c7d43f68b9105e05", - "_tpl": "657045b97e80617cee095bda", - "parentId": "66c90dc0c7d43f68b9105e02", - "slotId": "Soft_armor_left" + { + "Id": "container_City_NW_01_DesignStuff_00030", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e06", - "_tpl": "6570460471369562b300ce9f", - "parentId": "66c90dc0c7d43f68b9105e02", - "slotId": "soft_armor_right" - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105e16", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e16", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e18", - "_tpl": "5aa66be6e5b5b0214e506e97", - "parentId": "66c90dc0c7d43f68b9105e16", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105cb5", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105cb5", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e1a", - "_tpl": "5ac4c50d5acfc40019262e87", - "parentId": "66c90dc0c7d43f68b9105e16", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cb7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105cb5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1064 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105cb9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105cb5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 570 + } } + ] + }, + { + "Id": "container_City_NW_01_DesignStuff_00098", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e1c", - "_tpl": "5c88f24b2e22160bc12c69a6", - "parentId": "66c90dc0c7d43f68b9105e16", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e1e", - "_tpl": "606ef0812535c57a13424d20", - "parentId": "66c90dc0c7d43f68b9105e16", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105cbb", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105cbb", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e20", - "_tpl": "66b5f693acff495a294927e3", - "parentId": "66c90dc0c7d43f68b9105e16", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cbd", + "_tpl": "603618feffd42c541047f771", + "parentId": "66c90dc0c7d43f68b9105cbb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e22", - "_tpl": "57c55f172459772d27602381", - "parentId": "66c90dc0c7d43f68b9105e16", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e24", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e24", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e26", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc0c7d43f68b9105e24", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cbf", + "_tpl": "5f63418ef5750b524b45f116", + "parentId": "66c90dc0c7d43f68b9105cbb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e28", - "_tpl": "5c1267ee86f77416ec610f72", - "parentId": "66c90dc0c7d43f68b9105e24", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e36", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e36", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e38", - "_tpl": "5ac4c50d5acfc40019262e87", - "parentId": "66c90dc0c7d43f68b9105e36", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cc1", + "_tpl": "668fe5c5f35310705d02b696", + "parentId": "66c90dc0c7d43f68b9105cbb", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e3a", - "_tpl": "5a9d56c8a2750c0032157146", - "parentId": "66c90dc0c7d43f68b9105e36", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cc3", + "_tpl": "5fd4c4fa16cac650092f6771", + "parentId": "66c90dc0c7d43f68b9105cbb", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e3c", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "66c90dc0c7d43f68b9105e36", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00044", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e3e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e3e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e40", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b9105e3e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cc5", + "_tpl": "5a27b281c4a28200741e1e52", + "parentId": "66c90dc0c7d43f68b9105cbb", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e42", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc0c7d43f68b9105e3e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105cc7", + "_tpl": "571a279b24597720b4066566", + "parentId": "66c90dc0c7d43f68b9105cbb", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00067", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e44", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e44", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e46", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "parentId": "66c90dc0c7d43f68b9105e44", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e48", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc0c7d43f68b9105e44", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105cc9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105cc9", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e4a", - "_tpl": "5a16b672fcdbcb001912fa83", - "parentId": "66c90dc0c7d43f68b9105e44", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105ccb", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b9105cc9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00045", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e4c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e4c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00111", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e4e", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc0c7d43f68b9105e4c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e50", - "_tpl": "66b37f114410565a8f6789e2", - "parentId": "66c90dc0c7d43f68b9105e4c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105ccd", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ccd", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e52", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b9105e4c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105ccf", + "_tpl": "5a01c29586f77474660c694c", + "parentId": "66c90dc0c7d43f68b9105ccd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105cd1", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c90dc0c7d43f68b9105ccd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 31 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00056", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e54", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e54", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_01_DesignStuff_00102", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e56", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc0c7d43f68b9105e54", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e58", - "_tpl": "6033fa48ffd42c541047f728", - "parentId": "66c90dc0c7d43f68b9105e54", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105cd3", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105cd3", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e5a", - "_tpl": "5673de654bdc2d180f8b456d", - "parentId": "66c90dc0c7d43f68b9105e54", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cd5", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c90dc0c7d43f68b9105cd3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e5b", - "_tpl": "5aa7cfc0e5b5b00015693143", - "parentId": "66c90dc0c7d43f68b9105e54", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cd7", + "_tpl": "5755356824597772cb798962", + "parentId": "66c90dc0c7d43f68b9105cd3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105cd9", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "66c90dc0c7d43f68b9105cd3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_NW_03_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e5c", - "_tpl": "657baaf0b7e9ca9a02045c02", - "parentId": "66c90dc0c7d43f68b9105e5b", - "slotId": "Helmet_top" - }, - { - "_id": "66c90dc0c7d43f68b9105e5d", - "_tpl": "657bab6ec6f689d3a205b85f", - "parentId": "66c90dc0c7d43f68b9105e5b", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e5e", - "_tpl": "657babc6f58ba5a6250107a2", - "parentId": "66c90dc0c7d43f68b9105e5b", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e60", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e60", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e62", - "_tpl": "5e56991336989c75ab4f03f6", - "parentId": "66c90dc0c7d43f68b9105e60", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105cdb", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105cdb", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e64", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c90dc0c7d43f68b9105e60", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cdc", + "_tpl": "5c0e446786f7742013381639", + "parentId": "66c90dc0c7d43f68b9105cdb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 39 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e66", - "_tpl": "6415d33eda439c6a97048b5b", - "parentId": "66c90dc0c7d43f68b9105e60", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cdd", + "_tpl": "657087577f6d4590ac0d2109", + "parentId": "66c90dc0c7d43f68b9105cdc", + "slotId": "Soft_armor_front" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e68", - "_tpl": "5f994730c91ed922dd355de3", - "parentId": "66c90dc0c7d43f68b9105e60", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cde", + "_tpl": "6570880f4a747dbb63005ee5", + "parentId": "66c90dc0c7d43f68b9105cdc", + "slotId": "Soft_armor_back" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e6a", - "_tpl": "5cdeac42d7f00c000d36ba73", - "parentId": "66c90dc0c7d43f68b9105e60", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105cdf", + "_tpl": "65708afe4a747dbb63005eee", + "parentId": "66c90dc0c7d43f68b9105cdc", + "slotId": "Collar" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e6c", - "_tpl": "5f633f791b231926f2329f13", - "parentId": "66c90dc0c7d43f68b9105e60", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105ce0", + "_tpl": "65708b4c4a747dbb63005ef3", + "parentId": "66c90dc0c7d43f68b9105cdc", + "slotId": "Groin" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e6e", - "_tpl": "5fc275cf85fd526b824a571a", - "parentId": "66c90dc0c7d43f68b9105e60", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105ce2", + "_tpl": "5b4326435acfc433000ed01d", + "parentId": "66c90dc0c7d43f68b9105cdb", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 2 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e70", - "_tpl": "62389bc9423ed1685422dc57", - "parentId": "66c90dc0c7d43f68b9105e60", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105ce4", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66c90dc0c7d43f68b9105cdb", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 10 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e72", - "_tpl": "5ab8f85d86f7745cd93a1cf5", - "parentId": "66c90dc0c7d43f68b9105e60", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105ce6", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66c90dc0c7d43f68b9105cdb", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e74", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e74", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_NW_03_DesignStuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e77", - "_tpl": "65702558cfc010a0f5006a25", - "parentId": "66c90dc0c7d43f68b9105e74", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105cec", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105cec", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105cee", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105cec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 685 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105cf0", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105cec", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1041 + } } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00088", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e78", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66c90dc0c7d43f68b9105e77", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e7c", - "_tpl": "6570247ebfc87b3a34093229", - "parentId": "66c90dc0c7d43f68b9105e74", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105cf2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105cf2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e7d", - "_tpl": "5d6e68d1a4b93622fe60e845", - "parentId": "66c90dc0c7d43f68b9105e7c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + { + "_id": "66c90dc0c7d43f68b9105cf4", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc0c7d43f68b9105cf2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e7e", - "_tpl": "5d6e68d1a4b93622fe60e845", - "parentId": "66c90dc0c7d43f68b9105e7c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e81", - "_tpl": "57372ebf2459776862260582", - "parentId": "66c90dc0c7d43f68b9105e74", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105cf6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105cf6", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e82", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c90dc0c7d43f68b9105e81", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + { + "_id": "66c90dc0c7d43f68b9105cf8", + "_tpl": "63d114019e35b334d82302f7", + "parentId": "66c90dc0c7d43f68b9105cf6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105cfa", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66c90dc0c7d43f68b9105cf6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 4 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e84", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e84", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e86", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66c90dc0c7d43f68b9105e84", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e88", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc0c7d43f68b9105e84", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d00", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d00", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e8a", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c90dc0c7d43f68b9105e84", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105d02", + "_tpl": "59e3556c86f7741776641ac2", + "parentId": "66c90dc0c7d43f68b9105d00", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 26 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e8c", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66c90dc0c7d43f68b9105e84", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105d04", + "_tpl": "5fd4c60f875c30179f5d04c2", + "parentId": "66c90dc0c7d43f68b9105d00", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105e8e", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc0c7d43f68b9105e84", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105d06", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66c90dc0c7d43f68b9105d00", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d08", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66c90dc0c7d43f68b9105d00", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d0a", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc0c7d43f68b9105d00", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105e90", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105e90", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e92", - "_tpl": "60391a8b3364dc22b04d0ce5", - "parentId": "66c90dc0c7d43f68b9105e90", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e94", - "_tpl": "5e2af47786f7746d404f3aaa", - "parentId": "66c90dc0c7d43f68b9105e90", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105d0c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d0c", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105d0e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105d0c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 658 + } } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00041", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e96", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c90dc0c7d43f68b9105e90", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e97", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66c90dc0c7d43f68b9105e90", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d10", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d10", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d13", + "_tpl": "5737330a2459776af32363a1", + "parentId": "66c90dc0c7d43f68b9105d10", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d14", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c90dc0c7d43f68b9105d13", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c90dc0c7d43f68b9105d16", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66c90dc0c7d43f68b9105d10", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 3 } } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e98", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66c90dc0c7d43f68b9105e97", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e9c", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66c90dc0c7d43f68b9105e98", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d27", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d27", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d29", + "_tpl": "5ba26812d4351e003201fef1", + "parentId": "66c90dc0c7d43f68b9105d27", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 53 + } } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e99", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66c90dc0c7d43f68b9105e97", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc0c7d43f68b9105e9a", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66c90dc0c7d43f68b9105e99", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc0c7d43f68b9105e9b", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66c90dc0c7d43f68b9105e97", - "slotId": "mod_pistolgrip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105e9e", - "_tpl": "5aa7e3abe5b5b000171d064d", - "parentId": "66c90dc0c7d43f68b9105e90", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d2b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d2b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d2e", + "_tpl": "573728f324597765e5728561", + "parentId": "66c90dc0c7d43f68b9105d2b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d2f", + "_tpl": "5737218f245977612125ba51", + "parentId": "66c90dc0c7d43f68b9105d2e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d31", + "_tpl": "5d6fc78386f77449d825f9dc", + "parentId": "66c90dc0c7d43f68b9105d2b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105ea0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ea0", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105ea1", - "_tpl": "5bd70322209c4d00d7167b8f", - "parentId": "66c90dc0c7d43f68b9105ea0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + { + "Id": "container_City_Roads_DesignStuff_00019", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ea2", - "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "66c90dc0c7d43f68b9105ea1", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ea7", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66c90dc0c7d43f68b9105ea2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 12.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d33", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d33", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d35", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c90dc0c7d43f68b9105d33", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 49 + } } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00062", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ea3", - "_tpl": "5ba26acdd4351e003562908e", - "parentId": "66c90dc0c7d43f68b9105ea1", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ea4", - "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "66c90dc0c7d43f68b9105ea1", - "slotId": "mod_sight_front" - }, - { - "_id": "66c90dc0c7d43f68b9105ea5", - "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "66c90dc0c7d43f68b9105ea1", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc0c7d43f68b9105ea6", - "_tpl": "5bd704e7209c4d00d7167c31", - "parentId": "66c90dc0c7d43f68b9105ea1", - "slotId": "mod_stock" - }, - { - "_id": "66c90dc0c7d43f68b9105ea9", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c90dc0c7d43f68b9105ea0", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d37", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d37", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d39", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c90dc0c7d43f68b9105d37", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105eab", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105eab", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ead", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66c90dc0c7d43f68b9105eab", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105eaf", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc0c7d43f68b9105eab", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d56", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d56", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105eb1", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc0c7d43f68b9105eab", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105d58", + "_tpl": "5e2aedd986f7746d404f3aa4", + "parentId": "66c90dc0c7d43f68b9105d56", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105eb3", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc0c7d43f68b9105eab", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105d5a", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b9105d56", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105eb5", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66c90dc0c7d43f68b9105eab", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105eb7", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105eb7", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105eb9", - "_tpl": "5aa2ba46e5b5b000137b758d", - "parentId": "66c90dc0c7d43f68b9105eb7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105d5c", + "_tpl": "5bc9c29cd4351e003562b8a3", + "parentId": "66c90dc0c7d43f68b9105d56", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00043", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105ec1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ec1", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ec3", - "_tpl": "5d6e69b9a4b9361bc8618958", - "parentId": "66c90dc0c7d43f68b9105ec1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 8 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ec5", - "_tpl": "5737218f245977612125ba51", - "parentId": "66c90dc0c7d43f68b9105ec1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d5e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d5e", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 26 - } - }, - { - "_id": "66c90dc0c7d43f68b9105ec7", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66c90dc0c7d43f68b9105ec1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 48 + { + "_id": "66c90dc0c7d43f68b9105d60", + "_tpl": "603618feffd42c541047f771", + "parentId": "66c90dc0c7d43f68b9105d5e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00033", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105ec9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ec9", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ecb", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105ec9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 641 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105ecd", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ecd", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ecf", - "_tpl": "5d6e6806a4b936088465b17e", - "parentId": "66c90dc0c7d43f68b9105ecd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 8 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d62", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d62", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d64", + "_tpl": "5a718da68dc32e000d46d264", + "parentId": "66c90dc0c7d43f68b9105d62", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d66", + "_tpl": "584924ec24597768f12ae244", + "parentId": "66c90dc0c7d43f68b9105d62", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105ed1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ed1", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ed3", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66c90dc0c7d43f68b9105ed1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00065", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105ed5", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ed5", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ed7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105ed5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d68", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d68", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1103 - } - }, - { - "_id": "66c90dc0c7d43f68b9105ed8", - "_tpl": "5648a7494bdc2d9d488b4583", - "parentId": "66c90dc0c7d43f68b9105ed5", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - } - }, - { - "_id": "66c90dc0c7d43f68b9105ed9", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "66c90dc0c7d43f68b9105ed8", - "slotId": "Soft_armor_front" - }, - { - "_id": "66c90dc0c7d43f68b9105eda", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "66c90dc0c7d43f68b9105ed8", - "slotId": "Soft_armor_back" - }, - { - "_id": "66c90dc0c7d43f68b9105edb", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "66c90dc0c7d43f68b9105ed8", - "slotId": "Soft_armor_left" - }, - { - "_id": "66c90dc0c7d43f68b9105edc", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "66c90dc0c7d43f68b9105ed8", - "slotId": "soft_armor_right" - }, - { - "_id": "66c90dc0c7d43f68b9105ede", - "_tpl": "5c10c8fd86f7743d7d706df3", - "parentId": "66c90dc0c7d43f68b9105ed5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105d6a", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66c90dc0c7d43f68b9105d68", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d6c", + "_tpl": "5cf67a1bd7f00c06585fb6f3", + "parentId": "66c90dc0c7d43f68b9105d68", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d6e", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "parentId": "66c90dc0c7d43f68b9105d68", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d70", + "_tpl": "647dd2b8a12ebf96c3031655", + "parentId": "66c90dc0c7d43f68b9105d68", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d72", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "66c90dc0c7d43f68b9105d68", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_Roads_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105ee0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ee0", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00047", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ee2", - "_tpl": "5b7d68af5acfc400170e30c3", - "parentId": "66c90dc0c7d43f68b9105ee0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ee4", - "_tpl": "5a32a064c4a28200741e22de", - "parentId": "66c90dc0c7d43f68b9105ee0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d74", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d74", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105ee6", - "_tpl": "570fd6c2d2720bc6458b457f", - "parentId": "66c90dc0c7d43f68b9105ee0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105d76", + "_tpl": "5d6e68e6a4b9361c140bcfe0", + "parentId": "66c90dc0c7d43f68b9105d74", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105ee8", - "_tpl": "5caf17c9ae92150b30006be1", - "parentId": "66c90dc0c7d43f68b9105ee0", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105d78", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66c90dc0c7d43f68b9105d74", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 3 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105eea", - "_tpl": "5bfe86a20db834001d23e8f7", - "parentId": "66c90dc0c7d43f68b9105ee0", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105d7a", + "_tpl": "5d2f213448f0355009199284", + "parentId": "66c90dc0c7d43f68b9105d74", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105d7c", + "_tpl": "65815f0e647e3d7246384e14", + "parentId": "66c90dc0c7d43f68b9105d74", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105eec", - "_tpl": "6267c6396b642f77f56f5c1c", - "parentId": "66c90dc0c7d43f68b9105ee0", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105eee", - "_tpl": "66b5f6a28ca68c6461709ed8", - "parentId": "66c90dc0c7d43f68b9105ee0", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d7e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d7e", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105ef0", - "_tpl": "60b52e5bc7d8103275739d67", - "parentId": "66c90dc0c7d43f68b9105ee0", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105d80", + "_tpl": "5e85a9a6eacf8c039e4e2ac1", + "parentId": "66c90dc0c7d43f68b9105d7e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 5 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105ef2", - "_tpl": "6529370c405a5f51dd023db8", - "parentId": "66c90dc0c7d43f68b9105ee0", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105d82", + "_tpl": "57ffb0062459777a045af529", + "parentId": "66c90dc0c7d43f68b9105d7e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105f06", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f06", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f08", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105f06", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 780 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f0a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105f06", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1010 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105f0c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f0c", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f0e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105f0c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d84", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d84", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 811 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f10", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105f0c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1062 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f12", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f12", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f14", - "_tpl": "5a0c27731526d80618476ac4", - "parentId": "66c90dc0c7d43f68b9105f12", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105d86", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c90dc0c7d43f68b9105d84", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d87", + "_tpl": "66b5f65ca7f72d197e70bcd6", + "parentId": "66c90dc0c7d43f68b9105d84", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d88", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "66c90dc0c7d43f68b9105d87", + "slotId": "Helmet_top" + }, + { + "_id": "66c90dc0c7d43f68b9105d89", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "66c90dc0c7d43f68b9105d87", + "slotId": "Helmet_back" + }, + { + "_id": "66c90dc0c7d43f68b9105d8b", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc0c7d43f68b9105d84", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d8d", + "_tpl": "5bd06f5d86f77427101ad47c", + "parentId": "66c90dc0c7d43f68b9105d84", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d8f", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc0c7d43f68b9105d84", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f16", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f16", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f18", - "_tpl": "5734773724597737fd047c14", - "parentId": "66c90dc0c7d43f68b9105f16", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f1a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f1a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f1c", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dc0c7d43f68b9105f1a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105d99", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105d99", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d9b", + "_tpl": "5bed61680db834001d2c45ab", + "parentId": "66c90dc0c7d43f68b9105d99", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d9d", + "_tpl": "5c6162682e22160010261a2b", + "parentId": "66c90dc0c7d43f68b9105d99", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105d9f", + "_tpl": "6086b5392535c57a13424d70", + "parentId": "66c90dc0c7d43f68b9105d99", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f1e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f1e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f1f", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66c90dc0c7d43f68b9105f1e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f20", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66c90dc0c7d43f68b9105f1f", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dc0c7d43f68b9105f21", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66c90dc0c7d43f68b9105f1f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c90dc0c7d43f68b9105f22", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66c90dc0c7d43f68b9105f1f", - "slotId": "mod_magazine" + { + "Id": "container_City_Roads_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f23", - "_tpl": "5736026a245977644601dc61", - "parentId": "66c90dc0c7d43f68b9105f22", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f25", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66c90dc0c7d43f68b9105f1e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105da1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105da1", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f27", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "parentId": "66c90dc0c7d43f68b9105f1e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f29", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f29", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f2b", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66c90dc0c7d43f68b9105f29", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105da3", + "_tpl": "593d1fa786f7746da62d61ac", + "parentId": "66c90dc0c7d43f68b9105da1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f2d", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66c90dc0c7d43f68b9105f29", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105da5", + "_tpl": "5d5fca1ea4b93635fd598c07", + "parentId": "66c90dc0c7d43f68b9105da1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105da7", + "_tpl": "5fbc227aa56d053a3543f79e", + "parentId": "66c90dc0c7d43f68b9105da1", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00019", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105f37", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f37", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00014", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f39", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105f37", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1028 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00058", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f3b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f3b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f3d", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dc0c7d43f68b9105f3b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105da9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105da9", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dab", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66c90dc0c7d43f68b9105da9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dad", + "_tpl": "5d1c819a86f774771b0acd6c", + "parentId": "66c90dc0c7d43f68b9105da9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105daf", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "66c90dc0c7d43f68b9105da9", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f3f", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f3f", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00046", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f41", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66c90dc0c7d43f68b9105f3f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f43", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f43", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f45", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c90dc0c7d43f68b9105f43", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105db1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105db1", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f47", - "_tpl": "57347d90245977448f7b7f65", - "parentId": "66c90dc0c7d43f68b9105f43", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105db3", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66c90dc0c7d43f68b9105db1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f49", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c90dc0c7d43f68b9105f43", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105db5", + "_tpl": "5a38ebd9c4a282000d722a5b", + "parentId": "66c90dc0c7d43f68b9105db1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc0c7d43f68b9105db7", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c90dc0c7d43f68b9105db1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105db9", + "_tpl": "5a16bb52fcdbcb001a3b00dc", + "parentId": "66c90dc0c7d43f68b9105db1", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dbb", + "_tpl": "5aa2a7e8e5b5b00016327c16", + "parentId": "66c90dc0c7d43f68b9105db1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00045", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f4b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f4b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f4d", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc0c7d43f68b9105f4b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f4f", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc0c7d43f68b9105f4b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105dc3", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105dc3", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f51", - "_tpl": "5bc9c29cd4351e003562b8a3", - "parentId": "66c90dc0c7d43f68b9105f4b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f59", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f59", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f5c", - "_tpl": "573725b0245977612125bae2", - "parentId": "66c90dc0c7d43f68b9105f59", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105dc5", + "_tpl": "593d493f86f7745e6b2ceb22", + "parentId": "66c90dc0c7d43f68b9105dc3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f5d", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c90dc0c7d43f68b9105f5c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f60", - "_tpl": "5737256c2459776125652acd", - "parentId": "66c90dc0c7d43f68b9105f59", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105dc7", + "_tpl": "5a0abb6e1526d8000a025282", + "parentId": "66c90dc0c7d43f68b9105dc3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dc8", + "_tpl": "59e7711e86f7746cae05fbe1", + "parentId": "66c90dc0c7d43f68b9105dc3", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dc9", + "_tpl": "657ba50c23918923cb0df56c", + "parentId": "66c90dc0c7d43f68b9105dc8", + "slotId": "Helmet_top" + }, + { + "_id": "66c90dc0c7d43f68b9105dca", + "_tpl": "657ba5439ba22f103e08139f", + "parentId": "66c90dc0c7d43f68b9105dc8", + "slotId": "Helmet_back" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105dcb", + "_tpl": "657ba57af58ba5a62501079e", + "parentId": "66c90dc0c7d43f68b9105dc8", + "slotId": "Helmet_ears" } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00042", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f61", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66c90dc0c7d43f68b9105f60", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f65", - "_tpl": "57372fc52459776998772ca1", - "parentId": "66c90dc0c7d43f68b9105f59", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105dcd", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105dcd", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dcf", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc0c7d43f68b9105dcd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dd1", + "_tpl": "5a26ac0ec4a28200741e1e18", + "parentId": "66c90dc0c7d43f68b9105dcd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 9 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dd4", + "_tpl": "657025cfbfc87b3a34093253", + "parentId": "66c90dc0c7d43f68b9105dcd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dd5", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66c90dc0c7d43f68b9105dd4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dd8", + "_tpl": "5737287724597765e1625ae2", + "parentId": "66c90dc0c7d43f68b9105dcd", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105dd9", + "_tpl": "573720e02459776143012541", + "parentId": "66c90dc0c7d43f68b9105dd8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00073", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f66", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc0c7d43f68b9105f65", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f67", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc0c7d43f68b9105f65", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105ddf", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ddf", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105de1", + "_tpl": "57513f07245977207e26a311", + "parentId": "66c90dc0c7d43f68b9105ddf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105de3", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66c90dc0c7d43f68b9105ddf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f71", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f71", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00061", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f73", - "_tpl": "587e0531245977466077a0f7", - "parentId": "66c90dc0c7d43f68b9105f71", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f75", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "66c90dc0c7d43f68b9105f71", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105de5", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105de5", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f77", - "_tpl": "65f05b9d39dab9e9ec049cfd", - "parentId": "66c90dc0c7d43f68b9105f71", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105de7", + "_tpl": "5af0534a86f7743b6f354284", + "parentId": "66c90dc0c7d43f68b9105de5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105de9", + "_tpl": "5b4325355acfc40019478126", + "parentId": "66c90dc0c7d43f68b9105de5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105dea", + "_tpl": "5b4329f05acfc47a86086aa1", + "parentId": "66c90dc0c7d43f68b9105de5", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105deb", + "_tpl": "65711b07a330b8c9060f7b01", + "parentId": "66c90dc0c7d43f68b9105dea", + "slotId": "Helmet_top" + }, + { + "_id": "66c90dc0c7d43f68b9105dec", + "_tpl": "65711b489eb8c145180dbb9d", + "parentId": "66c90dc0c7d43f68b9105dea", + "slotId": "Helmet_back" + }, + { + "_id": "66c90dc0c7d43f68b9105ded", + "_tpl": "65711b9b65daf6aa960c9b1b", + "parentId": "66c90dc0c7d43f68b9105dea", + "slotId": "helmet_eyes" + }, + { + "_id": "66c90dc0c7d43f68b9105dee", + "_tpl": "65711bc79eb8c145180dbba1", + "parentId": "66c90dc0c7d43f68b9105dea", + "slotId": "helmet_jaw" + }, + { + "_id": "66c90dc0c7d43f68b9105def", + "_tpl": "65711b706d197c216005b31c", + "parentId": "66c90dc0c7d43f68b9105dea", + "slotId": "Helmet_ears" + }, + { + "_id": "66c90dc0c7d43f68b9105df1", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66c90dc0c7d43f68b9105de5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105df3", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c90dc0c7d43f68b9105de5", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105f79", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f79", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f7b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105f79", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 638 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f7d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f7d", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f7f", - "_tpl": "5751496424597720a27126da", - "parentId": "66c90dc0c7d43f68b9105f7d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e01", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e01", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e02", + "_tpl": "5ab8e4ed86f7742d8e50c7fa", + "parentId": "66c90dc0c7d43f68b9105e01", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e03", + "_tpl": "657044e971369562b300ce9b", + "parentId": "66c90dc0c7d43f68b9105e02", + "slotId": "Soft_armor_front" + }, + { + "_id": "66c90dc0c7d43f68b9105e04", + "_tpl": "657045741bd9beedc40b7299", + "parentId": "66c90dc0c7d43f68b9105e02", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c90dc0c7d43f68b9105e05", + "_tpl": "657045b97e80617cee095bda", + "parentId": "66c90dc0c7d43f68b9105e02", + "slotId": "Soft_armor_left" + }, + { + "_id": "66c90dc0c7d43f68b9105e06", + "_tpl": "6570460471369562b300ce9f", + "parentId": "66c90dc0c7d43f68b9105e02", + "slotId": "soft_armor_right" } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f81", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f81", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f83", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc0c7d43f68b9105f81", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f85", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66c90dc0c7d43f68b9105f81", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105e16", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e16", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f87", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc0c7d43f68b9105f81", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105e18", + "_tpl": "5aa66be6e5b5b0214e506e97", + "parentId": "66c90dc0c7d43f68b9105e16", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105f89", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66c90dc0c7d43f68b9105f81", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105e1a", + "_tpl": "5ac4c50d5acfc40019262e87", + "parentId": "66c90dc0c7d43f68b9105e16", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e1c", + "_tpl": "5c88f24b2e22160bc12c69a6", + "parentId": "66c90dc0c7d43f68b9105e16", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e1e", + "_tpl": "606ef0812535c57a13424d20", + "parentId": "66c90dc0c7d43f68b9105e16", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e20", + "_tpl": "66b5f693acff495a294927e3", + "parentId": "66c90dc0c7d43f68b9105e16", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e22", + "_tpl": "57c55f172459772d27602381", + "parentId": "66c90dc0c7d43f68b9105e16", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f99", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f99", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f9b", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66c90dc0c7d43f68b9105f99", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105f9d", - "_tpl": "635a758bfefc88a93f021b8a", - "parentId": "66c90dc0c7d43f68b9105f99", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e24", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e24", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e26", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc0c7d43f68b9105e24", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e28", + "_tpl": "5c1267ee86f77416ec610f72", + "parentId": "66c90dc0c7d43f68b9105e24", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105f9f", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105f9f", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fa1", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc0c7d43f68b9105f9f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fa3", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66c90dc0c7d43f68b9105f9f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e36", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e36", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fa5", - "_tpl": "5c1265fc86f7743f896a21c2", - "parentId": "66c90dc0c7d43f68b9105f9f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105fa7", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105fa7", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fa9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105fa7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105e38", + "_tpl": "5ac4c50d5acfc40019262e87", + "parentId": "66c90dc0c7d43f68b9105e36", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 580 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fab", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105fa7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1148 + { + "_id": "66c90dc0c7d43f68b9105e3a", + "_tpl": "5a9d56c8a2750c0032157146", + "parentId": "66c90dc0c7d43f68b9105e36", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e3c", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "66c90dc0c7d43f68b9105e36", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00061", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105fad", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105fad", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00044", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105faf", - "_tpl": "57347da92459774491567cf5", - "parentId": "66c90dc0c7d43f68b9105fad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fb1", - "_tpl": "57347d9c245977448b40fa85", - "parentId": "66c90dc0c7d43f68b9105fad", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e3e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e3e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fb3", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c90dc0c7d43f68b9105fad", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105e40", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b9105e3e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e42", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc0c7d43f68b9105e3e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105fb9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105fb9", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00067", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fbb", - "_tpl": "5751496424597720a27126da", - "parentId": "66c90dc0c7d43f68b9105fb9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fbd", - "_tpl": "572b7fa524597762b747ce82", - "parentId": "66c90dc0c7d43f68b9105fb9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e44", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e44", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fbf", - "_tpl": "5f0596629e22f464da6bbdd9", - "parentId": "66c90dc0c7d43f68b9105fb9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105fc1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105fc1", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fc3", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66c90dc0c7d43f68b9105fc1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105e46", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "parentId": "66c90dc0c7d43f68b9105e44", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e48", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc0c7d43f68b9105e44", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e4a", + "_tpl": "5a16b672fcdbcb001912fa83", + "parentId": "66c90dc0c7d43f68b9105e44", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105fc5", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105fc5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00045", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fc7", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66c90dc0c7d43f68b9105fc5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00065", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105fc9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105fc9", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fcb", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66c90dc0c7d43f68b9105fc9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e4c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e4c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 7 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fcd", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c90dc0c7d43f68b9105fc9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105e4e", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc0c7d43f68b9105e4c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fcf", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66c90dc0c7d43f68b9105fc9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105e50", + "_tpl": "66b37f114410565a8f6789e2", + "parentId": "66c90dc0c7d43f68b9105e4c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fd1", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c90dc0c7d43f68b9105fc9", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 29 + { + "_id": "66c90dc0c7d43f68b9105e52", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b9105e4c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105fd3", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105fd3", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00056", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fd5", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b9105fd3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fd7", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc0c7d43f68b9105fd3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e54", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e54", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fd9", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66c90dc0c7d43f68b9105fd3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105e56", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc0c7d43f68b9105e54", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e58", + "_tpl": "6033fa48ffd42c541047f728", + "parentId": "66c90dc0c7d43f68b9105e54", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e5a", + "_tpl": "5673de654bdc2d180f8b456d", + "parentId": "66c90dc0c7d43f68b9105e54", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e5b", + "_tpl": "5aa7cfc0e5b5b00015693143", + "parentId": "66c90dc0c7d43f68b9105e54", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e5c", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "66c90dc0c7d43f68b9105e5b", + "slotId": "Helmet_top" + }, + { + "_id": "66c90dc0c7d43f68b9105e5d", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "66c90dc0c7d43f68b9105e5b", + "slotId": "Helmet_back" + }, + { + "_id": "66c90dc0c7d43f68b9105e5e", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "66c90dc0c7d43f68b9105e5b", + "slotId": "Helmet_ears" } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105fdb", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105fdb", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fdd", - "_tpl": "5efb0cabfb3e451d70735af5", - "parentId": "66c90dc0c7d43f68b9105fdb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 39 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fdf", - "_tpl": "572b7fa124597762b472f9d2", - "parentId": "66c90dc0c7d43f68b9105fdb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e60", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e60", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e62", + "_tpl": "5e56991336989c75ab4f03f6", + "parentId": "66c90dc0c7d43f68b9105e60", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e64", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c90dc0c7d43f68b9105e60", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 39 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e66", + "_tpl": "6415d33eda439c6a97048b5b", + "parentId": "66c90dc0c7d43f68b9105e60", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e68", + "_tpl": "5f994730c91ed922dd355de3", + "parentId": "66c90dc0c7d43f68b9105e60", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e6a", + "_tpl": "5cdeac42d7f00c000d36ba73", + "parentId": "66c90dc0c7d43f68b9105e60", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e6c", + "_tpl": "5f633f791b231926f2329f13", + "parentId": "66c90dc0c7d43f68b9105e60", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e6e", + "_tpl": "5fc275cf85fd526b824a571a", + "parentId": "66c90dc0c7d43f68b9105e60", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 2 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e70", + "_tpl": "62389bc9423ed1685422dc57", + "parentId": "66c90dc0c7d43f68b9105e60", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e72", + "_tpl": "5ab8f85d86f7745cd93a1cf5", + "parentId": "66c90dc0c7d43f68b9105e60", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105fe1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105fe1", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fe3", - "_tpl": "59fafb5d86f774067a6f2084", - "parentId": "66c90dc0c7d43f68b9105fe1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fe5", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66c90dc0c7d43f68b9105fe1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105fed", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105fed", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9105fef", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9105fed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 960 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e74", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e74", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e77", + "_tpl": "65702558cfc010a0f5006a25", + "parentId": "66c90dc0c7d43f68b9105e74", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e78", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66c90dc0c7d43f68b9105e77", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e7c", + "_tpl": "6570247ebfc87b3a34093229", + "parentId": "66c90dc0c7d43f68b9105e74", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e7d", + "_tpl": "5d6e68d1a4b93622fe60e845", + "parentId": "66c90dc0c7d43f68b9105e7c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e7e", + "_tpl": "5d6e68d1a4b93622fe60e845", + "parentId": "66c90dc0c7d43f68b9105e7c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e81", + "_tpl": "57372ebf2459776862260582", + "parentId": "66c90dc0c7d43f68b9105e74", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e82", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c90dc0c7d43f68b9105e81", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105ff1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ff1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ff3", - "_tpl": "591ae8f986f77406f854be45", - "parentId": "66c90dc0c7d43f68b9105ff1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e84", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e84", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e86", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66c90dc0c7d43f68b9105e84", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e88", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc0c7d43f68b9105e84", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e8a", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c90dc0c7d43f68b9105e84", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 26 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e8c", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66c90dc0c7d43f68b9105e84", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e8e", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc0c7d43f68b9105e84", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00030", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9105ff9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ff9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105ffb", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc0c7d43f68b9105ff9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105e90", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105e90", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e92", + "_tpl": "60391a8b3364dc22b04d0ce5", + "parentId": "66c90dc0c7d43f68b9105e90", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e94", + "_tpl": "5e2af47786f7746d404f3aaa", + "parentId": "66c90dc0c7d43f68b9105e90", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e96", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c90dc0c7d43f68b9105e90", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e97", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66c90dc0c7d43f68b9105e90", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c90dc0c7d43f68b9105e98", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66c90dc0c7d43f68b9105e97", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc0c7d43f68b9105e9c", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66c90dc0c7d43f68b9105e98", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105e99", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66c90dc0c7d43f68b9105e97", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc0c7d43f68b9105e9a", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66c90dc0c7d43f68b9105e99", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc0c7d43f68b9105e9b", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66c90dc0c7d43f68b9105e97", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66c90dc0c7d43f68b9105e9e", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "66c90dc0c7d43f68b9105e90", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00055", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9105ffd", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9105ffd", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9105fff", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66c90dc0c7d43f68b9105ffd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105ea0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ea0", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ea1", + "_tpl": "5bd70322209c4d00d7167b8f", + "parentId": "66c90dc0c7d43f68b9105ea0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ea2", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "66c90dc0c7d43f68b9105ea1", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc0c7d43f68b9105ea7", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66c90dc0c7d43f68b9105ea2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 12.0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ea3", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "66c90dc0c7d43f68b9105ea1", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc0c7d43f68b9105ea4", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "66c90dc0c7d43f68b9105ea1", + "slotId": "mod_sight_front" + }, + { + "_id": "66c90dc0c7d43f68b9105ea5", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "66c90dc0c7d43f68b9105ea1", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc0c7d43f68b9105ea6", + "_tpl": "5bd704e7209c4d00d7167c31", + "parentId": "66c90dc0c7d43f68b9105ea1", + "slotId": "mod_stock" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105ea9", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c90dc0c7d43f68b9105ea0", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106001", - "_tpl": "5c12688486f77426843c7d32", - "parentId": "66c90dc0c7d43f68b9105ffd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105eab", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105eab", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ead", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66c90dc0c7d43f68b9105eab", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105eaf", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc0c7d43f68b9105eab", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105eb1", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc0c7d43f68b9105eab", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105eb3", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc0c7d43f68b9105eab", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105eb5", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66c90dc0c7d43f68b9105eab", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106003", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106003", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106004", - "_tpl": "5aa7e454e5b5b0214e506fa2", - "parentId": "66c90dc0c7d43f68b9106003", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105eb7", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105eb7", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105eb9", + "_tpl": "5aa2ba46e5b5b000137b758d", + "parentId": "66c90dc0c7d43f68b9105eb7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00043", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106005", - "_tpl": "657f925dada5fadd1f07a57a", - "parentId": "66c90dc0c7d43f68b9106004", - "slotId": "Helmet_top" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106006", - "_tpl": "657f92acada5fadd1f07a57e", - "parentId": "66c90dc0c7d43f68b9106004", - "slotId": "Helmet_back" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105ec1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ec1", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ec3", + "_tpl": "5d6e69b9a4b9361bc8618958", + "parentId": "66c90dc0c7d43f68b9105ec1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ec5", + "_tpl": "5737218f245977612125ba51", + "parentId": "66c90dc0c7d43f68b9105ec1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 26 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ec7", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66c90dc0c7d43f68b9105ec1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 48 + } + } + ] + }, + { + "Id": "container_City_Roads_DesignStuff_00033", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106007", - "_tpl": "657f92e7f4c82973640b2354", - "parentId": "66c90dc0c7d43f68b9106004", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106009", - "_tpl": "5f633f68f5750b524b45f112", - "parentId": "66c90dc0c7d43f68b9106003", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105ec9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ec9", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ecb", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105ec9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 641 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00044", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910600b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910600b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910600d", - "_tpl": "5751496424597720a27126da", - "parentId": "66c90dc0c7d43f68b910600b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105ecd", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ecd", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105ecf", + "_tpl": "5d6e6806a4b936088465b17e", + "parentId": "66c90dc0c7d43f68b9105ecd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } } - }, - { - "_id": "66c90dc0c7d43f68b910600f", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c90dc0c7d43f68b910600b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106017", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106017", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106019", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c90dc0c7d43f68b9106017", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910601b", - "_tpl": "5d1c819a86f774771b0acd6c", - "parentId": "66c90dc0c7d43f68b9106017", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105ed1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ed1", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ed3", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66c90dc0c7d43f68b9105ed1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00047", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910601d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910601d", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00065", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910601f", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66c90dc0c7d43f68b910601d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00051", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106025", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106025", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106027", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc0c7d43f68b9106025", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105ed5", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ed5", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9106029", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c90dc0c7d43f68b9106025", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105ed7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105ed5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1103 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910602b", - "_tpl": "5e2aedd986f7746d404f3aa4", - "parentId": "66c90dc0c7d43f68b9106025", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105ed8", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "66c90dc0c7d43f68b9105ed5", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ed9", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "66c90dc0c7d43f68b9105ed8", + "slotId": "Soft_armor_front" + }, + { + "_id": "66c90dc0c7d43f68b9105eda", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "66c90dc0c7d43f68b9105ed8", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c90dc0c7d43f68b9105edb", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "66c90dc0c7d43f68b9105ed8", + "slotId": "Soft_armor_left" + }, + { + "_id": "66c90dc0c7d43f68b9105edc", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "66c90dc0c7d43f68b9105ed8", + "slotId": "soft_armor_right" + }, + { + "_id": "66c90dc0c7d43f68b9105ede", + "_tpl": "5c10c8fd86f7743d7d706df3", + "parentId": "66c90dc0c7d43f68b9105ed5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910602d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910602d", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_Roads_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910602f", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc0c7d43f68b910602d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106031", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc0c7d43f68b910602d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105ee0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ee0", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ee2", + "_tpl": "5b7d68af5acfc400170e30c3", + "parentId": "66c90dc0c7d43f68b9105ee0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ee4", + "_tpl": "5a32a064c4a28200741e22de", + "parentId": "66c90dc0c7d43f68b9105ee0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ee6", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "66c90dc0c7d43f68b9105ee0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ee8", + "_tpl": "5caf17c9ae92150b30006be1", + "parentId": "66c90dc0c7d43f68b9105ee0", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105eea", + "_tpl": "5bfe86a20db834001d23e8f7", + "parentId": "66c90dc0c7d43f68b9105ee0", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105eec", + "_tpl": "6267c6396b642f77f56f5c1c", + "parentId": "66c90dc0c7d43f68b9105ee0", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105eee", + "_tpl": "66b5f6a28ca68c6461709ed8", + "parentId": "66c90dc0c7d43f68b9105ee0", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ef0", + "_tpl": "60b52e5bc7d8103275739d67", + "parentId": "66c90dc0c7d43f68b9105ee0", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ef2", + "_tpl": "6529370c405a5f51dd023db8", + "parentId": "66c90dc0c7d43f68b9105ee0", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106043", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106043", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106045", - "_tpl": "590c621186f774138d11ea29", - "parentId": "66c90dc0c7d43f68b9106043", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106047", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106047", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106049", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc0c7d43f68b9106047", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105f06", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f06", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f08", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105f06", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 780 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f0a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105f06", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1010 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910604b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910604b", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910604d", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c90dc0c7d43f68b910604b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910604f", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc0c7d43f68b910604b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105f0c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f0c", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f0e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105f0c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 811 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f10", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105f0c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1062 + } } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00075", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910605b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910605b", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910605d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b910605b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 589 - } - } - ] - }, - { - "Id": "container_City_SE_01_DesignStuff_00066", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910605f", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910605f", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106061", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66c90dc0c7d43f68b910605f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f12", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f12", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105f14", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "66c90dc0c7d43f68b9105f12", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_01_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106063", - "_tpl": "5fbe3ffdf8b6a877a729ea82", - "parentId": "66c90dc0c7d43f68b910605f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 31 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106065", - "_tpl": "5aa2b87de5b5b00016327c25", - "parentId": "66c90dc0c7d43f68b910605f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f16", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f16", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105f18", + "_tpl": "5734773724597737fd047c14", + "parentId": "66c90dc0c7d43f68b9105f16", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_01_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106067", - "_tpl": "5e2af47786f7746d404f3aaa", - "parentId": "66c90dc0c7d43f68b910605f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106069", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66c90dc0c7d43f68b910605f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f1a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f1a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f1c", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dc0c7d43f68b9105f1a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00119", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910606b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910606b", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910606d", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc0c7d43f68b910606b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910606f", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc0c7d43f68b910606b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f1e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f1e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f1f", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66c90dc0c7d43f68b9105f1e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f20", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66c90dc0c7d43f68b9105f1f", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc0c7d43f68b9105f21", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66c90dc0c7d43f68b9105f1f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc0c7d43f68b9105f22", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66c90dc0c7d43f68b9105f1f", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc0c7d43f68b9105f23", + "_tpl": "5736026a245977644601dc61", + "parentId": "66c90dc0c7d43f68b9105f22", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f25", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66c90dc0c7d43f68b9105f1e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f27", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "parentId": "66c90dc0c7d43f68b9105f1e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106071", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106071", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106073", - "_tpl": "5d4041f086f7743cac3f22a7", - "parentId": "66c90dc0c7d43f68b9106071", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106075", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106075", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106077", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b9106075", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f29", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f29", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9106079", - "_tpl": "5d235a5986f77443f6329bc6", - "parentId": "66c90dc0c7d43f68b9106075", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105f2b", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66c90dc0c7d43f68b9105f29", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f2d", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66c90dc0c7d43f68b9105f29", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910607b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910607b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00019", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910607d", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc0c7d43f68b910607b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00088", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910607f", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910607f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106081", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc0c7d43f68b910607f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105f37", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f37", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f39", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105f37", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1028 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00087", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106083", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106083", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00058", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106085", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc0c7d43f68b9106083", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 79 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00086", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106087", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106087", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106089", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc0c7d43f68b9106087", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f3b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f3b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f3d", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dc0c7d43f68b9105f3b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00060", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910608b", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910608b", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910608c", - "_tpl": "5c0e51be86f774598e797894", - "parentId": "66c90dc0c7d43f68b910608b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c90dc0c7d43f68b910608d", - "_tpl": "654a8b0b0337d53f9102c2ae", - "parentId": "66c90dc0c7d43f68b910608c", - "slotId": "Soft_armor_front" - }, - { - "_id": "66c90dc0c7d43f68b910608e", - "_tpl": "654a8976f414fcea4004d78b", - "parentId": "66c90dc0c7d43f68b910608c", - "slotId": "Soft_armor_back" - }, - { - "_id": "66c90dc0c7d43f68b910608f", - "_tpl": "654a8b3df414fcea4004d78f", - "parentId": "66c90dc0c7d43f68b910608c", - "slotId": "Soft_armor_left" - }, - { - "_id": "66c90dc0c7d43f68b9106090", - "_tpl": "654a8b80f414fcea4004d797", - "parentId": "66c90dc0c7d43f68b910608c", - "slotId": "soft_armor_right" - }, - { - "_id": "66c90dc0c7d43f68b9106091", - "_tpl": "654a8ae00337d53f9102c2aa", - "parentId": "66c90dc0c7d43f68b910608c", - "slotId": "Collar" - }, - { - "_id": "66c90dc0c7d43f68b9106092", - "_tpl": "654a8bc5f414fcea4004d79b", - "parentId": "66c90dc0c7d43f68b910608c", - "slotId": "Groin" - }, - { - "_id": "66c90dc0c7d43f68b9106093", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "66c90dc0c7d43f68b910608c", - "slotId": "Front_plate" + { + "Id": "container_City_SE_01_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106094", - "_tpl": "656efd66034e8e01c407f35c", - "parentId": "66c90dc0c7d43f68b910608c", - "slotId": "Back_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106096", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc0c7d43f68b910608b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f3f", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f3f", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105f41", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66c90dc0c7d43f68b9105f3f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_01_DesignStuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106098", - "_tpl": "5d6e69c7a4b9360b6c0d54e4", - "parentId": "66c90dc0c7d43f68b910608b", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 5 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910609a", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66c90dc0c7d43f68b910608b", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f43", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f43", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f45", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c90dc0c7d43f68b9105f43", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f47", + "_tpl": "57347d90245977448f7b7f65", + "parentId": "66c90dc0c7d43f68b9105f43", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f49", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c90dc0c7d43f68b9105f43", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910609c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910609c", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00045", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910609e", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c90dc0c7d43f68b910609c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f4b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f4b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f4d", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc0c7d43f68b9105f4b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f4f", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc0c7d43f68b9105f4b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105f51", + "_tpl": "5bc9c29cd4351e003562b8a3", + "parentId": "66c90dc0c7d43f68b9105f4b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_01_DesignStuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060a0", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc0c7d43f68b910609c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f59", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f59", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f5c", + "_tpl": "573725b0245977612125bae2", + "parentId": "66c90dc0c7d43f68b9105f59", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f5d", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c90dc0c7d43f68b9105f5c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f60", + "_tpl": "5737256c2459776125652acd", + "parentId": "66c90dc0c7d43f68b9105f59", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f61", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66c90dc0c7d43f68b9105f60", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f65", + "_tpl": "57372fc52459776998772ca1", + "parentId": "66c90dc0c7d43f68b9105f59", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f66", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc0c7d43f68b9105f65", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f67", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc0c7d43f68b9105f65", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00044", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060a2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060a2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060a4", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b91060a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00043", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060a6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060a6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060a8", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc0c7d43f68b91060a6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f71", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f71", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f73", + "_tpl": "587e0531245977466077a0f7", + "parentId": "66c90dc0c7d43f68b9105f71", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f75", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "66c90dc0c7d43f68b9105f71", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f77", + "_tpl": "65f05b9d39dab9e9ec049cfd", + "parentId": "66c90dc0c7d43f68b9105f71", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00042", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060aa", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060aa", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060ac", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc0c7d43f68b91060aa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00041", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060ae", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060ae", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060b0", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc0c7d43f68b91060ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105f79", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f79", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f7b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105f79", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 638 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060b2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060b2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060b4", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66c90dc0c7d43f68b91060b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00031", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060b6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060b6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060b8", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b91060b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f7d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f7d", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f7f", + "_tpl": "5751496424597720a27126da", + "parentId": "66c90dc0c7d43f68b9105f7d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00030", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060ba", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060ba", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060bc", - "_tpl": "5d1b304286f774253763a528", - "parentId": "66c90dc0c7d43f68b91060ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f81", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f81", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f83", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc0c7d43f68b9105f81", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f85", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66c90dc0c7d43f68b9105f81", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f87", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc0c7d43f68b9105f81", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f89", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66c90dc0c7d43f68b9105f81", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00029", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060be", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060be", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060c0", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc0c7d43f68b91060be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 47 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f99", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f99", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f9b", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66c90dc0c7d43f68b9105f99", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105f9d", + "_tpl": "635a758bfefc88a93f021b8a", + "parentId": "66c90dc0c7d43f68b9105f99", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00105", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91060c2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060c2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060c4", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc0c7d43f68b91060c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105f9f", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105f9f", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fa1", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc0c7d43f68b9105f9f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105fa3", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66c90dc0c7d43f68b9105f9f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fa5", + "_tpl": "5c1265fc86f7743f896a21c2", + "parentId": "66c90dc0c7d43f68b9105f9f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_01_DesignStuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060c6", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66c90dc0c7d43f68b91060c2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105fa7", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105fa7", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fa9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105fa7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 580 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fab", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105fa7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1148 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91060c8", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060c8", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00061", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060ca", - "_tpl": "57acb6222459771ec34b5cb0", - "parentId": "66c90dc0c7d43f68b91060c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105fad", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105fad", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105faf", + "_tpl": "57347da92459774491567cf5", + "parentId": "66c90dc0c7d43f68b9105fad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fb1", + "_tpl": "57347d9c245977448b40fa85", + "parentId": "66c90dc0c7d43f68b9105fad", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fb3", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c90dc0c7d43f68b9105fad", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00045", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91060cc", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060cc", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060ce", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66c90dc0c7d43f68b91060cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105fb9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105fb9", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fbb", + "_tpl": "5751496424597720a27126da", + "parentId": "66c90dc0c7d43f68b9105fb9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105fbd", + "_tpl": "572b7fa524597762b747ce82", + "parentId": "66c90dc0c7d43f68b9105fb9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fbf", + "_tpl": "5f0596629e22f464da6bbdd9", + "parentId": "66c90dc0c7d43f68b9105fb9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "container_City_SE_01_DesignStuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060d0", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc0c7d43f68b91060cc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105fc1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105fc1", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105fc3", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66c90dc0c7d43f68b9105fc1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_01_DesignStuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060d2", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66c90dc0c7d43f68b91060cc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060d4", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060d4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060d6", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc0c7d43f68b91060d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105fc5", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105fc5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fc7", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66c90dc0c7d43f68b9105fc5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060d8", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060d8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00065", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060da", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c90dc0c7d43f68b91060d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00026", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060dc", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060dc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060de", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc0c7d43f68b91060dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105fc9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105fc9", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fcb", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66c90dc0c7d43f68b9105fc9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 7 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fcd", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c90dc0c7d43f68b9105fc9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fcf", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66c90dc0c7d43f68b9105fc9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fd1", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c90dc0c7d43f68b9105fc9", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 29 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00025", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060e0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060e0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060e2", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc0c7d43f68b91060e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91060e4", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060e4", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060e6", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc0c7d43f68b91060e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105fd3", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105fd3", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91060e8", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c90dc0c7d43f68b91060e4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105fd5", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b9105fd3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fd7", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc0c7d43f68b9105fd3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fd9", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66c90dc0c7d43f68b9105fd3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00093", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91060ea", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060ea", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060ec", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b91060ea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00050", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060ee", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060ee", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060f0", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc0c7d43f68b91060ee", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105fdb", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105fdb", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fdd", + "_tpl": "5efb0cabfb3e451d70735af5", + "parentId": "66c90dc0c7d43f68b9105fdb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 39 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fdf", + "_tpl": "572b7fa124597762b472f9d2", + "parentId": "66c90dc0c7d43f68b9105fdb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060f2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060f2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060f4", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc0c7d43f68b91060f2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060f6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060f6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060f8", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc0c7d43f68b91060f6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105fe1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105fe1", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fe3", + "_tpl": "59fafb5d86f774067a6f2084", + "parentId": "66c90dc0c7d43f68b9105fe1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fe5", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66c90dc0c7d43f68b9105fe1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00047", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91060fa", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060fa", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91060fc", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b91060fa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91060fe", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91060fe", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106100", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b91060fe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105fed", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105fed", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105fef", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9105fed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 960 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00116", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106102", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106102", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106104", - "_tpl": "5d03794386f77420415576f5", - "parentId": "66c90dc0c7d43f68b9106102", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106106", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c90dc0c7d43f68b9106102", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105ff1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ff1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9105ff3", + "_tpl": "591ae8f986f77406f854be45", + "parentId": "66c90dc0c7d43f68b9105ff1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00102", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106108", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106108", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00030", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910610a", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c90dc0c7d43f68b9106108", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910610c", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc0c7d43f68b9106108", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9105ff9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ff9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910610e", - "_tpl": "5bc9c377d4351e3bac12251b", - "parentId": "66c90dc0c7d43f68b9106108", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9105ffb", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc0c7d43f68b9105ff9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00111", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106110", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106110", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00055", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106112", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc0c7d43f68b9106110", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106114", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc0c7d43f68b9106110", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9105ffd", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9105ffd", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9106116", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66c90dc0c7d43f68b9106110", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9105fff", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66c90dc0c7d43f68b9105ffd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9106118", - "_tpl": "63a0b208f444d32d6f03ea1e", - "parentId": "66c90dc0c7d43f68b9106110", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106001", + "_tpl": "5c12688486f77426843c7d32", + "parentId": "66c90dc0c7d43f68b9105ffd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910611a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910611a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910611c", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc0c7d43f68b910611a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910611e", - "_tpl": "5e2af47786f7746d404f3aaa", - "parentId": "66c90dc0c7d43f68b910611a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106003", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106003", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106004", + "_tpl": "5aa7e454e5b5b0214e506fa2", + "parentId": "66c90dc0c7d43f68b9106003", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b9106005", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "66c90dc0c7d43f68b9106004", + "slotId": "Helmet_top" + }, + { + "_id": "66c90dc0c7d43f68b9106006", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "66c90dc0c7d43f68b9106004", + "slotId": "Helmet_back" + }, + { + "_id": "66c90dc0c7d43f68b9106007", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "66c90dc0c7d43f68b9106004", + "slotId": "Helmet_ears" + }, + { + "_id": "66c90dc0c7d43f68b9106009", + "_tpl": "5f633f68f5750b524b45f112", + "parentId": "66c90dc0c7d43f68b9106003", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106120", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106120", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00044", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106122", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc0c7d43f68b9106120", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106124", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106124", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106126", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c90dc0c7d43f68b9106124", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910600b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910600b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910600d", + "_tpl": "5751496424597720a27126da", + "parentId": "66c90dc0c7d43f68b910600b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910600f", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c90dc0c7d43f68b910600b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00085", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106128", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106128", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910612a", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c90dc0c7d43f68b9106128", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106130", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106130", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106132", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66c90dc0c7d43f68b9106130", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106017", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106017", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106019", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c90dc0c7d43f68b9106017", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910601b", + "_tpl": "5d1c819a86f774771b0acd6c", + "parentId": "66c90dc0c7d43f68b9106017", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106134", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106134", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00047", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106136", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc0c7d43f68b9106134", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 58 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106138", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106138", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910613a", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dc0c7d43f68b9106138", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910601d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910601d", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910601f", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66c90dc0c7d43f68b910601d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910613c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910613c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00051", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910613e", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc0c7d43f68b910613c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 72 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106140", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106140", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106142", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc0c7d43f68b9106140", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106025", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106025", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106027", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc0c7d43f68b9106025", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106029", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c90dc0c7d43f68b9106025", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910602b", + "_tpl": "5e2aedd986f7746d404f3aa4", + "parentId": "66c90dc0c7d43f68b9106025", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106144", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106144", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106146", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc0c7d43f68b9106144", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106148", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106148", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910614a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc0c7d43f68b9106148", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910602d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910602d", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910614c", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66c90dc0c7d43f68b9106148", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b910602f", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc0c7d43f68b910602d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106031", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc0c7d43f68b910602d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_01_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910614e", - "_tpl": "59e35de086f7741778269d84", - "parentId": "66c90dc0c7d43f68b9106148", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106043", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106043", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106045", + "_tpl": "590c621186f774138d11ea29", + "parentId": "66c90dc0c7d43f68b9106043", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106158", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106158", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910615a", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c90dc0c7d43f68b9106158", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106047", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106047", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106049", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc0c7d43f68b9106047", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_01_DesignStuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910615c", - "_tpl": "57347baf24597738002c6178", - "parentId": "66c90dc0c7d43f68b9106158", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910615e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910615e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106160", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66c90dc0c7d43f68b910615e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910604b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910604b", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910604d", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c90dc0c7d43f68b910604b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910604f", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc0c7d43f68b910604b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106166", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106166", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00075", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106168", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc0c7d43f68b9106166", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910616a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910616a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910616c", - "_tpl": "5bc9c049d4351e44f824d360", - "parentId": "66c90dc0c7d43f68b910616a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910605b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910605b", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910605d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b910605b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 589 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910616e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910616e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_01_DesignStuff_00066", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106170", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc0c7d43f68b910616e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106172", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106172", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106174", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc0c7d43f68b9106172", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910605f", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910605f", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106061", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66c90dc0c7d43f68b910605f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106063", + "_tpl": "5fbe3ffdf8b6a877a729ea82", + "parentId": "66c90dc0c7d43f68b910605f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 31 + } + }, + { + "_id": "66c90dc0c7d43f68b9106065", + "_tpl": "5aa2b87de5b5b00016327c25", + "parentId": "66c90dc0c7d43f68b910605f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106067", + "_tpl": "5e2af47786f7746d404f3aaa", + "parentId": "66c90dc0c7d43f68b910605f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106069", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66c90dc0c7d43f68b910605f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106176", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106176", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00119", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106178", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc0c7d43f68b9106176", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 41 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00067", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910617a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910617a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910617c", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc0c7d43f68b910617a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910606b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910606b", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910606d", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc0c7d43f68b910606b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910606f", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc0c7d43f68b910606b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00066", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910617e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910617e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106180", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc0c7d43f68b910617e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00065", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106182", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106182", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106184", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66c90dc0c7d43f68b9106182", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106071", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106071", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106073", + "_tpl": "5d4041f086f7743cac3f22a7", + "parentId": "66c90dc0c7d43f68b9106071", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00091", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106186", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106186", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106188", - "_tpl": "6398fd8ad3de3849057f5128", - "parentId": "66c90dc0c7d43f68b9106186", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106075", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106075", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106077", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b9106075", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106079", + "_tpl": "5d235a5986f77443f6329bc6", + "parentId": "66c90dc0c7d43f68b9106075", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910618a", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc0c7d43f68b9106186", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910607b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910607b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910607d", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc0c7d43f68b910607b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00088", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910618c", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c90dc0c7d43f68b9106186", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910607f", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910607f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106081", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc0c7d43f68b910607f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00087", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910618e", - "_tpl": "5d1c819a86f774771b0acd6c", - "parentId": "66c90dc0c7d43f68b9106186", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106083", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106083", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106085", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc0c7d43f68b9106083", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 79 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00106", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106190", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106190", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00086", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106192", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66c90dc0c7d43f68b9106190", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106087", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106087", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106089", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc0c7d43f68b9106087", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106194", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106194", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00060", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106196", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc0c7d43f68b9106194", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00075", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106198", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106198", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910619a", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc0c7d43f68b9106198", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910608b", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910608b", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910608c", + "_tpl": "5c0e51be86f774598e797894", + "parentId": "66c90dc0c7d43f68b910608b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b910608d", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "66c90dc0c7d43f68b910608c", + "slotId": "Soft_armor_front" + }, + { + "_id": "66c90dc0c7d43f68b910608e", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "66c90dc0c7d43f68b910608c", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c90dc0c7d43f68b910608f", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "66c90dc0c7d43f68b910608c", + "slotId": "Soft_armor_left" + }, + { + "_id": "66c90dc0c7d43f68b9106090", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "66c90dc0c7d43f68b910608c", + "slotId": "soft_armor_right" + }, + { + "_id": "66c90dc0c7d43f68b9106091", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "66c90dc0c7d43f68b910608c", + "slotId": "Collar" + }, + { + "_id": "66c90dc0c7d43f68b9106092", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "66c90dc0c7d43f68b910608c", + "slotId": "Groin" + }, + { + "_id": "66c90dc0c7d43f68b9106093", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "66c90dc0c7d43f68b910608c", + "slotId": "Front_plate" + }, + { + "_id": "66c90dc0c7d43f68b9106094", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "66c90dc0c7d43f68b910608c", + "slotId": "Back_plate" + }, + { + "_id": "66c90dc0c7d43f68b9106096", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc0c7d43f68b910608b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106098", + "_tpl": "5d6e69c7a4b9360b6c0d54e4", + "parentId": "66c90dc0c7d43f68b910608b", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 5 + } + }, + { + "_id": "66c90dc0c7d43f68b910609a", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66c90dc0c7d43f68b910608b", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00074", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910619c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910619c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910619e", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c90dc0c7d43f68b910619c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00073", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91061a0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061a0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061a2", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc0c7d43f68b91061a0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910609c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910609c", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910609e", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c90dc0c7d43f68b910609c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060a0", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc0c7d43f68b910609c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00061", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91061a8", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061a8", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00044", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061aa", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc0c7d43f68b91061a8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 43 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91061ac", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061ac", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061ae", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c90dc0c7d43f68b91061ac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060a2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060a2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91060a4", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b91060a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00043", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061b0", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc0c7d43f68b91061ac", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061b2", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c90dc0c7d43f68b91061ac", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060a6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060a6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060a8", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc0c7d43f68b91060a6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91061b4", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061b4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00042", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061b6", - "_tpl": "57513f07245977207e26a311", - "parentId": "66c90dc0c7d43f68b91061b4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061b8", - "_tpl": "573474f924597738002c6174", - "parentId": "66c90dc0c7d43f68b91061b4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060aa", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060aa", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91061ba", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c90dc0c7d43f68b91061b4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91060ac", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc0c7d43f68b91060aa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00104", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91061bc", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061bc", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00041", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061be", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc0c7d43f68b91061bc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91061c0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061c0", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061c2", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c90dc0c7d43f68b91061c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060ae", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060ae", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060b0", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc0c7d43f68b91060ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00114", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91061c4", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061c4", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061c6", - "_tpl": "626a74340be03179a165e30c", - "parentId": "66c90dc0c7d43f68b91061c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061c8", - "_tpl": "57cffcd624597763133760c5", - "parentId": "66c90dc0c7d43f68b91061c4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060b2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060b2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91060b4", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66c90dc0c7d43f68b91060b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00031", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061ca", - "_tpl": "56ea7293d2720b8d4b8b45ba", - "parentId": "66c90dc0c7d43f68b91061c4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061cc", - "_tpl": "65392f611406374f82152ba5", - "parentId": "66c90dc0c7d43f68b91061c4", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060b6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060b6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060b8", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b91060b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91061ce", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061ce", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00030", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061d0", - "_tpl": "590c35a486f774273531c822", - "parentId": "66c90dc0c7d43f68b91061ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060ba", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060ba", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91060bc", + "_tpl": "5d1b304286f774253763a528", + "parentId": "66c90dc0c7d43f68b91060ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00029", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061d2", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc0c7d43f68b91061ce", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060be", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060be", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060c0", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc0c7d43f68b91060be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 47 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91061d4", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061d4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00105", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061d6", - "_tpl": "5c1265fc86f7743f896a21c2", - "parentId": "66c90dc0c7d43f68b91061d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00053", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91061d8", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061d8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061da", - "_tpl": "590c639286f774151567fa95", - "parentId": "66c90dc0c7d43f68b91061d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91060c2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060c2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060c4", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc0c7d43f68b91060c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060c6", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66c90dc0c7d43f68b91060c2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91061dc", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061dc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061de", - "_tpl": "5c1265fc86f7743f896a21c2", - "parentId": "66c90dc0c7d43f68b91061dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00051", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91061e0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061e0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061e2", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c90dc0c7d43f68b91061e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91060c8", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060c8", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060ca", + "_tpl": "57acb6222459771ec34b5cb0", + "parentId": "66c90dc0c7d43f68b91060c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00079", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91061e4", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061e4", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00045", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061e6", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc0c7d43f68b91061e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00108", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91061e8", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061e8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061ea", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c90dc0c7d43f68b91061e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91060cc", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060cc", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060ce", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66c90dc0c7d43f68b91060cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060d0", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc0c7d43f68b91060cc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060d2", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66c90dc0c7d43f68b91060cc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00113", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91061ec", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061ec", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061ee", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66c90dc0c7d43f68b91061ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061f0", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66c90dc0c7d43f68b91061ec", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060d4", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060d4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91060d6", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc0c7d43f68b91060d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061f2", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66c90dc0c7d43f68b91061ec", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061f4", - "_tpl": "5448fee04bdc2dbc018b4567", - "parentId": "66c90dc0c7d43f68b91061ec", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060d8", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060d8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91060da", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c90dc0c7d43f68b91060d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00026", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061f6", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c90dc0c7d43f68b91061ec", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061f8", - "_tpl": "57347d692459774491567cf1", - "parentId": "66c90dc0c7d43f68b91061ec", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060dc", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060dc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060de", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc0c7d43f68b91060dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00095", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91061fa", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91061fa", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00025", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061fc", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66c90dc0c7d43f68b91061fa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91061fe", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66c90dc0c7d43f68b91061fa", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060e0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060e0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060e2", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc0c7d43f68b91060e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00112", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106200", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106200", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106202", - "_tpl": "590c311186f77424d1667482", - "parentId": "66c90dc0c7d43f68b9106200", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91060e4", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060e4", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060e6", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc0c7d43f68b91060e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060e8", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c90dc0c7d43f68b91060e4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00078", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106204", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106204", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00093", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106206", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66c90dc0c7d43f68b9106204", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91060ea", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060ea", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060ec", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b91060ea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106208", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106208", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00050", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910620a", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c90dc0c7d43f68b9106208", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060ee", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060ee", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91060f0", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc0c7d43f68b91060ee", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910620c", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc0c7d43f68b9106208", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060f2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060f2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91060f4", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc0c7d43f68b91060f2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910620e", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dc0c7d43f68b9106208", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060f6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060f6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91060f8", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc0c7d43f68b91060f6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106210", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106210", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00047", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106212", - "_tpl": "59e3577886f774176a362503", - "parentId": "66c90dc0c7d43f68b9106210", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106214", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106214", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106216", - "_tpl": "5751435d24597720a27126d1", - "parentId": "66c90dc0c7d43f68b9106214", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91060fa", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060fa", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91060fc", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b91060fa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106218", - "_tpl": "5ca20abf86f77418567a43f2", - "parentId": "66c90dc0c7d43f68b9106214", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910621a", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66c90dc0c7d43f68b9106214", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91060fe", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91060fe", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 35 - } - }, - { - "_id": "66c90dc0c7d43f68b910621c", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c90dc0c7d43f68b9106214", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 54 + { + "_id": "66c90dc0c7d43f68b9106100", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b91060fe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910621e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910621e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00116", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106220", - "_tpl": "57347d692459774491567cf1", - "parentId": "66c90dc0c7d43f68b910621e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106102", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106102", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106104", + "_tpl": "5d03794386f77420415576f5", + "parentId": "66c90dc0c7d43f68b9106102", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106106", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c90dc0c7d43f68b9106102", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00102", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106222", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66c90dc0c7d43f68b910621e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106108", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106108", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910610a", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c90dc0c7d43f68b9106108", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910610c", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc0c7d43f68b9106108", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910610e", + "_tpl": "5bc9c377d4351e3bac12251b", + "parentId": "66c90dc0c7d43f68b9106108", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00111", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106224", - "_tpl": "5751496424597720a27126da", - "parentId": "66c90dc0c7d43f68b910621e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106110", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106110", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106112", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc0c7d43f68b9106110", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106114", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc0c7d43f68b9106110", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106116", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66c90dc0c7d43f68b9106110", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106118", + "_tpl": "63a0b208f444d32d6f03ea1e", + "parentId": "66c90dc0c7d43f68b9106110", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106226", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106226", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106228", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc0c7d43f68b9106226", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910611a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910611a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910611c", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc0c7d43f68b910611a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910611e", + "_tpl": "5e2af47786f7746d404f3aaa", + "parentId": "66c90dc0c7d43f68b910611a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910622a", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c90dc0c7d43f68b9106226", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106120", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106120", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106122", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc0c7d43f68b9106120", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910622c", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66c90dc0c7d43f68b9106226", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106124", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106124", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106126", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c90dc0c7d43f68b9106124", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910622e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910622e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00085", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106230", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc0c7d43f68b910622e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106128", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106128", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910612a", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c90dc0c7d43f68b9106128", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106232", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106232", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106234", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc0c7d43f68b9106232", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106130", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106130", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106132", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66c90dc0c7d43f68b9106130", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00034", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106236", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106236", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106238", - "_tpl": "59387a4986f77401cc236e62", - "parentId": "66c90dc0c7d43f68b9106236", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106134", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106134", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106136", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc0c7d43f68b9106134", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 58 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00033", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910623a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910623a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910623c", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b910623a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106138", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106138", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910613a", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dc0c7d43f68b9106138", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910623e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910623e", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106240", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc0c7d43f68b910623e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910613c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910613c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910613e", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc0c7d43f68b910613c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 72 + } } - }, - { - "_id": "66c90dc0c7d43f68b9106242", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66c90dc0c7d43f68b910623e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106244", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106244", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106246", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66c90dc0c7d43f68b9106244", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106248", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106248", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910624a", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66c90dc0c7d43f68b9106248", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106140", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106140", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910624c", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc0c7d43f68b9106248", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106142", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc0c7d43f68b9106140", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910624e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910624e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106250", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b910624e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 664 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00083", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106252", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106252", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106254", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c90dc0c7d43f68b9106252", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106144", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106144", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106146", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc0c7d43f68b9106144", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00115", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106256", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106256", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106258", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66c90dc0c7d43f68b9106256", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910625a", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66c90dc0c7d43f68b9106256", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106148", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106148", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910625c", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc0c7d43f68b9106256", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910614a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc0c7d43f68b9106148", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910614c", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66c90dc0c7d43f68b9106148", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910614e", + "_tpl": "59e35de086f7741778269d84", + "parentId": "66c90dc0c7d43f68b9106148", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106262", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106262", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106264", - "_tpl": "5c6d11152e2216000f2003e7", - "parentId": "66c90dc0c7d43f68b9106262", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106266", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66c90dc0c7d43f68b9106262", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106158", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106158", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910615a", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c90dc0c7d43f68b9106158", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910615c", + "_tpl": "57347baf24597738002c6178", + "parentId": "66c90dc0c7d43f68b9106158", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00062", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106268", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106268", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910626a", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66c90dc0c7d43f68b9106268", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00046", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910626c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910626c", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910626e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b910626c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910615e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910615e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 937 - } - }, - { - "_id": "66c90dc0c7d43f68b9106270", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b910626c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 795 + { + "_id": "66c90dc0c7d43f68b9106160", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66c90dc0c7d43f68b910615e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00058", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106278", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106278", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910627a", - "_tpl": "57347da92459774491567cf5", - "parentId": "66c90dc0c7d43f68b9106278", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910627c", - "_tpl": "5c1265fc86f7743f896a21c2", - "parentId": "66c90dc0c7d43f68b9106278", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106166", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106166", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106168", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc0c7d43f68b9106166", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910627e", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66c90dc0c7d43f68b9106278", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910616a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910616a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910616c", + "_tpl": "5bc9c049d4351e44f824d360", + "parentId": "66c90dc0c7d43f68b910616a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106280", - "_tpl": "61bf7c024770ee6f9c6b8b53", - "parentId": "66c90dc0c7d43f68b9106278", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910616e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910616e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106170", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc0c7d43f68b910616e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106282", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106282", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106284", - "_tpl": "5e2af00086f7746d3f3c33f7", - "parentId": "66c90dc0c7d43f68b9106282", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106172", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106172", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106174", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc0c7d43f68b9106172", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106286", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106286", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106287", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66c90dc0c7d43f68b9106286", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106176", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106176", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c90dc0c7d43f68b9106178", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc0c7d43f68b9106176", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 41 } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00067", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106288", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66c90dc0c7d43f68b9106287", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910628c", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66c90dc0c7d43f68b9106288", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910617a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910617a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910617c", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc0c7d43f68b910617a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00066", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106289", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66c90dc0c7d43f68b9106287", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc0c7d43f68b910628a", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66c90dc0c7d43f68b9106289", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc0c7d43f68b910628b", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66c90dc0c7d43f68b9106287", - "slotId": "mod_pistolgrip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910628e", - "_tpl": "6389c6463485cf0eeb260715", - "parentId": "66c90dc0c7d43f68b9106286", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910617e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910617e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106180", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc0c7d43f68b910617e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00118", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106290", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106290", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00065", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106292", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "66c90dc0c7d43f68b9106290", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106294", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106294", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106296", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c90dc0c7d43f68b9106294", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106182", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106182", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106184", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66c90dc0c7d43f68b9106182", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_02_DesignStuff_00109", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106298", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106298", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00091", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910629a", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66c90dc0c7d43f68b9106298", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910629c", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dc0c7d43f68b9106298", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106186", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106186", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910629e", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc0c7d43f68b9106298", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9106188", + "_tpl": "6398fd8ad3de3849057f5128", + "parentId": "66c90dc0c7d43f68b9106186", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062a0", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b9106298", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b910618a", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc0c7d43f68b9106186", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062a2", - "_tpl": "590c35a486f774273531c822", - "parentId": "66c90dc0c7d43f68b9106298", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66c90dc0c7d43f68b910618c", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c90dc0c7d43f68b9106186", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062a4", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b9106298", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910618e", + "_tpl": "5d1c819a86f774771b0acd6c", + "parentId": "66c90dc0c7d43f68b9106186", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91062aa", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91062aa", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00106", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062ac", - "_tpl": "59e361e886f774176c10a2a5", - "parentId": "66c90dc0c7d43f68b91062aa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062ae", - "_tpl": "5751496424597720a27126da", - "parentId": "66c90dc0c7d43f68b91062aa", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106190", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106190", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062b0", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c90dc0c7d43f68b91062aa", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91062b2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91062b2", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062b4", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "66c90dc0c7d43f68b91062b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106192", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66c90dc0c7d43f68b9106190", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00034", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91062b6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91062b6", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062b8", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc0c7d43f68b91062b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062ba", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc0c7d43f68b91062b6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106194", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106194", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062bc", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc0c7d43f68b91062b6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106196", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc0c7d43f68b9106194", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91062be", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91062be", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00075", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062c0", - "_tpl": "5d1b31ce86f7742523398394", - "parentId": "66c90dc0c7d43f68b91062be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062c2", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b91062be", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106198", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106198", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062c4", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dc0c7d43f68b91062be", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910619a", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc0c7d43f68b9106198", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91062c6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91062c6", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00074", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062c8", - "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "66c90dc0c7d43f68b91062c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062cb", - "_tpl": "5739d41224597779c3645501", - "parentId": "66c90dc0c7d43f68b91062c6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910619c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910619c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910619e", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c90dc0c7d43f68b910619c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00073", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062cc", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66c90dc0c7d43f68b91062cb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062ce", - "_tpl": "57ffb0062459777a045af529", - "parentId": "66c90dc0c7d43f68b91062c6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91061a0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061a0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061a2", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc0c7d43f68b91061a0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91062d0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91062d0", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00061", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062d2", - "_tpl": "609a4b4fe2ff132951242d04", - "parentId": "66c90dc0c7d43f68b91062d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062d3", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66c90dc0c7d43f68b91062d0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91061a8", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061a8", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c90dc0c7d43f68b91061aa", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc0c7d43f68b91061a8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 43 } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062d4", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66c90dc0c7d43f68b91062d3", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062d8", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66c90dc0c7d43f68b91062d4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91061ac", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061ac", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061ae", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c90dc0c7d43f68b91061ac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061b0", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc0c7d43f68b91061ac", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061b2", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c90dc0c7d43f68b91061ac", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062d5", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66c90dc0c7d43f68b91062d3", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc0c7d43f68b91062d6", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66c90dc0c7d43f68b91062d5", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062d7", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66c90dc0c7d43f68b91062d3", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91062da", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91062da", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062dc", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c90dc0c7d43f68b91062da", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91061b4", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061b4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062de", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66c90dc0c7d43f68b91062da", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91061b6", + "_tpl": "57513f07245977207e26a311", + "parentId": "66c90dc0c7d43f68b91061b4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061b8", + "_tpl": "573474f924597738002c6174", + "parentId": "66c90dc0c7d43f68b91061b4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061ba", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c90dc0c7d43f68b91061b4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91062e0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91062e0", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00104", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062e2", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91062e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 620 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062e4", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91062e0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1041 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91061bc", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061bc", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061be", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc0c7d43f68b91061bc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91062f0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91062f0", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062f2", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66c90dc0c7d43f68b91062f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062f4", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc0c7d43f68b91062f0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91061c0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061c0", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062f6", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c90dc0c7d43f68b91062f0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91061c2", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c90dc0c7d43f68b91061c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91062f8", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91062f8", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00114", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062fa", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66c90dc0c7d43f68b91062f8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91062fc", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66c90dc0c7d43f68b91062f8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91061c4", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061c4", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91062fe", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66c90dc0c7d43f68b91062f8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91061c6", + "_tpl": "626a74340be03179a165e30c", + "parentId": "66c90dc0c7d43f68b91061c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061c8", + "_tpl": "57cffcd624597763133760c5", + "parentId": "66c90dc0c7d43f68b91061c4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061ca", + "_tpl": "56ea7293d2720b8d4b8b45ba", + "parentId": "66c90dc0c7d43f68b91061c4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061cc", + "_tpl": "65392f611406374f82152ba5", + "parentId": "66c90dc0c7d43f68b91061c4", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106300", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106300", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106302", - "_tpl": "5b432c305acfc40019478128", - "parentId": "66c90dc0c7d43f68b9106300", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106316", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106316", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106318", - "_tpl": "573474f924597738002c6174", - "parentId": "66c90dc0c7d43f68b9106316", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91061ce", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061ce", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910631a", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b9106316", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b91061d0", + "_tpl": "590c35a486f774273531c822", + "parentId": "66c90dc0c7d43f68b91061ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910631c", - "_tpl": "5751496424597720a27126da", - "parentId": "66c90dc0c7d43f68b9106316", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91061d2", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc0c7d43f68b91061ce", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910631e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910631e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106320", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc0c7d43f68b910631e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106322", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66c90dc0c7d43f68b910631e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91061d4", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061d4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9106324", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c90dc0c7d43f68b910631e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91061d6", + "_tpl": "5c1265fc86f7743f896a21c2", + "parentId": "66c90dc0c7d43f68b91061d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910632a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910632a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00053", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910632c", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc0c7d43f68b910632a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91061d8", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061d8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061da", + "_tpl": "590c639286f774151567fa95", + "parentId": "66c90dc0c7d43f68b91061d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106332", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106332", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106334", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc0c7d43f68b9106332", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91061dc", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061dc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91061de", + "_tpl": "5c1265fc86f7743f896a21c2", + "parentId": "66c90dc0c7d43f68b91061dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00051", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106336", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66c90dc0c7d43f68b9106332", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91061e0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061e0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061e2", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c90dc0c7d43f68b91061e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_03_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106338", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106338", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00079", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910633a", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66c90dc0c7d43f68b9106338", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91061e4", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061e4", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91061e6", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc0c7d43f68b91061e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00108", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910633c", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b9106338", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91061e8", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061e8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91061ea", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c90dc0c7d43f68b91061e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00113", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910633e", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66c90dc0c7d43f68b9106338", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910634c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910634c", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910634e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b910634c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91061ec", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061ec", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 927 - } - }, - { - "_id": "66c90dc0c7d43f68b9106350", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b910634c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 665 - } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00019", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106352", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106352", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9106354", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc0c7d43f68b9106352", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91061ee", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66c90dc0c7d43f68b91061ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061f0", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66c90dc0c7d43f68b91061ec", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061f2", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66c90dc0c7d43f68b91061ec", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061f4", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "66c90dc0c7d43f68b91061ec", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061f6", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c90dc0c7d43f68b91061ec", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061f8", + "_tpl": "57347d692459774491567cf1", + "parentId": "66c90dc0c7d43f68b91061ec", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106356", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106356", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00095", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106358", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc0c7d43f68b9106356", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910635a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910635a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910635c", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b910635a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91061fa", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91061fa", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061fc", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66c90dc0c7d43f68b91061fa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91061fe", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66c90dc0c7d43f68b91061fa", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910635e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910635e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00112", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106360", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b910635e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106362", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106362", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106364", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b9106362", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106200", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106200", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106202", + "_tpl": "590c311186f77424d1667482", + "parentId": "66c90dc0c7d43f68b9106200", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00025", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106366", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106366", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00078", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106368", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9106366", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1027 - } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910636a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910636a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910636c", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c90dc0c7d43f68b910636a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106204", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106204", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910636e", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66c90dc0c7d43f68b910636a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106206", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66c90dc0c7d43f68b9106204", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106370", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106370", - "_tpl": "5ad74cf586f774391278f6f0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106372", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9106370", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 754 - } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106374", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106374", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106376", - "_tpl": "59e3556c86f7741776641ac2", - "parentId": "66c90dc0c7d43f68b9106374", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106208", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106208", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9106378", - "_tpl": "5e2af00086f7746d3f3c33f7", - "parentId": "66c90dc0c7d43f68b9106374", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b910620a", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c90dc0c7d43f68b9106208", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910637a", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66c90dc0c7d43f68b9106374", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910620c", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc0c7d43f68b9106208", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910620e", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dc0c7d43f68b9106208", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00029", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910637c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910637c", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910637e", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b910637c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1064 - } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106380", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106380", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106382", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dc0c7d43f68b9106380", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106210", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106210", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106212", + "_tpl": "59e3577886f774176a362503", + "parentId": "66c90dc0c7d43f68b9106210", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106388", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106388", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910638a", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c90dc0c7d43f68b9106388", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106214", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106214", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106216", + "_tpl": "5751435d24597720a27126d1", + "parentId": "66c90dc0c7d43f68b9106214", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106218", + "_tpl": "5ca20abf86f77418567a43f2", + "parentId": "66c90dc0c7d43f68b9106214", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910621a", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66c90dc0c7d43f68b9106214", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 35 + } + }, + { + "_id": "66c90dc0c7d43f68b910621c", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c90dc0c7d43f68b9106214", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 54 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910638c", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc0c7d43f68b9106388", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910621e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910621e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106220", + "_tpl": "57347d692459774491567cf1", + "parentId": "66c90dc0c7d43f68b910621e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106222", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66c90dc0c7d43f68b910621e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106224", + "_tpl": "5751496424597720a27126da", + "parentId": "66c90dc0c7d43f68b910621e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910638e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910638e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106390", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc0c7d43f68b910638e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106226", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106226", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106228", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc0c7d43f68b9106226", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910622a", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c90dc0c7d43f68b9106226", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910622c", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66c90dc0c7d43f68b9106226", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106392", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106392", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106394", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b9106392", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910622e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910622e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106230", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc0c7d43f68b910622e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106396", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106396", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106398", - "_tpl": "5ad5d49886f77455f9731921", - "parentId": "66c90dc0c7d43f68b9106396", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106232", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106232", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106234", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc0c7d43f68b9106232", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910639a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910639a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00034", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910639c", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc0c7d43f68b910639a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106236", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106236", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106238", + "_tpl": "59387a4986f77401cc236e62", + "parentId": "66c90dc0c7d43f68b9106236", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910639e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910639e", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00033", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063a0", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc0c7d43f68b910639e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910623a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910623a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910623c", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b910623a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063a2", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c90dc0c7d43f68b910639e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910623e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910623e", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106240", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc0c7d43f68b910623e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106242", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66c90dc0c7d43f68b910623e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91063a4", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063a4", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063a6", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91063a4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 967 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106244", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106244", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106246", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66c90dc0c7d43f68b9106244", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91063a8", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063a8", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063aa", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66c90dc0c7d43f68b91063a8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106248", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106248", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910624a", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66c90dc0c7d43f68b9106248", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910624c", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc0c7d43f68b9106248", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00026", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91063ac", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063ac", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063ae", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91063ac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910624e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910624e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 586 + { + "_id": "66c90dc0c7d43f68b9106250", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b910624e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 664 + } } + ] + }, + { + "Id": "container_City_SE_02_DesignStuff_00083", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063b0", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91063ac", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1123 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106252", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106252", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106254", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c90dc0c7d43f68b9106252", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91063b2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063b2", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00115", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063b4", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91063b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1081 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106256", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106256", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106258", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66c90dc0c7d43f68b9106256", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910625a", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66c90dc0c7d43f68b9106256", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910625c", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc0c7d43f68b9106256", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91063b6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063b6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063b8", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc0c7d43f68b91063b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00014", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91063ba", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063ba", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063bc", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc0c7d43f68b91063ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106262", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106262", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106264", + "_tpl": "5c6d11152e2216000f2003e7", + "parentId": "66c90dc0c7d43f68b9106262", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106266", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66c90dc0c7d43f68b9106262", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91063be", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063be", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00062", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063c0", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc0c7d43f68b91063be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91063c2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063c2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063c4", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc0c7d43f68b91063c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106268", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106268", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910626a", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66c90dc0c7d43f68b9106268", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SE_04_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91063c6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063c6", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00046", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063c8", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66c90dc0c7d43f68b91063c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063ca", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66c90dc0c7d43f68b91063c6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910626c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910626c", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910626e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b910626c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 937 + } + }, + { + "_id": "66c90dc0c7d43f68b9106270", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b910626c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 795 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00098", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91063cc", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063cc", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00058", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063ce", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc0c7d43f68b91063cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91063d0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063d0", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063d1", - "_tpl": "5ab8e4ed86f7742d8e50c7fa", - "parentId": "66c90dc0c7d43f68b91063d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106278", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106278", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910627a", + "_tpl": "57347da92459774491567cf5", + "parentId": "66c90dc0c7d43f68b9106278", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910627c", + "_tpl": "5c1265fc86f7743f896a21c2", + "parentId": "66c90dc0c7d43f68b9106278", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910627e", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66c90dc0c7d43f68b9106278", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106280", + "_tpl": "61bf7c024770ee6f9c6b8b53", + "parentId": "66c90dc0c7d43f68b9106278", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc0c7d43f68b91063d2", - "_tpl": "657044e971369562b300ce9b", - "parentId": "66c90dc0c7d43f68b91063d1", - "slotId": "Soft_armor_front" - }, - { - "_id": "66c90dc0c7d43f68b91063d3", - "_tpl": "657045741bd9beedc40b7299", - "parentId": "66c90dc0c7d43f68b91063d1", - "slotId": "Soft_armor_back" - }, - { - "_id": "66c90dc0c7d43f68b91063d4", - "_tpl": "657045b97e80617cee095bda", - "parentId": "66c90dc0c7d43f68b91063d1", - "slotId": "Soft_armor_left" - }, - { - "_id": "66c90dc0c7d43f68b91063d5", - "_tpl": "6570460471369562b300ce9f", - "parentId": "66c90dc0c7d43f68b91063d1", - "slotId": "soft_armor_right" - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00255", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91063d7", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063d7", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063d9", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66c90dc0c7d43f68b91063d7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063db", - "_tpl": "5aa2b89be5b5b0001569311f", - "parentId": "66c90dc0c7d43f68b91063d7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106282", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106282", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106284", + "_tpl": "5e2af00086f7746d3f3c33f7", + "parentId": "66c90dc0c7d43f68b9106282", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00144", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91063dd", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063dd", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063df", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91063dd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 793 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00131", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91063e1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063e1", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063e3", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc0c7d43f68b91063e1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106286", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106286", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91063e5", - "_tpl": "5d40412b86f7743cb332ac3a", - "parentId": "66c90dc0c7d43f68b91063e1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9106287", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66c90dc0c7d43f68b9106286", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91063e7", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66c90dc0c7d43f68b91063e1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9106288", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66c90dc0c7d43f68b9106287", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91063e9", - "_tpl": "5c3df7d588a4501f290594e5", - "parentId": "66c90dc0c7d43f68b91063e1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 17 + { + "_id": "66c90dc0c7d43f68b910628c", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66c90dc0c7d43f68b9106288", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } + }, + { + "_id": "66c90dc0c7d43f68b9106289", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66c90dc0c7d43f68b9106287", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc0c7d43f68b910628a", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66c90dc0c7d43f68b9106289", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc0c7d43f68b910628b", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66c90dc0c7d43f68b9106287", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66c90dc0c7d43f68b910628e", + "_tpl": "6389c6463485cf0eeb260715", + "parentId": "66c90dc0c7d43f68b9106286", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91063fc", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91063fc", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00118", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91063fe", - "_tpl": "5b43271c5acfc432ff4dce65", - "parentId": "66c90dc0c7d43f68b91063fc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00172", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106400", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106400", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106402", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc0c7d43f68b9106400", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106290", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106290", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106292", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "66c90dc0c7d43f68b9106290", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00171", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106404", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106404", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106406", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc0c7d43f68b9106404", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106294", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106294", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106296", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c90dc0c7d43f68b9106294", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00170", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106408", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106408", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_02_DesignStuff_00109", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910640a", - "_tpl": "5e2af29386f7746d4159f077", - "parentId": "66c90dc0c7d43f68b9106408", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106298", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106298", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910629a", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66c90dc0c7d43f68b9106298", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910629c", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dc0c7d43f68b9106298", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910629e", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc0c7d43f68b9106298", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062a0", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b9106298", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062a2", + "_tpl": "590c35a486f774273531c822", + "parentId": "66c90dc0c7d43f68b9106298", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062a4", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b9106298", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00169", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910640c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910640c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910640e", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b910640c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91062aa", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91062aa", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062ac", + "_tpl": "59e361e886f774176c10a2a5", + "parentId": "66c90dc0c7d43f68b91062aa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062ae", + "_tpl": "5751496424597720a27126da", + "parentId": "66c90dc0c7d43f68b91062aa", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062b0", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c90dc0c7d43f68b91062aa", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00161", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106410", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106410", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106412", - "_tpl": "5bd0716d86f774171822ef4b", - "parentId": "66c90dc0c7d43f68b9106410", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91062b2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91062b2", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062b4", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "66c90dc0c7d43f68b91062b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910641a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910641a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00034", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910641c", - "_tpl": "601949593ae8f707c4608daa", - "parentId": "66c90dc0c7d43f68b910641a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 13 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91062b6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91062b6", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062b8", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc0c7d43f68b91062b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062ba", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc0c7d43f68b91062b6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062bc", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc0c7d43f68b91062b6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00118", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910641e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910641e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106420", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b910641e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 908 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91062be", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91062be", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062c0", + "_tpl": "5d1b31ce86f7742523398394", + "parentId": "66c90dc0c7d43f68b91062be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062c2", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b91062be", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062c4", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dc0c7d43f68b91062be", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00160", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106422", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106422", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106424", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc0c7d43f68b9106422", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91062c6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91062c6", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062c8", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "66c90dc0c7d43f68b91062c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062cb", + "_tpl": "5739d41224597779c3645501", + "parentId": "66c90dc0c7d43f68b91062c6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062cc", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66c90dc0c7d43f68b91062cb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66c90dc0c7d43f68b91062ce", + "_tpl": "57ffb0062459777a045af529", + "parentId": "66c90dc0c7d43f68b91062c6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106426", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106426", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106428", - "_tpl": "544fb45d4bdc2dee738b4568", - "parentId": "66c90dc0c7d43f68b9106426", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91062d0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91062d0", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062d2", + "_tpl": "609a4b4fe2ff132951242d04", + "parentId": "66c90dc0c7d43f68b91062d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062d3", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66c90dc0c7d43f68b91062d0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c90dc0c7d43f68b91062d4", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66c90dc0c7d43f68b91062d3", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc0c7d43f68b91062d8", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66c90dc0c7d43f68b91062d4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66c90dc0c7d43f68b91062d5", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66c90dc0c7d43f68b91062d3", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc0c7d43f68b91062d6", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66c90dc0c7d43f68b91062d5", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc0c7d43f68b91062d7", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66c90dc0c7d43f68b91062d3", + "slotId": "mod_pistolgrip" } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00262", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910642a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910642a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910642c", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc0c7d43f68b910642a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91062da", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91062da", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062dc", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c90dc0c7d43f68b91062da", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91062de", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66c90dc0c7d43f68b91062da", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_03_DesignStuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910642e", - "_tpl": "57347baf24597738002c6178", - "parentId": "66c90dc0c7d43f68b910642a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91062e0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91062e0", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062e2", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91062e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 620 + } + }, + { + "_id": "66c90dc0c7d43f68b91062e4", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91062e0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1041 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00319", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910643a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910643a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910643c", - "_tpl": "6389c70ca33d8c4cdf4932c6", - "parentId": "66c90dc0c7d43f68b910643a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00318", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106442", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106442", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106444", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc0c7d43f68b9106442", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91062f0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91062f0", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062f2", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66c90dc0c7d43f68b91062f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062f4", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc0c7d43f68b91062f0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062f6", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c90dc0c7d43f68b91062f0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00317", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106446", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106446", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106448", - "_tpl": "62a09e73af34e73a266d932a", - "parentId": "66c90dc0c7d43f68b9106446", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00316", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910644a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910644a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910644c", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc0c7d43f68b910644a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91062f8", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91062f8", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062fa", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66c90dc0c7d43f68b91062f8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062fc", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66c90dc0c7d43f68b91062f8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91062fe", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66c90dc0c7d43f68b91062f8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00315", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910644e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910644e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106450", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc0c7d43f68b910644e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106452", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106452", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106454", - "_tpl": "590c695186f7741e566b64a2", - "parentId": "66c90dc0c7d43f68b9106452", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106300", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106300", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106302", + "_tpl": "5b432c305acfc40019478128", + "parentId": "66c90dc0c7d43f68b9106300", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00209", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106456", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106456", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106458", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66c90dc0c7d43f68b9106456", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00309", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106462", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106462", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106464", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc0c7d43f68b9106462", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106316", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106316", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 66 - } - }, - { - "_id": "66c90dc0c7d43f68b9106466", - "_tpl": "590de71386f774347051a052", - "parentId": "66c90dc0c7d43f68b9106462", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106318", + "_tpl": "573474f924597738002c6174", + "parentId": "66c90dc0c7d43f68b9106316", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910631a", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b9106316", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910631c", + "_tpl": "5751496424597720a27126da", + "parentId": "66c90dc0c7d43f68b9106316", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00256", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106472", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106472", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106474", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66c90dc0c7d43f68b9106472", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00271", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106476", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106476", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106478", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b9106476", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 794 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910631e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910631e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106320", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc0c7d43f68b910631e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106322", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66c90dc0c7d43f68b910631e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106324", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c90dc0c7d43f68b910631e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00344", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910647a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910647a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910647c", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66c90dc0c7d43f68b910647a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910647e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910647e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106480", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b910647e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910632a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910632a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9106482", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66c90dc0c7d43f68b910647e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910632c", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc0c7d43f68b910632a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00190", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106484", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106484", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106486", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c90dc0c7d43f68b9106484", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106488", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c90dc0c7d43f68b9106484", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106332", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106332", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106334", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc0c7d43f68b9106332", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106336", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66c90dc0c7d43f68b9106332", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00075", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910648a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910648a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_03_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910648c", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66c90dc0c7d43f68b910648a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910648e", - "_tpl": "590c639286f774151567fa95", - "parentId": "66c90dc0c7d43f68b910648a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106338", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106338", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9106490", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66c90dc0c7d43f68b910648a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00025", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106492", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106492", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b9106494", - "_tpl": "5d403f9186f7743cac3f229b", - "parentId": "66c90dc0c7d43f68b9106492", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b910633a", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66c90dc0c7d43f68b9106338", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910633c", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b9106338", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910633e", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66c90dc0c7d43f68b9106338", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_04_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106496", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66c90dc0c7d43f68b9106492", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910634c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910634c", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910634e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b910634c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 927 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106350", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b910634c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 665 + } } + ] + }, + { + "Id": "container_City_SE_04_DesignStuff_00019", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106498", - "_tpl": "6570aead4d84f81fd002a033", - "parentId": "66c90dc0c7d43f68b9106492", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106352", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106352", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106354", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc0c7d43f68b9106352", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910649a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910649a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910649c", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66c90dc0c7d43f68b910649a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106356", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106356", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106358", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc0c7d43f68b9106356", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_04_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910649e", - "_tpl": "5d1b385e86f774252167b98a", - "parentId": "66c90dc0c7d43f68b910649a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910635a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910635a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910635c", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b910635a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_04_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064a0", - "_tpl": "590c35a486f774273531c822", - "parentId": "66c90dc0c7d43f68b910649a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910635e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910635e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106360", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b910635e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00226", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064a2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064a2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064a4", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc0c7d43f68b91064a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106362", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106362", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106364", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b9106362", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00225", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064a6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064a6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00025", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064a8", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc0c7d43f68b91064a6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106366", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106366", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106368", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9106366", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1027 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00224", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064aa", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064aa", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064ac", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc0c7d43f68b91064aa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910636a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910636a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910636c", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c90dc0c7d43f68b910636a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910636e", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66c90dc0c7d43f68b910636a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00223", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064ae", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064ae", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064b0", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc0c7d43f68b91064ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106370", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106370", + "_tpl": "5ad74cf586f774391278f6f0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106372", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9106370", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 754 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00283", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064b2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064b2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064b4", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b91064b2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106374", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106374", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106376", + "_tpl": "59e3556c86f7741776641ac2", + "parentId": "66c90dc0c7d43f68b9106374", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106378", + "_tpl": "5e2af00086f7746d3f3c33f7", + "parentId": "66c90dc0c7d43f68b9106374", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910637a", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66c90dc0c7d43f68b9106374", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00282", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064b6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064b6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00029", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064b8", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66c90dc0c7d43f68b91064b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910637c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910637c", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910637e", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b910637c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1064 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00281", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064ba", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064ba", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064bc", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc0c7d43f68b91064ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106380", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106380", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106382", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dc0c7d43f68b9106380", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00280", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064be", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064be", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064c0", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc0c7d43f68b91064be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00329", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91064c2", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064c2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91064c4", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66c90dc0c7d43f68b91064c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00156", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91064c6", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064c6", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064c8", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc0c7d43f68b91064c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106388", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106388", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91064ca", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c90dc0c7d43f68b91064c6", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910638a", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c90dc0c7d43f68b9106388", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910638c", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc0c7d43f68b9106388", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00207", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064cc", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064cc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064ce", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66c90dc0c7d43f68b91064cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00206", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064d0", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064d0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064d2", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc0c7d43f68b91064d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910638e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910638e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106390", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc0c7d43f68b910638e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00205", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064d4", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064d4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064d6", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66c90dc0c7d43f68b91064d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00204", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064d8", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064d8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064da", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc0c7d43f68b91064d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106392", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106392", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106394", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b9106392", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00166", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91064dc", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064dc", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b91064dd", - "_tpl": "5c0e3eb886f7742015526062", - "parentId": "66c90dc0c7d43f68b91064dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c90dc0c7d43f68b91064de", - "_tpl": "65764a4cd8537eb26a0355ee", - "parentId": "66c90dc0c7d43f68b91064dd", - "slotId": "Soft_armor_front" - }, - { - "_id": "66c90dc0c7d43f68b91064df", - "_tpl": "65764bc22bc38ef78e076485", - "parentId": "66c90dc0c7d43f68b91064dd", - "slotId": "Soft_armor_back" - }, - { - "_id": "66c90dc0c7d43f68b91064e0", - "_tpl": "65764c39526e320fbe035777", - "parentId": "66c90dc0c7d43f68b91064dd", - "slotId": "Collar" + { + "Id": "container_City_SE_04_DesignStuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064e1", - "_tpl": "65764c6b526e320fbe03577b", - "parentId": "66c90dc0c7d43f68b91064dd", - "slotId": "Groin" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064e3", - "_tpl": "5e2af4a786f7746d3f3c3400", - "parentId": "66c90dc0c7d43f68b91064dc", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106396", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106396", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106398", + "_tpl": "5ad5d49886f77455f9731921", + "parentId": "66c90dc0c7d43f68b9106396", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00208", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b91064e5", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064e5", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064e7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064e5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 572 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00257", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91064e9", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064e9", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064eb", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc0c7d43f68b91064e9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910639a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910639a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910639c", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc0c7d43f68b910639a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00159", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91064ed", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064ed", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064ef", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c90dc0c7d43f68b91064ed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00263", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b91064f1", - "Items": [ - { - "_id": "66c90dc0c7d43f68b91064f1", - "_tpl": "64d11702dd0cd96ab82c3280", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064f3", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910639e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910639e", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 977 - } - }, - { - "_id": "66c90dc0c7d43f68b91064f5", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b91063a0", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc0c7d43f68b910639e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 621 + { + "_id": "66c90dc0c7d43f68b91063a2", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c90dc0c7d43f68b910639e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_04_DesignStuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064f7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1129 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064f9", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91063a4", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063a4", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 754 + { + "_id": "66c90dc0c7d43f68b91063a6", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91063a4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 967 + } } + ] + }, + { + "Id": "container_City_SE_04_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064fb", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 917 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064fd", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91063a8", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063a8", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 625 + { + "_id": "66c90dc0c7d43f68b91063aa", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66c90dc0c7d43f68b91063a8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_04_DesignStuff_00026", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b91064ff", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1136 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106501", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91063ac", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063ac", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 610 - } - }, - { - "_id": "66c90dc0c7d43f68b9106503", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66c90dc0c7d43f68b91063ae", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91063ac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 586 + } }, - "upd": { - "StackObjectsCount": 986 + { + "_id": "66c90dc0c7d43f68b91063b0", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91063ac", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1123 + } } + ] + }, + { + "Id": "container_City_SE_04_DesignStuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106505", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 597 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106507", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91063b2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063b2", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 851 + { + "_id": "66c90dc0c7d43f68b91063b4", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91063b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1081 + } } + ] + }, + { + "Id": "container_City_SE_04_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106509", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 59 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910650b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b91064f1", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 672 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91063b6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063b6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91063b8", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc0c7d43f68b91063b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00138", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910650d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910650d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00014", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910650f", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc0c7d43f68b910650d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00137", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106511", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106511", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106513", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc0c7d43f68b9106511", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91063ba", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063ba", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91063bc", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc0c7d43f68b91063ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00136", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106515", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106515", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106517", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc0c7d43f68b9106515", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00135", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106519", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106519", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910651b", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc0c7d43f68b9106519", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91063be", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063be", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91063c0", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc0c7d43f68b91063be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00045", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910651d", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910651d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SE_04_DesignStuff_00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910651f", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66c90dc0c7d43f68b910651d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00094", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106521", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106521", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106523", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c90dc0c7d43f68b9106521", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91063c2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063c2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 18 + { + "_id": "66c90dc0c7d43f68b91063c4", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc0c7d43f68b91063c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SE_04_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106524", - "_tpl": "5cadc190ae921500103bb3b6", - "parentId": "66c90dc0c7d43f68b9106521", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91063c6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063c6", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91063c8", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66c90dc0c7d43f68b91063c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66c90dc0c7d43f68b91063ca", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66c90dc0c7d43f68b91063c6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00098", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106525", - "_tpl": "5cadc1c6ae9215000f2775a4", - "parentId": "66c90dc0c7d43f68b9106524", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dc0c7d43f68b9106526", - "_tpl": "5cadc390ae921500126a77f1", - "parentId": "66c90dc0c7d43f68b9106525", - "slotId": "mod_muzzle" - }, - { - "_id": "66c90dc0c7d43f68b9106527", - "_tpl": "5cadc431ae921500113bb8d5", - "parentId": "66c90dc0c7d43f68b9106524", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c90dc0c7d43f68b9106528", - "_tpl": "5cadc55cae921500103bb3be", - "parentId": "66c90dc0c7d43f68b9106524", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc0c7d43f68b9106529", - "_tpl": "5cadd940ae9215051e1c2316", - "parentId": "66c90dc0c7d43f68b9106528", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910652a", - "_tpl": "5cadd919ae921500126a77f3", - "parentId": "66c90dc0c7d43f68b9106528", - "slotId": "mod_sight_front" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91063cc", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063cc", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91063ce", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc0c7d43f68b91063cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910652b", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "66c90dc0c7d43f68b9106524", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910652c", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc0c7d43f68b910652b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91063d0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063d0", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91063d1", + "_tpl": "5ab8e4ed86f7742d8e50c7fa", + "parentId": "66c90dc0c7d43f68b91063d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b91063d2", + "_tpl": "657044e971369562b300ce9b", + "parentId": "66c90dc0c7d43f68b91063d1", + "slotId": "Soft_armor_front" + }, + { + "_id": "66c90dc0c7d43f68b91063d3", + "_tpl": "657045741bd9beedc40b7299", + "parentId": "66c90dc0c7d43f68b91063d1", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c90dc0c7d43f68b91063d4", + "_tpl": "657045b97e80617cee095bda", + "parentId": "66c90dc0c7d43f68b91063d1", + "slotId": "Soft_armor_left" + }, + { + "_id": "66c90dc0c7d43f68b91063d5", + "_tpl": "6570460471369562b300ce9f", + "parentId": "66c90dc0c7d43f68b91063d1", + "slotId": "soft_armor_right" } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00255", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910652e", - "_tpl": "6565b91666492762f5029c0b", - "parentId": "66c90dc0c7d43f68b9106521", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91063d7", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063d7", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91063d9", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66c90dc0c7d43f68b91063d7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91063db", + "_tpl": "5aa2b89be5b5b0001569311f", + "parentId": "66c90dc0c7d43f68b91063d7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00144", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106530", - "_tpl": "59ecc3dd86f7746dc827481c", - "parentId": "66c90dc0c7d43f68b9106521", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91063dd", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063dd", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91063df", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91063dd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 793 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00131", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106532", - "_tpl": "5bfe7fb30db8340018089fed", - "parentId": "66c90dc0c7d43f68b9106521", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91063e1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063e1", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91063e3", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc0c7d43f68b91063e1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91063e5", + "_tpl": "5d40412b86f7743cb332ac3a", + "parentId": "66c90dc0c7d43f68b91063e1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91063e7", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66c90dc0c7d43f68b91063e1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91063e9", + "_tpl": "5c3df7d588a4501f290594e5", + "parentId": "66c90dc0c7d43f68b91063e1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 17 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106534", - "_tpl": "572b7fa124597762b472f9d2", - "parentId": "66c90dc0c7d43f68b9106521", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91063fc", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91063fc", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91063fe", + "_tpl": "5b43271c5acfc432ff4dce65", + "parentId": "66c90dc0c7d43f68b91063fc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00172", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106536", - "_tpl": "6699249f3c4fda6471005cba", - "parentId": "66c90dc0c7d43f68b9106521", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106400", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106400", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106402", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc0c7d43f68b9106400", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00334", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106538", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106538", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00171", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910653a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc0c7d43f68b9106538", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106404", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106404", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106406", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc0c7d43f68b9106404", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00170", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910653c", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc0c7d43f68b9106538", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00129", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910653e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910653e", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106540", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc0c7d43f68b910653e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1012 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106408", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106408", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910640a", + "_tpl": "5e2af29386f7746d4159f077", + "parentId": "66c90dc0c7d43f68b9106408", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00320", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106546", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106546", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00169", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106548", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c90dc0c7d43f68b9106546", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b910654a", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910654a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910654c", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dc0c7d43f68b910654a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910640c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910640c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910640e", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b910640c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00214", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910654e", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910654e", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00161", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106550", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "66c90dc0c7d43f68b910654e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00211", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc0c7d43f68b9106552", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106552", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106554", - "_tpl": "5bc9c29cd4351e003562b8a3", - "parentId": "66c90dc0c7d43f68b9106552", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106410", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106410", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106412", + "_tpl": "5bd0716d86f774171822ef4b", + "parentId": "66c90dc0c7d43f68b9106410", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106556", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66c90dc0c7d43f68b9106552", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106558", - "_tpl": "60b0f93284c20f0feb453da7", - "parentId": "66c90dc0c7d43f68b9106552", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910641a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910641a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc0c7d43f68b910655a", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66c90dc0c7d43f68b9106552", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910641c", + "_tpl": "601949593ae8f707c4608daa", + "parentId": "66c90dc0c7d43f68b910641a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 13 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00176", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b910655c", - "Items": [ - { - "_id": "66c90dc0c7d43f68b910655c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00118", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b910655e", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66c90dc0c7d43f68b910655c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00175", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc0c7d43f68b9106560", - "Items": [ - { - "_id": "66c90dc0c7d43f68b9106560", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc0c7d43f68b9106562", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66c90dc0c7d43f68b9106560", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910641e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910641e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106420", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b910641e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 908 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00174", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106564", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106564", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00160", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106566", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc1c7d43f68b9106564", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00173", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106568", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106568", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910656a", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc1c7d43f68b9106568", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106422", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106422", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106424", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc0c7d43f68b9106422", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00210", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910656c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910656c", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910656e", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc1c7d43f68b910656c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00269", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106570", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106570", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106572", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc1c7d43f68b9106570", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106426", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106426", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106428", + "_tpl": "544fb45d4bdc2dee738b4568", + "parentId": "66c90dc0c7d43f68b9106426", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00141", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106574", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106574", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00262", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106576", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc1c7d43f68b9106574", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00270", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106578", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106578", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910657a", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c90dc1c7d43f68b9106578", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910642a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910642a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b910657c", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc1c7d43f68b9106578", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b910642c", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc0c7d43f68b910642a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910642e", + "_tpl": "57347baf24597738002c6178", + "parentId": "66c90dc0c7d43f68b910642a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00319", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910657e", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66c90dc1c7d43f68b9106578", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106580", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66c90dc1c7d43f68b9106578", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910643a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910643a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910643c", + "_tpl": "6389c70ca33d8c4cdf4932c6", + "parentId": "66c90dc0c7d43f68b910643a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106586", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106586", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00318", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106588", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c90dc1c7d43f68b9106586", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 32 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910658b", - "_tpl": "65702577cfc010a0f5006a2c", - "parentId": "66c90dc1c7d43f68b9106586", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106442", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106442", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106444", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc0c7d43f68b9106442", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00317", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910658c", - "_tpl": "5887431f2459777e1612938f", - "parentId": "66c90dc1c7d43f68b910658b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910658e", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66c90dc1c7d43f68b9106586", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106446", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106446", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 25 + { + "_id": "66c90dc0c7d43f68b9106448", + "_tpl": "62a09e73af34e73a266d932a", + "parentId": "66c90dc0c7d43f68b9106446", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00316", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106591", - "_tpl": "6570255dbfc87b3a3409324a", - "parentId": "66c90dc1c7d43f68b9106586", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106592", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66c90dc1c7d43f68b9106591", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910644a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910644a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910644c", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc0c7d43f68b910644a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00321", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106594", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106594", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00315", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106596", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66c90dc1c7d43f68b9106594", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 31 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106597", - "_tpl": "5ab8e79e86f7742d8b372e78", - "parentId": "66c90dc1c7d43f68b9106594", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910644e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910644e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106450", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc0c7d43f68b910644e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106598", - "_tpl": "65732688d9d89ff7ac0d9c4c", - "parentId": "66c90dc1c7d43f68b9106597", - "slotId": "Soft_armor_front" - }, - { - "_id": "66c90dc1c7d43f68b9106599", - "_tpl": "657326978c1cc6dcd9098b56", - "parentId": "66c90dc1c7d43f68b9106597", - "slotId": "Soft_armor_back" - }, - { - "_id": "66c90dc1c7d43f68b910659a", - "_tpl": "657326a28c1cc6dcd9098b5a", - "parentId": "66c90dc1c7d43f68b9106597", - "slotId": "Soft_armor_left" - }, - { - "_id": "66c90dc1c7d43f68b910659b", - "_tpl": "657326b08c1cc6dcd9098b5e", - "parentId": "66c90dc1c7d43f68b9106597", - "slotId": "soft_armor_right" - }, - { - "_id": "66c90dc1c7d43f68b910659c", - "_tpl": "657326bc5d3a3129fb05f36b", - "parentId": "66c90dc1c7d43f68b9106597", - "slotId": "Collar" - }, - { - "_id": "66c90dc1c7d43f68b910659d", - "_tpl": "656f611f94b480b8a500c0db", - "parentId": "66c90dc1c7d43f68b9106597", - "slotId": "Front_plate" - }, - { - "_id": "66c90dc1c7d43f68b910659e", - "_tpl": "65573fa5655447403702a816", - "parentId": "66c90dc1c7d43f68b9106597", - "slotId": "Back_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065a0", - "_tpl": "5737218f245977612125ba51", - "parentId": "66c90dc1c7d43f68b9106594", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106452", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106452", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 36 - } - }, - { - "_id": "66c90dc1c7d43f68b91065a2", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b9106594", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106454", + "_tpl": "590c695186f7741e566b64a2", + "parentId": "66c90dc0c7d43f68b9106452", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00026", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91065a4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065a4", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00209", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065a6", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c90dc1c7d43f68b91065a4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065a8", - "_tpl": "62a0a043cf4a99369e2624a5", - "parentId": "66c90dc1c7d43f68b91065a4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106456", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106456", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91065aa", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66c90dc1c7d43f68b91065a4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106458", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66c90dc0c7d43f68b9106456", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91065ac", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065ac", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00309", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065ae", - "_tpl": "5bc9bc53d4351e00367fbcee", - "parentId": "66c90dc1c7d43f68b91065ac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00279", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065b0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065b0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065b2", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66c90dc1c7d43f68b91065b0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106462", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106462", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106464", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc0c7d43f68b9106462", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 66 + } + }, + { + "_id": "66c90dc0c7d43f68b9106466", + "_tpl": "590de71386f774347051a052", + "parentId": "66c90dc0c7d43f68b9106462", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00278", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065b4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065b4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00256", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065b6", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b91065b4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00277", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065b8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065b8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065ba", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b91065b8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106472", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106472", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106474", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66c90dc0c7d43f68b9106472", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00276", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065bc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065bc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00271", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065be", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc1c7d43f68b91065bc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106476", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106476", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106478", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b9106476", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 794 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00298", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91065c0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065c0", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00344", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065c2", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c90dc1c7d43f68b91065c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910647a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910647a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910647c", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66c90dc0c7d43f68b910647a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065c4", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c90dc1c7d43f68b91065c0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910647e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910647e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106480", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b910647e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106482", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66c90dc0c7d43f68b910647e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00124", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065c6", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065c6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00190", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065c8", - "_tpl": "59e35de086f7741778269d84", - "parentId": "66c90dc1c7d43f68b91065c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106484", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106484", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106486", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c90dc0c7d43f68b9106484", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106488", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c90dc0c7d43f68b9106484", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00123", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065ca", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065ca", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00075", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065cc", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c90dc1c7d43f68b91065ca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00122", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065ce", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065ce", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065d0", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b91065ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910648a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910648a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910648c", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66c90dc0c7d43f68b910648a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910648e", + "_tpl": "590c639286f774151567fa95", + "parentId": "66c90dc0c7d43f68b910648a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106490", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66c90dc0c7d43f68b910648a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00121", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065d2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065d2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00025", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065d4", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc1c7d43f68b91065d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00090", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91065d6", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065d6", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065d8", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66c90dc1c7d43f68b91065d6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106492", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106492", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91065db", - "_tpl": "57372ac324597767001bc261", - "parentId": "66c90dc1c7d43f68b91065d6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc0c7d43f68b9106494", + "_tpl": "5d403f9186f7743cac3f229b", + "parentId": "66c90dc0c7d43f68b9106492", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91065dc", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66c90dc1c7d43f68b91065db", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + { + "_id": "66c90dc0c7d43f68b9106496", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66c90dc0c7d43f68b9106492", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106498", + "_tpl": "6570aead4d84f81fd002a033", + "parentId": "66c90dc0c7d43f68b9106492", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00303", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91065de", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065de", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065e0", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c90dc1c7d43f68b91065de", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065e2", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c90dc1c7d43f68b91065de", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910649a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910649a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910649c", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66c90dc0c7d43f68b910649a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910649e", + "_tpl": "5d1b385e86f774252167b98a", + "parentId": "66c90dc0c7d43f68b910649a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064a0", + "_tpl": "590c35a486f774273531c822", + "parentId": "66c90dc0c7d43f68b910649a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00297", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065e4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065e4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00226", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065e6", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b91065e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00296", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065e8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065e8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065ea", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc1c7d43f68b91065e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064a2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064a2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064a4", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc0c7d43f68b91064a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00295", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065ec", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065ec", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00225", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065ee", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc1c7d43f68b91065ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00294", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065f0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065f0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065f2", - "_tpl": "5ad5d20586f77449be26d877", - "parentId": "66c90dc1c7d43f68b91065f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064a6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064a6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064a8", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc0c7d43f68b91064a6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00308", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065f4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065f4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00224", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065f6", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc1c7d43f68b91065f4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 51 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00307", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065f8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065f8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065fa", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc1c7d43f68b91065f8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064aa", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064aa", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064ac", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc0c7d43f68b91064aa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00306", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91065fc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91065fc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00223", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91065fe", - "_tpl": "59e35de086f7741778269d84", - "parentId": "66c90dc1c7d43f68b91065fc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00305", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106600", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106600", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106602", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc1c7d43f68b9106600", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064ae", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064ae", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064b0", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc0c7d43f68b91064ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00195", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106604", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106604", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00283", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106606", - "_tpl": "5734758f24597738025ee253", - "parentId": "66c90dc1c7d43f68b9106604", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106608", - "_tpl": "5887431f2459777e1612938f", - "parentId": "66c90dc1c7d43f68b9106604", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064b2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064b2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 29 + { + "_id": "66c90dc0c7d43f68b91064b4", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b91064b2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00282", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910660a", - "_tpl": "5755356824597772cb798962", - "parentId": "66c90dc1c7d43f68b9106604", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910660b", - "_tpl": "5926bb2186f7744b1c6c6e60", - "parentId": "66c90dc1c7d43f68b9106604", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064b6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064b6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66c90dc0c7d43f68b91064b8", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66c90dc0c7d43f68b91064b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00281", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910660c", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "66c90dc1c7d43f68b910660b", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc1c7d43f68b9106613", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc1c7d43f68b910660c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 14.0 - } - }, - { - "_id": "66c90dc1c7d43f68b910660d", - "_tpl": "5926c0df86f77462f647f764", - "parentId": "66c90dc1c7d43f68b910660b", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc1c7d43f68b910660e", - "_tpl": "5926c36d86f77467a92a8629", - "parentId": "66c90dc1c7d43f68b910660d", - "slotId": "mod_handguard" - }, - { - "_id": "66c90dc1c7d43f68b910660f", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "66c90dc1c7d43f68b910660d", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc1c7d43f68b9106610", - "_tpl": "5926d3c686f77410de68ebc8", - "parentId": "66c90dc1c7d43f68b910660d", - "slotId": "mod_stock" - }, - { - "_id": "66c90dc1c7d43f68b9106611", - "_tpl": "5926e16e86f7742f5a0f7ecb", - "parentId": "66c90dc1c7d43f68b910660d", - "slotId": "mod_muzzle" - }, - { - "_id": "66c90dc1c7d43f68b9106612", - "_tpl": "5926c32286f774616e42de99", - "parentId": "66c90dc1c7d43f68b910660b", - "slotId": "mod_charge" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106615", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c90dc1c7d43f68b9106604", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064ba", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064ba", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064bc", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc0c7d43f68b91064ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00191", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106617", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106617", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00280", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106619", - "_tpl": "573477e124597737dd42e191", - "parentId": "66c90dc1c7d43f68b9106617", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106621", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106621", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106623", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b9106621", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064be", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064be", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91064c0", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc0c7d43f68b91064be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00329", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106625", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc1c7d43f68b9106621", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106626", - "_tpl": "59984ab886f7743e98271174", - "parentId": "66c90dc1c7d43f68b9106621", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91064c2", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064c2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064c4", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66c90dc0c7d43f68b91064c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00156", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106627", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66c90dc1c7d43f68b9106626", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c90dc1c7d43f68b9106628", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66c90dc1c7d43f68b9106626", - "slotId": "mod_stock" - }, - { - "_id": "66c90dc1c7d43f68b9106629", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66c90dc1c7d43f68b9106626", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910662f", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66c90dc1c7d43f68b9106629", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91064c6", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064c6", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064c8", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc0c7d43f68b91064c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064ca", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c90dc0c7d43f68b91064c6", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00207", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910662a", - "_tpl": "5998597786f77414ea6da093", - "parentId": "66c90dc1c7d43f68b9106626", - "slotId": "mod_muzzle" - }, - { - "_id": "66c90dc1c7d43f68b910662b", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66c90dc1c7d43f68b9106626", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc1c7d43f68b910662c", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66c90dc1c7d43f68b9106626", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc1c7d43f68b910662d", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66c90dc1c7d43f68b9106626", - "slotId": "mod_gas_block" - }, - { - "_id": "66c90dc1c7d43f68b910662e", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66c90dc1c7d43f68b910662d", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106630", - "_tpl": "5ac8d6885acfc400180ae7b0", - "parentId": "66c90dc1c7d43f68b9106621", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064cc", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064cc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064ce", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66c90dc0c7d43f68b91064cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc1c7d43f68b9106631", - "_tpl": "657f8ec5f4c82973640b234c", - "parentId": "66c90dc1c7d43f68b9106630", - "slotId": "Helmet_top" - }, - { - "_id": "66c90dc1c7d43f68b9106632", - "_tpl": "657f8f10f4c82973640b2350", - "parentId": "66c90dc1c7d43f68b9106630", - "slotId": "Helmet_back" - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00095", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106634", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106634", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00206", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106636", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c90dc1c7d43f68b9106634", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 42 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106638", - "_tpl": "5bfd36ad0db834001c38ef66", - "parentId": "66c90dc1c7d43f68b9106634", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064d0", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064d0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b910663a", - "_tpl": "5bc5a35cd4351e450201232f", - "parentId": "66c90dc1c7d43f68b9106634", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91064d2", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc0c7d43f68b91064d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910663c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910663c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00205", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910663e", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b910663c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106640", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b910663c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064d4", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064d4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064d6", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66c90dc0c7d43f68b91064d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106642", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106642", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00204", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106644", - "_tpl": "6415d33eda439c6a97048b5b", - "parentId": "66c90dc1c7d43f68b9106642", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064d8", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064d8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064da", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc0c7d43f68b91064d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00213", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910664e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910664e", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00166", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106650", - "_tpl": "573474f924597738002c6174", - "parentId": "66c90dc1c7d43f68b910664e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91064dc", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064dc", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064dd", + "_tpl": "5c0e3eb886f7742015526062", + "parentId": "66c90dc0c7d43f68b91064dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc0c7d43f68b91064de", + "_tpl": "65764a4cd8537eb26a0355ee", + "parentId": "66c90dc0c7d43f68b91064dd", + "slotId": "Soft_armor_front" + }, + { + "_id": "66c90dc0c7d43f68b91064df", + "_tpl": "65764bc22bc38ef78e076485", + "parentId": "66c90dc0c7d43f68b91064dd", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c90dc0c7d43f68b91064e0", + "_tpl": "65764c39526e320fbe035777", + "parentId": "66c90dc0c7d43f68b91064dd", + "slotId": "Collar" + }, + { + "_id": "66c90dc0c7d43f68b91064e1", + "_tpl": "65764c6b526e320fbe03577b", + "parentId": "66c90dc0c7d43f68b91064dd", + "slotId": "Groin" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91064e3", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "66c90dc0c7d43f68b91064dc", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00208", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106652", - "_tpl": "5c1267ee86f77416ec610f72", - "parentId": "66c90dc1c7d43f68b910664e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b91064e5", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064e5", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b91064e7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064e5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 572 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00257", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106654", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc1c7d43f68b910664e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 89 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91064e9", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064e9", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064eb", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc0c7d43f68b91064e9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00034", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106656", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106656", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00159", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106658", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66c90dc1c7d43f68b9106656", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91064ed", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064ed", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 32 + { + "_id": "66c90dc0c7d43f68b91064ef", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c90dc0c7d43f68b91064ed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc1c7d43f68b910665a", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66c90dc1c7d43f68b9106656", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 59 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00343", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106662", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106662", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00263", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106664", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c90dc1c7d43f68b9106662", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106666", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c90dc1c7d43f68b9106662", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b91064f1", + "Items": [ + { + "_id": "66c90dc0c7d43f68b91064f1", + "_tpl": "64d11702dd0cd96ab82c3280", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b91064f3", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 977 + } + }, + { + "_id": "66c90dc0c7d43f68b91064f5", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 621 + } + }, + { + "_id": "66c90dc0c7d43f68b91064f7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1129 + } + }, + { + "_id": "66c90dc0c7d43f68b91064f9", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 754 + } + }, + { + "_id": "66c90dc0c7d43f68b91064fb", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 917 + } + }, + { + "_id": "66c90dc0c7d43f68b91064fd", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 625 + } + }, + { + "_id": "66c90dc0c7d43f68b91064ff", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1136 + } + }, + { + "_id": "66c90dc0c7d43f68b9106501", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 610 + } + }, + { + "_id": "66c90dc0c7d43f68b9106503", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 986 + } + }, + { + "_id": "66c90dc0c7d43f68b9106505", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 597 + } + }, + { + "_id": "66c90dc0c7d43f68b9106507", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 851 + } + }, + { + "_id": "66c90dc0c7d43f68b9106509", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 59 + } + }, + { + "_id": "66c90dc0c7d43f68b910650b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b91064f1", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 672 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00314", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106668", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106668", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00138", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910666a", - "_tpl": "590c621186f774138d11ea29", - "parentId": "66c90dc1c7d43f68b9106668", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00313", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910666c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910666c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910666e", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b910666c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910650d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910650d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910650f", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc0c7d43f68b910650d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00312", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106670", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106670", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00137", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106672", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc1c7d43f68b9106670", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00311", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106674", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106674", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106676", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc1c7d43f68b9106674", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106511", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106511", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106513", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc0c7d43f68b9106511", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00069", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106678", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106678", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00136", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910667a", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b9106678", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910667c", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dc1c7d43f68b9106678", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106515", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106515", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106517", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc0c7d43f68b9106515", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00192", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910667e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910667e", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00135", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106680", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c90dc1c7d43f68b910667e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106682", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c90dc1c7d43f68b910667e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106519", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106519", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910651b", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc0c7d43f68b9106519", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00132", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910668a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910668a", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00045", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910668c", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dc1c7d43f68b910668a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910668e", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc1c7d43f68b910668a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910651d", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910651d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b910651f", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66c90dc0c7d43f68b910651d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00094", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106690", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66c90dc1c7d43f68b910668a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106692", - "_tpl": "57347ca924597744596b4e71", - "parentId": "66c90dc1c7d43f68b910668a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106521", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106521", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106523", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c90dc0c7d43f68b9106521", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 18 + } + }, + { + "_id": "66c90dc0c7d43f68b9106524", + "_tpl": "5cadc190ae921500103bb3b6", + "parentId": "66c90dc0c7d43f68b9106521", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c90dc0c7d43f68b9106525", + "_tpl": "5cadc1c6ae9215000f2775a4", + "parentId": "66c90dc0c7d43f68b9106524", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc0c7d43f68b9106526", + "_tpl": "5cadc390ae921500126a77f1", + "parentId": "66c90dc0c7d43f68b9106525", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc0c7d43f68b9106527", + "_tpl": "5cadc431ae921500113bb8d5", + "parentId": "66c90dc0c7d43f68b9106524", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc0c7d43f68b9106528", + "_tpl": "5cadc55cae921500103bb3be", + "parentId": "66c90dc0c7d43f68b9106524", + "slotId": "mod_reciever" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc0c7d43f68b9106529", + "_tpl": "5cadd940ae9215051e1c2316", + "parentId": "66c90dc0c7d43f68b9106528", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc0c7d43f68b910652a", + "_tpl": "5cadd919ae921500126a77f3", + "parentId": "66c90dc0c7d43f68b9106528", + "slotId": "mod_sight_front" + }, + { + "_id": "66c90dc0c7d43f68b910652b", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "66c90dc0c7d43f68b9106524", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc0c7d43f68b910652c", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc0c7d43f68b910652b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11.0 + } + }, + { + "_id": "66c90dc0c7d43f68b910652e", + "_tpl": "6565b91666492762f5029c0b", + "parentId": "66c90dc0c7d43f68b9106521", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106530", + "_tpl": "59ecc3dd86f7746dc827481c", + "parentId": "66c90dc0c7d43f68b9106521", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106532", + "_tpl": "5bfe7fb30db8340018089fed", + "parentId": "66c90dc0c7d43f68b9106521", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106534", + "_tpl": "572b7fa124597762b472f9d2", + "parentId": "66c90dc0c7d43f68b9106521", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106536", + "_tpl": "6699249f3c4fda6471005cba", + "parentId": "66c90dc0c7d43f68b9106521", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00334", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106694", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66c90dc1c7d43f68b910668a", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106538", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106538", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910653a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc0c7d43f68b9106538", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910653c", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc0c7d43f68b9106538", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106696", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106696", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00129", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106698", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc1c7d43f68b9106696", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910653e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910653e", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106540", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc0c7d43f68b910653e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1012 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00189", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910669a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910669a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00320", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910669c", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc1c7d43f68b910669a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106546", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106546", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106548", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c90dc0c7d43f68b9106546", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00188", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910669e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910669e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066a0", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b910669e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b910654a", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910654a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910654c", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dc0c7d43f68b910654a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00187", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91066a2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066a2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00214", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066a4", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dc1c7d43f68b91066a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910654e", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910654e", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106550", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "66c90dc0c7d43f68b910654e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00186", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91066a6", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066a6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00211", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066a8", - "_tpl": "5d1b2ffd86f77425243e8d17", - "parentId": "66c90dc1c7d43f68b91066a6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc0c7d43f68b9106552", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106552", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106554", + "_tpl": "5bc9c29cd4351e003562b8a3", + "parentId": "66c90dc0c7d43f68b9106552", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106556", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66c90dc0c7d43f68b9106552", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106558", + "_tpl": "60b0f93284c20f0feb453da7", + "parentId": "66c90dc0c7d43f68b9106552", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910655a", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66c90dc0c7d43f68b9106552", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91066b4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066b4", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00176", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066b6", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b91066b4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b910655c", + "Items": [ + { + "_id": "66c90dc0c7d43f68b910655c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b910655e", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66c90dc0c7d43f68b910655c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00163", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91066b8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066b8", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00175", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066ba", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc1c7d43f68b91066b8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc0c7d43f68b9106560", + "Items": [ + { + "_id": "66c90dc0c7d43f68b9106560", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc0c7d43f68b9106562", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66c90dc0c7d43f68b9106560", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00115", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91066bc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066bc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00174", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066be", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc1c7d43f68b91066bc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106564", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106564", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106566", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc1c7d43f68b9106564", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00114", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91066c0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066c0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00173", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066c2", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dc1c7d43f68b91066c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106568", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106568", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910656a", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc1c7d43f68b9106568", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00113", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91066c4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066c4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00210", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066c6", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc1c7d43f68b91066c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910656c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910656c", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910656e", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc1c7d43f68b910656c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00112", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91066c8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066c8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00269", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066ca", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc1c7d43f68b91066c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106570", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106570", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106572", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc1c7d43f68b9106570", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91066cc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066cc", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00141", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066ce", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66c90dc1c7d43f68b91066cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106574", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106574", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106576", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc1c7d43f68b9106574", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00143", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91066d8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066d8", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00270", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066da", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91066d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 938 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106578", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106578", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910657a", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c90dc1c7d43f68b9106578", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910657c", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc1c7d43f68b9106578", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910657e", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66c90dc1c7d43f68b9106578", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106580", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66c90dc1c7d43f68b9106578", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00212", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91066e4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066e4", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066e6", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66c90dc1c7d43f68b91066e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106586", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106586", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106588", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c90dc1c7d43f68b9106586", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 32 + } + }, + { + "_id": "66c90dc1c7d43f68b910658b", + "_tpl": "65702577cfc010a0f5006a2c", + "parentId": "66c90dc1c7d43f68b9106586", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910658c", + "_tpl": "5887431f2459777e1612938f", + "parentId": "66c90dc1c7d43f68b910658b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c90dc1c7d43f68b910658e", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66c90dc1c7d43f68b9106586", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 25 + } + }, + { + "_id": "66c90dc1c7d43f68b9106591", + "_tpl": "6570255dbfc87b3a3409324a", + "parentId": "66c90dc1c7d43f68b9106586", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106592", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66c90dc1c7d43f68b9106591", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91066e8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066e8", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00321", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066ea", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc1c7d43f68b91066e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106594", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106594", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106596", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66c90dc1c7d43f68b9106594", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 31 + } + }, + { + "_id": "66c90dc1c7d43f68b9106597", + "_tpl": "5ab8e79e86f7742d8b372e78", + "parentId": "66c90dc1c7d43f68b9106594", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106598", + "_tpl": "65732688d9d89ff7ac0d9c4c", + "parentId": "66c90dc1c7d43f68b9106597", + "slotId": "Soft_armor_front" + }, + { + "_id": "66c90dc1c7d43f68b9106599", + "_tpl": "657326978c1cc6dcd9098b56", + "parentId": "66c90dc1c7d43f68b9106597", + "slotId": "Soft_armor_back" + }, + { + "_id": "66c90dc1c7d43f68b910659a", + "_tpl": "657326a28c1cc6dcd9098b5a", + "parentId": "66c90dc1c7d43f68b9106597", + "slotId": "Soft_armor_left" + }, + { + "_id": "66c90dc1c7d43f68b910659b", + "_tpl": "657326b08c1cc6dcd9098b5e", + "parentId": "66c90dc1c7d43f68b9106597", + "slotId": "soft_armor_right" + }, + { + "_id": "66c90dc1c7d43f68b910659c", + "_tpl": "657326bc5d3a3129fb05f36b", + "parentId": "66c90dc1c7d43f68b9106597", + "slotId": "Collar" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b910659d", + "_tpl": "656f611f94b480b8a500c0db", + "parentId": "66c90dc1c7d43f68b9106597", + "slotId": "Front_plate" + }, + { + "_id": "66c90dc1c7d43f68b910659e", + "_tpl": "65573fa5655447403702a816", + "parentId": "66c90dc1c7d43f68b9106597", + "slotId": "Back_plate" + }, + { + "_id": "66c90dc1c7d43f68b91065a0", + "_tpl": "5737218f245977612125ba51", + "parentId": "66c90dc1c7d43f68b9106594", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 36 + } + }, + { + "_id": "66c90dc1c7d43f68b91065a2", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b9106594", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00026", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066ec", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66c90dc1c7d43f68b91066e8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91065a4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065a4", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065a6", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c90dc1c7d43f68b91065a4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91065a8", + "_tpl": "62a0a043cf4a99369e2624a5", + "parentId": "66c90dc1c7d43f68b91065a4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065aa", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66c90dc1c7d43f68b91065a4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066ee", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66c90dc1c7d43f68b91066e8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91065ac", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065ac", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065ae", + "_tpl": "5bc9bc53d4351e00367fbcee", + "parentId": "66c90dc1c7d43f68b91065ac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91066f0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066f0", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00279", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066f2", - "_tpl": "5e2aef7986f7746d3f3c33f5", - "parentId": "66c90dc1c7d43f68b91066f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065b0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065b0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91065b2", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66c90dc1c7d43f68b91065b0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00278", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066f4", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c90dc1c7d43f68b91066f0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065b4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065b4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91065b6", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b91065b4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00277", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066f6", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b91066f0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065b8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065b8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065ba", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b91065b8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00053", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91066f8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066f8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00276", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066fa", - "_tpl": "57513fcc24597720a31c09a6", - "parentId": "66c90dc1c7d43f68b91066f8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065bc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065bc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065be", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc1c7d43f68b91065bc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00287", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91066fc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91066fc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00298", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91066fe", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b91066fc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91065c0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065c0", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065c2", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c90dc1c7d43f68b91065c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065c4", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c90dc1c7d43f68b91065c0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00286", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106700", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106700", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00124", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106702", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc1c7d43f68b9106700", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00285", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106704", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106704", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106706", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66c90dc1c7d43f68b9106704", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065c6", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065c6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065c8", + "_tpl": "59e35de086f7741778269d84", + "parentId": "66c90dc1c7d43f68b91065c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00284", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106708", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106708", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00123", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910670a", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc1c7d43f68b9106708", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065ca", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065ca", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065cc", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c90dc1c7d43f68b91065ca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910670c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910670c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00122", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910670e", - "_tpl": "5d1b304286f774253763a528", - "parentId": "66c90dc1c7d43f68b910670c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065ce", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065ce", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065d0", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b91065ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00139", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106710", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106710", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00121", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106712", - "_tpl": "62a0a098de7ac8199358053b", - "parentId": "66c90dc1c7d43f68b9106710", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065d2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065d2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91065d4", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc1c7d43f68b91065d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00090", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106714", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc1c7d43f68b9106710", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91065d6", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065d6", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065d8", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66c90dc1c7d43f68b91065d6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065db", + "_tpl": "57372ac324597767001bc261", + "parentId": "66c90dc1c7d43f68b91065d6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91065dc", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66c90dc1c7d43f68b91065db", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00303", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106716", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c90dc1c7d43f68b9106710", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91065de", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065de", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065e0", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c90dc1c7d43f68b91065de", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91065e2", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c90dc1c7d43f68b91065de", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00297", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106718", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c90dc1c7d43f68b9106710", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065e4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065e4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065e6", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b91065e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910671a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910671a", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00296", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910671c", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c90dc1c7d43f68b910671a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065e8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065e8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065ea", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc1c7d43f68b91065e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106724", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106724", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00295", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106726", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66c90dc1c7d43f68b9106724", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065ec", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065ec", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91065ee", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc1c7d43f68b91065ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00294", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106728", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b9106724", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065f0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065f0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91065f2", + "_tpl": "5ad5d20586f77449be26d877", + "parentId": "66c90dc1c7d43f68b91065f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00308", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910672a", - "_tpl": "590c311186f77424d1667482", - "parentId": "66c90dc1c7d43f68b9106724", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065f4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065f4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065f6", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc1c7d43f68b91065f4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 51 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00111", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910672c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910672c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00307", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910672e", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b910672c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065f8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065f8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065fa", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc1c7d43f68b91065f8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106730", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106730", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00306", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106732", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc1c7d43f68b9106730", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91065fc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91065fc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91065fe", + "_tpl": "59e35de086f7741778269d84", + "parentId": "66c90dc1c7d43f68b91065fc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00109", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106734", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106734", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00305", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106736", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b9106734", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106600", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106600", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106602", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc1c7d43f68b9106600", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00108", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106738", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106738", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00195", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910673a", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc1c7d43f68b9106738", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910673c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910673c", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910673e", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dc1c7d43f68b910673c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106604", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106604", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106606", + "_tpl": "5734758f24597738025ee253", + "parentId": "66c90dc1c7d43f68b9106604", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106608", + "_tpl": "5887431f2459777e1612938f", + "parentId": "66c90dc1c7d43f68b9106604", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 29 + } + }, + { + "_id": "66c90dc1c7d43f68b910660a", + "_tpl": "5755356824597772cb798962", + "parentId": "66c90dc1c7d43f68b9106604", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910660b", + "_tpl": "5926bb2186f7744b1c6c6e60", + "parentId": "66c90dc1c7d43f68b9106604", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c90dc1c7d43f68b910660c", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "66c90dc1c7d43f68b910660b", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106613", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc1c7d43f68b910660c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 14.0 + } + }, + { + "_id": "66c90dc1c7d43f68b910660d", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "66c90dc1c7d43f68b910660b", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc1c7d43f68b910660e", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "66c90dc1c7d43f68b910660d", + "slotId": "mod_handguard" + }, + { + "_id": "66c90dc1c7d43f68b910660f", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "66c90dc1c7d43f68b910660d", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b9106610", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "66c90dc1c7d43f68b910660d", + "slotId": "mod_stock" + }, + { + "_id": "66c90dc1c7d43f68b9106611", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "66c90dc1c7d43f68b910660d", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc1c7d43f68b9106612", + "_tpl": "5926c32286f774616e42de99", + "parentId": "66c90dc1c7d43f68b910660b", + "slotId": "mod_charge" + }, + { + "_id": "66c90dc1c7d43f68b9106615", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c90dc1c7d43f68b9106604", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00158", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106740", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106740", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00191", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106742", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c90dc1c7d43f68b9106740", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00055", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106744", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106744", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106746", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc1c7d43f68b9106744", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106617", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106617", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106619", + "_tpl": "573477e124597737dd42e191", + "parentId": "66c90dc1c7d43f68b9106617", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106748", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66c90dc1c7d43f68b9106744", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910674a", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc1c7d43f68b9106744", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106621", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106621", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106623", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b9106621", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106625", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc1c7d43f68b9106621", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106626", + "_tpl": "59984ab886f7743e98271174", + "parentId": "66c90dc1c7d43f68b9106621", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106627", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66c90dc1c7d43f68b9106626", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc1c7d43f68b9106628", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66c90dc1c7d43f68b9106626", + "slotId": "mod_stock" + }, + { + "_id": "66c90dc1c7d43f68b9106629", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66c90dc1c7d43f68b9106626", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b910662f", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66c90dc1c7d43f68b9106629", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10.0 + } + }, + { + "_id": "66c90dc1c7d43f68b910662a", + "_tpl": "5998597786f77414ea6da093", + "parentId": "66c90dc1c7d43f68b9106626", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc1c7d43f68b910662b", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66c90dc1c7d43f68b9106626", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc1c7d43f68b910662c", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66c90dc1c7d43f68b9106626", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b910662d", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66c90dc1c7d43f68b9106626", + "slotId": "mod_gas_block" + }, + { + "_id": "66c90dc1c7d43f68b910662e", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66c90dc1c7d43f68b910662d", + "slotId": "mod_handguard" + }, + { + "_id": "66c90dc1c7d43f68b9106630", + "_tpl": "5ac8d6885acfc400180ae7b0", + "parentId": "66c90dc1c7d43f68b9106621", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106631", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "66c90dc1c7d43f68b9106630", + "slotId": "Helmet_top" + }, + { + "_id": "66c90dc1c7d43f68b9106632", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "66c90dc1c7d43f68b9106630", + "slotId": "Helmet_back" } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910674c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910674c", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00095", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910674e", - "_tpl": "5b31163c5acfc400153b71cb", - "parentId": "66c90dc1c7d43f68b910674c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106750", - "_tpl": "5a0060fc86f7745793204432", - "parentId": "66c90dc1c7d43f68b910674c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106634", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106634", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106752", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66c90dc1c7d43f68b910674c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106636", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c90dc1c7d43f68b9106634", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 42 + } + }, + { + "_id": "66c90dc1c7d43f68b9106638", + "_tpl": "5bfd36ad0db834001c38ef66", + "parentId": "66c90dc1c7d43f68b9106634", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910663a", + "_tpl": "5bc5a35cd4351e450201232f", + "parentId": "66c90dc1c7d43f68b9106634", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00155", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106754", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106754", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106756", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc1c7d43f68b9106754", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910663c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910663c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910663e", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b910663c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106640", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b910663c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106758", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106758", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910675a", - "_tpl": "57513f9324597720a7128161", - "parentId": "66c90dc1c7d43f68b9106758", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106642", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106642", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106644", + "_tpl": "6415d33eda439c6a97048b5b", + "parentId": "66c90dc1c7d43f68b9106642", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00213", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910675c", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66c90dc1c7d43f68b9106758", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910664e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910664e", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106650", + "_tpl": "573474f924597738002c6174", + "parentId": "66c90dc1c7d43f68b910664e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106652", + "_tpl": "5c1267ee86f77416ec610f72", + "parentId": "66c90dc1c7d43f68b910664e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106654", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc1c7d43f68b910664e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 89 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00034", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910675e", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66c90dc1c7d43f68b9106758", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106656", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106656", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106658", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66c90dc1c7d43f68b9106656", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 32 + } + }, + { + "_id": "66c90dc1c7d43f68b910665a", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66c90dc1c7d43f68b9106656", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 59 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00234", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106768", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106768", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00343", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910676a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc1c7d43f68b9106768", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00233", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910676c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910676c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910676e", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66c90dc1c7d43f68b910676c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106662", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106662", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106664", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c90dc1c7d43f68b9106662", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106666", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c90dc1c7d43f68b9106662", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00232", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106770", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106770", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00314", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106772", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc1c7d43f68b9106770", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00231", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106774", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106774", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106776", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dc1c7d43f68b9106774", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106668", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106668", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910666a", + "_tpl": "590c621186f774138d11ea29", + "parentId": "66c90dc1c7d43f68b9106668", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00185", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106778", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106778", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00313", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910677a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106778", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 711 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910677c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106778", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 706 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910666c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910666c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910666e", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b910666c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00230", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910677e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910677e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00312", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106780", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc1c7d43f68b910677e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 83 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00229", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106782", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106782", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106784", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dc1c7d43f68b9106782", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106670", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106670", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106672", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc1c7d43f68b9106670", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00228", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106786", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106786", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00311", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106788", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b9106786", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00227", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910678a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910678a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910678c", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b910678a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106674", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106674", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106676", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc1c7d43f68b9106674", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00100", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910678e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910678e", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00069", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106790", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b910678e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 864 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106792", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106792", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106795", - "_tpl": "573722e82459776104581c21", - "parentId": "66c90dc1c7d43f68b9106792", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106678", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106678", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106796", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c90dc1c7d43f68b9106795", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + { + "_id": "66c90dc1c7d43f68b910667a", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b9106678", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910667c", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dc1c7d43f68b9106678", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106798", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106798", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00192", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910679a", - "_tpl": "5d1b327086f7742525194449", - "parentId": "66c90dc1c7d43f68b9106798", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00324", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910679c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910679c", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910679e", - "_tpl": "5ab8f20c86f7745cdb629fb2", - "parentId": "66c90dc1c7d43f68b910679c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910667e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910667e", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91067a0", - "_tpl": "5c6d710d2e22165df16b81e7", - "parentId": "66c90dc1c7d43f68b910679c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106680", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c90dc1c7d43f68b910667e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106682", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c90dc1c7d43f68b910667e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00323", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91067a2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067a2", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00132", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067a4", - "_tpl": "5c6175362e221600133e3b94", - "parentId": "66c90dc1c7d43f68b91067a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067a6", - "_tpl": "634f05ca517ccc8a960fc748", - "parentId": "66c90dc1c7d43f68b91067a2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910668a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910668a", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91067a8", - "_tpl": "5de8ea8ffd6b4e6e2276dc35", - "parentId": "66c90dc1c7d43f68b91067a2", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c90dc1c7d43f68b910668c", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dc1c7d43f68b910668a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91067aa", - "_tpl": "5bb20e70d4351e0035629f8f", - "parentId": "66c90dc1c7d43f68b91067a2", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 + { + "_id": "66c90dc1c7d43f68b910668e", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc1c7d43f68b910668a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91067ac", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66c90dc1c7d43f68b91067a2", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106690", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66c90dc1c7d43f68b910668a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106692", + "_tpl": "57347ca924597744596b4e71", + "parentId": "66c90dc1c7d43f68b910668a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106694", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66c90dc1c7d43f68b910668a", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91067ae", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067ae", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067b0", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66c90dc1c7d43f68b91067ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067b2", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "66c90dc1c7d43f68b91067ae", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106696", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106696", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106698", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc1c7d43f68b9106696", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00189", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067b4", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc1c7d43f68b91067ae", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910669a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910669a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910669c", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc1c7d43f68b910669a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00145", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91067b6", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067b6", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00188", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067b8", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c90dc1c7d43f68b91067b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910669e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910669e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066a0", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b910669e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00194", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91067ba", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067ba", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00187", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067bc", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc1c7d43f68b91067ba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91066a2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066a2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066a4", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dc1c7d43f68b91066a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00133", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91067be", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067be", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00186", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067c0", - "_tpl": "5929a2a086f7744f4b234d43", - "parentId": "66c90dc1c7d43f68b91067be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91066a6", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066a6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91066a8", + "_tpl": "5d1b2ffd86f77425243e8d17", + "parentId": "66c90dc1c7d43f68b91066a6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067c2", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc1c7d43f68b91067be", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91066b4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066b4", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91066b6", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b91066b4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00163", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067c4", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66c90dc1c7d43f68b91067be", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91066b8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066b8", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91066ba", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc1c7d43f68b91066b8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00115", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067c6", - "_tpl": "60361b5a9a15b10d96792291", - "parentId": "66c90dc1c7d43f68b91067be", - "slotId": "main", - "location": { - "x": 2, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91066bc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066bc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066be", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc1c7d43f68b91066bc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00180", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91067c8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067c8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00114", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067ca", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc1c7d43f68b91067c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91066c0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066c0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066c2", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dc1c7d43f68b91066c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00179", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91067cc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067cc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00113", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067ce", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66c90dc1c7d43f68b91067cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91066c4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066c4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066c6", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc1c7d43f68b91066c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00178", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91067d0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067d0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00112", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067d2", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dc1c7d43f68b91067d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91066c8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066c8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066ca", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc1c7d43f68b91066c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00177", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91067d4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067d4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067d6", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66c90dc1c7d43f68b91067d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91066cc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066cc", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066ce", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66c90dc1c7d43f68b91066cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00199", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91067d8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067d8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00143", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067da", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b91067d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91066d8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066d8", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066da", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91066d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 938 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00198", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91067dc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067dc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00212", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067de", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc1c7d43f68b91067dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 88 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91066e4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066e4", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066e6", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66c90dc1c7d43f68b91066e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00197", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91067e0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067e0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067e2", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc1c7d43f68b91067e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00196", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91067e4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067e4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067e6", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b91067e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91066e8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066e8", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066ea", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc1c7d43f68b91066e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066ec", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66c90dc1c7d43f68b91066e8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066ee", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66c90dc1c7d43f68b91066e8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00091", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91067e8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067e8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067ea", - "_tpl": "5e2af4a786f7746d3f3c3400", - "parentId": "66c90dc1c7d43f68b91067e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91066f0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066f0", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066f2", + "_tpl": "5e2aef7986f7746d3f3c33f5", + "parentId": "66c90dc1c7d43f68b91066f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066f4", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c90dc1c7d43f68b91066f0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91066f6", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b91066f0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00053", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067ec", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc1c7d43f68b91067e8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91066f8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066f8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91066fa", + "_tpl": "57513fcc24597720a31c09a6", + "parentId": "66c90dc1c7d43f68b91066f8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00287", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067ee", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc1c7d43f68b91067e8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91066fc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91066fc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91066fe", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b91066fc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00193", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91067f0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067f0", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00286", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067f2", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc1c7d43f68b91067f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106700", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106700", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106702", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc1c7d43f68b9106700", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00086", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91067f4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91067f4", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00285", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067f5", - "_tpl": "5ac66d725acfc43b321d4b60", - "parentId": "66c90dc1c7d43f68b91067f4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067f6", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66c90dc1c7d43f68b91067f5", - "slotId": "mod_gas_block" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106704", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106704", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106706", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66c90dc1c7d43f68b9106704", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00284", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067f7", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66c90dc1c7d43f68b91067f6", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067f8", - "_tpl": "5ac72e895acfc43b321d4bd5", - "parentId": "66c90dc1c7d43f68b91067f5", - "slotId": "mod_muzzle" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106708", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106708", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910670a", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc1c7d43f68b9106708", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067f9", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66c90dc1c7d43f68b91067f5", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067fa", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66c90dc1c7d43f68b91067f5", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910670c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910670c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910670e", + "_tpl": "5d1b304286f774253763a528", + "parentId": "66c90dc1c7d43f68b910670c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00139", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067fb", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66c90dc1c7d43f68b91067f5", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067fc", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66c90dc1c7d43f68b91067f5", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106710", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106710", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106712", + "_tpl": "62a0a098de7ac8199358053b", + "parentId": "66c90dc1c7d43f68b9106710", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106714", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc1c7d43f68b9106710", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106716", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c90dc1c7d43f68b9106710", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106718", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c90dc1c7d43f68b9106710", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067fd", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66c90dc1c7d43f68b91067f5", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91067fe", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66c90dc1c7d43f68b91067fd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910671a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910671a", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910671c", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c90dc1c7d43f68b910671a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106800", - "_tpl": "5caf1109ae9215753c44119f", - "parentId": "66c90dc1c7d43f68b91067f4", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106724", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106724", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106726", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66c90dc1c7d43f68b9106724", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106728", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b9106724", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910672a", + "_tpl": "590c311186f77424d1667482", + "parentId": "66c90dc1c7d43f68b9106724", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00203", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106806", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106806", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00111", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106808", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc1c7d43f68b9106806", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910672c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910672c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910672e", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b910672c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00202", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910680a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910680a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910680c", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b910680a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106730", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106730", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106732", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc1c7d43f68b9106730", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00201", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910680e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910680e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00109", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106810", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc1c7d43f68b910680e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00200", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106812", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106812", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106814", - "_tpl": "5c1265fc86f7743f896a21c2", - "parentId": "66c90dc1c7d43f68b9106812", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106734", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106734", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106736", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b9106734", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106816", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106816", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00108", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106818", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c90dc1c7d43f68b9106816", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106738", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106738", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910673a", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc1c7d43f68b9106738", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00130", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910681a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910681a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910681c", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc1c7d43f68b910681a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910673c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910673c", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910673e", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dc1c7d43f68b910673c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00058", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910681e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910681e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00158", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106820", - "_tpl": "5c0e530286f7747fa1419862", - "parentId": "66c90dc1c7d43f68b910681e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106740", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106740", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106742", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c90dc1c7d43f68b9106740", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00055", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106822", - "_tpl": "5d0375ff86f774186372f685", - "parentId": "66c90dc1c7d43f68b910681e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106744", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106744", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106746", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc1c7d43f68b9106744", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106748", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66c90dc1c7d43f68b9106744", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b910674a", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc1c7d43f68b9106744", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106824", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c90dc1c7d43f68b910681e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910674c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910674c", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910674e", + "_tpl": "5b31163c5acfc400153b71cb", + "parentId": "66c90dc1c7d43f68b910674c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106750", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "66c90dc1c7d43f68b910674c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106752", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66c90dc1c7d43f68b910674c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00164", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106826", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106826", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00155", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106828", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b9106826", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106754", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106754", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106756", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc1c7d43f68b9106754", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00293", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106836", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106836", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106838", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc1c7d43f68b9106836", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106758", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106758", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910675a", + "_tpl": "57513f9324597720a7128161", + "parentId": "66c90dc1c7d43f68b9106758", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910675c", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66c90dc1c7d43f68b9106758", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910675e", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66c90dc1c7d43f68b9106758", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00292", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910683a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910683a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00234", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910683c", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc1c7d43f68b910683a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106768", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106768", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910676a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc1c7d43f68b9106768", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00291", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910683e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910683e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00233", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106840", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc1c7d43f68b910683e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910676c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910676c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910676e", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66c90dc1c7d43f68b910676c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00290", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106842", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106842", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00232", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106844", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc1c7d43f68b9106842", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106770", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106770", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106772", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc1c7d43f68b9106770", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00218", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910684c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910684c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00231", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910684e", - "_tpl": "5e2aedd986f7746d404f3aa4", - "parentId": "66c90dc1c7d43f68b910684c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106774", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106774", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106776", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dc1c7d43f68b9106774", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00217", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106850", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106850", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00185", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106852", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b9106850", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00216", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106854", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106854", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106856", - "_tpl": "5c1265fc86f7743f896a21c2", - "parentId": "66c90dc1c7d43f68b9106854", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106778", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106778", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910677a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106778", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 711 + } + }, + { + "_id": "66c90dc1c7d43f68b910677c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106778", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 706 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00215", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106858", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106858", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00230", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910685a", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc1c7d43f68b9106858", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00264", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910685c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910685c", - "_tpl": "64d11702dd0cd96ab82c3280", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910685e", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc1c7d43f68b910685c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910677e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910677e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 36 + { + "_id": "66c90dc1c7d43f68b9106780", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc1c7d43f68b910677e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 83 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00229", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106860", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b910685c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 691 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106862", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b910685c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106782", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106782", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 912 + { + "_id": "66c90dc1c7d43f68b9106784", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dc1c7d43f68b9106782", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00228", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106864", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b910685c", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 785 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106866", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b910685c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106786", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106786", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 708 + { + "_id": "66c90dc1c7d43f68b9106788", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b9106786", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00227", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106868", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc1c7d43f68b910685c", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 100 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910686a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b910685c", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910678a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910678a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 943 - } - }, - { - "_id": "66c90dc1c7d43f68b910686c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b910685c", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 843 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00238", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910686e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910686e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106870", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc1c7d43f68b910686e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b910678c", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b910678a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00237", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106872", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106872", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00100", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106874", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66c90dc1c7d43f68b9106872", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00236", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106876", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106876", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106878", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66c90dc1c7d43f68b9106876", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910678e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910678e", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106790", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b910678e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 864 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00235", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910687a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910687a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910687c", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b910687a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00302", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910687e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910687e", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106880", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c90dc1c7d43f68b910687e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106792", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106792", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106795", + "_tpl": "573722e82459776104581c21", + "parentId": "66c90dc1c7d43f68b9106792", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106796", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c90dc1c7d43f68b9106795", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00299", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106882", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106882", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106884", - "_tpl": "5d1b371186f774253763a656", - "parentId": "66c90dc1c7d43f68b9106882", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106885", - "_tpl": "66015072e9f84d5680039678", - "parentId": "66c90dc1c7d43f68b9106882", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106798", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106798", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c90dc1c7d43f68b910679a", + "_tpl": "5d1b327086f7742525194449", + "parentId": "66c90dc1c7d43f68b9106798", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00324", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106886", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "66c90dc1c7d43f68b9106885", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc1c7d43f68b9106887", - "_tpl": "6601546f86889319850bd566", - "parentId": "66c90dc1c7d43f68b9106886", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106889", - "_tpl": "60391a8b3364dc22b04d0ce5", - "parentId": "66c90dc1c7d43f68b9106882", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910679c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910679c", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b910688b", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66c90dc1c7d43f68b9106882", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + { + "_id": "66c90dc1c7d43f68b910679e", + "_tpl": "5ab8f20c86f7745cdb629fb2", + "parentId": "66c90dc1c7d43f68b910679c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 30 - } - }, - { - "_id": "66c90dc1c7d43f68b910688d", - "_tpl": "5d1b2ffd86f77425243e8d17", - "parentId": "66c90dc1c7d43f68b9106882", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91067a0", + "_tpl": "5c6d710d2e22165df16b81e7", + "parentId": "66c90dc1c7d43f68b910679c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106893", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106893", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00323", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106895", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66c90dc1c7d43f68b9106893", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00288", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106897", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106897", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106899", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106897", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91067a2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067a2", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 602 - } - }, - { - "_id": "66c90dc1c7d43f68b910689b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106897", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 892 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91068a3", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068a3", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91068a4", - "_tpl": "5ea17ca01412a1425304d1c0", - "parentId": "66c90dc1c7d43f68b91068a3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66c90dc1c7d43f68b91067a4", + "_tpl": "5c6175362e221600133e3b94", + "parentId": "66c90dc1c7d43f68b91067a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067a6", + "_tpl": "634f05ca517ccc8a960fc748", + "parentId": "66c90dc1c7d43f68b91067a2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067a8", + "_tpl": "5de8ea8ffd6b4e6e2276dc35", + "parentId": "66c90dc1c7d43f68b91067a2", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067aa", + "_tpl": "5bb20e70d4351e0035629f8f", + "parentId": "66c90dc1c7d43f68b91067a2", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067ac", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66c90dc1c7d43f68b91067a2", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068a5", - "_tpl": "657f9a55c6679fefb3051e19", - "parentId": "66c90dc1c7d43f68b91068a4", - "slotId": "Helmet_top" - }, - { - "_id": "66c90dc1c7d43f68b91068a6", - "_tpl": "657f9a94ada5fadd1f07a589", - "parentId": "66c90dc1c7d43f68b91068a4", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068a8", - "_tpl": "5888961624597754281f93f3", - "parentId": "66c90dc1c7d43f68b91068a3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91067ae", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067ae", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91068aa", - "_tpl": "544a3a774bdc2d3a388b4567", - "parentId": "66c90dc1c7d43f68b91068a3", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91067b0", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66c90dc1c7d43f68b91067ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067b2", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "66c90dc1c7d43f68b91067ae", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067b4", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc1c7d43f68b91067ae", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91068b0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068b0", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00145", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068b2", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66c90dc1c7d43f68b91068b0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068b4", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66c90dc1c7d43f68b91068b0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91067b6", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067b6", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91068b6", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "66c90dc1c7d43f68b91068b0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91067b8", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c90dc1c7d43f68b91067b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91068b8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068b8", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00194", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068ba", - "_tpl": "57513f9324597720a7128161", - "parentId": "66c90dc1c7d43f68b91068b8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068bc", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66c90dc1c7d43f68b91068b8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91067ba", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067ba", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91068be", - "_tpl": "5733279d245977289b77ec24", - "parentId": "66c90dc1c7d43f68b91068b8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91067bc", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc1c7d43f68b91067ba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00222", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91068c0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068c0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00133", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068c2", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc1c7d43f68b91068c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00221", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91068c4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068c4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068c6", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc1c7d43f68b91068c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91067be", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067be", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067c0", + "_tpl": "5929a2a086f7744f4b234d43", + "parentId": "66c90dc1c7d43f68b91067be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067c2", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc1c7d43f68b91067be", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067c4", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66c90dc1c7d43f68b91067be", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067c6", + "_tpl": "60361b5a9a15b10d96792291", + "parentId": "66c90dc1c7d43f68b91067be", + "slotId": "main", + "location": { + "x": 2, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00220", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91068c8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068c8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00180", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068ca", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c90dc1c7d43f68b91068c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91067c8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067c8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067ca", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc1c7d43f68b91067c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00219", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91068cc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068cc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00179", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068ce", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc1c7d43f68b91068cc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91067cc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067cc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067ce", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66c90dc1c7d43f68b91067cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91068d0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068d0", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00178", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068d2", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc1c7d43f68b91068d0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91067d0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067d0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067d2", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dc1c7d43f68b91067d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00322", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91068d4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068d4", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00177", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068d6", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc1c7d43f68b91068d4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91067d4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067d4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91067d6", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66c90dc1c7d43f68b91067d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00199", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068d8", - "_tpl": "57347baf24597738002c6178", - "parentId": "66c90dc1c7d43f68b91068d4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91067d8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067d8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067da", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b91067d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00300", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91068da", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068da", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00198", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068dc", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91068da", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91067dc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067dc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 617 + { + "_id": "66c90dc1c7d43f68b91067de", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc1c7d43f68b91067dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 88 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00197", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068de", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91068da", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1016 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00099", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91068e0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068e0", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068e2", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc1c7d43f68b91068e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91067e0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067e0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067e2", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc1c7d43f68b91067e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00157", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91068e4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068e4", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00196", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068e6", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c90dc1c7d43f68b91068e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00250", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91068e8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068e8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068ea", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc1c7d43f68b91068e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91067e4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067e4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067e6", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b91067e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00249", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91068ec", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068ec", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00091", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068ee", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b91068ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00248", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91068f0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068f0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068f2", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66c90dc1c7d43f68b91068f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91067e8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067e8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067ea", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "66c90dc1c7d43f68b91067e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067ec", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc1c7d43f68b91067e8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91067ee", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc1c7d43f68b91067e8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00247", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91068f4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068f4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00193", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068f6", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b91068f4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00142", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91068f8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068f8", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91068fa", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91068f8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91067f0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067f0", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 747 - } - }, - { - "_id": "66c90dc1c7d43f68b91068fc", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91068f8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 657 + { + "_id": "66c90dc1c7d43f68b91067f2", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc1c7d43f68b91067f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00337", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91068fe", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91068fe", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00086", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106900", - "_tpl": "59e366c186f7741778269d85", - "parentId": "66c90dc1c7d43f68b91068fe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106902", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc1c7d43f68b91068fe", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91067f4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91067f4", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106904", - "_tpl": "5d1b31ce86f7742523398394", - "parentId": "66c90dc1c7d43f68b91068fe", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91067f5", + "_tpl": "5ac66d725acfc43b321d4b60", + "parentId": "66c90dc1c7d43f68b91067f4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc1c7d43f68b91067f6", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66c90dc1c7d43f68b91067f5", + "slotId": "mod_gas_block" + }, + { + "_id": "66c90dc1c7d43f68b91067f7", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66c90dc1c7d43f68b91067f6", + "slotId": "mod_handguard" + }, + { + "_id": "66c90dc1c7d43f68b91067f8", + "_tpl": "5ac72e895acfc43b321d4bd5", + "parentId": "66c90dc1c7d43f68b91067f5", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc1c7d43f68b91067f9", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66c90dc1c7d43f68b91067f5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc1c7d43f68b91067fa", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66c90dc1c7d43f68b91067f5", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc1c7d43f68b91067fb", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66c90dc1c7d43f68b91067f5", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b91067fc", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66c90dc1c7d43f68b91067f5", + "slotId": "mod_stock" + }, + { + "_id": "66c90dc1c7d43f68b91067fd", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66c90dc1c7d43f68b91067f5", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b91067fe", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66c90dc1c7d43f68b91067fd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25.0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106800", + "_tpl": "5caf1109ae9215753c44119f", + "parentId": "66c90dc1c7d43f68b91067f4", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106906", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106906", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00203", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106908", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc1c7d43f68b9106906", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910690a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910690a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910690c", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66c90dc1c7d43f68b910690a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106806", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106806", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106808", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc1c7d43f68b9106806", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00202", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910690e", - "_tpl": "5d40419286f774318526545f", - "parentId": "66c90dc1c7d43f68b910690a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106910", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c90dc1c7d43f68b910690a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910680a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910680a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910680c", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b910680a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00119", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106912", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106912", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00201", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106914", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc1c7d43f68b9106912", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106916", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc1c7d43f68b9106912", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910680e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910680e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106810", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc1c7d43f68b910680e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106918", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106918", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00200", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910691a", - "_tpl": "5c0e531d86f7747fa23f4d42", - "parentId": "66c90dc1c7d43f68b9106918", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910691c", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c90dc1c7d43f68b9106918", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106812", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106812", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106814", + "_tpl": "5c1265fc86f7743f896a21c2", + "parentId": "66c90dc1c7d43f68b9106812", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910691e", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66c90dc1c7d43f68b9106918", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00014", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106920", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106920", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106922", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c90dc1c7d43f68b9106920", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106816", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106816", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106924", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c90dc1c7d43f68b9106920", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106818", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c90dc1c7d43f68b9106816", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106926", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106926", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00130", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106928", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66c90dc1c7d43f68b9106926", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910692a", - "_tpl": "5e54f79686f7744022011103", - "parentId": "66c90dc1c7d43f68b9106926", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910681a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910681a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910681c", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc1c7d43f68b910681a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910692c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910692c", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00058", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910692e", - "_tpl": "59fafb5d86f774067a6f2084", - "parentId": "66c90dc1c7d43f68b910692c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106930", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc1c7d43f68b910692c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910681e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910681e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106932", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b910692c", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106820", + "_tpl": "5c0e530286f7747fa1419862", + "parentId": "66c90dc1c7d43f68b910681e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106822", + "_tpl": "5d0375ff86f774186372f685", + "parentId": "66c90dc1c7d43f68b910681e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106824", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c90dc1c7d43f68b910681e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106934", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106934", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00164", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106936", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c90dc1c7d43f68b9106934", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106826", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106826", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106828", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b9106826", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00301", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106938", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106938", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00293", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910693a", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c90dc1c7d43f68b9106938", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106836", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106836", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106838", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc1c7d43f68b9106836", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00292", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910693c", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c90dc1c7d43f68b9106938", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910683a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910683a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910683c", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc1c7d43f68b910683a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106948", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106948", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00291", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910694a", - "_tpl": "5751a25924597722c463c472", - "parentId": "66c90dc1c7d43f68b9106948", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910683e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910683e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106840", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc1c7d43f68b910683e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00310", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910694c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910694c", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00290", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910694e", - "_tpl": "57347baf24597738002c6178", - "parentId": "66c90dc1c7d43f68b910694c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106842", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106842", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106844", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc1c7d43f68b9106842", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00102", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106950", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106950", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00218", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106952", - "_tpl": "5aa2ba46e5b5b000137b758d", - "parentId": "66c90dc1c7d43f68b9106950", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910684c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910684c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910684e", + "_tpl": "5e2aedd986f7746d404f3aa4", + "parentId": "66c90dc1c7d43f68b910684c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00140", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b910695a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910695a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00217", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910695c", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c90dc1c7d43f68b910695a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106850", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106850", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106852", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b9106850", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00184", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910695e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910695e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00216", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106960", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc1c7d43f68b910695e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106854", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106854", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106856", + "_tpl": "5c1265fc86f7743f896a21c2", + "parentId": "66c90dc1c7d43f68b9106854", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00183", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106962", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106962", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00215", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106964", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b9106962", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106858", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106858", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910685a", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc1c7d43f68b9106858", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00182", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106966", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106966", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00264", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106968", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b9106966", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00181", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910696a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910696a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910696c", - "_tpl": "590c621186f774138d11ea29", - "parentId": "66c90dc1c7d43f68b910696a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910685c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910685c", + "_tpl": "64d11702dd0cd96ab82c3280", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910685e", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc1c7d43f68b910685c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 36 + } + }, + { + "_id": "66c90dc1c7d43f68b9106860", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b910685c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 691 + } + }, + { + "_id": "66c90dc1c7d43f68b9106862", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b910685c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 912 + } + }, + { + "_id": "66c90dc1c7d43f68b9106864", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b910685c", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 785 + } + }, + { + "_id": "66c90dc1c7d43f68b9106866", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b910685c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 708 + } + }, + { + "_id": "66c90dc1c7d43f68b9106868", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc1c7d43f68b910685c", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 100 + } + }, + { + "_id": "66c90dc1c7d43f68b910686a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b910685c", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 943 + } + }, + { + "_id": "66c90dc1c7d43f68b910686c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b910685c", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 843 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00242", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106976", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106976", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00238", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106978", - "_tpl": "591ae8f986f77406f854be45", - "parentId": "66c90dc1c7d43f68b9106976", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00241", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910697a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910697a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910697c", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b910697a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910686e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910686e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106870", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc1c7d43f68b910686e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00240", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910697e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910697e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00237", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106980", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b910697e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106872", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106872", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106874", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66c90dc1c7d43f68b9106872", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00239", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106982", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106982", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00236", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106984", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b9106982", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106876", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106876", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106878", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66c90dc1c7d43f68b9106876", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00246", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106986", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106986", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00235", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106988", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc1c7d43f68b9106986", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910687a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910687a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910687c", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b910687a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00245", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910698a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910698a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00302", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910698c", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b910698a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910687e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910687e", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106880", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c90dc1c7d43f68b910687e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00244", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910698e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910698e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00299", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106990", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b910698e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106882", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106882", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106884", + "_tpl": "5d1b371186f774253763a656", + "parentId": "66c90dc1c7d43f68b9106882", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106885", + "_tpl": "66015072e9f84d5680039678", + "parentId": "66c90dc1c7d43f68b9106882", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c90dc1c7d43f68b9106886", + "_tpl": "66015dc4aaad2f54cb04c56a", + "parentId": "66c90dc1c7d43f68b9106885", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106887", + "_tpl": "6601546f86889319850bd566", + "parentId": "66c90dc1c7d43f68b9106886", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106889", + "_tpl": "60391a8b3364dc22b04d0ce5", + "parentId": "66c90dc1c7d43f68b9106882", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910688b", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66c90dc1c7d43f68b9106882", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "66c90dc1c7d43f68b910688d", + "_tpl": "5d1b2ffd86f77425243e8d17", + "parentId": "66c90dc1c7d43f68b9106882", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00243", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106992", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106992", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106994", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b9106992", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106893", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106893", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106895", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66c90dc1c7d43f68b9106893", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00330", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106996", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106996", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00288", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106998", - "_tpl": "60391a8b3364dc22b04d0ce5", - "parentId": "66c90dc1c7d43f68b9106996", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106897", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106897", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106899", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106897", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 602 + } + }, + { + "_id": "66c90dc1c7d43f68b910689b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106897", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 892 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00128", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910699a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910699a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b910699c", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b910699a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00127", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b910699e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b910699e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069a0", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b910699e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91068a3", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068a3", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068a4", + "_tpl": "5ea17ca01412a1425304d1c0", + "parentId": "66c90dc1c7d43f68b91068a3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc1c7d43f68b91068a5", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "66c90dc1c7d43f68b91068a4", + "slotId": "Helmet_top" + }, + { + "_id": "66c90dc1c7d43f68b91068a6", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "66c90dc1c7d43f68b91068a4", + "slotId": "Helmet_back" + }, + { + "_id": "66c90dc1c7d43f68b91068a8", + "_tpl": "5888961624597754281f93f3", + "parentId": "66c90dc1c7d43f68b91068a3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068aa", + "_tpl": "544a3a774bdc2d3a388b4567", + "parentId": "66c90dc1c7d43f68b91068a3", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00126", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069a2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069a2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069a4", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66c90dc1c7d43f68b91069a2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91068b0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068b0", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068b2", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66c90dc1c7d43f68b91068b0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068b4", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66c90dc1c7d43f68b91068b0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068b6", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "66c90dc1c7d43f68b91068b0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00125", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069a6", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069a6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069a8", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66c90dc1c7d43f68b91069a6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91068b8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068b8", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068ba", + "_tpl": "57513f9324597720a7128161", + "parentId": "66c90dc1c7d43f68b91068b8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068bc", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66c90dc1c7d43f68b91068b8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068be", + "_tpl": "5733279d245977289b77ec24", + "parentId": "66c90dc1c7d43f68b91068b8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00267", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91069aa", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069aa", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00222", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069ac", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b91069aa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91068c0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068c0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068c2", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc1c7d43f68b91068c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00265", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069ae", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069ae", - "_tpl": "64d116f41a9c6143a956127d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00221", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069b0", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc1c7d43f68b91069ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91068c4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068c4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 41 + { + "_id": "66c90dc1c7d43f68b91068c6", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc1c7d43f68b91068c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00220", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069b2", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91069ae", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91068c8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068c8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1137 + { + "_id": "66c90dc1c7d43f68b91068ca", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c90dc1c7d43f68b91068c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00219", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069b4", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc1c7d43f68b91069ae", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91068cc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068cc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 52 + { + "_id": "66c90dc1c7d43f68b91068ce", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc1c7d43f68b91068cc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069b6", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91069ae", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91068d0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068d0", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1122 + { + "_id": "66c90dc1c7d43f68b91068d2", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc1c7d43f68b91068d0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00322", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069b8", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc1c7d43f68b91069ae", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91068d4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068d4", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068d6", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc1c7d43f68b91068d4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 77 + { + "_id": "66c90dc1c7d43f68b91068d8", + "_tpl": "57347baf24597738002c6178", + "parentId": "66c90dc1c7d43f68b91068d4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00300", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069ba", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91069ae", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 940 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91068da", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068da", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068dc", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91068da", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 617 + } + }, + { + "_id": "66c90dc1c7d43f68b91068de", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91068da", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1016 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00304", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91069bc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069bc", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00099", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069be", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c90dc1c7d43f68b91069bc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91068e0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068e0", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91068e2", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc1c7d43f68b91068e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00157", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069c0", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c90dc1c7d43f68b91069bc", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91068e4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068e4", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068e6", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c90dc1c7d43f68b91068e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00254", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069c2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069c2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00250", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069c4", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b91069c2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91068e8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068e8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068ea", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc1c7d43f68b91068e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00253", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069c6", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069c6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00249", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069c8", - "_tpl": "5ad5d49886f77455f9731921", - "parentId": "66c90dc1c7d43f68b91069c6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00252", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069ca", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069ca", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069cc", - "_tpl": "5c1265fc86f7743f896a21c2", - "parentId": "66c90dc1c7d43f68b91069ca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91068ec", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068ec", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068ee", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b91068ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00251", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069ce", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069ce", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00248", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069d0", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66c90dc1c7d43f68b91069ce", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b91069d2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069d2", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069d5", - "_tpl": "657025cfbfc87b3a34093253", - "parentId": "66c90dc1c7d43f68b91069d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91068f0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068f0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91068f2", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66c90dc1c7d43f68b91068f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00247", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069d6", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66c90dc1c7d43f68b91069d5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069da", - "_tpl": "657024a4bfc87b3a3409322c", - "parentId": "66c90dc1c7d43f68b91069d2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91068f4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068f4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b91069db", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66c90dc1c7d43f68b91069da", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + { + "_id": "66c90dc1c7d43f68b91068f6", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b91068f4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00142", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069dc", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66c90dc1c7d43f68b91069da", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069de", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66c90dc1c7d43f68b91069d2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 2 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91068f8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068f8", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91068fa", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91068f8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 747 + } + }, + { + "_id": "66c90dc1c7d43f68b91068fc", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91068f8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 657 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00107", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069e0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069e0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00337", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069e2", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66c90dc1c7d43f68b91069e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00106", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069e4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069e4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069e6", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc1c7d43f68b91069e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 63 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91068fe", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91068fe", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106900", + "_tpl": "59e366c186f7741778269d85", + "parentId": "66c90dc1c7d43f68b91068fe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106902", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc1c7d43f68b91068fe", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106904", + "_tpl": "5d1b31ce86f7742523398394", + "parentId": "66c90dc1c7d43f68b91068fe", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00105", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069e8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069e8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069ea", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b91069e8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00104", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069ec", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069ec", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069ee", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c90dc1c7d43f68b91069ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106906", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106906", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106908", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc1c7d43f68b9106906", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00266", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b91069f0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b91069f0", - "_tpl": "64d116f41a9c6143a956127d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069f2", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc1c7d43f68b91069f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 45 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069f4", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc1c7d43f68b91069f0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910690a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910690a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 98 - } - }, - { - "_id": "66c90dc1c7d43f68b91069f6", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91069f0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc1c7d43f68b910690c", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66c90dc1c7d43f68b910690a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 945 - } - }, - { - "_id": "66c90dc1c7d43f68b91069f8", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc1c7d43f68b91069f0", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66c90dc1c7d43f68b910690e", + "_tpl": "5d40419286f774318526545f", + "parentId": "66c90dc1c7d43f68b910690a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 50 + { + "_id": "66c90dc1c7d43f68b9106910", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c90dc1c7d43f68b910690a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00119", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069fa", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91069f0", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 576 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b91069fc", - "_tpl": "5d235b4d86f7742e017bc88a", - "parentId": "66c90dc1c7d43f68b91069f0", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106912", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106912", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 2 - } - }, - { - "_id": "66c90dc1c7d43f68b91069fe", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc1c7d43f68b91069f0", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66c90dc1c7d43f68b9106914", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc1c7d43f68b9106912", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 63 - } - }, - { - "_id": "66c90dc1c7d43f68b9106a00", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b91069f0", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 933 + { + "_id": "66c90dc1c7d43f68b9106916", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc1c7d43f68b9106912", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00093", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a02", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a02", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a04", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c90dc1c7d43f68b9106a02", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a06", - "_tpl": "62a0a043cf4a99369e2624a5", - "parentId": "66c90dc1c7d43f68b9106a02", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106918", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106918", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910691a", + "_tpl": "5c0e531d86f7747fa23f4d42", + "parentId": "66c90dc1c7d43f68b9106918", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910691c", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c90dc1c7d43f68b9106918", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910691e", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66c90dc1c7d43f68b9106918", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00061", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a08", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a08", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00014", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a0a", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66c90dc1c7d43f68b9106a08", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a0c", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc1c7d43f68b9106a08", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00165", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a0e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a0e", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106a10", - "_tpl": "59e3639286f7741777737013", - "parentId": "66c90dc1c7d43f68b9106a0e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106920", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106920", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106a12", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66c90dc1c7d43f68b9106a0e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106922", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c90dc1c7d43f68b9106920", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106924", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c90dc1c7d43f68b9106920", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00275", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106a14", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a14", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a16", - "_tpl": "5909e99886f7740c983b9984", - "parentId": "66c90dc1c7d43f68b9106a14", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00274", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106a18", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a18", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a1a", - "_tpl": "5a0eb38b86f774153b320eb0", - "parentId": "66c90dc1c7d43f68b9106a18", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106926", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106926", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106928", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66c90dc1c7d43f68b9106926", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910692a", + "_tpl": "5e54f79686f7744022011103", + "parentId": "66c90dc1c7d43f68b9106926", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00273", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106a1c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a1c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a1e", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c90dc1c7d43f68b9106a1c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00272", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106a20", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a20", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a22", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c90dc1c7d43f68b9106a20", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910692c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910692c", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910692e", + "_tpl": "59fafb5d86f774067a6f2084", + "parentId": "66c90dc1c7d43f68b910692c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106930", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc1c7d43f68b910692c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106932", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b910692c", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00346", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a24", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a24", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a26", - "_tpl": "57347da92459774491567cf5", - "parentId": "66c90dc1c7d43f68b9106a24", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00167", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a28", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a28", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a29", - "_tpl": "59f9cabd86f7743a10721f46", - "parentId": "66c90dc1c7d43f68b9106a28", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106934", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106934", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106936", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c90dc1c7d43f68b9106934", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00301", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a2a", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66c90dc1c7d43f68b9106a29", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c90dc1c7d43f68b9106a2b", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66c90dc1c7d43f68b9106a29", - "slotId": "mod_stock" - }, - { - "_id": "66c90dc1c7d43f68b9106a2c", - "_tpl": "5998529a86f774647f44f421", - "parentId": "66c90dc1c7d43f68b9106a29", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a32", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66c90dc1c7d43f68b9106a2c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106938", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106938", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910693a", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c90dc1c7d43f68b9106938", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910693c", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c90dc1c7d43f68b9106938", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a2d", - "_tpl": "5998598e86f7740b3f498a86", - "parentId": "66c90dc1c7d43f68b9106a29", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a2e", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66c90dc1c7d43f68b9106a29", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106948", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106948", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910694a", + "_tpl": "5751a25924597722c463c472", + "parentId": "66c90dc1c7d43f68b9106948", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00310", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a2f", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66c90dc1c7d43f68b9106a29", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a30", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66c90dc1c7d43f68b9106a29", - "slotId": "mod_gas_block" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910694c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910694c", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910694e", + "_tpl": "57347baf24597738002c6178", + "parentId": "66c90dc1c7d43f68b910694c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00102", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a31", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66c90dc1c7d43f68b9106a30", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a34", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66c90dc1c7d43f68b9106a28", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106950", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106950", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 40 + { + "_id": "66c90dc1c7d43f68b9106952", + "_tpl": "5aa2ba46e5b5b000137b758d", + "parentId": "66c90dc1c7d43f68b9106950", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00140", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a36", - "_tpl": "5d6fc87386f77449db3db94e", - "parentId": "66c90dc1c7d43f68b9106a28", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b910695a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910695a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910695c", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c90dc1c7d43f68b910695a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00116", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a38", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a38", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00184", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a3a", - "_tpl": "590a373286f774287540368b", - "parentId": "66c90dc1c7d43f68b9106a38", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910695e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910695e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106960", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc1c7d43f68b910695e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00183", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a3c", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dc1c7d43f68b9106a38", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106962", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106962", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106964", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b9106962", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00182", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a3e", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66c90dc1c7d43f68b9106a38", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106966", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106966", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 31 + { + "_id": "66c90dc1c7d43f68b9106968", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b9106966", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00181", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a40", - "_tpl": "59e3606886f77417674759a5", - "parentId": "66c90dc1c7d43f68b9106a38", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910696a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910696a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b910696c", + "_tpl": "590c621186f774138d11ea29", + "parentId": "66c90dc1c7d43f68b910696a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00242", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a42", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c90dc1c7d43f68b9106a38", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00168", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106a4a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a4a", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a4c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106a4a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 662 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106976", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106976", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106978", + "_tpl": "591ae8f986f77406f854be45", + "parentId": "66c90dc1c7d43f68b9106976", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00162", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a54", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a54", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00241", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a56", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b9106a54", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910697a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910697a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910697c", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b910697a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00134", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a58", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a58", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00240", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a5a", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c90dc1c7d43f68b9106a58", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910697e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910697e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 27 + { + "_id": "66c90dc1c7d43f68b9106980", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b910697e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00239", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a5c", - "_tpl": "590de71386f774347051a052", - "parentId": "66c90dc1c7d43f68b9106a58", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106982", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106982", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106984", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b9106982", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00154", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a5e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a5e", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00246", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a60", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106a5e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1000 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106986", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106986", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106988", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc1c7d43f68b9106986", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00268", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a62", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a62", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00245", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a64", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66c90dc1c7d43f68b9106a62", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910698a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910698a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910698c", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b910698a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00289", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a66", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a66", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00244", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a68", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc1c7d43f68b9106a66", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910698e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910698e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106990", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b910698e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00261", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106a6a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a6a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00243", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a6c", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc1c7d43f68b9106a6a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106992", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106992", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106994", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b9106992", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00260", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106a6e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a6e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00330", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a70", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c90dc1c7d43f68b9106a6e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106996", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106996", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106998", + "_tpl": "60391a8b3364dc22b04d0ce5", + "parentId": "66c90dc1c7d43f68b9106996", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00259", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106a72", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a72", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00128", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a74", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66c90dc1c7d43f68b9106a72", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910699a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910699a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b910699c", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b910699a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_01_A_DesignStuff_00258", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106a76", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a76", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00127", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a78", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b9106a76", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b910699e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b910699e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91069a0", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b910699e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a7a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a7a", - "_tpl": "5909d4c186f7746ad34e805a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00126", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a7c", - "_tpl": "5751a89d24597722aa0e8db0", - "parentId": "66c90dc1c7d43f68b9106a7a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069a2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069a2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91069a4", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66c90dc1c7d43f68b91069a2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00084", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a7e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a7e", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00125", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a80", - "_tpl": "5aa2b87de5b5b00016327c25", - "parentId": "66c90dc1c7d43f68b9106a7e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069a6", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069a6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91069a8", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66c90dc1c7d43f68b91069a6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00098", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a82", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a82", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00267", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a84", - "_tpl": "5b84038986f774774913b0c1", - "parentId": "66c90dc1c7d43f68b9106a82", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00113", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a86", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a86", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a88", - "_tpl": "59e3639286f7741777737013", - "parentId": "66c90dc1c7d43f68b9106a86", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91069aa", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069aa", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106a8a", - "_tpl": "57347da92459774491567cf5", - "parentId": "66c90dc1c7d43f68b9106a86", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91069ac", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b91069aa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00060", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a8c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a8c", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00265", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a8e", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66c90dc1c7d43f68b9106a8c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a90", - "_tpl": "617fd91e5539a84ec44ce155", - "parentId": "66c90dc1c7d43f68b9106a8c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069ae", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069ae", + "_tpl": "64d116f41a9c6143a956127d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91069b0", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc1c7d43f68b91069ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 41 + } + }, + { + "_id": "66c90dc1c7d43f68b91069b2", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91069ae", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1137 + } + }, + { + "_id": "66c90dc1c7d43f68b91069b4", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc1c7d43f68b91069ae", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 52 + } + }, + { + "_id": "66c90dc1c7d43f68b91069b6", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91069ae", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1122 + } + }, + { + "_id": "66c90dc1c7d43f68b91069b8", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc1c7d43f68b91069ae", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 77 + } + }, + { + "_id": "66c90dc1c7d43f68b91069ba", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91069ae", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 940 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a92", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a92", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00304", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a94", - "_tpl": "5b800ebc86f774394e230a90", - "parentId": "66c90dc1c7d43f68b9106a92", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a96", - "_tpl": "5c4ee3d62e2216152006f302", - "parentId": "66c90dc1c7d43f68b9106a92", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91069bc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069bc", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106a98", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c90dc1c7d43f68b9106a92", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 52 + { + "_id": "66c90dc1c7d43f68b91069be", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c90dc1c7d43f68b91069bc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91069c0", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c90dc1c7d43f68b91069bc", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00132", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106a9a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106a9a", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00254", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a9c", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc1c7d43f68b9106a9a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106a9e", - "_tpl": "590c35a486f774273531c822", - "parentId": "66c90dc1c7d43f68b9106a9a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069c2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069c2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106aa0", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b9106a9a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91069c4", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b91069c2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00125", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106aa2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106aa2", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00253", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106aa4", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66c90dc1c7d43f68b9106aa2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 14 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106aa6", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "66c90dc1c7d43f68b9106aa2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069c6", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069c6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 22 - } - }, - { - "_id": "66c90dc1c7d43f68b9106aa8", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c90dc1c7d43f68b9106aa2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 38 + { + "_id": "66c90dc1c7d43f68b91069c8", + "_tpl": "5ad5d49886f77455f9731921", + "parentId": "66c90dc1c7d43f68b91069c6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106aaa", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106aaa", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00252", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106aac", - "_tpl": "5d1c774f86f7746d6620f8db", - "parentId": "66c90dc1c7d43f68b9106aaa", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00091", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106aae", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106aae", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ab0", - "_tpl": "66993733f74fef4dfd0b04ff", - "parentId": "66c90dc1c7d43f68b9106aae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069ca", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069ca", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91069cc", + "_tpl": "5c1265fc86f7743f896a21c2", + "parentId": "66c90dc1c7d43f68b91069ca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00251", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ab2", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66c90dc1c7d43f68b9106aae", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069ce", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069ce", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 40 + { + "_id": "66c90dc1c7d43f68b91069d0", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66c90dc1c7d43f68b91069ce", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ab4", - "_tpl": "626a74340be03179a165e30c", - "parentId": "66c90dc1c7d43f68b9106aae", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b91069d2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069d2", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91069d5", + "_tpl": "657025cfbfc87b3a34093253", + "parentId": "66c90dc1c7d43f68b91069d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91069d6", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66c90dc1c7d43f68b91069d5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c90dc1c7d43f68b91069da", + "_tpl": "657024a4bfc87b3a3409322c", + "parentId": "66c90dc1c7d43f68b91069d2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91069db", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66c90dc1c7d43f68b91069da", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91069dc", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66c90dc1c7d43f68b91069da", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } + }, + { + "_id": "66c90dc1c7d43f68b91069de", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66c90dc1c7d43f68b91069d2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 2 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00107", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ab6", - "_tpl": "6241c2c2117ad530666a5108", - "parentId": "66c90dc1c7d43f68b9106aae", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069e0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069e0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91069e2", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66c90dc1c7d43f68b91069e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00106", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ab8", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66c90dc1c7d43f68b9106aae", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069e4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069e4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91069e6", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc1c7d43f68b91069e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 63 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00105", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106aba", - "_tpl": "651a8bf3a8520e48047bf708", - "parentId": "66c90dc1c7d43f68b9106aae", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069e8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069e8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b91069ea", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b91069e8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00104", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106abc", - "_tpl": "6388c4ac8d895f557a0c6515", - "parentId": "66c90dc1c7d43f68b9106aae", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00245", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106abe", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106abe", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ac0", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66c90dc1c7d43f68b9106abe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 88 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069ec", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069ec", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91069ee", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c90dc1c7d43f68b91069ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00244", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ac2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ac2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00266", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ac4", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc1c7d43f68b9106ac2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00243", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ac6", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ac6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ac8", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66c90dc1c7d43f68b9106ac6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b91069f0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b91069f0", + "_tpl": "64d116f41a9c6143a956127d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b91069f2", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc1c7d43f68b91069f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 45 + } + }, + { + "_id": "66c90dc1c7d43f68b91069f4", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc1c7d43f68b91069f0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 98 + } + }, + { + "_id": "66c90dc1c7d43f68b91069f6", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91069f0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 945 + } + }, + { + "_id": "66c90dc1c7d43f68b91069f8", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc1c7d43f68b91069f0", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66c90dc1c7d43f68b91069fa", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91069f0", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 576 + } + }, + { + "_id": "66c90dc1c7d43f68b91069fc", + "_tpl": "5d235b4d86f7742e017bc88a", + "parentId": "66c90dc1c7d43f68b91069f0", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 2 + } + }, + { + "_id": "66c90dc1c7d43f68b91069fe", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc1c7d43f68b91069f0", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 63 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a00", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b91069f0", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 933 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00242", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106aca", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106aca", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00093", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106acc", - "_tpl": "5e2af37686f774755a234b65", - "parentId": "66c90dc1c7d43f68b9106aca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00277", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ace", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ace", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ad0", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc1c7d43f68b9106ace", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a02", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a02", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a04", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c90dc1c7d43f68b9106a02", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a06", + "_tpl": "62a0a043cf4a99369e2624a5", + "parentId": "66c90dc1c7d43f68b9106a02", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00276", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ad2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ad2", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00061", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ad4", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc1c7d43f68b9106ad2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a08", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a08", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a0a", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66c90dc1c7d43f68b9106a08", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a0c", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc1c7d43f68b9106a08", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00275", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ad6", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ad6", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00165", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ad8", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc1c7d43f68b9106ad6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a0e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a0e", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a10", + "_tpl": "59e3639286f7741777737013", + "parentId": "66c90dc1c7d43f68b9106a0e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a12", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66c90dc1c7d43f68b9106a0e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00274", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ada", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ada", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00275", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106adc", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc1c7d43f68b9106ada", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106a14", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a14", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a16", + "_tpl": "5909e99886f7740c983b9984", + "parentId": "66c90dc1c7d43f68b9106a14", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00124", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ade", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ade", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00274", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ae0", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc1c7d43f68b9106ade", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106a18", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a18", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a1a", + "_tpl": "5a0eb38b86f774153b320eb0", + "parentId": "66c90dc1c7d43f68b9106a18", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00049", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ae2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ae2", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00273", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ae4", - "_tpl": "5734779624597737e04bf329", - "parentId": "66c90dc1c7d43f68b9106ae2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106a1c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a1c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a1e", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c90dc1c7d43f68b9106a1c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00168", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ae6", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ae6", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00272", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ae8", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c90dc1c7d43f68b9106ae6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106a20", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a20", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a22", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c90dc1c7d43f68b9106a20", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00346", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106aea", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc1c7d43f68b9106ae6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a24", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a24", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a26", + "_tpl": "57347da92459774491567cf5", + "parentId": "66c90dc1c7d43f68b9106a24", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106aec", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106aec", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00167", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106aee", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc1c7d43f68b9106aec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00223", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106af0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106af0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106af2", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc1c7d43f68b9106af0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a28", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a28", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a29", + "_tpl": "59f9cabd86f7743a10721f46", + "parentId": "66c90dc1c7d43f68b9106a28", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a2a", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66c90dc1c7d43f68b9106a29", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc1c7d43f68b9106a2b", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66c90dc1c7d43f68b9106a29", + "slotId": "mod_stock" + }, + { + "_id": "66c90dc1c7d43f68b9106a2c", + "_tpl": "5998529a86f774647f44f421", + "parentId": "66c90dc1c7d43f68b9106a29", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106a32", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66c90dc1c7d43f68b9106a2c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a2d", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "66c90dc1c7d43f68b9106a29", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc1c7d43f68b9106a2e", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66c90dc1c7d43f68b9106a29", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc1c7d43f68b9106a2f", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66c90dc1c7d43f68b9106a29", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b9106a30", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66c90dc1c7d43f68b9106a29", + "slotId": "mod_gas_block" + }, + { + "_id": "66c90dc1c7d43f68b9106a31", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66c90dc1c7d43f68b9106a30", + "slotId": "mod_handguard" + }, + { + "_id": "66c90dc1c7d43f68b9106a34", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66c90dc1c7d43f68b9106a28", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a36", + "_tpl": "5d6fc87386f77449db3db94e", + "parentId": "66c90dc1c7d43f68b9106a28", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00222", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106af4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106af4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00116", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106af6", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc1c7d43f68b9106af4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00221", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106af8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106af8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106afa", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc1c7d43f68b9106af8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a38", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a38", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a3a", + "_tpl": "590a373286f774287540368b", + "parentId": "66c90dc1c7d43f68b9106a38", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a3c", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dc1c7d43f68b9106a38", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a3e", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66c90dc1c7d43f68b9106a38", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 31 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a40", + "_tpl": "59e3606886f77417674759a5", + "parentId": "66c90dc1c7d43f68b9106a38", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a42", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c90dc1c7d43f68b9106a38", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00220", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106afc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106afc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00168", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106afe", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc1c7d43f68b9106afc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00044", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b00", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b00", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b02", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc1c7d43f68b9106b00", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106a4a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a4a", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106b04", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66c90dc1c7d43f68b9106b00", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a4c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106a4a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 662 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00208", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b06", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b06", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00162", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b08", - "_tpl": "616554fe50224f204c1da2aa", - "parentId": "66c90dc1c7d43f68b9106b06", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b0a", - "_tpl": "64be7095047e826eae02b0c1", - "parentId": "66c90dc1c7d43f68b9106b06", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a54", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a54", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a56", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b9106a54", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00134", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b0c", - "_tpl": "5d1b198cd7ad1a604869ad72", - "parentId": "66c90dc1c7d43f68b9106b06", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a58", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a58", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a5a", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c90dc1c7d43f68b9106a58", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 27 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a5c", + "_tpl": "590de71386f774347051a052", + "parentId": "66c90dc1c7d43f68b9106a58", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00154", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b0e", - "_tpl": "57838f0b2459774a256959b2", - "parentId": "66c90dc1c7d43f68b9106b06", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a5e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a5e", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a60", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106a5e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1000 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00268", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b10", - "_tpl": "6113d6c3290d254f5e6b27db", - "parentId": "66c90dc1c7d43f68b9106b06", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a62", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a62", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a64", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66c90dc1c7d43f68b9106a62", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00289", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b12", - "_tpl": "5cadd954ae921500103bb3c2", - "parentId": "66c90dc1c7d43f68b9106b06", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a66", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a66", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a68", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc1c7d43f68b9106a66", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00261", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b14", - "_tpl": "5c7e8fab2e22165df16b889b", - "parentId": "66c90dc1c7d43f68b9106b06", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106a6a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a6a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a6c", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc1c7d43f68b9106a6a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00260", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b16", - "_tpl": "5d6e68a8a4b9360b6c0d54e2", - "parentId": "66c90dc1c7d43f68b9106b06", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106a6e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a6e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a70", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c90dc1c7d43f68b9106a6e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_01_A_DesignStuff_00259", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b18", - "_tpl": "6494094948796d891603e59f", - "parentId": "66c90dc1c7d43f68b9106b06", - "slotId": "main", - "location": { - "x": 1, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106a72", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a72", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a74", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66c90dc1c7d43f68b9106a72", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b1a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b1a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_01_A_DesignStuff_00258", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b1c", - "_tpl": "5d0375ff86f774186372f685", - "parentId": "66c90dc1c7d43f68b9106b1a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106a76", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a76", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a78", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b9106a76", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc1c7d43f68b9106b1e", - "_tpl": "57513fcc24597720a31c09a6", - "parentId": "66c90dc1c7d43f68b9106b1a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00269", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b20", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b20", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b22", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc1c7d43f68b9106b20", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00268", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b24", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b24", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b26", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc1c7d43f68b9106b24", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a7a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a7a", + "_tpl": "5909d4c186f7746ad34e805a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a7c", + "_tpl": "5751a89d24597722aa0e8db0", + "parentId": "66c90dc1c7d43f68b9106a7a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00267", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b28", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b28", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00084", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b2a", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc1c7d43f68b9106b28", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00266", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b2c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b2c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b2e", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dc1c7d43f68b9106b2c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a7e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a7e", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a80", + "_tpl": "5aa2b87de5b5b00016327c25", + "parentId": "66c90dc1c7d43f68b9106a7e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00207", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b30", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b30", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00098", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b32", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66c90dc1c7d43f68b9106b30", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b34", - "_tpl": "6176a40f0b8c0312ac75a3d3", - "parentId": "66c90dc1c7d43f68b9106b30", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a82", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a82", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106b36", - "_tpl": "544fb6cc4bdc2d34748b456e", - "parentId": "66c90dc1c7d43f68b9106b30", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a84", + "_tpl": "5b84038986f774774913b0c1", + "parentId": "66c90dc1c7d43f68b9106a82", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00062", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b38", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b38", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00113", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b3a", - "_tpl": "5a5f1ce64f39f90b401987bc", - "parentId": "66c90dc1c7d43f68b9106b38", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b3c", - "_tpl": "59ecc28286f7746d7a68aa8c", - "parentId": "66c90dc1c7d43f68b9106b38", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a86", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a86", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a88", + "_tpl": "59e3639286f7741777737013", + "parentId": "66c90dc1c7d43f68b9106a86", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a8a", + "_tpl": "57347da92459774491567cf5", + "parentId": "66c90dc1c7d43f68b9106a86", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00148", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b3e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b3e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00060", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b40", - "_tpl": "5751487e245977207e26a315", - "parentId": "66c90dc1c7d43f68b9106b3e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00025", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b42", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b42", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b44", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b9106b42", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a8c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a8c", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106b46", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc1c7d43f68b9106b42", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106a8e", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66c90dc1c7d43f68b9106a8c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a90", + "_tpl": "617fd91e5539a84ec44ce155", + "parentId": "66c90dc1c7d43f68b9106a8c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00204", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b48", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b48", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b4a", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc1c7d43f68b9106b48", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b4c", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c90dc1c7d43f68b9106b48", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a92", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a92", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a94", + "_tpl": "5b800ebc86f774394e230a90", + "parentId": "66c90dc1c7d43f68b9106a92", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a96", + "_tpl": "5c4ee3d62e2216152006f302", + "parentId": "66c90dc1c7d43f68b9106a92", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a98", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c90dc1c7d43f68b9106a92", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 52 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00165", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b4e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b4e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00132", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b50", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc1c7d43f68b9106b4e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00177", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b52", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b52", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b54", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc1c7d43f68b9106b52", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106a9a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106a9a", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a9c", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc1c7d43f68b9106a9a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106a9e", + "_tpl": "590c35a486f774273531c822", + "parentId": "66c90dc1c7d43f68b9106a9a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106aa0", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b9106a9a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00280", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b56", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b56", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00125", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b58", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106b56", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 922 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b5a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b5a", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b5c", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc1c7d43f68b9106b5a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106aa2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106aa2", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106b5e", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66c90dc1c7d43f68b9106b5a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc1c7d43f68b9106aa4", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66c90dc1c7d43f68b9106aa2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 14 + } + }, + { + "_id": "66c90dc1c7d43f68b9106aa6", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "66c90dc1c7d43f68b9106aa2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 22 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106aa8", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c90dc1c7d43f68b9106aa2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 38 + } } - }, - { - "_id": "66c90dc1c7d43f68b9106b60", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c90dc1c7d43f68b9106b5a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00156", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b62", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b62", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b64", - "_tpl": "5737218f245977612125ba51", - "parentId": "66c90dc1c7d43f68b9106b62", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 39 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b66", - "_tpl": "623c2f4242aee3103f1c44b7", - "parentId": "66c90dc1c7d43f68b9106b62", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106aaa", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106aaa", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106b68", - "_tpl": "5cf67cadd7f00c065a5abab7", - "parentId": "66c90dc1c7d43f68b9106b62", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106aac", + "_tpl": "5d1c774f86f7746d6620f8db", + "parentId": "66c90dc1c7d43f68b9106aaa", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00179", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b6a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b6a", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00091", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b6c", - "_tpl": "59e7715586f7742ee5789605", - "parentId": "66c90dc1c7d43f68b9106b6a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106aae", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106aae", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ab0", + "_tpl": "66993733f74fef4dfd0b04ff", + "parentId": "66c90dc1c7d43f68b9106aae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ab2", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66c90dc1c7d43f68b9106aae", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ab4", + "_tpl": "626a74340be03179a165e30c", + "parentId": "66c90dc1c7d43f68b9106aae", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ab6", + "_tpl": "6241c2c2117ad530666a5108", + "parentId": "66c90dc1c7d43f68b9106aae", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ab8", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66c90dc1c7d43f68b9106aae", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106aba", + "_tpl": "651a8bf3a8520e48047bf708", + "parentId": "66c90dc1c7d43f68b9106aae", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106abc", + "_tpl": "6388c4ac8d895f557a0c6515", + "parentId": "66c90dc1c7d43f68b9106aae", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00229", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b6e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b6e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00245", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b70", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b9106b6e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106abe", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106abe", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ac0", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66c90dc1c7d43f68b9106abe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 88 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00228", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b72", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b72", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00244", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b74", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc1c7d43f68b9106b72", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ac2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ac2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ac4", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc1c7d43f68b9106ac2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00227", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b76", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b76", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00243", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b78", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b9106b76", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ac6", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ac6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ac8", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66c90dc1c7d43f68b9106ac6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00226", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b7a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b7a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00242", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b7c", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc1c7d43f68b9106b7a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106aca", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106aca", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106acc", + "_tpl": "5e2af37686f774755a234b65", + "parentId": "66c90dc1c7d43f68b9106aca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00120", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b7e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b7e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00277", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b80", - "_tpl": "5e2af41e86f774755a234b67", - "parentId": "66c90dc1c7d43f68b9106b7e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ace", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ace", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ad0", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc1c7d43f68b9106ace", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00166", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b82", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b82", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00276", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b84", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106b82", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ad2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ad2", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 798 + { + "_id": "66c90dc1c7d43f68b9106ad4", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc1c7d43f68b9106ad2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00275", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b86", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106b82", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1108 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ad6", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ad6", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ad8", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc1c7d43f68b9106ad6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00123", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b88", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b88", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00274", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b8a", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c90dc1c7d43f68b9106b88", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ada", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ada", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106adc", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc1c7d43f68b9106ada", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00124", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b8c", - "_tpl": "5d40412b86f7743cb332ac3a", - "parentId": "66c90dc1c7d43f68b9106b88", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ade", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ade", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ae0", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc1c7d43f68b9106ade", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00169", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106b8e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b8e", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00049", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b90", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc1c7d43f68b9106b8e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ae2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ae2", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106ae4", + "_tpl": "5734779624597737e04bf329", + "parentId": "66c90dc1c7d43f68b9106ae2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc1c7d43f68b9106b92", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc1c7d43f68b9106b8e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00249", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b98", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b98", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00168", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b9a", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b9106b98", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00248", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106b9c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106b9c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106b9e", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66c90dc1c7d43f68b9106b9c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ae6", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ae6", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ae8", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c90dc1c7d43f68b9106ae6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106aea", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc1c7d43f68b9106ae6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00247", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ba0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ba0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ba2", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc1c7d43f68b9106ba0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106aec", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106aec", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106aee", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc1c7d43f68b9106aec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00246", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ba4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ba4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00223", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ba6", - "_tpl": "5d80c8f586f77440373c4ed0", - "parentId": "66c90dc1c7d43f68b9106ba4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106af0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106af0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106af2", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc1c7d43f68b9106af0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00209", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106bb0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106bb0", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00222", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bb2", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c90dc1c7d43f68b9106bb0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106af4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106af4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106af6", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc1c7d43f68b9106af4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00221", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bb4", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b9106bb0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106af8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106af8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106afa", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc1c7d43f68b9106af8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00220", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bb6", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b9106bb0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106afc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106afc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106afe", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc1c7d43f68b9106afc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00044", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bb8", - "_tpl": "5d4042a986f7743185265463", - "parentId": "66c90dc1c7d43f68b9106bb0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b00", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b00", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b02", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc1c7d43f68b9106b00", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b04", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66c90dc1c7d43f68b9106b00", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00153", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106bba", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106bba", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00208", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bbc", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66c90dc1c7d43f68b9106bba", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b06", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b06", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b08", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "66c90dc1c7d43f68b9106b06", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b0a", + "_tpl": "64be7095047e826eae02b0c1", + "parentId": "66c90dc1c7d43f68b9106b06", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b0c", + "_tpl": "5d1b198cd7ad1a604869ad72", + "parentId": "66c90dc1c7d43f68b9106b06", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b0e", + "_tpl": "57838f0b2459774a256959b2", + "parentId": "66c90dc1c7d43f68b9106b06", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b10", + "_tpl": "6113d6c3290d254f5e6b27db", + "parentId": "66c90dc1c7d43f68b9106b06", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b12", + "_tpl": "5cadd954ae921500103bb3c2", + "parentId": "66c90dc1c7d43f68b9106b06", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b14", + "_tpl": "5c7e8fab2e22165df16b889b", + "parentId": "66c90dc1c7d43f68b9106b06", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b16", + "_tpl": "5d6e68a8a4b9360b6c0d54e2", + "parentId": "66c90dc1c7d43f68b9106b06", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b18", + "_tpl": "6494094948796d891603e59f", + "parentId": "66c90dc1c7d43f68b9106b06", + "slotId": "main", + "location": { + "x": 1, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00133", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106bd5", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106bd5", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bd7", - "_tpl": "62a0a0bb621468534a797ad5", - "parentId": "66c90dc1c7d43f68b9106bd5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b1a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b1a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b1c", + "_tpl": "5d0375ff86f774186372f685", + "parentId": "66c90dc1c7d43f68b9106b1a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b1e", + "_tpl": "57513fcc24597720a31c09a6", + "parentId": "66c90dc1c7d43f68b9106b1a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00149", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106bd9", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106bd9", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00269", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bdb", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66c90dc1c7d43f68b9106bd9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b20", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b20", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106b22", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc1c7d43f68b9106b20", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00268", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bdd", - "_tpl": "59e35abd86f7741778269d82", - "parentId": "66c90dc1c7d43f68b9106bd9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b24", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b24", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b26", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc1c7d43f68b9106b24", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00014", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106bdf", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106bdf", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00267", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106be1", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c90dc1c7d43f68b9106bdf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00175", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106be3", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106be3", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106be5", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc1c7d43f68b9106be3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b28", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b28", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b2a", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc1c7d43f68b9106b28", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106bf3", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106bf3", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00266", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bf6", - "_tpl": "5737256c2459776125652acd", - "parentId": "66c90dc1c7d43f68b9106bf3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bf7", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66c90dc1c7d43f68b9106bf6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b2c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b2c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b2e", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dc1c7d43f68b9106b2c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00176", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106bf9", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106bf9", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00207", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bfb", - "_tpl": "59136f6f86f774447a1ed173", - "parentId": "66c90dc1c7d43f68b9106bf9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_Test_for_export_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106bfd", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106bfd", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106bff", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc1c7d43f68b9106bfd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b30", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b30", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b32", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66c90dc1c7d43f68b9106b30", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b34", + "_tpl": "6176a40f0b8c0312ac75a3d3", + "parentId": "66c90dc1c7d43f68b9106b30", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b36", + "_tpl": "544fb6cc4bdc2d34748b456e", + "parentId": "66c90dc1c7d43f68b9106b30", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c01", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c01", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00062", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c03", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b9106c01", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c05", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b9106c01", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b38", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b38", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b3a", + "_tpl": "5a5f1ce64f39f90b401987bc", + "parentId": "66c90dc1c7d43f68b9106b38", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b3c", + "_tpl": "59ecc28286f7746d7a68aa8c", + "parentId": "66c90dc1c7d43f68b9106b38", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c07", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c07", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00148", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c09", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc1c7d43f68b9106c07", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00210", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106c0b", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c0b", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c0d", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66c90dc1c7d43f68b9106c0b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b3e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b3e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106b40", + "_tpl": "5751487e245977207e26a315", + "parentId": "66c90dc1c7d43f68b9106b3e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00025", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c0f", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dc1c7d43f68b9106c0b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c11", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66c90dc1c7d43f68b9106c0b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b42", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b42", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106c13", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66c90dc1c7d43f68b9106c0b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66c90dc1c7d43f68b9106b44", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b9106b42", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106b46", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc1c7d43f68b9106b42", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00204", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c15", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66c90dc1c7d43f68b9106c0b", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c17", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc1c7d43f68b9106c0b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b48", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b48", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b4a", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc1c7d43f68b9106b48", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b4c", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c90dc1c7d43f68b9106b48", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c19", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c19", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00165", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c1b", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106c19", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 946 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00191", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c1d", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c1d", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c1f", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc1c7d43f68b9106c1d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b4e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b4e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b50", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc1c7d43f68b9106b4e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00094", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c21", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c21", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00177", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c23", - "_tpl": "62a09e08de7ac81993580532", - "parentId": "66c90dc1c7d43f68b9106c21", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c25", - "_tpl": "5751435d24597720a27126d1", - "parentId": "66c90dc1c7d43f68b9106c21", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b52", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b52", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b54", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc1c7d43f68b9106b52", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106c2b", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c2b", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00280", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c2d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106c2b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 684 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b56", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b56", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b58", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106b56", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 922 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00190", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c2f", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c2f", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c31", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc1c7d43f68b9106c2f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c33", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c33", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c35", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66c90dc1c7d43f68b9106c33", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b5a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b5a", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106c37", - "_tpl": "5d6fc78386f77449d825f9dc", - "parentId": "66c90dc1c7d43f68b9106c33", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc1c7d43f68b9106b5c", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc1c7d43f68b9106b5a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106c39", - "_tpl": "5a5f1ce64f39f90b401987bc", - "parentId": "66c90dc1c7d43f68b9106c33", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106b5e", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66c90dc1c7d43f68b9106b5a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b60", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c90dc1c7d43f68b9106b5a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00273", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106c3b", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c3b", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00156", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c3d", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66c90dc1c7d43f68b9106c3b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00272", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106c3f", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c3f", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c41", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc1c7d43f68b9106c3f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b62", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b62", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b64", + "_tpl": "5737218f245977612125ba51", + "parentId": "66c90dc1c7d43f68b9106b62", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 39 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b66", + "_tpl": "623c2f4242aee3103f1c44b7", + "parentId": "66c90dc1c7d43f68b9106b62", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b68", + "_tpl": "5cf67cadd7f00c065a5abab7", + "parentId": "66c90dc1c7d43f68b9106b62", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00271", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106c43", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c43", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00179", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c45", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66c90dc1c7d43f68b9106c43", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00270", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106c47", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c47", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c49", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "66c90dc1c7d43f68b9106c47", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b6a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b6a", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b6c", + "_tpl": "59e7715586f7742ee5789605", + "parentId": "66c90dc1c7d43f68b9106b6a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00203", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106c4b", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c4b", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00229", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c4d", - "_tpl": "590c392f86f77444754deb29", - "parentId": "66c90dc1c7d43f68b9106c4b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00139", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c4f", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c4f", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c51", - "_tpl": "5d40425986f7743185265461", - "parentId": "66c90dc1c7d43f68b9106c4f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b6e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b6e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b70", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b9106b6e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c53", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c53", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00228", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c55", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "parentId": "66c90dc1c7d43f68b9106c53", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c57", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66c90dc1c7d43f68b9106c53", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b72", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b72", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106c59", - "_tpl": "5710c24ad2720bc3458b45a3", - "parentId": "66c90dc1c7d43f68b9106c53", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106b74", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc1c7d43f68b9106b72", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00093", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c5b", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c5b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00227", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c5d", - "_tpl": "5e2af4a786f7746d3f3c3400", - "parentId": "66c90dc1c7d43f68b9106c5b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c5f", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66c90dc1c7d43f68b9106c5b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b76", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b76", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106c61", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc1c7d43f68b9106c5b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106b78", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b9106b76", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c6b", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c6b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00226", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c6d", - "_tpl": "544fb37f4bdc2dee738b4567", - "parentId": "66c90dc1c7d43f68b9106c6b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c6f", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc1c7d43f68b9106c6b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b7a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b7a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b7c", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc1c7d43f68b9106b7a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00281", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106c71", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c71", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00120", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c73", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106c71", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1112 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00224", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c75", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c75", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c77", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b9106c75", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b7e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b7e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106c79", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc1c7d43f68b9106c75", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106b80", + "_tpl": "5e2af41e86f774755a234b67", + "parentId": "66c90dc1c7d43f68b9106b7e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00152", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c7b", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c7b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00166", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c7c", - "_tpl": "587e02ff24597743df3deaeb", - "parentId": "66c90dc1c7d43f68b9106c7b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b82", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b82", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b84", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106b82", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 798 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66c90dc1c7d43f68b9106b86", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106b82", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1108 } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00123", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c7d", - "_tpl": "587e0531245977466077a0f7", - "parentId": "66c90dc1c7d43f68b9106c7c", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c7e", - "_tpl": "634eff66517ccc8a960fc735", - "parentId": "66c90dc1c7d43f68b9106c7c", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dc1c7d43f68b9106c7f", - "_tpl": "634f05a21f9f536910079b56", - "parentId": "66c90dc1c7d43f68b9106c7e", - "slotId": "mod_mount_000" - }, - { - "_id": "66c90dc1c7d43f68b9106c80", - "_tpl": "634f036a517ccc8a960fc746", - "parentId": "66c90dc1c7d43f68b9106c7f", - "slotId": "mod_gas_block" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b88", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b88", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b8a", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c90dc1c7d43f68b9106b88", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b8c", + "_tpl": "5d40412b86f7743cb332ac3a", + "parentId": "66c90dc1c7d43f68b9106b88", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00169", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c81", - "_tpl": "634f03d40384a3ba4f06f874", - "parentId": "66c90dc1c7d43f68b9106c80", - "slotId": "mod_mount_000" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c82", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "66c90dc1c7d43f68b9106c7f", - "slotId": "mod_sight_rear" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106b8e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b8e", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b90", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc1c7d43f68b9106b8e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b92", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc1c7d43f68b9106b8e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00249", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c83", - "_tpl": "587df3a12459772c28142567", - "parentId": "66c90dc1c7d43f68b9106c7c", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c85", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c90dc1c7d43f68b9106c83", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b98", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b98", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106b9a", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b9106b98", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc1c7d43f68b9106c84", - "_tpl": "634f06262e5def262d0b30ca", - "parentId": "66c90dc1c7d43f68b9106c7c", - "slotId": "mod_reciever" - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c87", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c87", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00248", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c89", - "_tpl": "66b37f114410565a8f6789e2", - "parentId": "66c90dc1c7d43f68b9106c87", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106b9c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106b9c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106b9e", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66c90dc1c7d43f68b9106b9c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00247", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c8b", - "_tpl": "5d1b31ce86f7742523398394", - "parentId": "66c90dc1c7d43f68b9106c87", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ba0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ba0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ba2", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc1c7d43f68b9106ba0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c8d", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c8d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00246", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c8f", - "_tpl": "5ac4c50d5acfc40019262e87", - "parentId": "66c90dc1c7d43f68b9106c8d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ba4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ba4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ba6", + "_tpl": "5d80c8f586f77440373c4ed0", + "parentId": "66c90dc1c7d43f68b9106ba4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00279", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106c91", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c91", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00209", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c93", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106c91", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1029 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106bb0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106bb0", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bb2", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c90dc1c7d43f68b9106bb0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bb4", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b9106bb0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bb6", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b9106bb0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bb8", + "_tpl": "5d4042a986f7743185265463", + "parentId": "66c90dc1c7d43f68b9106bb0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00293", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c95", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c95", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00153", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c97", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66c90dc1c7d43f68b9106c95", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106bba", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106bba", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 30 + { + "_id": "66c90dc1c7d43f68b9106bbc", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66c90dc1c7d43f68b9106bba", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00133", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c99", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66c90dc1c7d43f68b9106c95", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 35 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106bd5", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106bd5", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bd7", + "_tpl": "62a0a0bb621468534a797ad5", + "parentId": "66c90dc1c7d43f68b9106bd5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00206", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c9b", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c9b", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00149", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106c9d", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc1c7d43f68b9106c9b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106bd9", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106bd9", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bdb", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66c90dc1c7d43f68b9106bd9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bdd", + "_tpl": "59e35abd86f7741778269d82", + "parentId": "66c90dc1c7d43f68b9106bd9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00140", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106c9f", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106c9f", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00014", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ca1", - "_tpl": "590a3d9c86f774385926e510", - "parentId": "66c90dc1c7d43f68b9106c9f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106bdf", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106bdf", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106be1", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c90dc1c7d43f68b9106bdf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00175", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ca3", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b9106c9f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106be3", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106be3", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106be5", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc1c7d43f68b9106be3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00265", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ca5", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ca5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ca7", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b9106ca5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106bf3", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106bf3", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bf6", + "_tpl": "5737256c2459776125652acd", + "parentId": "66c90dc1c7d43f68b9106bf3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bf7", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66c90dc1c7d43f68b9106bf6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00264", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ca9", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ca9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00176", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106cab", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66c90dc1c7d43f68b9106ca9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00263", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106cad", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106cad", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106caf", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc1c7d43f68b9106cad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106bf9", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106bf9", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bfb", + "_tpl": "59136f6f86f774447a1ed173", + "parentId": "66c90dc1c7d43f68b9106bf9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00262", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106cb1", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106cb1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106cb3", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc1c7d43f68b9106cb1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00241", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106cc5", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106cc5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106cc7", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dc1c7d43f68b9106cc5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106bfd", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106bfd", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106bff", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc1c7d43f68b9106bfd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00240", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106cc9", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106cc9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ccb", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "66c90dc1c7d43f68b9106cc9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00239", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ccd", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ccd", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ccf", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc1c7d43f68b9106ccd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c01", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c01", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c03", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b9106c01", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c05", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b9106c01", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00238", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106cd1", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106cd1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106cd3", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b9106cd1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106cd5", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106cd5", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106cd7", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c90dc1c7d43f68b9106cd5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c07", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c07", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c09", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc1c7d43f68b9106c07", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106cd9", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106cd9", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00210", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106cdb", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66c90dc1c7d43f68b9106cd9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 38 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00127", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106cdd", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106cdd", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106cdf", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc1c7d43f68b9106cdd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106c0b", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c0b", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 40 - } - }, - { - "_id": "66c90dc1c7d43f68b9106ce2", - "_tpl": "64acee6903378853630da544", - "parentId": "66c90dc1c7d43f68b9106cdd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66c90dc1c7d43f68b9106c0d", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66c90dc1c7d43f68b9106c0b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106ce3", - "_tpl": "64b8f7c241772715af0f9c3d", - "parentId": "66c90dc1c7d43f68b9106ce2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + { + "_id": "66c90dc1c7d43f68b9106c0f", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dc1c7d43f68b9106c0b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c11", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66c90dc1c7d43f68b9106c0b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c13", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66c90dc1c7d43f68b9106c0b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c15", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66c90dc1c7d43f68b9106c0b", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c17", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc1c7d43f68b9106c0b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106cf1", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106cf1", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106cf3", - "_tpl": "5d0375ff86f774186372f685", - "parentId": "66c90dc1c7d43f68b9106cf1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106cf5", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc1c7d43f68b9106cf1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c19", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c19", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c1b", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106c19", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 946 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00225", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106cf7", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106cf7", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00191", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106cf9", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66c90dc1c7d43f68b9106cf7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00180", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d03", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d03", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d05", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106d03", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1054 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c1d", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c1d", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c1f", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc1c7d43f68b9106c1d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d07", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d07", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00094", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d09", - "_tpl": "618a75f0bd321d49084cd399", - "parentId": "66c90dc1c7d43f68b9106d07", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d0b", - "_tpl": "5a9fbb84a2750c00137fa685", - "parentId": "66c90dc1c7d43f68b9106d07", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c21", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c21", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c23", + "_tpl": "62a09e08de7ac81993580532", + "parentId": "66c90dc1c7d43f68b9106c21", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106c25", + "_tpl": "5751435d24597720a27126d1", + "parentId": "66c90dc1c7d43f68b9106c21", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d0e", - "_tpl": "573726d824597765d96be361", - "parentId": "66c90dc1c7d43f68b9106d07", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106c2b", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c2b", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106c2d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106c2b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 684 + } } - }, - { - "_id": "66c90dc1c7d43f68b9106d0f", - "_tpl": "57371f2b24597761224311f1", - "parentId": "66c90dc1c7d43f68b9106d0e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00078", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d11", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d11", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00190", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d13", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66c90dc1c7d43f68b9106d11", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 23 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00086", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d15", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d15", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d17", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b9106d15", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c2f", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c2f", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106c31", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc1c7d43f68b9106c2f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d19", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66c90dc1c7d43f68b9106d15", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d1a", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66c90dc1c7d43f68b9106d15", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c33", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c33", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c35", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66c90dc1c7d43f68b9106c33", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c37", + "_tpl": "5d6fc78386f77449d825f9dc", + "parentId": "66c90dc1c7d43f68b9106c33", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c90dc1c7d43f68b9106c39", + "_tpl": "5a5f1ce64f39f90b401987bc", + "parentId": "66c90dc1c7d43f68b9106c33", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00273", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d1b", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66c90dc1c7d43f68b9106d1a", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d1f", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66c90dc1c7d43f68b9106d1b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106c3b", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c3b", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c3d", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66c90dc1c7d43f68b9106c3b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00272", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d1c", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66c90dc1c7d43f68b9106d1a", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc1c7d43f68b9106d1d", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66c90dc1c7d43f68b9106d1c", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d1e", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66c90dc1c7d43f68b9106d1a", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00122", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d21", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d21", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106c3f", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c3f", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c41", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc1c7d43f68b9106c3f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00271", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d22", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66c90dc1c7d43f68b9106d21", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106c43", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c43", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c45", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66c90dc1c7d43f68b9106c43", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00270", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d23", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66c90dc1c7d43f68b9106d22", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d24", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66c90dc1c7d43f68b9106d22", - "slotId": "mod_pistol_grip" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106c47", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c47", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c49", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "66c90dc1c7d43f68b9106c47", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00203", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d25", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66c90dc1c7d43f68b9106d22", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d26", - "_tpl": "5736026a245977644601dc61", - "parentId": "66c90dc1c7d43f68b9106d25", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106c4b", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c4b", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c4d", + "_tpl": "590c392f86f77444754deb29", + "parentId": "66c90dc1c7d43f68b9106c4b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00119", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d28", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d28", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00139", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d2a", - "_tpl": "5e340dcdcb6d5863cc5e5efb", - "parentId": "66c90dc1c7d43f68b9106d28", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c4f", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c4f", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c51", + "_tpl": "5d40425986f7743185265461", + "parentId": "66c90dc1c7d43f68b9106c4f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d40", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d40", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d42", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66c90dc1c7d43f68b9106d40", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c53", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c53", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c55", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "parentId": "66c90dc1c7d43f68b9106c53", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106c57", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66c90dc1c7d43f68b9106c53", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c59", + "_tpl": "5710c24ad2720bc3458b45a3", + "parentId": "66c90dc1c7d43f68b9106c53", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00093", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d43", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66c90dc1c7d43f68b9106d40", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c5b", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c5b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c5d", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "66c90dc1c7d43f68b9106c5b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c5f", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66c90dc1c7d43f68b9106c5b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c90dc1c7d43f68b9106c61", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc1c7d43f68b9106c5b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d44", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66c90dc1c7d43f68b9106d43", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d48", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66c90dc1c7d43f68b9106d44", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 7.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c6b", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c6b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c6d", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "66c90dc1c7d43f68b9106c6b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c6f", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc1c7d43f68b9106c6b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00281", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d45", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66c90dc1c7d43f68b9106d43", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc1c7d43f68b9106d46", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66c90dc1c7d43f68b9106d45", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d47", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66c90dc1c7d43f68b9106d43", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00215", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d4a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d4a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106c71", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c71", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c73", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106c71", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1112 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00224", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d4c", - "_tpl": "61bf7c024770ee6f9c6b8b53", - "parentId": "66c90dc1c7d43f68b9106d4a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c75", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c75", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c77", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b9106c75", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c79", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc1c7d43f68b9106c75", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00214", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d4e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d4e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00152", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d50", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66c90dc1c7d43f68b9106d4e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00213", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d52", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d52", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d54", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66c90dc1c7d43f68b9106d52", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c7b", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c7b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c7c", + "_tpl": "587e02ff24597743df3deaeb", + "parentId": "66c90dc1c7d43f68b9106c7b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c90dc1c7d43f68b9106c7d", + "_tpl": "587e0531245977466077a0f7", + "parentId": "66c90dc1c7d43f68b9106c7c", + "slotId": "mod_stock" + }, + { + "_id": "66c90dc1c7d43f68b9106c7e", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "66c90dc1c7d43f68b9106c7c", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc1c7d43f68b9106c7f", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "66c90dc1c7d43f68b9106c7e", + "slotId": "mod_mount_000" + }, + { + "_id": "66c90dc1c7d43f68b9106c80", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "66c90dc1c7d43f68b9106c7f", + "slotId": "mod_gas_block" + }, + { + "_id": "66c90dc1c7d43f68b9106c81", + "_tpl": "634f03d40384a3ba4f06f874", + "parentId": "66c90dc1c7d43f68b9106c80", + "slotId": "mod_mount_000" + }, + { + "_id": "66c90dc1c7d43f68b9106c82", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "66c90dc1c7d43f68b9106c7f", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b9106c83", + "_tpl": "587df3a12459772c28142567", + "parentId": "66c90dc1c7d43f68b9106c7c", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106c85", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c90dc1c7d43f68b9106c83", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c84", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "66c90dc1c7d43f68b9106c7c", + "slotId": "mod_reciever" } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00212", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d56", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d56", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d58", - "_tpl": "61aa5b518f5e7a39b41416e2", - "parentId": "66c90dc1c7d43f68b9106d56", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c87", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c87", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c89", + "_tpl": "66b37f114410565a8f6789e2", + "parentId": "66c90dc1c7d43f68b9106c87", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c8b", + "_tpl": "5d1b31ce86f7742523398394", + "parentId": "66c90dc1c7d43f68b9106c87", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00142", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d60", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d60", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d62", - "_tpl": "62a0a098de7ac8199358053b", - "parentId": "66c90dc1c7d43f68b9106d60", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c8d", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c8d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c8f", + "_tpl": "5ac4c50d5acfc40019262e87", + "parentId": "66c90dc1c7d43f68b9106c8d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00134", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d64", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d64", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00279", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d66", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b9106d64", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106c91", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c91", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106c93", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106c91", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1029 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00293", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d68", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66c90dc1c7d43f68b9106d64", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c95", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c95", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c97", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66c90dc1c7d43f68b9106c95", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c99", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66c90dc1c7d43f68b9106c95", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 35 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00144", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d6a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d6a", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00206", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d6c", - "_tpl": "5a0d63621526d8dba31fe3bf", - "parentId": "66c90dc1c7d43f68b9106d6a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c9b", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c9b", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106c9d", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc1c7d43f68b9106c9b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00219", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d6e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d6e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00140", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d70", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66c90dc1c7d43f68b9106d6e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106c9f", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106c9f", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ca1", + "_tpl": "590a3d9c86f774385926e510", + "parentId": "66c90dc1c7d43f68b9106c9f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ca3", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b9106c9f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00218", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d72", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d72", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00265", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d74", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc1c7d43f68b9106d72", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ca5", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ca5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ca7", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b9106ca5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00217", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d76", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d76", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00264", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d78", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c90dc1c7d43f68b9106d76", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ca9", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ca9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106cab", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66c90dc1c7d43f68b9106ca9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00216", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d7a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d7a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00263", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d7c", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b9106d7a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106cad", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106cad", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106caf", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc1c7d43f68b9106cad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d7e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d7e", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00262", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d80", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc1c7d43f68b9106d7e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106cb1", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106cb1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106cb3", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc1c7d43f68b9106cb1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00290", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d82", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d82", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00241", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d84", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dc1c7d43f68b9106d82", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00289", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d86", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d86", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d88", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66c90dc1c7d43f68b9106d86", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106cc5", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106cc5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106cc7", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dc1c7d43f68b9106cc5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00288", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d8a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d8a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00240", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d8c", - "_tpl": "61bf7c024770ee6f9c6b8b53", - "parentId": "66c90dc1c7d43f68b9106d8a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00287", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d8e", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d8e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d90", - "_tpl": "590a358486f77429692b2790", - "parentId": "66c90dc1c7d43f68b9106d8e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106cc9", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106cc9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ccb", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "66c90dc1c7d43f68b9106cc9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106d98", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d98", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00239", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d9a", - "_tpl": "5d40419286f774318526545f", - "parentId": "66c90dc1c7d43f68b9106d98", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00286", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106d9c", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106d9c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106d9e", - "_tpl": "5e2aedd986f7746d404f3aa4", - "parentId": "66c90dc1c7d43f68b9106d9c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ccd", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ccd", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ccf", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc1c7d43f68b9106ccd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00285", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106da0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106da0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00238", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106da2", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b9106da0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00284", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106da4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106da4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106da6", - "_tpl": "5ad5d49886f77455f9731921", - "parentId": "66c90dc1c7d43f68b9106da4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106cd1", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106cd1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106cd3", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b9106cd1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00283", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106da8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106da8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106daa", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66c90dc1c7d43f68b9106da8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106dac", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106dac", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dae", - "_tpl": "590c35a486f774273531c822", - "parentId": "66c90dc1c7d43f68b9106dac", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106cd5", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106cd5", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106db0", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66c90dc1c7d43f68b9106dac", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106cd7", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c90dc1c7d43f68b9106cd5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "n1", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106db2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106db2", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106db4", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66c90dc1c7d43f68b9106db2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 7 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106db7", - "_tpl": "657023e7c5d7d4cb4d078552", - "parentId": "66c90dc1c7d43f68b9106db2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106cd9", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106cd9", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106cdb", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66c90dc1c7d43f68b9106cd9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 38 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00127", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106db8", - "_tpl": "62330c18744e5e31df12f516", - "parentId": "66c90dc1c7d43f68b9106db7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dbb", - "_tpl": "5c1260dc86f7746b106e8748", - "parentId": "66c90dc1c7d43f68b9106db2", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106cdd", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106cdd", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106cdf", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc1c7d43f68b9106cdd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ce2", + "_tpl": "64acee6903378853630da544", + "parentId": "66c90dc1c7d43f68b9106cdd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106ce3", + "_tpl": "64b8f7c241772715af0f9c3d", + "parentId": "66c90dc1c7d43f68b9106ce2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dbc", - "_tpl": "5c0d688c86f77413ae3407b2", - "parentId": "66c90dc1c7d43f68b9106dbb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dbf", - "_tpl": "657025bbcfc010a0f5006a35", - "parentId": "66c90dc1c7d43f68b9106db2", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106cf1", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106cf1", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106dc0", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66c90dc1c7d43f68b9106dbf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + { + "_id": "66c90dc1c7d43f68b9106cf3", + "_tpl": "5d0375ff86f774186372f685", + "parentId": "66c90dc1c7d43f68b9106cf1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106cf5", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc1c7d43f68b9106cf1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106dc2", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106dc2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00225", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dc4", - "_tpl": "5d1b385e86f774252167b98a", - "parentId": "66c90dc1c7d43f68b9106dc2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dc6", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66c90dc1c7d43f68b9106dc2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106cf7", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106cf7", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106cf9", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66c90dc1c7d43f68b9106cf7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00047", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106dc8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106dc8", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00180", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dc9", - "_tpl": "59e7711e86f7746cae05fbe1", - "parentId": "66c90dc1c7d43f68b9106dc8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dca", - "_tpl": "657ba50c23918923cb0df56c", - "parentId": "66c90dc1c7d43f68b9106dc9", - "slotId": "Helmet_top" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d03", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d03", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d05", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106d03", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1054 + } + } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dcb", - "_tpl": "657ba5439ba22f103e08139f", - "parentId": "66c90dc1c7d43f68b9106dc9", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dcc", - "_tpl": "657ba57af58ba5a62501079e", - "parentId": "66c90dc1c7d43f68b9106dc9", - "slotId": "Helmet_ears" - }, - { - "_id": "66c90dc1c7d43f68b9106dce", - "_tpl": "5fd4c4fa16cac650092f6771", - "parentId": "66c90dc1c7d43f68b9106dc8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d07", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d07", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d09", + "_tpl": "618a75f0bd321d49084cd399", + "parentId": "66c90dc1c7d43f68b9106d07", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d0b", + "_tpl": "5a9fbb84a2750c00137fa685", + "parentId": "66c90dc1c7d43f68b9106d07", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d0e", + "_tpl": "573726d824597765d96be361", + "parentId": "66c90dc1c7d43f68b9106d07", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d0f", + "_tpl": "57371f2b24597761224311f1", + "parentId": "66c90dc1c7d43f68b9106d0e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00189", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106dd0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106dd0", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00078", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dd2", - "_tpl": "590c37d286f77443be3d7827", - "parentId": "66c90dc1c7d43f68b9106dd0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00188", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106dd4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106dd4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dd6", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66c90dc1c7d43f68b9106dd4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d11", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d11", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d13", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66c90dc1c7d43f68b9106d11", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 23 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00187", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106dd8", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106dd8", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00086", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dda", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c90dc1c7d43f68b9106dd8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00186", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ddc", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ddc", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dde", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b9106ddc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d15", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d15", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d17", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b9106d15", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d19", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66c90dc1c7d43f68b9106d15", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d1a", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66c90dc1c7d43f68b9106d15", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c90dc1c7d43f68b9106d1b", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66c90dc1c7d43f68b9106d1a", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106d1f", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66c90dc1c7d43f68b9106d1b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d1c", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66c90dc1c7d43f68b9106d1a", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc1c7d43f68b9106d1d", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66c90dc1c7d43f68b9106d1c", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b9106d1e", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66c90dc1c7d43f68b9106d1a", + "slotId": "mod_pistolgrip" } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00291", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106de0", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106de0", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00122", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106de2", - "_tpl": "5751496424597720a27126da", - "parentId": "66c90dc1c7d43f68b9106de0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106de4", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106de4", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106de6", - "_tpl": "557ff21e4bdc2d89578b4586", - "parentId": "66c90dc1c7d43f68b9106de4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d21", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d21", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106de8", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc1c7d43f68b9106de4", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc1c7d43f68b9106d22", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66c90dc1c7d43f68b9106d21", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106dea", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66c90dc1c7d43f68b9106de4", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106d23", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66c90dc1c7d43f68b9106d22", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc1c7d43f68b9106d24", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66c90dc1c7d43f68b9106d22", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc1c7d43f68b9106d25", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66c90dc1c7d43f68b9106d22", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106d26", + "_tpl": "5736026a245977644601dc61", + "parentId": "66c90dc1c7d43f68b9106d25", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00170", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106dec", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106dec", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00119", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106dee", - "_tpl": "618aef6d0a5a59657e5f55ee", - "parentId": "66c90dc1c7d43f68b9106dec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106df0", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66c90dc1c7d43f68b9106dec", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d28", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d28", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106d2a", + "_tpl": "5e340dcdcb6d5863cc5e5efb", + "parentId": "66c90dc1c7d43f68b9106d28", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106df2", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66c90dc1c7d43f68b9106dec", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106df4", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66c90dc1c7d43f68b9106dec", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d40", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d40", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d42", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66c90dc1c7d43f68b9106d40", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 25 + { + "_id": "66c90dc1c7d43f68b9106d43", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66c90dc1c7d43f68b9106d40", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c90dc1c7d43f68b9106d44", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66c90dc1c7d43f68b9106d43", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106d48", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66c90dc1c7d43f68b9106d44", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 7.0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d45", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66c90dc1c7d43f68b9106d43", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc1c7d43f68b9106d46", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66c90dc1c7d43f68b9106d45", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b9106d47", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66c90dc1c7d43f68b9106d43", + "slotId": "mod_pistolgrip" } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00215", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106df6", - "_tpl": "5cc80f67e4a949035e43bbba", - "parentId": "66c90dc1c7d43f68b9106dec", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 13 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d4a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d4a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d4c", + "_tpl": "61bf7c024770ee6f9c6b8b53", + "parentId": "66c90dc1c7d43f68b9106d4a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00201", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106dfe", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106dfe", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00214", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e00", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "parentId": "66c90dc1c7d43f68b9106dfe", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d4e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d4e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d50", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66c90dc1c7d43f68b9106d4e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00192", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106e02", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e02", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00213", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e04", - "_tpl": "661e53149c8b4dadef008579", - "parentId": "66c90dc1c7d43f68b9106e02", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d52", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d52", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106d54", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66c90dc1c7d43f68b9106d52", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00212", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e06", - "_tpl": "618ba27d9008e4636a67f61d", - "parentId": "66c90dc1c7d43f68b9106e02", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d56", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d56", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106d58", + "_tpl": "61aa5b518f5e7a39b41416e2", + "parentId": "66c90dc1c7d43f68b9106d56", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc1c7d43f68b9106e08", - "_tpl": "623c2f4242aee3103f1c44b7", - "parentId": "66c90dc1c7d43f68b9106e02", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106e0a", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e0a", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00142", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e0c", - "_tpl": "62a0a124de7ac81993580542", - "parentId": "66c90dc1c7d43f68b9106e0a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00181", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106e14", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e14", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e16", - "_tpl": "5751496424597720a27126da", - "parentId": "66c90dc1c7d43f68b9106e14", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d60", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d60", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d62", + "_tpl": "62a0a098de7ac8199358053b", + "parentId": "66c90dc1c7d43f68b9106d60", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00278", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106e18", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e18", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00134", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e1a", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106e18", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 800 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106e20", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e20", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e22", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66c90dc1c7d43f68b9106e20", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d64", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d64", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106e24", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66c90dc1c7d43f68b9106e20", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106d66", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b9106d64", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d68", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66c90dc1c7d43f68b9106d64", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00211", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106e26", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e26", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00144", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e28", - "_tpl": "5d00ede1d7ad1a0940739a76", - "parentId": "66c90dc1c7d43f68b9106e26", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e29", - "_tpl": "6499849fc93611967b034949", - "parentId": "66c90dc1c7d43f68b9106e26", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d6a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d6a", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c90dc1c7d43f68b9106d6c", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "66c90dc1c7d43f68b9106d6a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00219", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e2a", - "_tpl": "649ec107961514b22506b10c", - "parentId": "66c90dc1c7d43f68b9106e29", - "slotId": "mod_gas_block" - }, - { - "_id": "66c90dc1c7d43f68b9106e2b", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "66c90dc1c7d43f68b9106e29", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c90dc1c7d43f68b9106e2c", - "_tpl": "649ec127c93611967b034957", - "parentId": "66c90dc1c7d43f68b9106e29", - "slotId": "mod_handguard" - }, - { - "_id": "66c90dc1c7d43f68b9106e2d", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "66c90dc1c7d43f68b9106e2c", - "slotId": "mod_mount_001" - }, - { - "_id": "66c90dc1c7d43f68b9106e2e", - "_tpl": "649ec2af961514b22506b10f", - "parentId": "66c90dc1c7d43f68b9106e29", - "slotId": "mod_muzzle" - }, - { - "_id": "66c90dc1c7d43f68b9106e2f", - "_tpl": "649ec2f3961514b22506b111", - "parentId": "66c90dc1c7d43f68b9106e29", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc1c7d43f68b9106e30", - "_tpl": "649ec2da59cbb3c813042dca", - "parentId": "66c90dc1c7d43f68b9106e2f", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc1c7d43f68b9106e31", - "_tpl": "649ec2cec93611967b03495e", - "parentId": "66c90dc1c7d43f68b9106e30", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc1c7d43f68b9106e32", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "66c90dc1c7d43f68b9106e29", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc1c7d43f68b9106e35", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c90dc1c7d43f68b9106e32", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15.0 - } - }, - { - "_id": "66c90dc1c7d43f68b9106e33", - "_tpl": "649ec87d8007560a9001ab36", - "parentId": "66c90dc1c7d43f68b9106e29", - "slotId": "mod_stock_001" - }, - { - "_id": "66c90dc1c7d43f68b9106e34", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "66c90dc1c7d43f68b9106e33", - "slotId": "mod_stock" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e37", - "_tpl": "6389f1dfc879ce63f72fc43e", - "parentId": "66c90dc1c7d43f68b9106e26", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d6e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d6e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106d70", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66c90dc1c7d43f68b9106d6e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00218", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e38", - "_tpl": "669fa409933e898cce0c2166", - "parentId": "66c90dc1c7d43f68b9106e26", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d72", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d72", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c90dc1c7d43f68b9106d74", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc1c7d43f68b9106d72", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00217", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e39", - "_tpl": "669fa4c61bd4416eaa09b3ca", - "parentId": "66c90dc1c7d43f68b9106e38", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dc1c7d43f68b9106e3a", - "_tpl": "668fe5ec4315934ba10c6f96", - "parentId": "66c90dc1c7d43f68b9106e39", - "slotId": "mod_sight_front" - }, - { - "_id": "66c90dc1c7d43f68b9106e3b", - "_tpl": "66a0da76b6f47fcfeb025e96", - "parentId": "66c90dc1c7d43f68b9106e38", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66c90dc1c7d43f68b9106e3c", - "_tpl": "669fa5127a09bc295603b499", - "parentId": "66c90dc1c7d43f68b9106e38", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc1c7d43f68b9106e3d", - "_tpl": "668fe5e1800f0244f9036e46", - "parentId": "66c90dc1c7d43f68b9106e3c", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc1c7d43f68b9106e3e", - "_tpl": "669fa435803b94fb5d0e3a76", - "parentId": "66c90dc1c7d43f68b9106e38", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc1c7d43f68b9106e3f", - "_tpl": "62330b3ed4dc74626d570b95", - "parentId": "66c90dc1c7d43f68b9106e3e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e41", - "_tpl": "622f14e899892a7f9e08f6c5", - "parentId": "66c90dc1c7d43f68b9106e26", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d76", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d76", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d78", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c90dc1c7d43f68b9106d76", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00193", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106e43", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e43", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00216", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e45", - "_tpl": "5f5f41f56760b4138443b352", - "parentId": "66c90dc1c7d43f68b9106e43", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e47", - "_tpl": "62669bccdb9ebb4daa44cd14", - "parentId": "66c90dc1c7d43f68b9106e43", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d7a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d7a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d7c", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b9106d7a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106e49", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e49", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e4b", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66c90dc1c7d43f68b9106e49", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e4d", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66c90dc1c7d43f68b9106e49", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 35 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d7e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d7e", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d80", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc1c7d43f68b9106d7e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00121", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106e4f", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e4f", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00290", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e51", - "_tpl": "5cc80f8fe4a949033b0224a2", - "parentId": "66c90dc1c7d43f68b9106e4f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 11 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e53", - "_tpl": "5a788169c5856700142fdd9e", - "parentId": "66c90dc1c7d43f68b9106e4f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d82", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d82", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106d84", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dc1c7d43f68b9106d82", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00289", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e55", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "66c90dc1c7d43f68b9106e4f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e57", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66c90dc1c7d43f68b9106e4f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d86", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d86", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 40 + { + "_id": "66c90dc1c7d43f68b9106d88", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66c90dc1c7d43f68b9106d86", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00288", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e59", - "_tpl": "622f14e899892a7f9e08f6c5", - "parentId": "66c90dc1c7d43f68b9106e4f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e5b", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66c90dc1c7d43f68b9106e4f", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d8a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d8a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 7 + { + "_id": "66c90dc1c7d43f68b9106d8c", + "_tpl": "61bf7c024770ee6f9c6b8b53", + "parentId": "66c90dc1c7d43f68b9106d8a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00287", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e5d", - "_tpl": "5c9a1c3a2e2216000e69fb6a", - "parentId": "66c90dc1c7d43f68b9106e4f", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e5f", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66c90dc1c7d43f68b9106e4f", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d8e", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d8e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d90", + "_tpl": "590a358486f77429692b2790", + "parentId": "66c90dc1c7d43f68b9106d8e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00261", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106e6d", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e6d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e6f", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b9106e6d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00260", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106e71", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e71", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e73", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dc1c7d43f68b9106e71", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106d98", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d98", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d9a", + "_tpl": "5d40419286f774318526545f", + "parentId": "66c90dc1c7d43f68b9106d98", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00259", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106e75", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e75", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00286", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e77", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66c90dc1c7d43f68b9106e75", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00258", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106e79", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e79", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e7b", - "_tpl": "5ad5cfbd86f7742c825d6104", - "parentId": "66c90dc1c7d43f68b9106e79", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106d9c", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106d9c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106d9e", + "_tpl": "5e2aedd986f7746d404f3aa4", + "parentId": "66c90dc1c7d43f68b9106d9c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106e7d", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e7d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00285", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e7f", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc1c7d43f68b9106e7d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e81", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66c90dc1c7d43f68b9106e7d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106da0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106da0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106da2", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b9106da0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106e83", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e83", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00284", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e85", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66c90dc1c7d43f68b9106e83", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106e87", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e87", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e89", - "_tpl": "5d1b3f2d86f774253763b735", - "parentId": "66c90dc1c7d43f68b9106e87", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106da4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106da4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106da6", + "_tpl": "5ad5d49886f77455f9731921", + "parentId": "66c90dc1c7d43f68b9106da4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00283", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e8b", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66c90dc1c7d43f68b9106e87", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e8d", - "_tpl": "5c0e533786f7747fa23f4d47", - "parentId": "66c90dc1c7d43f68b9106e87", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106da8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106da8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106daa", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66c90dc1c7d43f68b9106da8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00197", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106e9d", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106e9d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106e9f", - "_tpl": "5672cb724bdc2dc2088b456b", - "parentId": "66c90dc1c7d43f68b9106e9d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00196", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ea1", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ea1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ea3", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc1c7d43f68b9106ea1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106dac", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106dac", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dae", + "_tpl": "590c35a486f774273531c822", + "parentId": "66c90dc1c7d43f68b9106dac", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106db0", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66c90dc1c7d43f68b9106dac", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00195", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ea5", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ea5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "n1", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ea7", - "_tpl": "590c651286f7741e566b6461", - "parentId": "66c90dc1c7d43f68b9106ea5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00194", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ea9", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ea9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106eab", - "_tpl": "590c621186f774138d11ea29", - "parentId": "66c90dc1c7d43f68b9106ea9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106db2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106db2", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106db4", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66c90dc1c7d43f68b9106db2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 7 + } + }, + { + "_id": "66c90dc1c7d43f68b9106db7", + "_tpl": "657023e7c5d7d4cb4d078552", + "parentId": "66c90dc1c7d43f68b9106db2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106db8", + "_tpl": "62330c18744e5e31df12f516", + "parentId": "66c90dc1c7d43f68b9106db7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dbb", + "_tpl": "5c1260dc86f7746b106e8748", + "parentId": "66c90dc1c7d43f68b9106db2", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dbc", + "_tpl": "5c0d688c86f77413ae3407b2", + "parentId": "66c90dc1c7d43f68b9106dbb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dbf", + "_tpl": "657025bbcfc010a0f5006a35", + "parentId": "66c90dc1c7d43f68b9106db2", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dc0", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66c90dc1c7d43f68b9106dbf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ead", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ead", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106eaf", - "_tpl": "5c1bc4812e22164bef5cfde7", - "parentId": "66c90dc1c7d43f68b9106ead", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106eb1", - "_tpl": "5a5f1ce64f39f90b401987bc", - "parentId": "66c90dc1c7d43f68b9106ead", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106dc2", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106dc2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106eb2", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "parentId": "66c90dc1c7d43f68b9106ead", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66c90dc1c7d43f68b9106dc4", + "_tpl": "5d1b385e86f774252167b98a", + "parentId": "66c90dc1c7d43f68b9106dc2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + { + "_id": "66c90dc1c7d43f68b9106dc6", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66c90dc1c7d43f68b9106dc2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00047", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106eb3", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "66c90dc1c7d43f68b9106eb2", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106eb7", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66c90dc1c7d43f68b9106eb3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 - } - }, - { - "_id": "66c90dc1c7d43f68b9106eb4", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "66c90dc1c7d43f68b9106eb2", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc1c7d43f68b9106eb5", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "66c90dc1c7d43f68b9106eb4", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc1c7d43f68b9106eb6", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "66c90dc1c7d43f68b9106eb2", - "slotId": "mod_pistolgrip" - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106eb9", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106eb9", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106ebb", - "_tpl": "57347da92459774491567cf5", - "parentId": "66c90dc1c7d43f68b9106eb9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106dc8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106dc8", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dc9", + "_tpl": "59e7711e86f7746cae05fbe1", + "parentId": "66c90dc1c7d43f68b9106dc8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dca", + "_tpl": "657ba50c23918923cb0df56c", + "parentId": "66c90dc1c7d43f68b9106dc9", + "slotId": "Helmet_top" + }, + { + "_id": "66c90dc1c7d43f68b9106dcb", + "_tpl": "657ba5439ba22f103e08139f", + "parentId": "66c90dc1c7d43f68b9106dc9", + "slotId": "Helmet_back" + }, + { + "_id": "66c90dc1c7d43f68b9106dcc", + "_tpl": "657ba57af58ba5a62501079e", + "parentId": "66c90dc1c7d43f68b9106dc9", + "slotId": "Helmet_ears" + }, + { + "_id": "66c90dc1c7d43f68b9106dce", + "_tpl": "5fd4c4fa16cac650092f6771", + "parentId": "66c90dc1c7d43f68b9106dc8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ebd", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ebd", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00189", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ebf", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66c90dc1c7d43f68b9106ebd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106dd0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106dd0", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 55 + { + "_id": "66c90dc1c7d43f68b9106dd2", + "_tpl": "590c37d286f77443be3d7827", + "parentId": "66c90dc1c7d43f68b9106dd0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00188", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ec1", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc1c7d43f68b9106ebd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106dd4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106dd4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 43 + { + "_id": "66c90dc1c7d43f68b9106dd6", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66c90dc1c7d43f68b9106dd4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00187", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ec3", - "_tpl": "5ede475339ee016e8c534742", - "parentId": "66c90dc1c7d43f68b9106ebd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106dd8", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106dd8", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dda", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c90dc1c7d43f68b9106dd8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00205", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ec5", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ec5", - "_tpl": "59139c2186f77411564f8e42", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00186", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ec7", - "_tpl": "590a386e86f77429692b27ab", - "parentId": "66c90dc1c7d43f68b9106ec5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ddc", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ddc", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dde", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b9106ddc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00027", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ec9", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ec9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00291", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ecb", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc1c7d43f68b9106ec9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106de0", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106de0", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106de2", + "_tpl": "5751496424597720a27126da", + "parentId": "66c90dc1c7d43f68b9106de0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ecd", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66c90dc1c7d43f68b9106ec9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106de4", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106de4", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106de6", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "66c90dc1c7d43f68b9106de4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106de8", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc1c7d43f68b9106de4", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dea", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66c90dc1c7d43f68b9106de4", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00170", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ecf", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66c90dc1c7d43f68b9106ec9", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106dec", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106dec", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106dee", + "_tpl": "618aef6d0a5a59657e5f55ee", + "parentId": "66c90dc1c7d43f68b9106dec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106df0", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66c90dc1c7d43f68b9106dec", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106df2", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66c90dc1c7d43f68b9106dec", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106df4", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66c90dc1c7d43f68b9106dec", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 25 + } + }, + { + "_id": "66c90dc1c7d43f68b9106df6", + "_tpl": "5cc80f67e4a949035e43bbba", + "parentId": "66c90dc1c7d43f68b9106dec", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 13 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00104", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ed1", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ed1", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00201", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ed3", - "_tpl": "5e569a2e56edd02abe09f280", - "parentId": "66c90dc1c7d43f68b9106ed1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106dfe", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106dfe", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e00", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "parentId": "66c90dc1c7d43f68b9106dfe", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ed5", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ed5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00192", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ed7", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66c90dc1c7d43f68b9106ed5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106e02", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e02", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e04", + "_tpl": "661e53149c8b4dadef008579", + "parentId": "66c90dc1c7d43f68b9106e02", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e06", + "_tpl": "618ba27d9008e4636a67f61d", + "parentId": "66c90dc1c7d43f68b9106e02", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106e08", + "_tpl": "623c2f4242aee3103f1c44b7", + "parentId": "66c90dc1c7d43f68b9106e02", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ed9", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc1c7d43f68b9106ed5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106e0a", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e0a", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106e0c", + "_tpl": "62a0a124de7ac81993580542", + "parentId": "66c90dc1c7d43f68b9106e0a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00181", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106edb", - "_tpl": "590c5f0d86f77413997acfab", - "parentId": "66c90dc1c7d43f68b9106ed5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106e14", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e14", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e16", + "_tpl": "5751496424597720a27126da", + "parentId": "66c90dc1c7d43f68b9106e14", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00054", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106edd", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106edd", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00278", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106edf", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66c90dc1c7d43f68b9106edd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106e18", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e18", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e1a", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106e18", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 800 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00160", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ee1", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ee1", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ee3", - "_tpl": "5d6fc87386f77449db3db94e", - "parentId": "66c90dc1c7d43f68b9106ee1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00161", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ee5", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ee5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ee7", - "_tpl": "5e54f79686f7744022011103", - "parentId": "66c90dc1c7d43f68b9106ee5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106e20", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e20", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e22", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66c90dc1c7d43f68b9106e20", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e24", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66c90dc1c7d43f68b9106e20", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00233", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ee9", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ee9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00211", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106eeb", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c90dc1c7d43f68b9106ee9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00232", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106eed", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106eed", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106eef", - "_tpl": "5d80cb8786f774405611c7d9", - "parentId": "66c90dc1c7d43f68b9106eed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106e26", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e26", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e28", + "_tpl": "5d00ede1d7ad1a0940739a76", + "parentId": "66c90dc1c7d43f68b9106e26", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e29", + "_tpl": "6499849fc93611967b034949", + "parentId": "66c90dc1c7d43f68b9106e26", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c90dc1c7d43f68b9106e2a", + "_tpl": "649ec107961514b22506b10c", + "parentId": "66c90dc1c7d43f68b9106e29", + "slotId": "mod_gas_block" + }, + { + "_id": "66c90dc1c7d43f68b9106e2b", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "66c90dc1c7d43f68b9106e29", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc1c7d43f68b9106e2c", + "_tpl": "649ec127c93611967b034957", + "parentId": "66c90dc1c7d43f68b9106e29", + "slotId": "mod_handguard" + }, + { + "_id": "66c90dc1c7d43f68b9106e2d", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "66c90dc1c7d43f68b9106e2c", + "slotId": "mod_mount_001" + }, + { + "_id": "66c90dc1c7d43f68b9106e2e", + "_tpl": "649ec2af961514b22506b10f", + "parentId": "66c90dc1c7d43f68b9106e29", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc1c7d43f68b9106e2f", + "_tpl": "649ec2f3961514b22506b111", + "parentId": "66c90dc1c7d43f68b9106e29", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc1c7d43f68b9106e30", + "_tpl": "649ec2da59cbb3c813042dca", + "parentId": "66c90dc1c7d43f68b9106e2f", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b9106e31", + "_tpl": "649ec2cec93611967b03495e", + "parentId": "66c90dc1c7d43f68b9106e30", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b9106e32", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "66c90dc1c7d43f68b9106e29", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106e35", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c90dc1c7d43f68b9106e32", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15.0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e33", + "_tpl": "649ec87d8007560a9001ab36", + "parentId": "66c90dc1c7d43f68b9106e29", + "slotId": "mod_stock_001" + }, + { + "_id": "66c90dc1c7d43f68b9106e34", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "66c90dc1c7d43f68b9106e33", + "slotId": "mod_stock" + }, + { + "_id": "66c90dc1c7d43f68b9106e37", + "_tpl": "6389f1dfc879ce63f72fc43e", + "parentId": "66c90dc1c7d43f68b9106e26", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e38", + "_tpl": "669fa409933e898cce0c2166", + "parentId": "66c90dc1c7d43f68b9106e26", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c90dc1c7d43f68b9106e39", + "_tpl": "669fa4c61bd4416eaa09b3ca", + "parentId": "66c90dc1c7d43f68b9106e38", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc1c7d43f68b9106e3a", + "_tpl": "668fe5ec4315934ba10c6f96", + "parentId": "66c90dc1c7d43f68b9106e39", + "slotId": "mod_sight_front" + }, + { + "_id": "66c90dc1c7d43f68b9106e3b", + "_tpl": "66a0da76b6f47fcfeb025e96", + "parentId": "66c90dc1c7d43f68b9106e38", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66c90dc1c7d43f68b9106e3c", + "_tpl": "669fa5127a09bc295603b499", + "parentId": "66c90dc1c7d43f68b9106e38", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc1c7d43f68b9106e3d", + "_tpl": "668fe5e1800f0244f9036e46", + "parentId": "66c90dc1c7d43f68b9106e3c", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b9106e3e", + "_tpl": "669fa435803b94fb5d0e3a76", + "parentId": "66c90dc1c7d43f68b9106e38", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106e3f", + "_tpl": "62330b3ed4dc74626d570b95", + "parentId": "66c90dc1c7d43f68b9106e3e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e41", + "_tpl": "622f14e899892a7f9e08f6c5", + "parentId": "66c90dc1c7d43f68b9106e26", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00231", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ef1", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ef1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00193", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ef3", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66c90dc1c7d43f68b9106ef1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00230", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106ef5", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ef5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106ef7", - "_tpl": "5e2aedd986f7746d404f3aa4", - "parentId": "66c90dc1c7d43f68b9106ef5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106e43", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e43", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e45", + "_tpl": "5f5f41f56760b4138443b352", + "parentId": "66c90dc1c7d43f68b9106e43", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e47", + "_tpl": "62669bccdb9ebb4daa44cd14", + "parentId": "66c90dc1c7d43f68b9106e43", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00173", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106ef9", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106ef9", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106efb", - "_tpl": "573601b42459776410737435", - "parentId": "66c90dc1c7d43f68b9106ef9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 8 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106efd", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66c90dc1c7d43f68b9106ef9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106e49", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e49", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e4b", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66c90dc1c7d43f68b9106e49", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e4d", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66c90dc1c7d43f68b9106e49", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 35 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00171", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106eff", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106eff", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00121", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f01", - "_tpl": "57513f07245977207e26a311", - "parentId": "66c90dc1c7d43f68b9106eff", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f03", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66c90dc1c7d43f68b9106eff", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106e4f", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e4f", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106f05", - "_tpl": "590c311186f77424d1667482", - "parentId": "66c90dc1c7d43f68b9106eff", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106e51", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "66c90dc1c7d43f68b9106e4f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 11 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e53", + "_tpl": "5a788169c5856700142fdd9e", + "parentId": "66c90dc1c7d43f68b9106e4f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e55", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "66c90dc1c7d43f68b9106e4f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e57", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66c90dc1c7d43f68b9106e4f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 40 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e59", + "_tpl": "622f14e899892a7f9e08f6c5", + "parentId": "66c90dc1c7d43f68b9106e4f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e5b", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66c90dc1c7d43f68b9106e4f", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 7 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e5d", + "_tpl": "5c9a1c3a2e2216000e69fb6a", + "parentId": "66c90dc1c7d43f68b9106e4f", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e5f", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66c90dc1c7d43f68b9106e4f", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00202", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106f07", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106f07", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00261", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f09", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "66c90dc1c7d43f68b9106f07", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f0b", - "_tpl": "59e35abd86f7741778269d82", - "parentId": "66c90dc1c7d43f68b9106f07", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106e6d", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e6d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106f0d", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66c90dc1c7d43f68b9106f07", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106e6f", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b9106e6d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00163", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106f0f", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106f0f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00260", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f11", - "_tpl": "57505f6224597709a92585a9", - "parentId": "66c90dc1c7d43f68b9106f0f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00085", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106f19", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106f19", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f1b", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66c90dc1c7d43f68b9106f19", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106e71", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e71", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc1c7d43f68b9106f1d", - "_tpl": "57347c93245977448d35f6e3", - "parentId": "66c90dc1c7d43f68b9106f19", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106e73", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dc1c7d43f68b9106e71", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00172", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106f1f", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106f1f", - "_tpl": "5c052cea86f7746b2101e8d8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00259", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f21", - "_tpl": "57347d692459774491567cf1", - "parentId": "66c90dc1c7d43f68b9106f1f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00042", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106f23", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106f23", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f24", - "_tpl": "60339954d62c9b14ed777c06", - "parentId": "66c90dc1c7d43f68b9106f23", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106e75", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e75", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66c90dc1c7d43f68b9106e77", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66c90dc1c7d43f68b9106e75", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00258", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f25", - "_tpl": "602e71bd53a60014f9705bfa", - "parentId": "66c90dc1c7d43f68b9106f24", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66c90dc1c7d43f68b9106f26", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "66c90dc1c7d43f68b9106f24", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f2f", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66c90dc1c7d43f68b9106f26", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106e79", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e79", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e7b", + "_tpl": "5ad5cfbd86f7742c825d6104", + "parentId": "66c90dc1c7d43f68b9106e79", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66c90dc1c7d43f68b9106f27", - "_tpl": "602e63fb6335467b0c5ac94d", - "parentId": "66c90dc1c7d43f68b9106f24", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc1c7d43f68b9106f28", - "_tpl": "603372b4da11d6478d5a07ff", - "parentId": "66c90dc1c7d43f68b9106f27", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dc1c7d43f68b9106f29", - "_tpl": "60337f5dce399e10262255d1", - "parentId": "66c90dc1c7d43f68b9106f28", - "slotId": "mod_muzzle" - }, - { - "_id": "66c90dc1c7d43f68b9106f2a", - "_tpl": "6034e3cb0ddce744014cb870", - "parentId": "66c90dc1c7d43f68b9106f27", - "slotId": "mod_handguard" - }, - { - "_id": "66c90dc1c7d43f68b9106f2b", - "_tpl": "602e3f1254072b51b239f713", - "parentId": "66c90dc1c7d43f68b9106f24", - "slotId": "mod_stock_001" - }, - { - "_id": "66c90dc1c7d43f68b9106f2c", - "_tpl": "602e620f9b513876d4338d9a", - "parentId": "66c90dc1c7d43f68b9106f2b", - "slotId": "mod_stock_000" - }, - { - "_id": "66c90dc1c7d43f68b9106f2d", - "_tpl": "6033749e88382f4fab3fd2c5", - "parentId": "66c90dc1c7d43f68b9106f24", - "slotId": "mod_charge" - }, - { - "_id": "66c90dc1c7d43f68b9106f2e", - "_tpl": "602f85fd9b513876d4338d9c", - "parentId": "66c90dc1c7d43f68b9106f24", - "slotId": "mod_tactical_000" - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00178", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106f37", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106f37", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f39", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66c90dc1c7d43f68b9106f37", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00282", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc1c7d43f68b9106f3b", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106f3b", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f3d", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc1c7d43f68b9106f3b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 977 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106e7d", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e7d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e7f", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc1c7d43f68b9106e7d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e81", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66c90dc1c7d43f68b9106e7d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00130", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc1c7d43f68b9106f3f", - "Items": [ - { - "_id": "66c90dc1c7d43f68b9106f3f", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f41", - "_tpl": "5d40419286f774318526545f", - "parentId": "66c90dc1c7d43f68b9106f3f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc1c7d43f68b9106f43", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc1c7d43f68b9106f3f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106e83", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e83", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e85", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66c90dc1c7d43f68b9106e83", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00131", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9106f57", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f57", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f59", - "_tpl": "590c2d8786f774245b1f03f3", - "parentId": "66c90dc2c7d43f68b9106f57", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f5b", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc2c7d43f68b9106f57", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106e87", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e87", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e89", + "_tpl": "5d1b3f2d86f774253763b735", + "parentId": "66c90dc1c7d43f68b9106e87", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e8b", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66c90dc1c7d43f68b9106e87", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e8d", + "_tpl": "5c0e533786f7747fa23f4d47", + "parentId": "66c90dc1c7d43f68b9106e87", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00253", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f5d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f5d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00197", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f5f", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66c90dc2c7d43f68b9106f5d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00252", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f61", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f61", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f63", - "_tpl": "573476d324597737da2adc13", - "parentId": "66c90dc2c7d43f68b9106f61", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106e9d", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106e9d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106e9f", + "_tpl": "5672cb724bdc2dc2088b456b", + "parentId": "66c90dc1c7d43f68b9106e9d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00251", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f65", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f65", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00196", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f67", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66c90dc2c7d43f68b9106f65", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00250", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f69", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f69", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f6b", - "_tpl": "5ad5d49886f77455f9731921", - "parentId": "66c90dc2c7d43f68b9106f69", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ea1", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ea1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ea3", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc1c7d43f68b9106ea1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00292", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f6d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f6d", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00195", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f6f", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66c90dc2c7d43f68b9106f6d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f71", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc2c7d43f68b9106f6d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ea5", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ea5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9106f73", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66c90dc2c7d43f68b9106f6d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106ea7", + "_tpl": "590c651286f7741e566b6461", + "parentId": "66c90dc1c7d43f68b9106ea5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00257", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f79", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f79", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00194", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f7b", - "_tpl": "573476f124597737e04bf328", - "parentId": "66c90dc2c7d43f68b9106f79", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00256", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f7d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f7d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f7f", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc2c7d43f68b9106f7d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ea9", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ea9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106eab", + "_tpl": "590c621186f774138d11ea29", + "parentId": "66c90dc1c7d43f68b9106ea9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00255", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f81", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f81", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f83", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc2c7d43f68b9106f81", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ead", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ead", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106eaf", + "_tpl": "5c1bc4812e22164bef5cfde7", + "parentId": "66c90dc1c7d43f68b9106ead", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106eb1", + "_tpl": "5a5f1ce64f39f90b401987bc", + "parentId": "66c90dc1c7d43f68b9106ead", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106eb2", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "parentId": "66c90dc1c7d43f68b9106ead", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c90dc1c7d43f68b9106eb3", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "66c90dc1c7d43f68b9106eb2", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106eb7", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66c90dc1c7d43f68b9106eb3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106eb4", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "66c90dc1c7d43f68b9106eb2", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc1c7d43f68b9106eb5", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "66c90dc1c7d43f68b9106eb4", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc1c7d43f68b9106eb6", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "66c90dc1c7d43f68b9106eb2", + "slotId": "mod_pistolgrip" } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00254", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f85", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f85", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f87", - "_tpl": "5734770f24597738025ee254", - "parentId": "66c90dc2c7d43f68b9106f85", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106eb9", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106eb9", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ebb", + "_tpl": "57347da92459774491567cf5", + "parentId": "66c90dc1c7d43f68b9106eb9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00118", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9106f89", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f89", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f8b", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66c90dc2c7d43f68b9106f89", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ebd", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ebd", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ebf", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66c90dc1c7d43f68b9106ebd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 55 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ec1", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc1c7d43f68b9106ebd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 43 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106ec3", + "_tpl": "5ede475339ee016e8c534742", + "parentId": "66c90dc1c7d43f68b9106ebd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00205", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f8d", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66c90dc2c7d43f68b9106f89", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ec5", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ec5", + "_tpl": "59139c2186f77411564f8e42", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106ec7", + "_tpl": "590a386e86f77429692b27ab", + "parentId": "66c90dc1c7d43f68b9106ec5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00027", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f8f", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "66c90dc2c7d43f68b9106f89", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ec9", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ec9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ecb", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc1c7d43f68b9106ec9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ecd", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66c90dc1c7d43f68b9106ec9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ecf", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66c90dc1c7d43f68b9106ec9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00237", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f91", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f91", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00104", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f93", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66c90dc2c7d43f68b9106f91", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ed1", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ed1", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ed3", + "_tpl": "5e569a2e56edd02abe09f280", + "parentId": "66c90dc1c7d43f68b9106ed1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00236", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f95", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f95", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f97", - "_tpl": "5734795124597738002c6176", - "parentId": "66c90dc2c7d43f68b9106f95", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ed5", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ed5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ed7", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66c90dc1c7d43f68b9106ed5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ed9", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc1c7d43f68b9106ed5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106edb", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "66c90dc1c7d43f68b9106ed5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00235", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f99", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f99", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00054", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f9b", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66c90dc2c7d43f68b9106f99", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 90 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106edd", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106edd", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106edf", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66c90dc1c7d43f68b9106edd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00234", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106f9d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106f9d", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00160", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106f9f", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66c90dc2c7d43f68b9106f9d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ee1", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ee1", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ee3", + "_tpl": "5d6fc87386f77449db3db94e", + "parentId": "66c90dc1c7d43f68b9106ee1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00174", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9106fa1", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106fa1", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00161", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fa3", - "_tpl": "5d80c62a86f7744036212b3f", - "parentId": "66c90dc2c7d43f68b9106fa1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00185", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106fa5", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106fa5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fa7", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc2c7d43f68b9106fa5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ee5", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ee5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106ee7", + "_tpl": "5e54f79686f7744022011103", + "parentId": "66c90dc1c7d43f68b9106ee5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00184", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106fa9", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106fa9", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00233", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fab", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66c90dc2c7d43f68b9106fa9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00183", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106fad", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106fad", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106faf", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "66c90dc2c7d43f68b9106fad", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ee9", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ee9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106eeb", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c90dc1c7d43f68b9106ee9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00182", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106fb1", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106fb1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00232", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fb3", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "parentId": "66c90dc2c7d43f68b9106fb1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_02_DesignStuff_00167", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106fb5", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106fb5", - "_tpl": "578f879c24597735401e6bc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fb7", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66c90dc2c7d43f68b9106fb5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 590 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106eed", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106eed", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106eef", + "_tpl": "5d80cb8786f774405611c7d9", + "parentId": "66c90dc1c7d43f68b9106eed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_04_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9106fbd", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106fbd", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00231", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fbf", - "_tpl": "65f05b9d39dab9e9ec049cfd", - "parentId": "66c90dc2c7d43f68b9106fbd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fc1", - "_tpl": "6415d33eda439c6a97048b5b", - "parentId": "66c90dc2c7d43f68b9106fbd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ef1", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ef1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106ef3", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66c90dc1c7d43f68b9106ef1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00230", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fc3", - "_tpl": "625ff31daaaa8c1130599f64", - "parentId": "66c90dc2c7d43f68b9106fbd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fc5", - "_tpl": "618b9682a3884f56c957ca78", - "parentId": "66c90dc2c7d43f68b9106fbd", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106ef5", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ef5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106ef7", + "_tpl": "5e2aedd986f7746d404f3aa4", + "parentId": "66c90dc1c7d43f68b9106ef5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00173", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fc7", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66c90dc2c7d43f68b9106fbd", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 2 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fc9", - "_tpl": "5df8e085bb49d91fb446d6a8", - "parentId": "66c90dc2c7d43f68b9106fbd", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106ef9", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106ef9", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9106fcb", - "_tpl": "5d6e68d1a4b93622fe60e845", - "parentId": "66c90dc2c7d43f68b9106fbd", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + { + "_id": "66c90dc1c7d43f68b9106efb", + "_tpl": "573601b42459776410737435", + "parentId": "66c90dc1c7d43f68b9106ef9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } }, - "upd": { - "StackObjectsCount": 3 + { + "_id": "66c90dc1c7d43f68b9106efd", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66c90dc1c7d43f68b9106ef9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00171", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fcd", - "_tpl": "5b39ffbd5acfc47a8773fb06", - "parentId": "66c90dc2c7d43f68b9106fbd", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fcf", - "_tpl": "5cf79389d7f00c10941a0c4d", - "parentId": "66c90dc2c7d43f68b9106fbd", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106eff", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106eff", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f01", + "_tpl": "57513f07245977207e26a311", + "parentId": "66c90dc1c7d43f68b9106eff", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f03", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66c90dc1c7d43f68b9106eff", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f05", + "_tpl": "590c311186f77424d1667482", + "parentId": "66c90dc1c7d43f68b9106eff", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_04_DesignStuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9106fdd", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106fdd", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9106fde", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66c90dc2c7d43f68b9106fdd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66c90dc2c7d43f68b9106fdf", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66c90dc2c7d43f68b9106fde", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dc2c7d43f68b9106fe0", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66c90dc2c7d43f68b9106fde", - "slotId": "mod_pistol_grip" + { + "Id": "container_City_SW_02_DesignStuff_00202", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fe1", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66c90dc2c7d43f68b9106fde", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fe2", - "_tpl": "5736026a245977644601dc61", - "parentId": "66c90dc2c7d43f68b9106fe1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106f07", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106f07", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f09", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "66c90dc1c7d43f68b9106f07", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f0b", + "_tpl": "59e35abd86f7741778269d82", + "parentId": "66c90dc1c7d43f68b9106f07", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f0d", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66c90dc1c7d43f68b9106f07", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106fe4", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106fe4", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00163", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fe6", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66c90dc2c7d43f68b9106fe4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106f0f", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106f0f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f11", + "_tpl": "57505f6224597709a92585a9", + "parentId": "66c90dc1c7d43f68b9106f0f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9106fec", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106fec", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00085", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106fee", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dc2c7d43f68b9106fec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106f19", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106f19", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f1b", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66c90dc1c7d43f68b9106f19", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f1d", + "_tpl": "57347c93245977448d35f6e3", + "parentId": "66c90dc1c7d43f68b9106f19", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_04_DesignStuff_00014", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9106ff0", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106ff0", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00172", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106ff2", - "_tpl": "6176a48d732a664031271438", - "parentId": "66c90dc2c7d43f68b9106ff0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106f1f", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106f1f", + "_tpl": "5c052cea86f7746b2101e8d8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106f21", + "_tpl": "57347d692459774491567cf1", + "parentId": "66c90dc1c7d43f68b9106f1f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00042", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106ff4", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66c90dc2c7d43f68b9106ff0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_04_DesignStuff_00011", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9106ff6", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9106ff6", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9106ff8", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66c90dc2c7d43f68b9106ff6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106f23", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106f23", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f24", + "_tpl": "60339954d62c9b14ed777c06", + "parentId": "66c90dc1c7d43f68b9106f23", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c90dc1c7d43f68b9106f25", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "66c90dc1c7d43f68b9106f24", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc1c7d43f68b9106f26", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "66c90dc1c7d43f68b9106f24", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc1c7d43f68b9106f2f", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66c90dc1c7d43f68b9106f26", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18.0 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f27", + "_tpl": "602e63fb6335467b0c5ac94d", + "parentId": "66c90dc1c7d43f68b9106f24", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc1c7d43f68b9106f28", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "66c90dc1c7d43f68b9106f27", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc1c7d43f68b9106f29", + "_tpl": "60337f5dce399e10262255d1", + "parentId": "66c90dc1c7d43f68b9106f28", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc1c7d43f68b9106f2a", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "66c90dc1c7d43f68b9106f27", + "slotId": "mod_handguard" + }, + { + "_id": "66c90dc1c7d43f68b9106f2b", + "_tpl": "602e3f1254072b51b239f713", + "parentId": "66c90dc1c7d43f68b9106f24", + "slotId": "mod_stock_001" + }, + { + "_id": "66c90dc1c7d43f68b9106f2c", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "66c90dc1c7d43f68b9106f2b", + "slotId": "mod_stock_000" + }, + { + "_id": "66c90dc1c7d43f68b9106f2d", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "66c90dc1c7d43f68b9106f24", + "slotId": "mod_charge" + }, + { + "_id": "66c90dc1c7d43f68b9106f2e", + "_tpl": "602f85fd9b513876d4338d9c", + "parentId": "66c90dc1c7d43f68b9106f24", + "slotId": "mod_tactical_000" } - } - ] - }, - { - "Id": "container_City_SW_04_DesignStuff_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107000", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107000", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00178", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107002", - "_tpl": "573601b42459776410737435", - "parentId": "66c90dc2c7d43f68b9107000", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "container_City_SW_04_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107004", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107004", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107006", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66c90dc2c7d43f68b9107004", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106f37", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106f37", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106f39", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66c90dc1c7d43f68b9106f37", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00282", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107008", - "_tpl": "577e1c9d2459773cd707c525", - "parentId": "66c90dc2c7d43f68b9107004", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910700a", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66c90dc2c7d43f68b9107004", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc1c7d43f68b9106f3b", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106f3b", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc1c7d43f68b9106f3d", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc1c7d43f68b9106f3b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 977 + } } - } - ] - }, - { - "Id": "container_City_SW_04_DesignStuff_00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910700c", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910700c", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00130", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910700e", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66c90dc2c7d43f68b910700c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107010", - "_tpl": "57513fcc24597720a31c09a6", - "parentId": "66c90dc2c7d43f68b910700c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc1c7d43f68b9106f3f", + "Items": [ + { + "_id": "66c90dc1c7d43f68b9106f3f", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107012", - "_tpl": "5e4abc1f86f774069619fbaa", - "parentId": "66c90dc2c7d43f68b910700c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + { + "_id": "66c90dc1c7d43f68b9106f41", + "_tpl": "5d40419286f774318526545f", + "parentId": "66c90dc1c7d43f68b9106f3f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc1c7d43f68b9106f43", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc1c7d43f68b9106f3f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00131", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107014", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c90dc2c7d43f68b910700c", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 56 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107016", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66c90dc2c7d43f68b910700c", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 48 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9106f57", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f57", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f59", + "_tpl": "590c2d8786f774245b1f03f3", + "parentId": "66c90dc2c7d43f68b9106f57", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f5b", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc2c7d43f68b9106f57", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107028", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107028", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00253", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910702a", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66c90dc2c7d43f68b9107028", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_City_SW_05_DesignStuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910702c", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910702c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910702e", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66c90dc2c7d43f68b910702c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f5d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f5d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc2c7d43f68b9106f5f", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66c90dc2c7d43f68b9106f5d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00252", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107030", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66c90dc2c7d43f68b910702c", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107032", - "_tpl": "59e366c186f7741778269d85", - "parentId": "66c90dc2c7d43f68b910702c", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f61", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f61", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f63", + "_tpl": "573476d324597737da2adc13", + "parentId": "66c90dc2c7d43f68b9106f61", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_05_DesignStuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107034", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107034", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00251", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107036", - "_tpl": "588226dd24597767ad33f789", - "parentId": "66c90dc2c7d43f68b9107034", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107038", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66c90dc2c7d43f68b9107034", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f65", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f65", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc2c7d43f68b9106f67", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66c90dc2c7d43f68b9106f65", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00250", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910703a", - "_tpl": "5aa2b87de5b5b00016327c25", - "parentId": "66c90dc2c7d43f68b9107034", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f69", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f69", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc2c7d43f68b9106f6b", + "_tpl": "5ad5d49886f77455f9731921", + "parentId": "66c90dc2c7d43f68b9106f69", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00292", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910703c", - "_tpl": "5aa2ba46e5b5b000137b758d", - "parentId": "66c90dc2c7d43f68b9107034", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f6d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f6d", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f6f", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66c90dc2c7d43f68b9106f6d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f71", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc2c7d43f68b9106f6d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f73", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66c90dc2c7d43f68b9106f6d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_City_SW_05_DesignStuff_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910703e", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910703e", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_City_SW_02_DesignStuff_00257", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107040", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66c90dc2c7d43f68b910703e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f79", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f79", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc2c7d43f68b9106f7b", + "_tpl": "573476f124597737e04bf328", + "parentId": "66c90dc2c7d43f68b9106f79", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00256", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107041", - "_tpl": "5df8a58286f77412631087ed", - "parentId": "66c90dc2c7d43f68b910703e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107042", - "_tpl": "657ba096e57570b7f80a17fb", - "parentId": "66c90dc2c7d43f68b9107041", - "slotId": "Helmet_top" - }, - { - "_id": "66c90dc2c7d43f68b9107043", - "_tpl": "657ba145e57570b7f80a17ff", - "parentId": "66c90dc2c7d43f68b9107041", - "slotId": "Helmet_back" - }, - { - "_id": "66c90dc2c7d43f68b9107044", - "_tpl": "657ba18923918923cb0df568", - "parentId": "66c90dc2c7d43f68b9107041", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "Lootable_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107046", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107046", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107048", - "_tpl": "5751496424597720a27126da", - "parentId": "66c90dc2c7d43f68b9107046", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "stationary_City_Design_Main_2ST_REWORK_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9107049", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107049", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f7d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f7d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f7f", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc2c7d43f68b9106f7d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00255", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910704a", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66c90dc2c7d43f68b9107049", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910704b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f81", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f81", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f83", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc2c7d43f68b9106f81", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00254", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910704c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910704d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f85", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f85", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f87", + "_tpl": "5734770f24597738025ee254", + "parentId": "66c90dc2c7d43f68b9106f85", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00118", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910704e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 3 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910704f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9106f89", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f89", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f8b", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66c90dc2c7d43f68b9106f89", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f8d", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66c90dc2c7d43f68b9106f89", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f8f", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "66c90dc2c7d43f68b9106f89", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00237", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107050", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 5 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107051", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f91", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f91", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f93", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66c90dc2c7d43f68b9106f91", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00236", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107052", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 7 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107053", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f95", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f95", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f97", + "_tpl": "5734795124597738002c6176", + "parentId": "66c90dc2c7d43f68b9106f95", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00235", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107054", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 9 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107055", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f99", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f99", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f9b", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66c90dc2c7d43f68b9106f99", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 90 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00234", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107056", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 11 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107057", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106f9d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106f9d", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106f9f", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66c90dc2c7d43f68b9106f9d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00174", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107058", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 13 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107059", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9106fa1", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106fa1", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fa3", + "_tpl": "5d80c62a86f7744036212b3f", + "parentId": "66c90dc2c7d43f68b9106fa1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00185", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910705a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 15 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910705b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106fa5", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106fa5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fa7", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc2c7d43f68b9106fa5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00184", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910705c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 17 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910705d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106fa9", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106fa9", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fab", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66c90dc2c7d43f68b9106fa9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00183", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910705e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 19 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910705f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106fad", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106fad", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106faf", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "66c90dc2c7d43f68b9106fad", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00182", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107060", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 21 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107061", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106fb1", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106fb1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fb3", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "parentId": "66c90dc2c7d43f68b9106fb1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_02_DesignStuff_00167", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107062", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 23 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107063", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106fb5", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106fb5", + "_tpl": "578f879c24597735401e6bc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fb7", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66c90dc2c7d43f68b9106fb5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 590 + } } + ] + }, + { + "Id": "container_City_SW_04_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107064", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 25 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107065", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9106fbd", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106fbd", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fbf", + "_tpl": "65f05b9d39dab9e9ec049cfd", + "parentId": "66c90dc2c7d43f68b9106fbd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fc1", + "_tpl": "6415d33eda439c6a97048b5b", + "parentId": "66c90dc2c7d43f68b9106fbd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fc3", + "_tpl": "625ff31daaaa8c1130599f64", + "parentId": "66c90dc2c7d43f68b9106fbd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fc5", + "_tpl": "618b9682a3884f56c957ca78", + "parentId": "66c90dc2c7d43f68b9106fbd", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fc7", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66c90dc2c7d43f68b9106fbd", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 2 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fc9", + "_tpl": "5df8e085bb49d91fb446d6a8", + "parentId": "66c90dc2c7d43f68b9106fbd", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fcb", + "_tpl": "5d6e68d1a4b93622fe60e845", + "parentId": "66c90dc2c7d43f68b9106fbd", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fcd", + "_tpl": "5b39ffbd5acfc47a8773fb06", + "parentId": "66c90dc2c7d43f68b9106fbd", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fcf", + "_tpl": "5cf79389d7f00c10941a0c4d", + "parentId": "66c90dc2c7d43f68b9106fbd", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_04_DesignStuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107066", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66c90dc2c7d43f68b9107067", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107068", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66c90dc2c7d43f68b9107069", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910706a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 31 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910706b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9106fdd", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106fdd", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fde", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66c90dc2c7d43f68b9106fdd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fdf", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66c90dc2c7d43f68b9106fde", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc2c7d43f68b9106fe0", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66c90dc2c7d43f68b9106fde", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66c90dc2c7d43f68b9106fe1", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66c90dc2c7d43f68b9106fde", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b9106fe2", + "_tpl": "5736026a245977644601dc61", + "parentId": "66c90dc2c7d43f68b9106fe1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } } + ] + }, + { + "Id": "Lootable_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910706c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 33 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910706d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106fe4", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106fe4", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fe6", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66c90dc2c7d43f68b9106fe4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910706e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 35 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910706f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9106fec", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106fec", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106fee", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dc2c7d43f68b9106fec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_04_DesignStuff_00014", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107070", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 37 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107071", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9106ff0", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106ff0", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106ff2", + "_tpl": "6176a48d732a664031271438", + "parentId": "66c90dc2c7d43f68b9106ff0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106ff4", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66c90dc2c7d43f68b9106ff0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_04_DesignStuff_00011", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107072", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 39 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107073", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9106ff6", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9106ff6", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9106ff8", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66c90dc2c7d43f68b9106ff6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_04_DesignStuff_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107074", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 41 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107075", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107000", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107000", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107002", + "_tpl": "573601b42459776410737435", + "parentId": "66c90dc2c7d43f68b9107000", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "container_City_SW_04_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107076", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 43 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107077", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107004", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107004", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107006", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66c90dc2c7d43f68b9107004", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107008", + "_tpl": "577e1c9d2459773cd707c525", + "parentId": "66c90dc2c7d43f68b9107004", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910700a", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66c90dc2c7d43f68b9107004", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_04_DesignStuff_00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107078", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 45 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107079", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910700c", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910700c", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910700e", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66c90dc2c7d43f68b910700c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107010", + "_tpl": "57513fcc24597720a31c09a6", + "parentId": "66c90dc2c7d43f68b910700c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107012", + "_tpl": "5e4abc1f86f774069619fbaa", + "parentId": "66c90dc2c7d43f68b910700c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107014", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c90dc2c7d43f68b910700c", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 56 + } + }, + { + "_id": "66c90dc2c7d43f68b9107016", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66c90dc2c7d43f68b910700c", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 48 + } } + ] + }, + { + "Id": "Lootable_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910707a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66c90dc2c7d43f68b910707b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910707c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910704a", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "stationary_City_Design_Main_2ST_REWORK_00003", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b910707d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910707d", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107028", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107028", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910702a", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66c90dc2c7d43f68b9107028", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_City_SW_05_DesignStuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910707e", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66c90dc2c7d43f68b910707d", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910707f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910702c", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910702c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910702e", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66c90dc2c7d43f68b910702c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107030", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66c90dc2c7d43f68b910702c", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107032", + "_tpl": "59e366c186f7741778269d85", + "parentId": "66c90dc2c7d43f68b910702c", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_05_DesignStuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107080", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107081", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107034", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107034", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107036", + "_tpl": "588226dd24597767ad33f789", + "parentId": "66c90dc2c7d43f68b9107034", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107038", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66c90dc2c7d43f68b9107034", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910703a", + "_tpl": "5aa2b87de5b5b00016327c25", + "parentId": "66c90dc2c7d43f68b9107034", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910703c", + "_tpl": "5aa2ba46e5b5b000137b758d", + "parentId": "66c90dc2c7d43f68b9107034", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_City_SW_05_DesignStuff_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107082", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 3 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107083", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910703e", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910703e", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107040", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66c90dc2c7d43f68b910703e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107041", + "_tpl": "5df8a58286f77412631087ed", + "parentId": "66c90dc2c7d43f68b910703e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66c90dc2c7d43f68b9107042", + "_tpl": "657ba096e57570b7f80a17fb", + "parentId": "66c90dc2c7d43f68b9107041", + "slotId": "Helmet_top" + }, + { + "_id": "66c90dc2c7d43f68b9107043", + "_tpl": "657ba145e57570b7f80a17ff", + "parentId": "66c90dc2c7d43f68b9107041", + "slotId": "Helmet_back" + }, + { + "_id": "66c90dc2c7d43f68b9107044", + "_tpl": "657ba18923918923cb0df568", + "parentId": "66c90dc2c7d43f68b9107041", + "slotId": "Helmet_ears" } + ] + }, + { + "Id": "Lootable_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107084", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 5 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107085", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107046", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107046", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107048", + "_tpl": "5751496424597720a27126da", + "parentId": "66c90dc2c7d43f68b9107046", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "stationary_City_Design_Main_2ST_REWORK_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107086", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 7 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107087", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107088", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66c90dc2c7d43f68b9107089", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910708a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66c90dc2c7d43f68b910708b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910708c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66c90dc2c7d43f68b910708d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910708e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66c90dc2c7d43f68b910708f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107090", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66c90dc2c7d43f68b9107091", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107092", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66c90dc2c7d43f68b9107093", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107094", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66c90dc2c7d43f68b9107095", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107096", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66c90dc2c7d43f68b9107097", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107098", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66c90dc2c7d43f68b9107099", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910709a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66c90dc2c7d43f68b910709b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910709c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66c90dc2c7d43f68b910709d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910709e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66c90dc2c7d43f68b910709f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070a0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66c90dc2c7d43f68b91070a1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070a2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66c90dc2c7d43f68b91070a3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070a4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66c90dc2c7d43f68b91070a5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070a6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66c90dc2c7d43f68b91070a7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070a8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66c90dc2c7d43f68b91070a9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070aa", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66c90dc2c7d43f68b91070ab", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070ac", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66c90dc2c7d43f68b91070ad", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070ae", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66c90dc2c7d43f68b91070af", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070b0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910707e", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "Utes_01", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b91070b1", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91070b1", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9107049", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107049", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } } - } - }, - { - "_id": "66c90dc2c7d43f68b91070b2", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66c90dc2c7d43f68b91070b1", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc2c7d43f68b91070b3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070b4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66c90dc2c7d43f68b91070b5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070b6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66c90dc2c7d43f68b91070b7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070b8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66c90dc2c7d43f68b91070b9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070ba", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66c90dc2c7d43f68b91070bb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070bc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66c90dc2c7d43f68b91070bd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070be", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66c90dc2c7d43f68b91070bf", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070c0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66c90dc2c7d43f68b91070c1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070c2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66c90dc2c7d43f68b91070c3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070c4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66c90dc2c7d43f68b91070c5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070c6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66c90dc2c7d43f68b91070c7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070c8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66c90dc2c7d43f68b91070c9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070ca", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66c90dc2c7d43f68b91070cb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070cc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66c90dc2c7d43f68b91070cd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070ce", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66c90dc2c7d43f68b91070cf", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070d0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66c90dc2c7d43f68b91070d1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070d2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66c90dc2c7d43f68b91070d3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070d4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66c90dc2c7d43f68b91070d5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070d6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66c90dc2c7d43f68b91070d7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070d8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66c90dc2c7d43f68b91070d9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070da", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66c90dc2c7d43f68b91070db", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070dc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66c90dc2c7d43f68b91070dd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070de", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66c90dc2c7d43f68b91070df", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070e0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66c90dc2c7d43f68b91070e1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070e2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66c90dc2c7d43f68b91070e3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070e4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070b2", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "stationary_City_Design_Main_2ST_REWORK_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b91070e5", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91070e5", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66c90dc2c7d43f68b910704a", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66c90dc2c7d43f68b9107049", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b910704b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 } - } - }, - { - "_id": "66c90dc2c7d43f68b91070e6", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66c90dc2c7d43f68b91070e5", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc2c7d43f68b91070e7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070e8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66c90dc2c7d43f68b91070e9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070ea", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66c90dc2c7d43f68b91070eb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070ec", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66c90dc2c7d43f68b91070ed", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070ee", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66c90dc2c7d43f68b91070ef", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070f0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66c90dc2c7d43f68b91070f1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070f2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66c90dc2c7d43f68b91070f3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070f4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66c90dc2c7d43f68b91070f5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070f6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66c90dc2c7d43f68b91070f7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070f8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66c90dc2c7d43f68b91070f9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070fa", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66c90dc2c7d43f68b91070fb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070fc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66c90dc2c7d43f68b91070fd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91070fe", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66c90dc2c7d43f68b91070ff", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107100", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66c90dc2c7d43f68b9107101", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107102", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66c90dc2c7d43f68b9107103", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107104", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66c90dc2c7d43f68b9107105", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107106", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66c90dc2c7d43f68b9107107", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107108", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66c90dc2c7d43f68b9107109", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910710a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66c90dc2c7d43f68b910710b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910710c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66c90dc2c7d43f68b910710d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910710e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66c90dc2c7d43f68b910710f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107110", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66c90dc2c7d43f68b9107111", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107112", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66c90dc2c7d43f68b9107113", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107114", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66c90dc2c7d43f68b9107115", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107116", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66c90dc2c7d43f68b9107117", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107118", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91070e6", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "AGS_01", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9107119", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107119", - "_tpl": "5d52cc5ba4b9367408500062", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66c90dc2c7d43f68b910704c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66c90dc2c7d43f68b910704d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 } - } - }, - { - "_id": "66c90dc2c7d43f68b910711a", - "_tpl": "5d52d479a4b936793d58c76b", - "parentId": "66c90dc2c7d43f68b9107119", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc2c7d43f68b910711b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges" - }, - { - "_id": "66c90dc2c7d43f68b910711c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66c90dc2c7d43f68b910711d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 2 - }, - { - "_id": "66c90dc2c7d43f68b910711e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66c90dc2c7d43f68b910711f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 4 - }, - { - "_id": "66c90dc2c7d43f68b9107120", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66c90dc2c7d43f68b9107121", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 6 - }, - { - "_id": "66c90dc2c7d43f68b9107122", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66c90dc2c7d43f68b9107123", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 8 - }, - { - "_id": "66c90dc2c7d43f68b9107124", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66c90dc2c7d43f68b9107125", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 10 - }, - { - "_id": "66c90dc2c7d43f68b9107126", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66c90dc2c7d43f68b9107127", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 12 - }, - { - "_id": "66c90dc2c7d43f68b9107128", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66c90dc2c7d43f68b9107129", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 14 - }, - { - "_id": "66c90dc2c7d43f68b910712a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66c90dc2c7d43f68b910712b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 16 - }, - { - "_id": "66c90dc2c7d43f68b910712c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66c90dc2c7d43f68b910712d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 18 - }, - { - "_id": "66c90dc2c7d43f68b910712e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66c90dc2c7d43f68b910712f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 20 - }, - { - "_id": "66c90dc2c7d43f68b9107130", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66c90dc2c7d43f68b9107131", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 22 - }, - { - "_id": "66c90dc2c7d43f68b9107132", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66c90dc2c7d43f68b9107133", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 24 - }, - { - "_id": "66c90dc2c7d43f68b9107134", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66c90dc2c7d43f68b9107135", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 26 - }, - { - "_id": "66c90dc2c7d43f68b9107136", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66c90dc2c7d43f68b9107137", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 28 - }, - { - "_id": "66c90dc2c7d43f68b9107138", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66c90dc2c7d43f68b9107139", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 30 - }, - { - "_id": "66c90dc2c7d43f68b910713a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66c90dc2c7d43f68b910713b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 32 - }, - { - "_id": "66c90dc2c7d43f68b910713c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66c90dc2c7d43f68b910713d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 34 - }, - { - "_id": "66c90dc2c7d43f68b910713e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66c90dc2c7d43f68b910713f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 36 - }, - { - "_id": "66c90dc2c7d43f68b9107140", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66c90dc2c7d43f68b9107141", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 38 - }, - { - "_id": "66c90dc2c7d43f68b9107142", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66c90dc2c7d43f68b9107143", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 40 - }, - { - "_id": "66c90dc2c7d43f68b9107144", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66c90dc2c7d43f68b9107145", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 42 - }, - { - "_id": "66c90dc2c7d43f68b9107146", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66c90dc2c7d43f68b9107147", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 44 - }, - { - "_id": "66c90dc2c7d43f68b9107148", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66c90dc2c7d43f68b9107149", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 46 - }, - { - "_id": "66c90dc2c7d43f68b910714a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66c90dc2c7d43f68b910714b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 48 - }, - { - "_id": "66c90dc2c7d43f68b910714c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 49 - }, - { - "_id": "66c90dc2c7d43f68b910714d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 50 - }, - { - "_id": "66c90dc2c7d43f68b910714e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 51 - }, - { - "_id": "66c90dc2c7d43f68b910714f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 52 - }, - { - "_id": "66c90dc2c7d43f68b9107150", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 53 - }, - { - "_id": "66c90dc2c7d43f68b9107151", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 54 - }, - { - "_id": "66c90dc2c7d43f68b9107152", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 55 - }, - { - "_id": "66c90dc2c7d43f68b9107153", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 56 - }, - { - "_id": "66c90dc2c7d43f68b9107154", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 57 - }, - { - "_id": "66c90dc2c7d43f68b9107155", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 58 - }, - { - "_id": "66c90dc2c7d43f68b9107156", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 59 - }, - { - "_id": "66c90dc2c7d43f68b9107157", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 60 - }, - { - "_id": "66c90dc2c7d43f68b9107158", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 61 - }, - { - "_id": "66c90dc2c7d43f68b9107159", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 62 - }, - { - "_id": "66c90dc2c7d43f68b910715a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 63 - }, - { - "_id": "66c90dc2c7d43f68b910715b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 64 - }, - { - "_id": "66c90dc2c7d43f68b910715c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 65 - }, - { - "_id": "66c90dc2c7d43f68b910715d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 66 - }, - { - "_id": "66c90dc2c7d43f68b910715e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 67 - }, - { - "_id": "66c90dc2c7d43f68b910715f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 68 - }, - { - "_id": "66c90dc2c7d43f68b9107160", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 69 - }, - { - "_id": "66c90dc2c7d43f68b9107161", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 70 - }, - { - "_id": "66c90dc2c7d43f68b9107162", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 71 - }, - { - "_id": "66c90dc2c7d43f68b9107163", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 72 - }, - { - "_id": "66c90dc2c7d43f68b9107164", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 73 - }, - { - "_id": "66c90dc2c7d43f68b9107165", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 74 - }, - { - "_id": "66c90dc2c7d43f68b9107166", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 75 - }, - { - "_id": "66c90dc2c7d43f68b9107167", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 76 - }, - { - "_id": "66c90dc2c7d43f68b9107168", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 77 - }, - { - "_id": "66c90dc2c7d43f68b9107169", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 78 - }, - { - "_id": "66c90dc2c7d43f68b910716a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 79 - }, - { - "_id": "66c90dc2c7d43f68b910716b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 80 - }, - { - "_id": "66c90dc2c7d43f68b910716c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 81 - }, - { - "_id": "66c90dc2c7d43f68b910716d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 82 - }, - { - "_id": "66c90dc2c7d43f68b910716e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 83 - }, - { - "_id": "66c90dc2c7d43f68b910716f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 84 - }, - { - "_id": "66c90dc2c7d43f68b9107170", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 85 - }, - { - "_id": "66c90dc2c7d43f68b9107171", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 86 - }, - { - "_id": "66c90dc2c7d43f68b9107172", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 87 - }, - { - "_id": "66c90dc2c7d43f68b9107173", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 88 - }, - { - "_id": "66c90dc2c7d43f68b9107174", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 89 - }, - { - "_id": "66c90dc2c7d43f68b9107175", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 90 - }, - { - "_id": "66c90dc2c7d43f68b9107176", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 91 - }, - { - "_id": "66c90dc2c7d43f68b9107177", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 92 - }, - { - "_id": "66c90dc2c7d43f68b9107178", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 93 - }, - { - "_id": "66c90dc2c7d43f68b9107179", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 94 - }, - { - "_id": "66c90dc2c7d43f68b910717a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 95 - }, - { - "_id": "66c90dc2c7d43f68b910717b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 96 - }, - { - "_id": "66c90dc2c7d43f68b910717c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 97 - }, - { - "_id": "66c90dc2c7d43f68b910717d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b910711a", - "slotId": "cartridges", - "location": 98 - }, - { - "_id": "66c90dc2c7d43f68b910717e", - "_tpl": "5d53f4b7a4b936793d58c780", - "parentId": "66c90dc2c7d43f68b9107119", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "stationary_City_Design_Main_2ST_REWORK_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b910717f", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910717f", - "_tpl": "5d52cc5ba4b9367408500062", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66c90dc2c7d43f68b910704e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66c90dc2c7d43f68b910704f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 } - } - }, - { - "_id": "66c90dc2c7d43f68b9107180", - "_tpl": "5d52d479a4b936793d58c76b", - "parentId": "66c90dc2c7d43f68b910717f", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc2c7d43f68b9107181", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges" - }, - { - "_id": "66c90dc2c7d43f68b9107182", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66c90dc2c7d43f68b9107183", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 2 - }, - { - "_id": "66c90dc2c7d43f68b9107184", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66c90dc2c7d43f68b9107185", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 4 - }, - { - "_id": "66c90dc2c7d43f68b9107186", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66c90dc2c7d43f68b9107187", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 6 - }, - { - "_id": "66c90dc2c7d43f68b9107188", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66c90dc2c7d43f68b9107189", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 8 - }, - { - "_id": "66c90dc2c7d43f68b910718a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66c90dc2c7d43f68b910718b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 10 - }, - { - "_id": "66c90dc2c7d43f68b910718c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66c90dc2c7d43f68b910718d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 12 - }, - { - "_id": "66c90dc2c7d43f68b910718e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66c90dc2c7d43f68b910718f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 14 - }, - { - "_id": "66c90dc2c7d43f68b9107190", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66c90dc2c7d43f68b9107191", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 16 - }, - { - "_id": "66c90dc2c7d43f68b9107192", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66c90dc2c7d43f68b9107193", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 18 - }, - { - "_id": "66c90dc2c7d43f68b9107194", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66c90dc2c7d43f68b9107195", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 20 - }, - { - "_id": "66c90dc2c7d43f68b9107196", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66c90dc2c7d43f68b9107197", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 22 - }, - { - "_id": "66c90dc2c7d43f68b9107198", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66c90dc2c7d43f68b9107199", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 24 - }, - { - "_id": "66c90dc2c7d43f68b910719a", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66c90dc2c7d43f68b910719b", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 26 - }, - { - "_id": "66c90dc2c7d43f68b910719c", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66c90dc2c7d43f68b910719d", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 28 - }, - { - "_id": "66c90dc2c7d43f68b910719e", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66c90dc2c7d43f68b910719f", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 30 - }, - { - "_id": "66c90dc2c7d43f68b91071a0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66c90dc2c7d43f68b91071a1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 32 - }, - { - "_id": "66c90dc2c7d43f68b91071a2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66c90dc2c7d43f68b91071a3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 34 - }, - { - "_id": "66c90dc2c7d43f68b91071a4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66c90dc2c7d43f68b91071a5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 36 - }, - { - "_id": "66c90dc2c7d43f68b91071a6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66c90dc2c7d43f68b91071a7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 38 - }, - { - "_id": "66c90dc2c7d43f68b91071a8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66c90dc2c7d43f68b91071a9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 40 - }, - { - "_id": "66c90dc2c7d43f68b91071aa", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66c90dc2c7d43f68b91071ab", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 42 - }, - { - "_id": "66c90dc2c7d43f68b91071ac", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66c90dc2c7d43f68b91071ad", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 44 - }, - { - "_id": "66c90dc2c7d43f68b91071ae", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66c90dc2c7d43f68b91071af", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 46 - }, - { - "_id": "66c90dc2c7d43f68b91071b0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66c90dc2c7d43f68b91071b1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 48 - }, - { - "_id": "66c90dc2c7d43f68b91071b2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 49 - }, - { - "_id": "66c90dc2c7d43f68b91071b3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 50 - }, - { - "_id": "66c90dc2c7d43f68b91071b4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 51 - }, - { - "_id": "66c90dc2c7d43f68b91071b5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 52 - }, - { - "_id": "66c90dc2c7d43f68b91071b6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 53 - }, - { - "_id": "66c90dc2c7d43f68b91071b7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 54 - }, - { - "_id": "66c90dc2c7d43f68b91071b8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 55 - }, - { - "_id": "66c90dc2c7d43f68b91071b9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 56 - }, - { - "_id": "66c90dc2c7d43f68b91071ba", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 57 - }, - { - "_id": "66c90dc2c7d43f68b91071bb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 58 - }, - { - "_id": "66c90dc2c7d43f68b91071bc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 59 - }, - { - "_id": "66c90dc2c7d43f68b91071bd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 60 - }, - { - "_id": "66c90dc2c7d43f68b91071be", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 61 - }, - { - "_id": "66c90dc2c7d43f68b91071bf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 62 - }, - { - "_id": "66c90dc2c7d43f68b91071c0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 63 - }, - { - "_id": "66c90dc2c7d43f68b91071c1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 64 - }, - { - "_id": "66c90dc2c7d43f68b91071c2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 65 - }, - { - "_id": "66c90dc2c7d43f68b91071c3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 66 - }, - { - "_id": "66c90dc2c7d43f68b91071c4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 67 - }, - { - "_id": "66c90dc2c7d43f68b91071c5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 68 - }, - { - "_id": "66c90dc2c7d43f68b91071c6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 69 - }, - { - "_id": "66c90dc2c7d43f68b91071c7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 70 - }, - { - "_id": "66c90dc2c7d43f68b91071c8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 71 - }, - { - "_id": "66c90dc2c7d43f68b91071c9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 72 - }, - { - "_id": "66c90dc2c7d43f68b91071ca", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 73 - }, - { - "_id": "66c90dc2c7d43f68b91071cb", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 74 - }, - { - "_id": "66c90dc2c7d43f68b91071cc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 75 - }, - { - "_id": "66c90dc2c7d43f68b91071cd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 76 - }, - { - "_id": "66c90dc2c7d43f68b91071ce", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 77 - }, - { - "_id": "66c90dc2c7d43f68b91071cf", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 78 - }, - { - "_id": "66c90dc2c7d43f68b91071d0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 79 - }, - { - "_id": "66c90dc2c7d43f68b91071d1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 80 - }, - { - "_id": "66c90dc2c7d43f68b91071d2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 81 - }, - { - "_id": "66c90dc2c7d43f68b91071d3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 82 - }, - { - "_id": "66c90dc2c7d43f68b91071d4", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 83 - }, - { - "_id": "66c90dc2c7d43f68b91071d5", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 84 - }, - { - "_id": "66c90dc2c7d43f68b91071d6", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 85 - }, - { - "_id": "66c90dc2c7d43f68b91071d7", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 86 - }, - { - "_id": "66c90dc2c7d43f68b91071d8", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 87 - }, - { - "_id": "66c90dc2c7d43f68b91071d9", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 88 - }, - { - "_id": "66c90dc2c7d43f68b91071da", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 89 - }, - { - "_id": "66c90dc2c7d43f68b91071db", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 90 - }, - { - "_id": "66c90dc2c7d43f68b91071dc", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 91 - }, - { - "_id": "66c90dc2c7d43f68b91071dd", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 92 - }, - { - "_id": "66c90dc2c7d43f68b91071de", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 93 - }, - { - "_id": "66c90dc2c7d43f68b91071df", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 94 - }, - { - "_id": "66c90dc2c7d43f68b91071e0", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 95 - }, - { - "_id": "66c90dc2c7d43f68b91071e1", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 96 - }, - { - "_id": "66c90dc2c7d43f68b91071e2", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 97 - }, - { - "_id": "66c90dc2c7d43f68b91071e3", - "_tpl": "5d70e500a4b9364de70d38ce", - "parentId": "66c90dc2c7d43f68b9107180", - "slotId": "cartridges", - "location": 98 - }, - { - "_id": "66c90dc2c7d43f68b91071e4", - "_tpl": "5d53f4b7a4b936793d58c780", - "parentId": "66c90dc2c7d43f68b910717f", - "slotId": "mod_scope" - } - ] - }, - { - "Id": "Utes_05", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b91071e5", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91071e5", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66c90dc2c7d43f68b9107050", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66c90dc2c7d43f68b9107051", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 } - } - }, - { - "_id": "66c90dc2c7d43f68b91071e6", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66c90dc2c7d43f68b91071e5", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc2c7d43f68b91071e7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071e8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66c90dc2c7d43f68b91071e9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071ea", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66c90dc2c7d43f68b91071eb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071ec", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66c90dc2c7d43f68b91071ed", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071ee", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66c90dc2c7d43f68b91071ef", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071f0", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66c90dc2c7d43f68b91071f1", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071f2", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66c90dc2c7d43f68b91071f3", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071f4", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66c90dc2c7d43f68b91071f5", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071f6", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66c90dc2c7d43f68b91071f7", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071f8", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66c90dc2c7d43f68b91071f9", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071fa", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66c90dc2c7d43f68b91071fb", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071fc", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66c90dc2c7d43f68b91071fd", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b91071fe", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66c90dc2c7d43f68b91071ff", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107200", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66c90dc2c7d43f68b9107201", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107202", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66c90dc2c7d43f68b9107203", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107204", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66c90dc2c7d43f68b9107205", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107206", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66c90dc2c7d43f68b9107207", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107208", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66c90dc2c7d43f68b9107209", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910720a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66c90dc2c7d43f68b910720b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910720c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66c90dc2c7d43f68b910720d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910720e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66c90dc2c7d43f68b910720f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107210", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66c90dc2c7d43f68b9107211", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107212", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66c90dc2c7d43f68b9107213", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107214", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66c90dc2c7d43f68b9107215", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107216", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66c90dc2c7d43f68b9107217", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107218", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b91071e6", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "Utes_03", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b9107219", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107219", - "_tpl": "5cdeb229d7f00c000e7ce174", - "upd": { - "FireMode": { - "FireMode": "fullauto" + }, + { + "_id": "66c90dc2c7d43f68b9107052", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66c90dc2c7d43f68b9107053", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 } + }, + { + "_id": "66c90dc2c7d43f68b9107054", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66c90dc2c7d43f68b9107055", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107056", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66c90dc2c7d43f68b9107057", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107058", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66c90dc2c7d43f68b9107059", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910705a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66c90dc2c7d43f68b910705b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910705c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66c90dc2c7d43f68b910705d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910705e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66c90dc2c7d43f68b910705f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107060", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66c90dc2c7d43f68b9107061", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107062", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66c90dc2c7d43f68b9107063", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107064", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66c90dc2c7d43f68b9107065", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107066", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66c90dc2c7d43f68b9107067", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107068", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66c90dc2c7d43f68b9107069", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910706a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66c90dc2c7d43f68b910706b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910706c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66c90dc2c7d43f68b910706d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910706e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66c90dc2c7d43f68b910706f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107070", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66c90dc2c7d43f68b9107071", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107072", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66c90dc2c7d43f68b9107073", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107074", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66c90dc2c7d43f68b9107075", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107076", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66c90dc2c7d43f68b9107077", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107078", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66c90dc2c7d43f68b9107079", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910707a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66c90dc2c7d43f68b910707b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910707c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910704a", + "slotId": "cartridges", + "location": 49 } - }, - { - "_id": "66c90dc2c7d43f68b910721a", - "_tpl": "5cffa483d7ad1a049e54ef1c", - "parentId": "66c90dc2c7d43f68b9107219", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc2c7d43f68b910721b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910721c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "66c90dc2c7d43f68b910721d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 2, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910721e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "66c90dc2c7d43f68b910721f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 4, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107220", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "66c90dc2c7d43f68b9107221", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 6, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107222", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "66c90dc2c7d43f68b9107223", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 8, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107224", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "66c90dc2c7d43f68b9107225", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 10, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107226", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "66c90dc2c7d43f68b9107227", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 12, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107228", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "66c90dc2c7d43f68b9107229", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 14, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910722a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "66c90dc2c7d43f68b910722b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 16, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910722c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "66c90dc2c7d43f68b910722d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 18, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910722e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 19 - }, - { - "_id": "66c90dc2c7d43f68b910722f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 20, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107230", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 21 - }, - { - "_id": "66c90dc2c7d43f68b9107231", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 22, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107232", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 23 - }, - { - "_id": "66c90dc2c7d43f68b9107233", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 24, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107234", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 25 - }, - { - "_id": "66c90dc2c7d43f68b9107235", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 26, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107236", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 27 - }, - { - "_id": "66c90dc2c7d43f68b9107237", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 28, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107238", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 29 - }, - { - "_id": "66c90dc2c7d43f68b9107239", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 30, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910723a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 31 - }, - { - "_id": "66c90dc2c7d43f68b910723b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 32, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910723c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 33 - }, - { - "_id": "66c90dc2c7d43f68b910723d", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 34, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910723e", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 35 - }, - { - "_id": "66c90dc2c7d43f68b910723f", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 36, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107240", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 37 - }, - { - "_id": "66c90dc2c7d43f68b9107241", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 38, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107242", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 39 - }, - { - "_id": "66c90dc2c7d43f68b9107243", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 40, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107244", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 41 - }, - { - "_id": "66c90dc2c7d43f68b9107245", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 42, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107246", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 43 - }, - { - "_id": "66c90dc2c7d43f68b9107247", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 44, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b9107248", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 45 - }, - { - "_id": "66c90dc2c7d43f68b9107249", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 46, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910724a", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 47 - }, - { - "_id": "66c90dc2c7d43f68b910724b", - "_tpl": "5cde8864d7f00c0010373be1", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 48, - "upd": { - "StackObjectsCount": 3 - } - }, - { - "_id": "66c90dc2c7d43f68b910724c", - "_tpl": "5d2f2ab648f03550091993ca", - "parentId": "66c90dc2c7d43f68b910721a", - "slotId": "cartridges", - "location": 49 - } - ] - }, - { - "Id": "all_ammobox (11) [e3093bd0-d10c-4e65-8e66-f5fa560c9f57]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 85.47702, - "y": 3.646, - "z": 408.1901 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910725d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910725d", - "_tpl": "657025281419851aef03e71b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b910725e", - "_tpl": "5cc80f8fe4a949033b0224a2", - "parentId": "66c90dc2c7d43f68b910725d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "all_ammobox (28) [89d4325d-9a79-4011-b22a-2b89ef8630f2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 290.08905, - "y": 3.89, - "z": 446.0791 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107275", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107275", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107276", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66c90dc2c7d43f68b9107275", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "all_ammobox (30) [8d2245c9-7130-4458-80ac-28d13da605b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 290.945068, - "y": 3.89, - "z": 448.8001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107280", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107280", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107281", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc2c7d43f68b9107280", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66c90dc2c7d43f68b9107282", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc2c7d43f68b9107280", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "all_ammobox (38) [add61166-f842-45cd-82d6-0e353c6d017f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.8880157, - "y": 7.309, - "z": 323.1091 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910728f", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910728f", - "_tpl": "6570241bcfc010a0f50069f5", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107290", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66c90dc2c7d43f68b910728f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - } - ] - }, - { - "Id": "all_ammobox (43) [be46d25c-9b16-4878-bf35-946b4af0385f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 26.5110054, - "y": 4.521, - "z": 248.241058 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107297", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107297", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107298", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66c90dc2c7d43f68b9107297", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "all_ammobox (7) [8fb141d9-b9b9-43fd-98ec-67fb04d8bc0d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 100.17202, - "y": 4.278, - "z": 411.5711 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91072a8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91072a8", - "_tpl": "657024a4bfc87b3a3409322c", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b91072a9", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66c90dc2c7d43f68b91072a8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66c90dc2c7d43f68b91072aa", - "_tpl": "5d6e6a53a4b9361bd473feec", - "parentId": "66c90dc2c7d43f68b91072a8", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "all_electr (60) [1698d146-3f49-4533-ba64-fce672d36274]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 229.566055, - "y": 9.745, - "z": 411.602081 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91072ca", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91072ca", - "_tpl": "5909e99886f7740c983b9984", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_electr (66) [aeda8963-ee5c-4a73-80e3-0ec51c9ca8a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 221.926041, - "y": 9.656, - "z": 395.2321 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91072d0", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91072d0", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_electr (7) [866950fd-df04-4043-99d3-832c4c3c8bdc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 48.1230125, - "y": 2.956, - "z": 63.294014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91072d4", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91072d4", - "_tpl": "5c06779c86f77426e00dd782", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_food (12) [eb257b75-d887-4213-bd1c-99d99922c274]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 38.8350067, - "y": 2.346, - "z": 69.68601 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91072e5", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91072e5", - "_tpl": "657025a81419851aef03e724", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b91072e6", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66c90dc2c7d43f68b91072e5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "all_food (24) [3eb581fd-4517-4eb2-b874-8bedb3a9052e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.25201, - "y": 8.27, - "z": 96.1640244 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91072fd", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91072fd", - "_tpl": "65702640cfc010a0f5006a4d", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b91072fe", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66c90dc2c7d43f68b91072fd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "all_food (29) [e1f73363-b171-4d70-8a7f-71c8151fe0e9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 37.22601, - "y": 8.197, - "z": 85.6920242 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107301", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107301", - "_tpl": "6570252dbfc87b3a34093241", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107302", - "_tpl": "5cc80f79e4a949033c7343b2", - "parentId": "66c90dc2c7d43f68b9107301", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "all_food (3) [54b21c0f-bfd9-4abd-8d35-c373fb5e177f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 36.74001, - "y": 2.451, - "z": 64.13101 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107304", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107304", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_food (30) [99c7d791-8ee6-4653-a31f-e997923499e5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.58101, - "y": 8.202, - "z": 85.7460251 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107306", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107306", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_food (31) [cd31d597-4a3b-4faa-bfe1-40682eb262e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 35.0140076, - "y": 8.202, - "z": 86.08302 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107309", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107309", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b910730a", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c90dc2c7d43f68b9107309", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "all_food (37) [8a70e4cf-2390-4322-b1f0-59327ccd6f2e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 155.308029, - "y": 4.597, - "z": 232.976059 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910730d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910730d", - "_tpl": "65702414c5d7d4cb4d078555", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b910730e", - "_tpl": "5ea2a8e200685063ec28c05a", - "parentId": "66c90dc2c7d43f68b910730d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } - } - ] - }, - { - "Id": "all_food (4) [c6af8094-b2a0-4a0d-8c49-8a599a4705d0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 37.1000061, - "y": 2.451, - "z": 64.5020142 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107315", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107315", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107316", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66c90dc2c7d43f68b9107315", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "all_food (40) [053038b6-9e4c-4c23-a971-66e6c228a710]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 152.335037, - "y": 4.617, - "z": 235.108063 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107318", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107318", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_food (47) [68c21991-0089-44bc-8749-e418a89fa9af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 146.930023, - "y": 4.631, - "z": 228.348068 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910731f", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910731f", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107320", - "_tpl": "5737218f245977612125ba51", - "parentId": "66c90dc2c7d43f68b910731f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "all_food (5) [59d5a787-512b-4870-8232-c2dd2e6a26e8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.32401, - "y": 2.156, - "z": 64.3220139 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107323", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107323", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107324", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c90dc2c7d43f68b9107323", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "all_food (58) [54bc112e-18e6-4fd4-a292-6cf22d76cd3b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 125.578033, - "y": 10.638, - "z": 232.920059 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107333", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107333", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107334", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c90dc2c7d43f68b9107333", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "all_food (62) [f55291cd-1d60-4f42-95ce-03188df12fec]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -230.524063, - "y": 5.68, - "z": 280.987061 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107337", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107337", - "_tpl": "657025421419851aef03e71e", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107338", - "_tpl": "5736026a245977644601dc61", - "parentId": "66c90dc2c7d43f68b9107337", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 - } - } - ] - }, - { - "Id": "all_food (66) [50393d94-847b-4b72-8eb0-faa2d5a97f03]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -77.19202, - "y": 3.39, - "z": 231.107056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910733e", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910733e", - "_tpl": "5e2af4d286f7746d4159f07a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_food (77) [2f02422e-ed2f-4bcd-a2d5-4120405a9c85]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -83.08902, - "y": 4.503, - "z": 236.584061 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107352", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107352", - "_tpl": "65702656c5d7d4cb4d078591", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107353", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc2c7d43f68b9107352", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66c90dc2c7d43f68b9107354", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc2c7d43f68b9107352", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "all_food (78) [ce046613-0c33-4202-8434-6ed1fffda3eb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -83.17102, - "y": 4.503, - "z": 236.107056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107356", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107356", - "_tpl": "5673de654bdc2d180f8b456d", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_food (79) [2fe2e182-4b10-42f1-8ba5-065fbe560271]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -83.7320251, - "y": 3.977, - "z": 245.008057 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910735a", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910735a", - "_tpl": "65702479c5d7d4cb4d07855e", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b910735b", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66c90dc2c7d43f68b910735a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, - { - "_id": "66c90dc2c7d43f68b910735c", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66c90dc2c7d43f68b910735a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "all_food [216ec9f0-44f4-47c0-9f9e-54f4b326a1af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.69601, - "y": 1.527, - "z": 46.2550125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910736c", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910736c", - "_tpl": "657024a91419851aef03e70c", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b910736d", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "66c90dc2c7d43f68b910736c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + { + "Id": "stationary_City_Design_Main_2ST_REWORK_00003", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910736e", - "_tpl": "5d6e6a42a4b9364f07165f52", - "parentId": "66c90dc2c7d43f68b910736c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 - } - } - ] - }, - { - "Id": "all_mods (35) [b02b300b-ea3e-49fa-9bb6-50827d159176]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 213.05304, - "y": -0.311, - "z": 409.645081 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107370", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107370", - "_tpl": "648ae3e356c6310a830fc291", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods (37) [bd67bcf6-459c-4444-ab23-01f0ab513c3e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 212.929047, - "y": -0.289, - "z": 409.9881 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107374", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107374", - "_tpl": "5888945a2459774bf43ba385", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods (38) [b25781fb-9d35-4c6b-bccf-57d7f5662b78]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 213.268051, - "y": -0.289, - "z": 410.2671 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107376", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107376", - "_tpl": "5d120a10d7ad1a4e1026ba85", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods (39) [7c9c90db-8c66-445c-a227-e369fa1d8bd4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 211.259048, - "y": 0.238, - "z": 411.8511 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107378", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107378", - "_tpl": "5a7c147ce899ef00150bd8b8", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods (41) [973bd936-0879-4c3c-b698-aafc68b7763d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 210.473053, - "y": -0.209, - "z": 411.6911 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910737a", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910737a", - "_tpl": "5cf78496d7f00c065703d6ca", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods (42) [311907fe-2005-4ce1-b203-0c67f5f40d44]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 209.215042, - "y": -0.962, - "z": 411.7411 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910737c", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910737c", - "_tpl": "5b07db875acfc40dc528a5f6", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods (43) [3af1cfdd-0d6e-4cf1-adc8-099054caa378]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 208.545044, - "y": -0.962, - "z": 410.7071 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910737e", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910737e", - "_tpl": "59bfe68886f7746004266202", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods (45) [52b2e6dd-fc58-4445-9b06-61e346d8c7a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 208.49704, - "y": -0.2, - "z": 407.9821 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107380", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107380", - "_tpl": "5cf13123d7f00c1085616a50", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods (47) [c8884605-739b-455e-bf77-fa9bda010c81]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 209.414047, - "y": -0.537, - "z": 407.3631 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107382", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107382", - "_tpl": "5a7c147ce899ef00150bd8b8", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods (49) [f06240da-f0c3-48a8-ad47-8c2e770f3a7d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 85.44602, - "y": 3.451, - "z": 297.868073 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107384", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107384", - "_tpl": "5c6c2c9c2e2216000f2002e4", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods_sup (4) [84705f8a-eea9-43ec-b197-398545d6c8bc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 66.83801, - "y": 8.025, - "z": 316.98407 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910738b", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910738b", - "_tpl": "5cf13123d7f00c1085616a50", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "all_mods_sup [d5a4e7a8-00d4-43be-b6ea-c52f2d517239]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 65.38402, - "y": 8.007, - "z": 316.788055 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910738d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910738d", - "_tpl": "5cfe8010d7ad1a59283b14c6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910738e", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c90dc2c7d43f68b910738d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 38 - } - } - ] - }, - { - "Id": "all_money (58) [34b5c769-dd16-4548-811e-2e5848b9ee6a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 40.091, - "y": 4.672, - "z": 156.453 - }, - "Rotation": { - "x": 0.0, - "y": 337.854767, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107390", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107390", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 943 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b910707d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910707d", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66c90dc2c7d43f68b910707e", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66c90dc2c7d43f68b910707d", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b910707f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107080", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66c90dc2c7d43f68b9107081", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107082", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66c90dc2c7d43f68b9107083", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107084", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66c90dc2c7d43f68b9107085", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107086", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66c90dc2c7d43f68b9107087", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107088", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66c90dc2c7d43f68b9107089", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910708a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66c90dc2c7d43f68b910708b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910708c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66c90dc2c7d43f68b910708d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910708e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66c90dc2c7d43f68b910708f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107090", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66c90dc2c7d43f68b9107091", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107092", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66c90dc2c7d43f68b9107093", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107094", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66c90dc2c7d43f68b9107095", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107096", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66c90dc2c7d43f68b9107097", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107098", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66c90dc2c7d43f68b9107099", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910709a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66c90dc2c7d43f68b910709b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910709c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66c90dc2c7d43f68b910709d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910709e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66c90dc2c7d43f68b910709f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070a0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66c90dc2c7d43f68b91070a1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070a2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66c90dc2c7d43f68b91070a3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070a4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66c90dc2c7d43f68b91070a5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070a6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66c90dc2c7d43f68b91070a7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070a8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66c90dc2c7d43f68b91070a9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070aa", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66c90dc2c7d43f68b91070ab", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070ac", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66c90dc2c7d43f68b91070ad", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070ae", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66c90dc2c7d43f68b91070af", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070b0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910707e", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "Ammo (1) [df0758ac-fdb2-43d4-b653-12a8afcc41b6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 166.773, - "y": 3.127, - "z": 158.798 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107396", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107396", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_01", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107397", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c90dc2c7d43f68b9107396", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107398", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c90dc2c7d43f68b9107396", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b91070b1", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91070b1", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66c90dc2c7d43f68b91070b2", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66c90dc2c7d43f68b91070b1", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b91070b3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070b4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66c90dc2c7d43f68b91070b5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070b6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66c90dc2c7d43f68b91070b7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070b8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66c90dc2c7d43f68b91070b9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070ba", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66c90dc2c7d43f68b91070bb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070bc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66c90dc2c7d43f68b91070bd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070be", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66c90dc2c7d43f68b91070bf", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070c0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66c90dc2c7d43f68b91070c1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070c2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66c90dc2c7d43f68b91070c3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070c4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66c90dc2c7d43f68b91070c5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070c6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66c90dc2c7d43f68b91070c7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070c8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66c90dc2c7d43f68b91070c9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070ca", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66c90dc2c7d43f68b91070cb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070cc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66c90dc2c7d43f68b91070cd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070ce", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66c90dc2c7d43f68b91070cf", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070d0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66c90dc2c7d43f68b91070d1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070d2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66c90dc2c7d43f68b91070d3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070d4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66c90dc2c7d43f68b91070d5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070d6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66c90dc2c7d43f68b91070d7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070d8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66c90dc2c7d43f68b91070d9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070da", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66c90dc2c7d43f68b91070db", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070dc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66c90dc2c7d43f68b91070dd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070de", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66c90dc2c7d43f68b91070df", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070e0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66c90dc2c7d43f68b91070e1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070e2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66c90dc2c7d43f68b91070e3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070e4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070b2", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "Ammo (5) [99c3e0df-8434-4927-a905-f732c5e9bb97]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -222.392, - "y": 3.7532, - "z": 121.825 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91073a7", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91073a7", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "stationary_City_Design_Main_2ST_REWORK_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91073a8", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66c90dc2c7d43f68b91073a7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "Ammo [973e3089-7049-46c0-bc8d-e249f0b0042d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -251.184, - "y": 4.202, - "z": 133.677338 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91073b3", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91073b3", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91073b4", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc2c7d43f68b91073b3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b91070e5", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91070e5", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66c90dc2c7d43f68b91070e6", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66c90dc2c7d43f68b91070e5", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b91070e7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070e8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66c90dc2c7d43f68b91070e9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070ea", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66c90dc2c7d43f68b91070eb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070ec", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66c90dc2c7d43f68b91070ed", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070ee", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66c90dc2c7d43f68b91070ef", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070f0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66c90dc2c7d43f68b91070f1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070f2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66c90dc2c7d43f68b91070f3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070f4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66c90dc2c7d43f68b91070f5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070f6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66c90dc2c7d43f68b91070f7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070f8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66c90dc2c7d43f68b91070f9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070fa", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66c90dc2c7d43f68b91070fb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070fc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66c90dc2c7d43f68b91070fd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91070fe", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66c90dc2c7d43f68b91070ff", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107100", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66c90dc2c7d43f68b9107101", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107102", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66c90dc2c7d43f68b9107103", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107104", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66c90dc2c7d43f68b9107105", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107106", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66c90dc2c7d43f68b9107107", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107108", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66c90dc2c7d43f68b9107109", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910710a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66c90dc2c7d43f68b910710b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910710c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66c90dc2c7d43f68b910710d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910710e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66c90dc2c7d43f68b910710f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107110", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66c90dc2c7d43f68b9107111", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107112", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66c90dc2c7d43f68b9107113", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107114", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66c90dc2c7d43f68b9107115", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107116", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66c90dc2c7d43f68b9107117", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107118", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91070e6", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "ammo_all (35) [2dbf2b89-b0b0-431a-b3b1-8ecff450f2b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 51.33301, - "y": 2.849, - "z": 490.480133 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91073b8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91073b8", - "_tpl": "65702452cfc010a0f50069fe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "AGS_01", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91073b9", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "66c90dc2c7d43f68b91073b8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91073ba", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "66c90dc2c7d43f68b91073b8", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9107119", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107119", + "_tpl": "5d52cc5ba4b9367408500062", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66c90dc2c7d43f68b910711a", + "_tpl": "5d52d479a4b936793d58c76b", + "parentId": "66c90dc2c7d43f68b9107119", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b910711b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges" + }, + { + "_id": "66c90dc2c7d43f68b910711c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66c90dc2c7d43f68b910711d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 2 + }, + { + "_id": "66c90dc2c7d43f68b910711e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66c90dc2c7d43f68b910711f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 4 + }, + { + "_id": "66c90dc2c7d43f68b9107120", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66c90dc2c7d43f68b9107121", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 6 + }, + { + "_id": "66c90dc2c7d43f68b9107122", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66c90dc2c7d43f68b9107123", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 8 + }, + { + "_id": "66c90dc2c7d43f68b9107124", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66c90dc2c7d43f68b9107125", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 10 + }, + { + "_id": "66c90dc2c7d43f68b9107126", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66c90dc2c7d43f68b9107127", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 12 + }, + { + "_id": "66c90dc2c7d43f68b9107128", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66c90dc2c7d43f68b9107129", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 14 + }, + { + "_id": "66c90dc2c7d43f68b910712a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66c90dc2c7d43f68b910712b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 16 + }, + { + "_id": "66c90dc2c7d43f68b910712c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66c90dc2c7d43f68b910712d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 18 + }, + { + "_id": "66c90dc2c7d43f68b910712e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66c90dc2c7d43f68b910712f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 20 + }, + { + "_id": "66c90dc2c7d43f68b9107130", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66c90dc2c7d43f68b9107131", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 22 + }, + { + "_id": "66c90dc2c7d43f68b9107132", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66c90dc2c7d43f68b9107133", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 24 + }, + { + "_id": "66c90dc2c7d43f68b9107134", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66c90dc2c7d43f68b9107135", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 26 + }, + { + "_id": "66c90dc2c7d43f68b9107136", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66c90dc2c7d43f68b9107137", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 28 + }, + { + "_id": "66c90dc2c7d43f68b9107138", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66c90dc2c7d43f68b9107139", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 30 + }, + { + "_id": "66c90dc2c7d43f68b910713a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66c90dc2c7d43f68b910713b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 32 + }, + { + "_id": "66c90dc2c7d43f68b910713c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66c90dc2c7d43f68b910713d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 34 + }, + { + "_id": "66c90dc2c7d43f68b910713e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66c90dc2c7d43f68b910713f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 36 + }, + { + "_id": "66c90dc2c7d43f68b9107140", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66c90dc2c7d43f68b9107141", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 38 + }, + { + "_id": "66c90dc2c7d43f68b9107142", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66c90dc2c7d43f68b9107143", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 40 + }, + { + "_id": "66c90dc2c7d43f68b9107144", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66c90dc2c7d43f68b9107145", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 42 + }, + { + "_id": "66c90dc2c7d43f68b9107146", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66c90dc2c7d43f68b9107147", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 44 + }, + { + "_id": "66c90dc2c7d43f68b9107148", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66c90dc2c7d43f68b9107149", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 46 + }, + { + "_id": "66c90dc2c7d43f68b910714a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66c90dc2c7d43f68b910714b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 48 + }, + { + "_id": "66c90dc2c7d43f68b910714c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 49 + }, + { + "_id": "66c90dc2c7d43f68b910714d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 50 + }, + { + "_id": "66c90dc2c7d43f68b910714e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 51 + }, + { + "_id": "66c90dc2c7d43f68b910714f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 52 + }, + { + "_id": "66c90dc2c7d43f68b9107150", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 53 + }, + { + "_id": "66c90dc2c7d43f68b9107151", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 54 + }, + { + "_id": "66c90dc2c7d43f68b9107152", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 55 + }, + { + "_id": "66c90dc2c7d43f68b9107153", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 56 + }, + { + "_id": "66c90dc2c7d43f68b9107154", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 57 + }, + { + "_id": "66c90dc2c7d43f68b9107155", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 58 + }, + { + "_id": "66c90dc2c7d43f68b9107156", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 59 + }, + { + "_id": "66c90dc2c7d43f68b9107157", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 60 + }, + { + "_id": "66c90dc2c7d43f68b9107158", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 61 + }, + { + "_id": "66c90dc2c7d43f68b9107159", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 62 + }, + { + "_id": "66c90dc2c7d43f68b910715a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 63 + }, + { + "_id": "66c90dc2c7d43f68b910715b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 64 + }, + { + "_id": "66c90dc2c7d43f68b910715c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 65 + }, + { + "_id": "66c90dc2c7d43f68b910715d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 66 + }, + { + "_id": "66c90dc2c7d43f68b910715e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 67 + }, + { + "_id": "66c90dc2c7d43f68b910715f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 68 + }, + { + "_id": "66c90dc2c7d43f68b9107160", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 69 + }, + { + "_id": "66c90dc2c7d43f68b9107161", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 70 + }, + { + "_id": "66c90dc2c7d43f68b9107162", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 71 + }, + { + "_id": "66c90dc2c7d43f68b9107163", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 72 + }, + { + "_id": "66c90dc2c7d43f68b9107164", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 73 + }, + { + "_id": "66c90dc2c7d43f68b9107165", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 74 + }, + { + "_id": "66c90dc2c7d43f68b9107166", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 75 + }, + { + "_id": "66c90dc2c7d43f68b9107167", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 76 + }, + { + "_id": "66c90dc2c7d43f68b9107168", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 77 + }, + { + "_id": "66c90dc2c7d43f68b9107169", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 78 + }, + { + "_id": "66c90dc2c7d43f68b910716a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 79 + }, + { + "_id": "66c90dc2c7d43f68b910716b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 80 + }, + { + "_id": "66c90dc2c7d43f68b910716c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 81 + }, + { + "_id": "66c90dc2c7d43f68b910716d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 82 + }, + { + "_id": "66c90dc2c7d43f68b910716e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 83 + }, + { + "_id": "66c90dc2c7d43f68b910716f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 84 + }, + { + "_id": "66c90dc2c7d43f68b9107170", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 85 + }, + { + "_id": "66c90dc2c7d43f68b9107171", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 86 + }, + { + "_id": "66c90dc2c7d43f68b9107172", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 87 + }, + { + "_id": "66c90dc2c7d43f68b9107173", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 88 + }, + { + "_id": "66c90dc2c7d43f68b9107174", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 89 + }, + { + "_id": "66c90dc2c7d43f68b9107175", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 90 + }, + { + "_id": "66c90dc2c7d43f68b9107176", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 91 + }, + { + "_id": "66c90dc2c7d43f68b9107177", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 92 + }, + { + "_id": "66c90dc2c7d43f68b9107178", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 93 + }, + { + "_id": "66c90dc2c7d43f68b9107179", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 94 + }, + { + "_id": "66c90dc2c7d43f68b910717a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 95 + }, + { + "_id": "66c90dc2c7d43f68b910717b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 96 + }, + { + "_id": "66c90dc2c7d43f68b910717c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 97 + }, + { + "_id": "66c90dc2c7d43f68b910717d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b910711a", + "slotId": "cartridges", + "location": 98 + }, + { + "_id": "66c90dc2c7d43f68b910717e", + "_tpl": "5d53f4b7a4b936793d58c780", + "parentId": "66c90dc2c7d43f68b9107119", + "slotId": "mod_scope" } - } - ] - }, - { - "Id": "ammo_all (39) [70bddf7c-c02b-4e04-8af1-cfcc727f0bab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 50.73601, - "y": 8.326, - "z": 85.46502 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91073c2", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91073c2", - "_tpl": "57372deb245977685d4159b3", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b91073c3", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66c90dc2c7d43f68b91073c2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + { + "Id": "stationary_City_Design_Main_2ST_REWORK_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91073c4", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66c90dc2c7d43f68b91073c2", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 - } - } - ] - }, - { - "Id": "ammo_all (48) [e68cc37e-284f-42cd-8ad6-ec74712a8685]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 45.43101, - "y": 7.916, - "z": 95.0790253 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91073db", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91073db", - "_tpl": "6570253ec5d7d4cb4d078573", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91073dc", - "_tpl": "5735fdcd2459776445391d61", - "parentId": "66c90dc2c7d43f68b91073db", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b910717f", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910717f", + "_tpl": "5d52cc5ba4b9367408500062", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66c90dc2c7d43f68b9107180", + "_tpl": "5d52d479a4b936793d58c76b", + "parentId": "66c90dc2c7d43f68b910717f", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b9107181", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges" + }, + { + "_id": "66c90dc2c7d43f68b9107182", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66c90dc2c7d43f68b9107183", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 2 + }, + { + "_id": "66c90dc2c7d43f68b9107184", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66c90dc2c7d43f68b9107185", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 4 + }, + { + "_id": "66c90dc2c7d43f68b9107186", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66c90dc2c7d43f68b9107187", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 6 + }, + { + "_id": "66c90dc2c7d43f68b9107188", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66c90dc2c7d43f68b9107189", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 8 + }, + { + "_id": "66c90dc2c7d43f68b910718a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66c90dc2c7d43f68b910718b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 10 + }, + { + "_id": "66c90dc2c7d43f68b910718c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66c90dc2c7d43f68b910718d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 12 + }, + { + "_id": "66c90dc2c7d43f68b910718e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66c90dc2c7d43f68b910718f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 14 + }, + { + "_id": "66c90dc2c7d43f68b9107190", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66c90dc2c7d43f68b9107191", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 16 + }, + { + "_id": "66c90dc2c7d43f68b9107192", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66c90dc2c7d43f68b9107193", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 18 + }, + { + "_id": "66c90dc2c7d43f68b9107194", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66c90dc2c7d43f68b9107195", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 20 + }, + { + "_id": "66c90dc2c7d43f68b9107196", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66c90dc2c7d43f68b9107197", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 22 + }, + { + "_id": "66c90dc2c7d43f68b9107198", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66c90dc2c7d43f68b9107199", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 24 + }, + { + "_id": "66c90dc2c7d43f68b910719a", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66c90dc2c7d43f68b910719b", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 26 + }, + { + "_id": "66c90dc2c7d43f68b910719c", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66c90dc2c7d43f68b910719d", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 28 + }, + { + "_id": "66c90dc2c7d43f68b910719e", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66c90dc2c7d43f68b910719f", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 30 + }, + { + "_id": "66c90dc2c7d43f68b91071a0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66c90dc2c7d43f68b91071a1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 32 + }, + { + "_id": "66c90dc2c7d43f68b91071a2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66c90dc2c7d43f68b91071a3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 34 + }, + { + "_id": "66c90dc2c7d43f68b91071a4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66c90dc2c7d43f68b91071a5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 36 + }, + { + "_id": "66c90dc2c7d43f68b91071a6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66c90dc2c7d43f68b91071a7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 38 + }, + { + "_id": "66c90dc2c7d43f68b91071a8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66c90dc2c7d43f68b91071a9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 40 + }, + { + "_id": "66c90dc2c7d43f68b91071aa", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66c90dc2c7d43f68b91071ab", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 42 + }, + { + "_id": "66c90dc2c7d43f68b91071ac", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66c90dc2c7d43f68b91071ad", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 44 + }, + { + "_id": "66c90dc2c7d43f68b91071ae", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66c90dc2c7d43f68b91071af", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 46 + }, + { + "_id": "66c90dc2c7d43f68b91071b0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66c90dc2c7d43f68b91071b1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 48 + }, + { + "_id": "66c90dc2c7d43f68b91071b2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 49 + }, + { + "_id": "66c90dc2c7d43f68b91071b3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 50 + }, + { + "_id": "66c90dc2c7d43f68b91071b4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 51 + }, + { + "_id": "66c90dc2c7d43f68b91071b5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 52 + }, + { + "_id": "66c90dc2c7d43f68b91071b6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 53 + }, + { + "_id": "66c90dc2c7d43f68b91071b7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 54 + }, + { + "_id": "66c90dc2c7d43f68b91071b8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 55 + }, + { + "_id": "66c90dc2c7d43f68b91071b9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 56 + }, + { + "_id": "66c90dc2c7d43f68b91071ba", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 57 + }, + { + "_id": "66c90dc2c7d43f68b91071bb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 58 + }, + { + "_id": "66c90dc2c7d43f68b91071bc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 59 + }, + { + "_id": "66c90dc2c7d43f68b91071bd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 60 + }, + { + "_id": "66c90dc2c7d43f68b91071be", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 61 + }, + { + "_id": "66c90dc2c7d43f68b91071bf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 62 + }, + { + "_id": "66c90dc2c7d43f68b91071c0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 63 + }, + { + "_id": "66c90dc2c7d43f68b91071c1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 64 + }, + { + "_id": "66c90dc2c7d43f68b91071c2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 65 + }, + { + "_id": "66c90dc2c7d43f68b91071c3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 66 + }, + { + "_id": "66c90dc2c7d43f68b91071c4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 67 + }, + { + "_id": "66c90dc2c7d43f68b91071c5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 68 + }, + { + "_id": "66c90dc2c7d43f68b91071c6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 69 + }, + { + "_id": "66c90dc2c7d43f68b91071c7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 70 + }, + { + "_id": "66c90dc2c7d43f68b91071c8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 71 + }, + { + "_id": "66c90dc2c7d43f68b91071c9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 72 + }, + { + "_id": "66c90dc2c7d43f68b91071ca", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 73 + }, + { + "_id": "66c90dc2c7d43f68b91071cb", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 74 + }, + { + "_id": "66c90dc2c7d43f68b91071cc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 75 + }, + { + "_id": "66c90dc2c7d43f68b91071cd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 76 + }, + { + "_id": "66c90dc2c7d43f68b91071ce", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 77 + }, + { + "_id": "66c90dc2c7d43f68b91071cf", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 78 + }, + { + "_id": "66c90dc2c7d43f68b91071d0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 79 + }, + { + "_id": "66c90dc2c7d43f68b91071d1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 80 + }, + { + "_id": "66c90dc2c7d43f68b91071d2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 81 + }, + { + "_id": "66c90dc2c7d43f68b91071d3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 82 + }, + { + "_id": "66c90dc2c7d43f68b91071d4", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 83 + }, + { + "_id": "66c90dc2c7d43f68b91071d5", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 84 + }, + { + "_id": "66c90dc2c7d43f68b91071d6", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 85 + }, + { + "_id": "66c90dc2c7d43f68b91071d7", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 86 + }, + { + "_id": "66c90dc2c7d43f68b91071d8", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 87 + }, + { + "_id": "66c90dc2c7d43f68b91071d9", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 88 + }, + { + "_id": "66c90dc2c7d43f68b91071da", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 89 + }, + { + "_id": "66c90dc2c7d43f68b91071db", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 90 + }, + { + "_id": "66c90dc2c7d43f68b91071dc", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 91 + }, + { + "_id": "66c90dc2c7d43f68b91071dd", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 92 + }, + { + "_id": "66c90dc2c7d43f68b91071de", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 93 + }, + { + "_id": "66c90dc2c7d43f68b91071df", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 94 + }, + { + "_id": "66c90dc2c7d43f68b91071e0", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 95 + }, + { + "_id": "66c90dc2c7d43f68b91071e1", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 96 + }, + { + "_id": "66c90dc2c7d43f68b91071e2", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 97 + }, + { + "_id": "66c90dc2c7d43f68b91071e3", + "_tpl": "5d70e500a4b9364de70d38ce", + "parentId": "66c90dc2c7d43f68b9107180", + "slotId": "cartridges", + "location": 98 + }, + { + "_id": "66c90dc2c7d43f68b91071e4", + "_tpl": "5d53f4b7a4b936793d58c780", + "parentId": "66c90dc2c7d43f68b910717f", + "slotId": "mod_scope" } - } - ] - }, - { - "Id": "ammo_all (49) [611d5957-e410-498d-a7d5-cb1834c48190]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 45.3790131, - "y": 7.792, - "z": 94.0250244 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91073df", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91073df", - "_tpl": "657024d2bfc87b3a34093235", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_05", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91073e0", - "_tpl": "5ba26844d4351e00334c9475", - "parentId": "66c90dc2c7d43f68b91073df", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b91071e5", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91071e5", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66c90dc2c7d43f68b91071e6", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66c90dc2c7d43f68b91071e5", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b91071e7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071e8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66c90dc2c7d43f68b91071e9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071ea", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66c90dc2c7d43f68b91071eb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071ec", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66c90dc2c7d43f68b91071ed", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071ee", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66c90dc2c7d43f68b91071ef", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071f0", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66c90dc2c7d43f68b91071f1", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071f2", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66c90dc2c7d43f68b91071f3", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071f4", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66c90dc2c7d43f68b91071f5", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071f6", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66c90dc2c7d43f68b91071f7", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071f8", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66c90dc2c7d43f68b91071f9", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071fa", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66c90dc2c7d43f68b91071fb", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071fc", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66c90dc2c7d43f68b91071fd", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b91071fe", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66c90dc2c7d43f68b91071ff", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107200", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66c90dc2c7d43f68b9107201", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107202", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66c90dc2c7d43f68b9107203", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107204", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66c90dc2c7d43f68b9107205", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107206", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66c90dc2c7d43f68b9107207", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107208", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66c90dc2c7d43f68b9107209", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910720a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66c90dc2c7d43f68b910720b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910720c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66c90dc2c7d43f68b910720d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910720e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66c90dc2c7d43f68b910720f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107210", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66c90dc2c7d43f68b9107211", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107212", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66c90dc2c7d43f68b9107213", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107214", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66c90dc2c7d43f68b9107215", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107216", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66c90dc2c7d43f68b9107217", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107218", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b91071e6", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "ammo_all (53) [c3fccd56-4446-4bee-b526-0796373d5f43]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 44.8380127, - "y": 8.412, - "z": 128.795029 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91073e7", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91073e7", - "_tpl": "65702606cfc010a0f5006a3e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Utes_03", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91073e8", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c90dc2c7d43f68b91073e7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b9107219", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107219", + "_tpl": "5cdeb229d7f00c000e7ce174", + "upd": { + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "66c90dc2c7d43f68b910721a", + "_tpl": "5cffa483d7ad1a049e54ef1c", + "parentId": "66c90dc2c7d43f68b9107219", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b910721b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910721c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 1 + }, + { + "_id": "66c90dc2c7d43f68b910721d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 2, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910721e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 3 + }, + { + "_id": "66c90dc2c7d43f68b910721f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 4, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107220", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 5 + }, + { + "_id": "66c90dc2c7d43f68b9107221", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 6, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107222", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 7 + }, + { + "_id": "66c90dc2c7d43f68b9107223", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 8, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107224", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 9 + }, + { + "_id": "66c90dc2c7d43f68b9107225", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 10, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107226", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 11 + }, + { + "_id": "66c90dc2c7d43f68b9107227", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 12, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107228", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 13 + }, + { + "_id": "66c90dc2c7d43f68b9107229", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 14, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910722a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 15 + }, + { + "_id": "66c90dc2c7d43f68b910722b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 16, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910722c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 17 + }, + { + "_id": "66c90dc2c7d43f68b910722d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 18, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910722e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 19 + }, + { + "_id": "66c90dc2c7d43f68b910722f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 20, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107230", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 21 + }, + { + "_id": "66c90dc2c7d43f68b9107231", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 22, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107232", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 23 + }, + { + "_id": "66c90dc2c7d43f68b9107233", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 24, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107234", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 25 + }, + { + "_id": "66c90dc2c7d43f68b9107235", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 26, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107236", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 27 + }, + { + "_id": "66c90dc2c7d43f68b9107237", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 28, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107238", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 29 + }, + { + "_id": "66c90dc2c7d43f68b9107239", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 30, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910723a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 31 + }, + { + "_id": "66c90dc2c7d43f68b910723b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 32, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910723c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 33 + }, + { + "_id": "66c90dc2c7d43f68b910723d", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 34, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910723e", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 35 + }, + { + "_id": "66c90dc2c7d43f68b910723f", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 36, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107240", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 37 + }, + { + "_id": "66c90dc2c7d43f68b9107241", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 38, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107242", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 39 + }, + { + "_id": "66c90dc2c7d43f68b9107243", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 40, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107244", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 41 + }, + { + "_id": "66c90dc2c7d43f68b9107245", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 42, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107246", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 43 + }, + { + "_id": "66c90dc2c7d43f68b9107247", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 44, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b9107248", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 45 + }, + { + "_id": "66c90dc2c7d43f68b9107249", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 46, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910724a", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 47 + }, + { + "_id": "66c90dc2c7d43f68b910724b", + "_tpl": "5cde8864d7f00c0010373be1", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 48, + "upd": { + "StackObjectsCount": 3 + } + }, + { + "_id": "66c90dc2c7d43f68b910724c", + "_tpl": "5d2f2ab648f03550091993ca", + "parentId": "66c90dc2c7d43f68b910721a", + "slotId": "cartridges", + "location": 49 } - } - ] - }, - { - "Id": "ammo_all (58) [630197ed-db5a-4fd3-ac33-220b47f21aff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 125.72403, - "y": 3.256, - "z": 230.862061 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91073f1", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91073f1", - "_tpl": "5737266524597761006c6a8c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "all_ammobox (11) [e3093bd0-d10c-4e65-8e66-f5fa560c9f57]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 85.47702, + "y": 3.646, + "z": 408.1901 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91073f2", - "_tpl": "57371eb62459776125652ac1", - "parentId": "66c90dc2c7d43f68b91073f1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910725d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910725d", + "_tpl": "657025281419851aef03e71b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910725e", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "66c90dc2c7d43f68b910725d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_all (67) [2a848bf0-2666-486d-b105-56af3d08c699]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 78.33601, - "y": 3.325, - "z": 275.323059 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107402", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107402", - "_tpl": "6570244ec5d7d4cb4d078558", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107403", - "_tpl": "5d6e6869a4b9361c140bcfde", - "parentId": "66c90dc2c7d43f68b9107402", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + { + "Id": "all_ammobox (28) [89d4325d-9a79-4011-b22a-2b89ef8630f2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 290.08905, + "y": 3.89, + "z": 446.0791 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107404", - "_tpl": "5d6e6869a4b9361c140bcfde", - "parentId": "66c90dc2c7d43f68b9107402", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107275", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107275", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107276", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66c90dc2c7d43f68b9107275", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox 5.56x45_Leo_common [b3fd074b-de4c-40dc-ae26-fb3bb58e3b48]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.1750031, - "y": 1.118, - "z": -77.49002 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107437", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107437", - "_tpl": "657024e8cfc010a0f5006a0d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "all_ammobox (30) [8d2245c9-7130-4458-80ac-28d13da605b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 290.945068, + "y": 3.89, + "z": 448.8001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107438", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc2c7d43f68b9107437", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107280", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107280", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107281", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc2c7d43f68b9107280", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc2c7d43f68b9107282", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc2c7d43f68b9107280", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "AmmoBox NATO_Kochnev_Common (7) [a1b73448-222e-4607-bb31-d1ee3a9a15a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 64.324, - "y": 3.677, - "z": 345.055 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107447", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107447", - "_tpl": "657024e8cfc010a0f5006a0d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "all_ammobox (38) [add61166-f842-45cd-82d6-0e353c6d017f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.8880157, + "y": 7.309, + "z": 323.1091 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107448", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc2c7d43f68b9107447", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910728f", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910728f", + "_tpl": "6570241bcfc010a0f50069f5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107290", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66c90dc2c7d43f68b910728f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "AmmoBox RUS_Kochnev_Common (13) [22df9879-9a87-43c4-bd64-a4e209891690]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.166, - "y": 5.827, - "z": 265.572 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910744b", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910744b", - "_tpl": "57372f5c24597769917c0131", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "all_ammobox (43) [be46d25c-9b16-4878-bf35-946b4af0385f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 26.5110054, + "y": 4.521, + "z": 248.241058 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910744c", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66c90dc2c7d43f68b910744b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107297", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107297", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107298", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66c90dc2c7d43f68b9107297", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "AmmoBox RUS_Kochnev_Common (7) [9def4800-ce12-410e-8175-e4a7f561a46d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.356, - "y": 3.645, - "z": 344.242 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107459", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107459", - "_tpl": "6570262d1419851aef03e72d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "all_ammobox (7) [8fb141d9-b9b9-43fd-98ec-67fb04d8bc0d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 100.17202, + "y": 4.278, + "z": 411.5711 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910745a", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c90dc2c7d43f68b9107459", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91072a8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91072a8", + "_tpl": "657024a4bfc87b3a3409322c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91072a9", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66c90dc2c7d43f68b91072a8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c90dc2c7d43f68b91072aa", + "_tpl": "5d6e6a53a4b9361bd473feec", + "parentId": "66c90dc2c7d43f68b91072a8", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "AmmoBox RUS_Kochnev_Rare (1) [85242f3c-88c4-435c-935a-5b88afd78f3f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 178.7042, - "y": 4.0469, - "z": 331.3008 - }, - "Rotation": { - "x": 0.0, - "y": 148.0653, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910745d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910745d", - "_tpl": "65702584cfc010a0f5006a2f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "all_electr (60) [1698d146-3f49-4533-ba64-fce672d36274]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 229.566055, + "y": 9.745, + "z": 411.602081 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910745e", - "_tpl": "5e023cf8186a883be655e54f", - "parentId": "66c90dc2c7d43f68b910745d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91072ca", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91072ca", + "_tpl": "5909e99886f7740c983b9984", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "AmmoBox RUS_Kochnev_Rare (2) [6b9fa94b-5b44-44b8-acec-c7b199c5f089]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 179.081, - "y": 3.808, - "z": 331.769 - }, - "Rotation": { - "x": 0.0, - "y": 148.0653, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107461", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107461", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "all_electr (66) [aeda8963-ee5c-4a73-80e3-0ec51c9ca8a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 221.926041, + "y": 9.656, + "z": 395.2321 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107462", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c90dc2c7d43f68b9107461", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } - } - ] - }, - { - "Id": "ballet_key (8) [c5e14a0d-5525-4ca7-a290-b2955864b822]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 114.330627, - "y": 1.4228, - "z": 119.140633 - }, - "Rotation": { - "x": 280.081329, - "y": 71.3038, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b910746a", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910746a", - "_tpl": "63a39e1d234195315d4020bd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "canned_food_drink_Kochnev_Rare (86) [615214f8-b938-4b2f-998f-1ff1b0061607]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -82.40201, - "y": 2.43099976, - "z": 159.633987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107490", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107490", - "_tpl": "57513f07245977207e26a311", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "eletronic (14) [892401b3-06c5-40c6-85f9-935f0ce5eb40]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 167.844, - "y": 3.314, - "z": 150.938 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074ac", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074ac", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "eletronic (2) [ea6d90e8-0f89-4a63-a482-9325a293d1c0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 171.712, - "y": 3.347, - "z": 160.973 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074b0", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074b0", - "_tpl": "56742c324bdc2d150f8b456d", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "eletronic (26) [63bb7519-207b-4360-889b-8d9b8998f6c2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 163.096, - "y": 3.314, - "z": 141.115 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074b4", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074b4", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "eletronic (29) [701d6e1d-e618-4b33-bec2-126a669d1716]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 161.873, - "y": 3.314, - "z": 141.589 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074b6", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074b6", - "_tpl": "5d403f9186f7743cac3f229b", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "eletronic (30) [4ebea715-2dca-4435-b643-9aac8c2d3c65]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 160.355, - "y": 3.314, - "z": 141.159 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074b8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074b8", - "_tpl": "573477e124597737dd42e191", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "eletronic (31) [bbe2f0f6-e236-4c55-9055-c7074f85cc99]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 160.747, - "y": 3.314, - "z": 142.162 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074ba", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074ba", - "_tpl": "590a386e86f77429692b27ab", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "eletronic (6) [028e1eab-2cfb-4c13-b378-bfd006426d62]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 167.756, - "y": 2.3920002, - "z": 166.547 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074c2", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074c2", - "_tpl": "60098b1705871270cd5352a1", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "eletronic (7) [d63338e3-6bb2-403f-8432-271798733fa5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 165.293, - "y": 3.314, - "z": 157.441 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074c4", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074c4", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "eletronic [3de5cd94-0192-4924-a667-14e6133225ea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 170.66, - "y": 3.347, - "z": 161.12 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074c8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074c8", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food drink (11) [275c3e6b-5247-4d1f-a819-e7da4deca061]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -201.15, - "y": 5.275, - "z": 345.574 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074d6", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074d6", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food drink (20) [bc805a95-8671-4b7c-9646-1ad44b8b7d44]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -206.91, - "y": 5.275, - "z": 345.37 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074dc", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074dc", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food drink (6) [f69924c7-3117-41be-b286-0d1324b42ad4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 152.131, - "y": 3.258, - "z": 135.566 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074e6", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074e6", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "food drink (7) [eebc8ddf-40dc-48c6-ae00-1b16cd963a62]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -197.344, - "y": 5.275, - "z": 350.036 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91072d0", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91072d0", + "_tpl": "5c06779c86f77426e00dd782", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074e8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074e8", - "_tpl": "65815f0e647e3d7246384e14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_electr (7) [866950fd-df04-4043-99d3-832c4c3c8bdc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 48.1230125, + "y": 2.956, + "z": 63.294014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91072d4", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91072d4", + "_tpl": "5c06779c86f77426e00dd782", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food drink (9) [25620c9d-0a06-42d3-8844-e9775f6c0185]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 151.264, - "y": 2.009, - "z": 137.677 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074ec", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074ec", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (12) [eb257b75-d887-4213-bd1c-99d99922c274]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 38.8350067, + "y": 2.346, + "z": 69.68601 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91072e5", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91072e5", + "_tpl": "657025a81419851aef03e724", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91072e6", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66c90dc2c7d43f68b91072e5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "food office staff (14) [16aa9e8f-ff42-4b5c-b44d-e94a94496c2c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -59.554, - "y": 4.38, - "z": 456.15 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074f6", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074f6", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (24) [3eb581fd-4517-4eb2-b874-8bedb3a9052e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.25201, + "y": 8.27, + "z": 96.1640244 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91072fd", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91072fd", + "_tpl": "65702640cfc010a0f5006a4d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91072fe", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66c90dc2c7d43f68b91072fd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "food office staff (16) [1c2e7cb4-10ea-464e-9f82-322fcdd0d81e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 74.873, - "y": 3.037, - "z": -18.881 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074f8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074f8", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (29) [e1f73363-b171-4d70-8a7f-71c8151fe0e9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 37.22601, + "y": 8.197, + "z": 85.6920242 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107301", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107301", + "_tpl": "6570252dbfc87b3a34093241", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107302", + "_tpl": "5cc80f79e4a949033c7343b2", + "parentId": "66c90dc2c7d43f68b9107301", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "food office staff (16) [d2fa5dd0-4260-4823-96e3-bd36797649e5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -51.732, - "y": 5.008, - "z": 458.964 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074fa", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074fa", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (3) [54b21c0f-bfd9-4abd-8d35-c373fb5e177f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 36.74001, + "y": 2.451, + "z": 64.13101 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107304", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107304", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food office staff (2) [2a22ece2-835d-437e-895d-ed60f72e78f0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 90.265, - "y": 3.037, - "z": -22.438 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074fc", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074fc", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (30) [99c7d791-8ee6-4653-a31f-e997923499e5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.58101, + "y": 8.202, + "z": 85.7460251 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107306", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107306", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food office staff (2) [59aeca23-767e-42c9-a945-696b5a7b12bc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -46.967, - "y": 5.516, - "z": 337.329 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91074fe", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91074fe", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (31) [cd31d597-4a3b-4faa-bfe1-40682eb262e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 35.0140076, + "y": 8.202, + "z": 86.08302 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107309", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107309", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910730a", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c90dc2c7d43f68b9107309", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "food office staff (25) [14f8970a-e4a8-4b03-895d-2ed1a7d7085d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 113.193, - "y": 2.347, - "z": -18.592 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107500", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107500", - "_tpl": "59e358a886f7741776641ac3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (37) [8a70e4cf-2390-4322-b1f0-59327ccd6f2e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 155.308029, + "y": 4.597, + "z": 232.976059 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910730d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910730d", + "_tpl": "65702414c5d7d4cb4d078555", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910730e", + "_tpl": "5ea2a8e200685063ec28c05a", + "parentId": "66c90dc2c7d43f68b910730d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "food office staff (9) [e267ad36-50ee-411a-95e7-79da7bfc2c95]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -50.786, - "y": 5.008, - "z": 458.964 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910750a", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910750a", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (4) [c6af8094-b2a0-4a0d-8c49-8a599a4705d0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 37.1000061, + "y": 2.451, + "z": 64.5020142 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107315", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107315", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107316", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66c90dc2c7d43f68b9107315", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_zone_Kochnev_Common (1) [762152ae-ef60-4fca-82d2-b39eabe78eed]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -52.818, - "y": 1.94399977, - "z": -45.4840164 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107510", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107510", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (40) [053038b6-9e4c-4c23-a971-66e6c228a710]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 152.335037, + "y": 4.617, + "z": 235.108063 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107318", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107318", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_zone_Kochnev_Common (19) [9867c05a-766a-4c3c-88aa-85485c515042]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -40.9110031, - "y": 6.592, - "z": -31.044014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107514", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107514", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (47) [68c21991-0089-44bc-8749-e418a89fa9af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 146.930023, + "y": 4.631, + "z": 228.348068 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910731f", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910731f", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107320", + "_tpl": "5737218f245977612125ba51", + "parentId": "66c90dc2c7d43f68b910731f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "food_zone_Kochnev_Common (26) [106da496-bf0d-4937-8907-a42b2d70eb21]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -51.15, - "y": 6.437, - "z": -41.306015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107518", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107518", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (5) [59d5a787-512b-4870-8232-c2dd2e6a26e8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.32401, + "y": 2.156, + "z": 64.3220139 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107323", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107323", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107324", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c90dc2c7d43f68b9107323", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "food_zone_Kochnev_Common (5) [158e0171-1835-45c6-9662-43e2fcf31534]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -43.8110046, - "y": 1.94399977, - "z": -36.905014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910751e", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910751e", - "_tpl": "57513fcc24597720a31c09a6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (58) [54bc112e-18e6-4fd4-a292-6cf22d76cd3b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 125.578033, + "y": 10.638, + "z": 232.920059 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107333", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107333", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107334", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c90dc2c7d43f68b9107333", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "food_zone_Kochnev_Common (60) [fabf265e-58f1-4d31-94a9-3444714bc9de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -35.8240051, - "y": 10.9019995, - "z": -54.04902 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107526", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107526", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (62) [f55291cd-1d60-4f42-95ce-03188df12fec]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -230.524063, + "y": 5.68, + "z": 280.987061 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107337", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107337", + "_tpl": "657025421419851aef03e71e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107338", + "_tpl": "5736026a245977644601dc61", + "parentId": "66c90dc2c7d43f68b9107337", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (36) [f291758a-5ea8-42aa-ab77-150668140282]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 178.638, - "y": 4.305, - "z": 235.72 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910752e", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910752e", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (66) [50393d94-847b-4b72-8eb0-faa2d5a97f03]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -77.19202, + "y": 3.39, + "z": 231.107056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910733e", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910733e", + "_tpl": "5e2af4d286f7746d4159f07a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (44) [fa5c5436-16f4-4264-a09b-0fba0327f316]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 228.836, - "y": 5.895, - "z": 484.521 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107532", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107532", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (77) [2f02422e-ed2f-4bcd-a2d5-4120405a9c85]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -83.08902, + "y": 4.503, + "z": 236.584061 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107352", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107352", + "_tpl": "65702656c5d7d4cb4d078591", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107353", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc2c7d43f68b9107352", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc2c7d43f68b9107354", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc2c7d43f68b9107352", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "food_zone_Leo_Rare (53) [ddc95488-d8c8-4d73-b3de-856109233ba9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 268.296, - "y": 5.538, - "z": 511.482 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910753c", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910753c", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (78) [ce046613-0c33-4202-8434-6ed1fffda3eb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -83.17102, + "y": 4.503, + "z": 236.107056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107356", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107356", + "_tpl": "5673de654bdc2d180f8b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "housegoods (8) [d8d5cab5-8e99-43d9-849f-66786eb28d1a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -254.613022, - "y": 5.346, - "z": 150.912 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910755a", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910755a", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "all_food (79) [2fe2e182-4b10-42f1-8ba5-065fbe560271]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -83.7320251, + "y": 3.977, + "z": 245.008057 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910735a", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910735a", + "_tpl": "65702479c5d7d4cb4d07855e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910735b", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66c90dc2c7d43f68b910735a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c90dc2c7d43f68b910735c", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66c90dc2c7d43f68b910735a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "item_barter_quest_gphonex [5eec2174-2eee-4e01-ba1f-b9ee7f18f03e]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 311.462, - "y": 3.39890671, - "z": 413.368042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -53.8750038, - "y": 2.17019272, - "z": 198.96199 + { + "Id": "all_food [216ec9f0-44f4-47c0-9f9e-54f4b326a1af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.69601, + "y": 1.527, + "z": 46.2550125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910736c", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910736c", + "_tpl": "657024a91419851aef03e70c", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66c90dc2c7d43f68b910736d", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "66c90dc2c7d43f68b910736c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c90dc2c7d43f68b910736e", + "_tpl": "5d6e6a42a4b9364f07165f52", + "parentId": "66c90dc2c7d43f68b910736c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "all_mods (35) [b02b300b-ea3e-49fa-9bb6-50827d159176]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 213.05304, + "y": -0.311, + "z": 409.645081 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -9.284, - "y": 2.87630844, - "z": 340.788025 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107370", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107370", + "_tpl": "648ae3e356c6310a830fc291", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "all_mods (37) [bd67bcf6-459c-4444-ab23-01f0ab513c3e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 212.929047, + "y": -0.289, + "z": 409.9881 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 131.34549, - "y": 3.94819832, - "z": 239.256989 - }, - "Rotation": { - "x": 0, - "y": 42.7314262, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107374", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107374", + "_tpl": "5888945a2459774bf43ba385", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "all_mods (38) [b25781fb-9d35-4c6b-bccf-57d7f5662b78]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 213.268051, + "y": -0.289, + "z": 410.2671 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 105.076996, - "y": -1.6062355, - "z": 54.95146 - }, - "Rotation": { - "x": 1.08666444, - "y": 358.952484, - "z": 359.961334 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107376", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107376", + "_tpl": "5d120a10d7ad1a4e1026ba85", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "all_mods (39) [7c9c90db-8c66-445c-a227-e369fa1d8bd4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 211.259048, + "y": 0.238, + "z": 411.8511 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 223.6565, - "y": 3.47191238, - "z": 369.44104 - }, - "Rotation": { - "x": 1.63424611, - "y": 62.8417168, - "z": 179.161789 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107378", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107378", + "_tpl": "5a7c147ce899ef00150bd8b8", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "all_mods (41) [973bd936-0879-4c3c-b698-aafc68b7763d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 210.473053, + "y": -0.209, + "z": 411.6911 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": 157.919983, - "y": 3.65533066, - "z": 455.957031 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910737a", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910737a", + "_tpl": "5cf78496d7f00c065703d6ca", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "all_mods (42) [311907fe-2005-4ce1-b203-0c67f5f40d44]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 209.215042, + "y": -0.962, + "z": 411.7411 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[6]", - "Weight": 1, - "Position": { - "x": 83.254, - "y": 0.4772606, - "z": -10.3953247 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910737c", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910737c", + "_tpl": "5b07db875acfc40dc528a5f6", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "all_mods (43) [3af1cfdd-0d6e-4cf1-adc8-099054caa378]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 208.545044, + "y": -0.962, + "z": 410.7071 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[7]", - "Weight": 1, - "Position": { - "x": 311.462, - "y": 3.39890671, - "z": 413.368042 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910755e", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910755e", - "_tpl": "64f09c02b63b74469b6c149f", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910737e", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910737e", + "_tpl": "59bfe68886f7746004266202", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "item_quest_c10_jek [5b8e8120-36fb-4d8a-8e1c-b2509f9d9641]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 77.51741, - "y": 1.64690018, - "z": 140.0864 - }, - "Rotation": { - "x": 90.0, - "y": 159.48703, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 81.737, - "y": 1.888, - "z": 144.2245 - }, - "Rotation": { - "x": 90, - "y": 0, - "z": 0 - } + { + "Id": "all_mods (45) [52b2e6dd-fc58-4445-9b06-61e346d8c7a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 208.49704, + "y": -0.2, + "z": 407.9821 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 84.013, - "y": 1.4772, - "z": 129.821 - }, - "Rotation": { - "x": 90, - "y": 166.374008, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107380", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107380", + "_tpl": "5cf13123d7f00c1085616a50", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "all_mods (47) [c8884605-739b-455e-bf77-fa9bda010c81]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 209.414047, + "y": -0.537, + "z": 407.3631 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 80.18001, - "y": 3.9165, - "z": 143.7027 - }, - "Rotation": { - "x": 90, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107382", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107382", + "_tpl": "5a7c147ce899ef00150bd8b8", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "all_mods (49) [f06240da-f0c3-48a8-ad47-8c2e770f3a7d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 85.44602, + "y": 3.451, + "z": 297.868073 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[6]", - "Weight": 1, - "Position": { - "x": 83.304, - "y": 1.63770008, - "z": 124.508 - }, - "Rotation": { - "x": 90, - "y": 284.898, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107384", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107384", + "_tpl": "5c6c2c9c2e2216000f2002e4", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "all_mods_sup (4) [84705f8a-eea9-43ec-b197-398545d6c8bc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 66.83801, + "y": 8.025, + "z": 316.98407 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[9]", - "Weight": 1, - "Position": { - "x": 77.51741, - "y": 1.64690018, - "z": 140.0864 - }, - "Rotation": { - "x": 90, - "y": 159.48703, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107560", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107560", - "_tpl": "638e0057ab150a5f56238960", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910738b", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910738b", + "_tpl": "5cf13123d7f00c1085616a50", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "item_quest_c11_gmed [b4ad0c87-ec56-4286-bb4b-49f1cfbc903d]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 97.119, - "y": 2.66969967, - "z": 320.445 - }, - "Rotation": { - "x": 0.0, - "y": 310.948242, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 97.5265045, - "y": 2.67219973, - "z": 317.0785 - }, - "Rotation": { - "x": 0, - "y": 88.92236, - "z": 0 - } + { + "Id": "all_mods_sup [d5a4e7a8-00d4-43be-b6ea-c52f2d517239]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 65.38402, + "y": 8.007, + "z": 316.788055 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 95.8846, - "y": 2.67089987, - "z": 319.081177 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910738d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910738d", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 30.1253319, - "z": 0 + { + "_id": "66c90dc2c7d43f68b910738e", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c90dc2c7d43f68b910738d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 38 + } } + ] + }, + { + "Id": "all_money (58) [34b5c769-dd16-4548-811e-2e5848b9ee6a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 40.091, + "y": 4.672, + "z": 156.453 + }, + "Rotation": { + "x": 0.0, + "y": 337.854767, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 97.119, - "y": 2.66969967, - "z": 320.445 - }, - "Rotation": { - "x": 0, - "y": 310.948242, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107390", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107390", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 943 + } } + ] + }, + { + "Id": "Ammo (1) [df0758ac-fdb2-43d4-b653-12a8afcc41b6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 166.773, + "y": 3.127, + "z": 158.798 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 92.7830048, - "y": 3.68019962, - "z": 324.0796 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107396", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107396", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 92.884, - "y": 2.66839981, - "z": 323.711 + { + "_id": "66c90dc2c7d43f68b9107397", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c90dc2c7d43f68b9107396", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } }, - "Rotation": { - "x": 0, - "y": 49.0511627, - "z": 0 + { + "_id": "66c90dc2c7d43f68b9107398", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c90dc2c7d43f68b9107396", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "Ammo (5) [99c3e0df-8434-4927-a905-f732c5e9bb97]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -222.392, + "y": 3.7532, + "z": 121.825 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": 91.192, - "y": 2.6707, - "z": 323.2334 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91073a7", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91073a7", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 90.2078857, - "z": 0 + { + "_id": "66c90dc2c7d43f68b91073a8", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66c90dc2c7d43f68b91073a7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "Ammo [973e3089-7049-46c0-bc8d-e249f0b0042d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -251.184, + "y": 4.202, + "z": 133.677338 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[6]", - "Weight": 1, - "Position": { - "x": 92.4178, - "y": 4.29579973, - "z": 324.1068 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91073b3", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91073b3", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 180, - "z": 180 + { + "_id": "66c90dc2c7d43f68b91073b4", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc2c7d43f68b91073b3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "ammo_all (35) [2dbf2b89-b0b0-431a-b3b1-8ecff450f2b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 51.33301, + "y": 2.849, + "z": 490.480133 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[7]", - "Weight": 1, - "Position": { - "x": 95.28351, - "y": 2.671, - "z": 318.9527 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91073b8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91073b8", + "_tpl": "65702452cfc010a0f50069fe", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 337.8288, - "z": 0 - } - }, - { - "Name": "groupPoint[8]", - "Weight": 1, - "Position": { - "x": 98.317, - "y": 2.67039967, - "z": 316.638977 + { + "_id": "66c90dc2c7d43f68b91073b9", + "_tpl": "5d6e6891a4b9361bd473feea", + "parentId": "66c90dc2c7d43f68b91073b8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[9]", - "Weight": 1, - "Position": { - "x": 95.209, - "y": 2.6704998, - "z": 323.802979 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107562", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107562", - "_tpl": "63927b29c115f907b14700b9", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc2c7d43f68b91073ba", + "_tpl": "5d6e6891a4b9361bd473feea", + "parentId": "66c90dc2c7d43f68b91073b8", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "item_quest_c13_nabl [bfa76e14-58ae-413a-93a4-7d4dd6edf9b2]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 213.235886, - "y": -0.88670063, - "z": 410.321228 - }, - "Rotation": { - "x": 270.0, - "y": 275.672, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 208.7273, - "y": -0.448801041, - "z": 408.634583 - }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 - } + { + "Id": "ammo_all (39) [70bddf7c-c02b-4e04-8af1-cfcc727f0bab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 50.73601, + "y": 8.326, + "z": 85.46502 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 210.5096, - "y": -0.773201, - "z": 407.500427 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91073c2", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91073c2", + "_tpl": "57372deb245977685d4159b3", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 208.44899, - "y": -0.370000839, - "z": 412.143982 + { + "_id": "66c90dc2c7d43f68b91073c3", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66c90dc2c7d43f68b91073c2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": 213.235886, - "y": -0.88670063, - "z": 410.321228 - }, - "Rotation": { - "x": 270, - "y": 275.672, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107564", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107564", - "_tpl": "638dfc803083a019d447768e", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "item_quest_c2_aud_docs [09857eb0-d69c-4015-aeaf-0f9cf9a1c153]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -177.12001, - "y": 6.1466, - "z": 227.095 - }, - "Rotation": { - "x": 90.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107566", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107566", - "_tpl": "63a943cead5cc12f22161ff7", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc2c7d43f68b91073c4", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66c90dc2c7d43f68b91073c2", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "item_quest_c21_look [e636338f-be98-4874-93fd-acfdf0ac1a0a]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -70.079, - "y": 5.75205374, - "z": 69.437 - }, - "Rotation": { - "x": 270.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -70.079, - "y": 5.75205374, - "z": 69.437 - }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 - } + { + "Id": "ammo_all (48) [e68cc37e-284f-42cd-8ad6-ec74712a8685]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 45.43101, + "y": 7.916, + "z": 95.0790253 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -65.262, - "y": 5.88999939, - "z": 66.363 - }, - "Rotation": { - "x": 270, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107568", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107568", - "_tpl": "638e9d5536b3b72c944e2fc7", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "item_quest_c28_medbook [26dd8943-4bd3-40b2-9931-4edb2f763710]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -53.01919, - "y": 3.51169968, - "z": 199.7029 - }, - "Rotation": { - "x": 22.6629715, - "y": 9.852069, - "z": -4.6260584e-7 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -53.01919, - "y": 3.51169968, - "z": 199.7029 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91073db", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91073db", + "_tpl": "6570253ec5d7d4cb4d078573", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 22.6629715, - "y": 9.852069, - "z": -4.6260584e-7 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -50.0019951, - "y": 3.21369982, - "z": 198.37 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910756a", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910756a", - "_tpl": "6393262086e646067c176aa2", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66c90dc2c7d43f68b91073dc", + "_tpl": "5735fdcd2459776445391d61", + "parentId": "66c90dc2c7d43f68b91073db", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "item_quest_c3_teh_flash [212185da-3781-4ff9-b3ad-e4717dbda0a3]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 66.8009949, - "y": 7.72719955, - "z": 303.143 - }, - "Rotation": { - "x": 270.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910756c", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910756c", - "_tpl": "638cbb3ba63f1b49be6a300e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_all (49) [611d5957-e410-498d-a7d5-cb1834c48190]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 45.3790131, + "y": 7.792, + "z": 94.0250244 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91073df", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91073df", + "_tpl": "657024d2bfc87b3a34093235", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91073e0", + "_tpl": "5ba26844d4351e00334c9475", + "parentId": "66c90dc2c7d43f68b91073df", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "item_quest_c7_mel [15250209-d435-4a60-9404-574545d96fa4]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 44.6515, - "y": 11.7606983, - "z": 149.323914 - }, - "Rotation": { - "x": 0.0, - "y": 5.75599957, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 42.2910042, - "y": 12.5537491, - "z": 148.518311 + { + "Id": "ammo_all (53) [c3fccd56-4446-4bee-b526-0796373d5f43]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 44.8380127, + "y": 8.412, + "z": 128.795029 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91073e7", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91073e7", + "_tpl": "65702606cfc010a0f5006a3e", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 28.141243, - "z": 0 + { + "_id": "66c90dc2c7d43f68b91073e8", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c90dc2c7d43f68b91073e7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "ammo_all (58) [630197ed-db5a-4fd3-ac33-220b47f21aff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 125.72403, + "y": 3.256, + "z": 230.862061 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 44.3447, - "y": 12.6434994, - "z": 151.7695 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91073f1", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91073f1", + "_tpl": "5737266524597761006c6a8c", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 280.409149, - "z": 0 + { + "_id": "66c90dc2c7d43f68b91073f2", + "_tpl": "57371eb62459776125652ac1", + "parentId": "66c90dc2c7d43f68b91073f1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "ammo_all (67) [2a848bf0-2666-486d-b105-56af3d08c699]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 78.33601, + "y": 3.325, + "z": 275.323059 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 36.995472, - "y": 12.5019989, - "z": 153.307312 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107402", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107402", + "_tpl": "6570244ec5d7d4cb4d078558", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107403", + "_tpl": "5d6e6869a4b9361c140bcfde", + "parentId": "66c90dc2c7d43f68b9107402", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } }, - "Rotation": { - "x": 0, - "y": 145.904968, - "z": 0 + { + "_id": "66c90dc2c7d43f68b9107404", + "_tpl": "5d6e6869a4b9361c140bcfde", + "parentId": "66c90dc2c7d43f68b9107402", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "AmmoBox 5.56x45_Leo_common [b3fd074b-de4c-40dc-ae26-fb3bb58e3b48]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.1750031, + "y": 1.118, + "z": -77.49002 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 36.3492126, - "y": 12.2785988, - "z": 148.5618 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107437", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107437", + "_tpl": "657024e8cfc010a0f5006a0d", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 91.44142, - "z": 0 + { + "_id": "66c90dc2c7d43f68b9107438", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc2c7d43f68b9107437", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox NATO_Kochnev_Common (7) [a1b73448-222e-4607-bb31-d1ee3a9a15a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 64.324, + "y": 3.677, + "z": 345.055 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 41.0520058, - "y": 12.5601988, - "z": 154.98201 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107447", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107447", + "_tpl": "657024e8cfc010a0f5006a0d", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 41.96576, - "z": 0 + { + "_id": "66c90dc2c7d43f68b9107448", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc2c7d43f68b9107447", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox RUS_Kochnev_Common (13) [22df9879-9a87-43c4-bd64-a4e209891690]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.166, + "y": 5.827, + "z": 265.572 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": 34.95802, - "y": 12.5019989, - "z": 152.327286 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910744b", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910744b", + "_tpl": "57372f5c24597769917c0131", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 99.00099, - "z": 0 + { + "_id": "66c90dc2c7d43f68b910744c", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66c90dc2c7d43f68b910744b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "AmmoBox RUS_Kochnev_Common (7) [9def4800-ce12-410e-8175-e4a7f561a46d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.356, + "y": 3.645, + "z": 344.242 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[6]", - "Weight": 1, - "Position": { - "x": 44.6515, - "y": 11.7606983, - "z": 149.323914 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107459", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107459", + "_tpl": "6570262d1419851aef03e72d", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 5.75599957, - "z": 0 + { + "_id": "66c90dc2c7d43f68b910745a", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c90dc2c7d43f68b9107459", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "AmmoBox RUS_Kochnev_Rare (1) [85242f3c-88c4-435c-935a-5b88afd78f3f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 178.7042, + "y": 4.0469, + "z": 331.3008 + }, + "Rotation": { + "x": 0.0, + "y": 148.0653, + "z": 0.0 }, - { - "Name": "groupPoint[7]", - "Weight": 1, - "Position": { - "x": 42.913, - "y": 11.7292986, - "z": 152.357513 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910745d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910745d", + "_tpl": "65702584cfc010a0f5006a2f", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + { + "_id": "66c90dc2c7d43f68b910745e", + "_tpl": "5e023cf8186a883be655e54f", + "parentId": "66c90dc2c7d43f68b910745d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "AmmoBox RUS_Kochnev_Rare (2) [6b9fa94b-5b44-44b8-acec-c7b199c5f089]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 179.081, + "y": 3.808, + "z": 331.769 + }, + "Rotation": { + "x": 0.0, + "y": 148.0653, + "z": 0.0 }, - { - "Name": "groupPoint[8]", - "Weight": 1, - "Position": { - "x": 36.4939842, - "y": 11.8429985, - "z": 157.480011 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107461", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107461", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } }, - "Rotation": { - "x": 0, - "y": 278.826019, - "z": 0 + { + "_id": "66c90dc2c7d43f68b9107462", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c90dc2c7d43f68b9107461", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "ballet_key (8) [c5e14a0d-5525-4ca7-a290-b2955864b822]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 114.330627, + "y": 1.4228, + "z": 119.140633 + }, + "Rotation": { + "x": 280.081329, + "y": 71.3038, + "z": 0.0 }, - { - "Name": "groupPoint[9]", - "Weight": 1, - "Position": { - "x": 40.6016045, - "y": 11.7158985, - "z": 153.7631 - }, - "Rotation": { - "x": 292.661, - "y": 180, - "z": 180 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910756e", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910756e", - "_tpl": "638df4cc7b560b03794a18d2", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b910746a", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910746a", + "_tpl": "63a39e1d234195315d4020bd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "item_quest_keeper2_diary [f9a31593-4aeb-4a31-b0b5-55344b73ac86]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -127.914, - "y": 2.38099957, - "z": 397.042969 - }, - "Rotation": { - "x": 90.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -132.226, - "y": 2.37899971, - "z": 397.643982 - }, - "Rotation": { - "x": 90, - "y": 0, - "z": 0 - } + { + "Id": "canned_food_drink_Kochnev_Rare (86) [615214f8-b938-4b2f-998f-1ff1b0061607]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -82.40201, + "y": 2.43099976, + "z": 159.633987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -127.914, - "y": 2.38099957, - "z": 397.042969 - }, - "Rotation": { - "x": 90, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107490", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107490", + "_tpl": "57513f07245977207e26a311", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "eletronic (14) [892401b3-06c5-40c6-85f9-935f0ce5eb40]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 167.844, + "y": 3.314, + "z": 150.938 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -129.309, - "y": 2.37359953, - "z": 392.5885 - }, - "Rotation": { - "x": 90, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107570", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107570", - "_tpl": "63989ced706b793c7d60cfef", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074ac", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074ac", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "item_quest_letter_c4_pos [09be6200-f3f7-48ac-a00b-1f6295a112ad]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 39.2349968, - "y": 1.51599979, - "z": 117.6931 - }, - "Rotation": { - "x": 90.0, - "y": 280.164, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 39.2349968, - "y": 1.51599979, - "z": 117.6931 - }, - "Rotation": { - "x": 90, - "y": 280.164, - "z": 0 - } + { + "Id": "eletronic (2) [ea6d90e8-0f89-4a63-a482-9325a293d1c0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 171.712, + "y": 3.347, + "z": 160.973 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 36.1079979, - "y": 1.29199982, - "z": 126.599 - }, - "Rotation": { - "x": 90, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074b0", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074b0", + "_tpl": "56742c324bdc2d150f8b456d", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "eletronic (26) [63bb7519-207b-4360-889b-8d9b8998f6c2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 163.096, + "y": 3.314, + "z": 141.115 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 42.3956947, - "y": 1.91799974, - "z": 118.768196 - }, - "Rotation": { - "x": 90, - "y": 72.77599, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074b4", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074b4", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "eletronic (29) [701d6e1d-e618-4b33-bec2-126a669d1716]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 161.873, + "y": 3.314, + "z": 141.589 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 39.475, - "y": 1.19559956, - "z": 113.470993 - }, - "Rotation": { - "x": 90, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107572", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107572", - "_tpl": "638cbc68a63f1b49be6a3010", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "item_quest_st2_chem_cook [7fa3d139-280d-4080-8feb-49dbb1eb2c7e]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -27.506, - "y": 7.433, - "z": -109.472992 - }, - "Rotation": { - "x": 354.911682, - "y": 347.6351, - "z": 114.987312 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -28.5096, - "y": 7.37619972, - "z": -117.110794 - }, - "Rotation": { - "x": 0.554396331, - "y": 39.9235153, - "z": 273.259583 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074b6", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074b6", + "_tpl": "5d403f9186f7743cac3f229b", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "eletronic (30) [4ebea715-2dca-4435-b643-9aac8c2d3c65]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 160.355, + "y": 3.314, + "z": 141.159 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -41.1733, - "y": 7.6146, - "z": -110.085281 - }, - "Rotation": { - "x": 273.511017, - "y": 273.276245, - "z": 320.0882 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074b8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074b8", + "_tpl": "573477e124597737dd42e191", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "eletronic (31) [bbe2f0f6-e236-4c55-9055-c7074f85cc99]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 160.747, + "y": 3.314, + "z": 142.162 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -27.506, - "y": 7.433, - "z": -109.472992 - }, - "Rotation": { - "x": 354.911682, - "y": 347.6351, - "z": 114.987312 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074ba", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074ba", + "_tpl": "590a386e86f77429692b27ab", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "eletronic (6) [028e1eab-2cfb-4c13-b378-bfd006426d62]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 167.756, + "y": 2.3920002, + "z": 166.547 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 41.592, - "y": 1.57599974, - "z": -53.9449921 - }, - "Rotation": { - "x": 4.332853, - "y": 180, - "z": 180 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074c2", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074c2", + "_tpl": "60098b1705871270cd5352a1", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "eletronic (7) [d63338e3-6bb2-403f-8432-271798733fa5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 165.293, + "y": 3.314, + "z": 157.441 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 58.4839973, - "y": 0.9229994, - "z": -72.7649841 - }, - "Rotation": { - "x": 0, - "y": 326.8631, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107574", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107574", - "_tpl": "64f5b4f71a5f313cb144c06c", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074c4", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074c4", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "item_quest_st2_diary_cook [3480bcdc-6b7f-4b8f-9c6f-c467ce8aeb21]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -42.788002, - "y": 10.1146, - "z": -66.412 - }, - "Rotation": { - "x": 270.019775, - "y": 127.763008, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -41.3808975, - "y": 5.9082, - "z": -42.9324036 - }, - "Rotation": { - "x": 273.0994, - "y": 9.47437e-5, - "z": 344.8277 + { + "Id": "eletronic [3de5cd94-0192-4924-a667-14e6133225ea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 170.66, + "y": 3.347, + "z": 161.12 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074c8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074c8", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food drink (11) [275c3e6b-5247-4d1f-a819-e7da4deca061]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -201.15, + "y": 5.275, + "z": 345.574 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -29.297, - "y": 10.104, - "z": -70.153 - }, - "Rotation": { - "x": 85.49959, - "y": 8.704493e-5, - "z": 306.773468 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074d6", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074d6", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food drink (20) [bc805a95-8671-4b7c-9646-1ad44b8b7d44]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -206.91, + "y": 5.275, + "z": 345.37 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -42.788002, - "y": 10.1146, - "z": -66.412 - }, - "Rotation": { - "x": 270.019775, - "y": 127.763008, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074dc", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074dc", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food drink (6) [f69924c7-3117-41be-b286-0d1324b42ad4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 152.131, + "y": 3.258, + "z": 135.566 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": -26.149, - "y": 10.6282, - "z": -56.0783 - }, - "Rotation": { - "x": 271.981384, - "y": 180, - "z": 180 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074e6", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074e6", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107576", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107576", - "_tpl": "64f69b4267e11a7c6206e010", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "food drink (7) [eebc8ddf-40dc-48c6-ae00-1b16cd963a62]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -197.344, + "y": 5.275, + "z": 350.036 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074e8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074e8", + "_tpl": "65815f0e647e3d7246384e14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "item_quest_st2_kpss2 [5d3f05e7-1c35-45fb-829f-b13da8b18b58]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 245.893982, - "y": -0.6870003, - "z": 55.196 - }, - "Rotation": { - "x": 9.897174, - "y": 308.012848, - "z": 4.67009926 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 249.290985, - "y": -0.5653, - "z": 57.7654 - }, - "Rotation": { - "x": 273.0994, - "y": 6.316254e-5, - "z": 309.952545 + ] + }, + { + "Id": "food drink (9) [25620c9d-0a06-42d3-8844-e9775f6c0185]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 151.264, + "y": 2.009, + "z": 137.677 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074ec", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074ec", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food office staff (14) [16aa9e8f-ff42-4b5c-b44d-e94a94496c2c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -59.554, + "y": 4.38, + "z": 456.15 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 245.601379, - "y": -0.324500084, - "z": 57.9813 - }, - "Rotation": { - "x": 0, - "y": 0, - "z": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074f6", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074f6", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food office staff (16) [1c2e7cb4-10ea-464e-9f82-322fcdd0d81e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 74.873, + "y": 3.037, + "z": -18.881 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 245.893982, - "y": -0.6870003, - "z": 55.196 - }, - "Rotation": { - "x": 9.897174, - "y": 308.012848, - "z": 4.67009926 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074f8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074f8", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "food office staff (16) [d2fa5dd0-4260-4823-96e3-bd36797649e5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -51.732, + "y": 5.008, + "z": 458.964 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 247.161987, - "y": -0.479999542, - "z": 51.082 - }, - "Rotation": { - "x": 272.773041, - "y": -3.52916722e-5, - "z": 331.0864 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107578", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107578", - "_tpl": "64f07f7726cfa02c506f8ac0", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074fa", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074fa", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_all (18) [599506b6-aae8-401a-be83-0525878e1311]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 111.012024, - "y": 7.182, - "z": 228.753067 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910757e", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910757e", - "_tpl": "66b37ea4c5d72b0277488439", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food office staff (2) [2a22ece2-835d-437e-895d-ed60f72e78f0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 90.265, + "y": 3.037, + "z": -22.438 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074fc", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074fc", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_all (28) [44778706-170a-46bc-b6b5-a9501f92152b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 106.38002, - "y": 4.237, - "z": 222.889053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107584", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107584", - "_tpl": "590de7e986f7741b096e5f32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food office staff (2) [59aeca23-767e-42c9-a945-696b5a7b12bc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -46.967, + "y": 5.516, + "z": 337.329 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91074fe", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91074fe", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_all (39) [91c546d8-b258-4940-9551-3900af3979a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 279.782074, - "y": 6.338, - "z": 380.0391 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107586", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107586", - "_tpl": "66b37ea4c5d72b0277488439", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food office staff (25) [14f8970a-e4a8-4b03-895d-2ed1a7d7085d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 113.193, + "y": 2.347, + "z": -18.592 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107500", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107500", + "_tpl": "59e358a886f7741776641ac3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_all (42) [174104a2-6caf-4c30-879a-798b9c4305cc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 277.737061, - "y": 7.059, - "z": 382.8311 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107588", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107588", - "_tpl": "5d235a5986f77443f6329bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food office staff (9) [e267ad36-50ee-411a-95e7-79da7bfc2c95]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -50.786, + "y": 5.008, + "z": 458.964 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910750a", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910750a", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_all (46) [afb19572-2653-475a-bd60-fce868c69729]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 65.1650162, - "y": 7.223, - "z": 308.012054 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910758c", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910758c", - "_tpl": "59e3639286f7741777737013", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone_Kochnev_Common (1) [762152ae-ef60-4fca-82d2-b39eabe78eed]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -52.818, + "y": 1.94399977, + "z": -45.4840164 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107510", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107510", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_all (50) [3c52666a-445d-4b4c-b746-d9717e3bab4e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.047028, - "y": 3.232, - "z": 396.0881 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910758e", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910758e", - "_tpl": "5d235a5986f77443f6329bc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone_Kochnev_Common (19) [9867c05a-766a-4c3c-88aa-85485c515042]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -40.9110031, + "y": 6.592, + "z": -31.044014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107514", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107514", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_all (66) (37) [02784188-1441-4636-86fb-56aa02753692]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 98.1890259, - "y": -1.054, - "z": 37.65801 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107596", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107596", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone_Kochnev_Common (26) [106da496-bf0d-4937-8907-a42b2d70eb21]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -51.15, + "y": 6.437, + "z": -41.306015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107518", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107518", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_all (73) [4b6f445f-5349-49d1-8c8d-06a7c1dc4bf5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.05302, - "y": 7.263, - "z": 314.361053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910759a", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910759a", - "_tpl": "655c66e40b2de553b618d4b8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone_Kochnev_Common (5) [158e0171-1835-45c6-9662-43e2fcf31534]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -43.8110046, + "y": 1.94399977, + "z": -36.905014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910751e", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910751e", + "_tpl": "57513fcc24597720a31c09a6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_all (86) [5b5847f0-2be5-4987-9bc4-c95edc872524]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -249.183, - "y": 4.603, - "z": 130.317 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075a4", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075a4", - "_tpl": "59e3647686f774176a362507", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone_Kochnev_Common (60) [fabf265e-58f1-4d31-94a9-3444714bc9de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -35.8240051, + "y": 10.9019995, + "z": -54.04902 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107526", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107526", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jeverly_all (87) [8ee0e274-b40a-4faa-aead-076f38b13bcf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -246.04, - "y": 4.603, - "z": 133.174 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075a6", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075a6", - "_tpl": "5f745ee30acaeb0d490d8c5b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone_Leo_Rare (36) [f291758a-5ea8-42aa-ab77-150668140282]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 178.638, + "y": 4.305, + "z": 235.72 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910752e", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910752e", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jewel_small_Kochnev_SuperRare (1) [f77f2849-b60a-4822-8de8-e3bde8a6c9e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 110.961792, - "y": 4.85149956, - "z": 137.281677 - }, - "Rotation": { - "x": 0.0, - "y": 267.3643, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075ae", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075ae", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone_Leo_Rare (44) [fa5c5436-16f4-4264-a09b-0fba0327f316]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 228.836, + "y": 5.895, + "z": 484.521 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107532", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107532", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jewerly hooka (17) [194bcf1e-1bae-4a58-aa3f-364f768360d3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -211.69, - "y": 4.938, - "z": 299.99 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075b8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075b8", - "_tpl": "655c669103999d3c810c025b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_zone_Leo_Rare (53) [ddc95488-d8c8-4d73-b3de-856109233ba9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 268.296, + "y": 5.538, + "z": 511.482 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910753c", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910753c", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "jewerly hooka (2) [33616e83-b6db-4d3d-8dcd-4da1c5d9fdd7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -203.948, - "y": 4.866, - "z": 306.511 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075ba", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075ba", - "_tpl": "62a091170b9d3c46de5b6cf2", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Key hookah [e7d0ef1e-21fd-4f8e-80b2-33dce3825501]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 168.0757, - "y": 1.78200006, - "z": 161.8081 - }, - "Rotation": { - "x": 11.201, - "y": 291.826, - "z": 3.037143 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 169.1445, - "y": 2.2618, - "z": 165.7763 - }, - "Rotation": { - "x": 271.1219, - "y": 179.999908, - "z": 300.098083 - } + { + "Id": "housegoods (8) [d8d5cab5-8e99-43d9-849f-66786eb28d1a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -254.613022, + "y": 5.346, + "z": 150.912 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 168.2735, - "y": 1.92210007, - "z": 164.3672 - }, - "Rotation": { - "x": 2.085996, - "y": 103.784, - "z": 271.912 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910755a", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910755a", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "item_barter_quest_gphonex [5eec2174-2eee-4e01-ba1f-b9ee7f18f03e]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 311.462, + "y": 3.39890671, + "z": 413.368042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 168.0757, - "y": 1.78200006, - "z": 161.8081 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -53.8750038, + "y": 2.17019272, + "z": 198.96199 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 11.201, - "y": 291.826, - "z": 3.037143 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 164.264191, - "y": 1.6443001, - "z": 168.1431 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -9.284, + "y": 2.87630844, + "z": 340.788025 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 273.2279, - "y": 180, - "z": 180 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 163.7102, - "y": 1.47460008, - "z": 157.8143 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 131.34549, + "y": 3.94819832, + "z": 239.256989 + }, + "Rotation": { + "x": 0, + "y": 42.7314262, + "z": 0 + } }, - "Rotation": { - "x": 78.92797, - "y": 355.268158, - "z": 86.1219 - } - }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": 167.9183, - "y": 1.60050011, - "z": 154.9508 + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 105.076996, + "y": -1.6062355, + "z": 54.95146 + }, + "Rotation": { + "x": 1.08666444, + "y": 358.952484, + "z": 359.961334 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 223.6565, + "y": 3.47191238, + "z": 369.44104 + }, + "Rotation": { + "x": 1.63424611, + "y": 62.8417168, + "z": 179.161789 + } + }, + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": 157.919983, + "y": 3.65533066, + "z": 455.957031 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[6]", + "Weight": 1, + "Position": { + "x": 83.254, + "y": 0.4772606, + "z": -10.3953247 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 273.764954, - "y": 307.366, - "z": 0.591032743 + { + "Name": "groupPoint[7]", + "Weight": 1, + "Position": { + "x": 311.462, + "y": 3.39890671, + "z": 413.368042 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + } + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910755e", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910755e", + "_tpl": "64f09c02b63b74469b6c149f", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "item_quest_c10_jek [5b8e8120-36fb-4d8a-8e1c-b2509f9d9641]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 77.51741, + "y": 1.64690018, + "z": 140.0864 + }, + "Rotation": { + "x": 90.0, + "y": 159.48703, + "z": 0.0 }, - { - "Name": "groupPoint[6]", - "Weight": 1, - "Position": { - "x": 164.96759, - "y": 1.51080012, - "z": 144.6231 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 81.737, + "y": 1.888, + "z": 144.2245 + }, + "Rotation": { + "x": 90, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 84.013, + "y": 1.4772, + "z": 129.821 + }, + "Rotation": { + "x": 90, + "y": 166.374008, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 80.18001, + "y": 3.9165, + "z": 143.7027 + }, + "Rotation": { + "x": 90, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[6]", + "Weight": 1, + "Position": { + "x": 83.304, + "y": 1.63770008, + "z": 124.508 + }, + "Rotation": { + "x": 90, + "y": 284.898, + "z": 0 + } }, - "Rotation": { - "x": 78.15202, - "y": 178.474136, - "z": 178.474136 + { + "Name": "groupPoint[9]", + "Weight": 1, + "Position": { + "x": 77.51741, + "y": 1.64690018, + "z": 140.0864 + }, + "Rotation": { + "x": 90, + "y": 159.48703, + "z": 0 + } + } + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107560", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107560", + "_tpl": "638e0057ab150a5f56238960", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "item_quest_c11_gmed [b4ad0c87-ec56-4286-bb4b-49f1cfbc903d]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 97.119, + "y": 2.66969967, + "z": 320.445 + }, + "Rotation": { + "x": 0.0, + "y": 310.948242, + "z": 0.0 }, - { - "Name": "groupPoint[7]", - "Weight": 1, - "Position": { - "x": 165.6147, - "y": 1.61680007, - "z": 147.094391 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 97.5265045, + "y": 2.67219973, + "z": 317.0785 + }, + "Rotation": { + "x": 0, + "y": 88.92236, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 95.8846, + "y": 2.67089987, + "z": 319.081177 + }, + "Rotation": { + "x": 0, + "y": 30.1253319, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 97.119, + "y": 2.66969967, + "z": 320.445 + }, + "Rotation": { + "x": 0, + "y": 310.948242, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 92.7830048, + "y": 3.68019962, + "z": 324.0796 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 132.081, - "z": 0 - } - }, - { - "Name": "groupPoint[8]", - "Weight": 1, - "Position": { - "x": 158.0466, - "y": 1.47670007, - "z": 139.2446 + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 92.884, + "y": 2.66839981, + "z": 323.711 + }, + "Rotation": { + "x": 0, + "y": 49.0511627, + "z": 0 + } }, - "Rotation": { - "x": 87.0401154, - "y": 306.1459, - "z": 132.927933 - } - }, - { - "Name": "groupPoint[9]", - "Weight": 1, - "Position": { - "x": 152.1227, - "y": 1.6443001, - "z": 135.6361 + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": 91.192, + "y": 2.6707, + "z": 323.2334 + }, + "Rotation": { + "x": 0, + "y": 90.2078857, + "z": 0 + } }, - "Rotation": { - "x": 88.26416, - "y": 275.641968, - "z": 0 - } - }, - { - "Name": "groupPoint[10]", - "Weight": 1, - "Position": { - "x": 154.589, - "y": 1.65810013, - "z": 137.6211 + { + "Name": "groupPoint[6]", + "Weight": 1, + "Position": { + "x": 92.4178, + "y": 4.29579973, + "z": 324.1068 + }, + "Rotation": { + "x": 0, + "y": 180, + "z": 180 + } }, - "Rotation": { - "x": 87.66108, - "y": 269.7711, - "z": 269.643066 - } - }, - { - "Name": "groupPoint[11]", - "Weight": 1, - "Position": { - "x": 166.135391, - "y": 2.1205, - "z": 165.1156 - }, - "Rotation": { - "x": 90, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": true, - "Root": "66c90dc2c7d43f68b91075bc", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075bc", - "_tpl": "6582dbf0b8d7830efc45016f", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "key_from_city_quest [c1c6be4b-5ea5-4f67-81f2-c3f827393f1b]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 246.691513, - "y": -0.07700001, - "z": 47.761 - }, - "Rotation": { - "x": 270.504364, - "y": 180.0, - "z": 180.0 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 247.702011, - "y": -0.403, - "z": 58.834 + { + "Name": "groupPoint[7]", + "Weight": 1, + "Position": { + "x": 95.28351, + "y": 2.671, + "z": 318.9527 + }, + "Rotation": { + "x": 0, + "y": 337.8288, + "z": 0 + } }, - "Rotation": { - "x": 88.941864, - "y": 177.9294, - "z": 180.000015 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 242.953, - "y": -0.7722, - "z": 55.2452 + { + "Name": "groupPoint[8]", + "Weight": 1, + "Position": { + "x": 98.317, + "y": 2.67039967, + "z": 316.638977 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 271.2684, - "y": 180, - "z": 180 + { + "Name": "groupPoint[9]", + "Weight": 1, + "Position": { + "x": 95.209, + "y": 2.6704998, + "z": 323.802979 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 246.691513, - "y": -0.07700001, - "z": 47.761 - }, - "Rotation": { - "x": 270.504364, - "y": 180, - "z": 180 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107562", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107562", + "_tpl": "63927b29c115f907b14700b9", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "item_quest_c13_nabl [bfa76e14-58ae-413a-93a4-7d4dd6edf9b2]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 213.235886, + "y": -0.88670063, + "z": 410.321228 + }, + "Rotation": { + "x": 270.0, + "y": 275.672, + "z": 0.0 }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": 243.3352, - "y": -3.6153, - "z": 52.9535027 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 208.7273, + "y": -0.448801041, + "z": 408.634583 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 348.6847, - "y": 269.255859, - "z": 181.110565 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": 245.672012, - "y": -3.622, - "z": 50.7600021 + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 210.5096, + "y": -0.773201, + "z": 407.500427 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 36.1361961, - "y": 0, - "z": 0 - } - }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": 248.3334, - "y": -3.6317, - "z": 55.3626022 + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 208.44899, + "y": -0.370000839, + "z": 412.143982 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } }, - "Rotation": { - "x": 85.86672, - "y": -4.73806649e-5, - "z": 50.45149 - } - }, - { - "Name": "groupPoint[6]", - "Weight": 1, - "Position": { - "x": 248.9992, - "y": -3.6352, - "z": 53.7660027 - }, - "Rotation": { - "x": 272.511536, - "y": 0, - "z": 0 - } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075be", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075be", - "_tpl": "66687bc89111279d600b5062", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (10) [432d331d-b5c2-4dd7-bd3a-97fc68ee3186]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.198013, - "y": 9.932, - "z": 270.304 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 134.652985, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075c2", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075c2", - "_tpl": "62178c4d4ecf221597654e3d", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (13) [5789062c-5ec5-41af-b9ef-e9cf6ca7f1bd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.38, - "y": 9.932, - "z": 270.601 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 134.652985, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075c3", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075c3", - "_tpl": "5d3eb3b0a4b93615055e84d2", - "upd": { - "FireMode": { - "FireMode": "single" + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": 213.235886, + "y": -0.88670063, + "z": 410.321228 + }, + "Rotation": { + "x": 270, + "y": 275.672, + "z": 0 } } - }, - { - "_id": "66c90dc2c7d43f68b91075c4", - "_tpl": "5d3eb5b6a4b9361eab311902", - "parentId": "66c90dc2c7d43f68b91075c3", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dc2c7d43f68b91075c5", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "66c90dc2c7d43f68b91075c3", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc2c7d43f68b91075c6", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "66c90dc2c7d43f68b91075c5", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc2c7d43f68b91075c7", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "66c90dc2c7d43f68b91075c5", - "slotId": "mod_sight_front" - }, - { - "_id": "66c90dc2c7d43f68b91075c8", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "66c90dc2c7d43f68b91075c3", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc2c7d43f68b91075c9", - "_tpl": "5cc80f8fe4a949033b0224a2", - "parentId": "66c90dc2c7d43f68b91075c8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 - } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (14) [912987cd-1289-483e-a89e-4ee01bdd784d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.556, - "y": 9.932, - "z": 271.297 - }, - "Rotation": { - "x": 0.0, - "y": 252.0725, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075cb", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075cb", - "_tpl": "57371e4124597760ff7b25f1", - "upd": { - "StackObjectsCount": 37 - } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (2) [53628368-300b-49dd-951e-90b65bf5c83b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.161, - "y": 10.044, - "z": 269.648 - }, - "Rotation": { - "x": 0.0, - "y": 252.0725, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075cd", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075cd", - "_tpl": "5d6e6a5fa4b93614ec501745", - "upd": { - "StackObjectsCount": 4 - } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (29) [efbae470-df06-425c-94ed-87c79c7f7820]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.934982, - "y": 0.476999968, - "z": 226.546982 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 134.652985, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075ce", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075ce", - "_tpl": "6410733d5dd49d77bd07847e", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107564", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107564", + "_tpl": "638dfc803083a019d447768e", + "upd": { + "StackObjectsCount": 1 } } - }, - { - "_id": "66c90dc2c7d43f68b91075cf", - "_tpl": "6410745d5dd49d77bd078485", - "parentId": "66c90dc2c7d43f68b91075ce", - "slotId": "mod_stock" - }, - { - "_id": "66c90dc2c7d43f68b91075d0", - "_tpl": "6410758c857473525b08bb77", - "parentId": "66c90dc2c7d43f68b91075ce", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dc2c7d43f68b91075d1", - "_tpl": "64119d1f2c6d6f921a0929f8", - "parentId": "66c90dc2c7d43f68b91075d0", - "slotId": "mod_muzzle" - }, - { - "_id": "66c90dc2c7d43f68b91075d2", - "_tpl": "64119d672c6d6f921a0929fb", - "parentId": "66c90dc2c7d43f68b91075d1", - "slotId": "mod_sight_front" - }, - { - "_id": "66c90dc2c7d43f68b91075d3", - "_tpl": "64119d90dcf48d656f0aa275", - "parentId": "66c90dc2c7d43f68b91075d0", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc2c7d43f68b91075d4", - "_tpl": "64119cdbdcf48d656f0aa272", - "parentId": "66c90dc2c7d43f68b91075ce", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc2c7d43f68b91075d5", - "_tpl": "641074a07fd350b98c0b3f96", - "parentId": "66c90dc2c7d43f68b91075ce", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc2c7d43f68b91075d6", - "_tpl": "5887431f2459777e1612938f", - "parentId": "66c90dc2c7d43f68b91075d5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11.0 - } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (3) [03ece279-741f-4aa5-bdda-211ec2947061]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -130.882, - "y": 10.044, - "z": 269.429 - }, - "Rotation": { - "x": 0.0, - "y": 252.0725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075d8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075d8", - "_tpl": "54527a984bdc2d4e668b4567", - "upd": { - "StackObjectsCount": 54 + { + "Id": "item_quest_c2_aud_docs [09857eb0-d69c-4015-aeaf-0f9cf9a1c153]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -177.12001, + "y": 6.1466, + "z": 227.095 + }, + "Rotation": { + "x": 90.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107566", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107566", + "_tpl": "63a943cead5cc12f22161ff7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (30) [79f03f87-c958-47cd-9d56-e0515752ce95]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.847, - "y": 0.476999968, - "z": 225.913986 - }, - "Rotation": { - "x": 0.0, - "y": 269.8601, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075da", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075da", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_quest_c21_look [e636338f-be98-4874-93fd-acfdf0ac1a0a]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -70.079, + "y": 5.75205374, + "z": 69.437 + }, + "Rotation": { + "x": 270.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -70.079, + "y": 5.75205374, + "z": 69.437 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -65.262, + "y": 5.88999939, + "z": 66.363 + }, + "Rotation": { + "x": 270, + "y": 0, + "z": 0 + } } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (34) [531837f0-23ec-4ec7-8fae-9cbcd7a6cd9c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.734, - "y": 0.5889995, - "z": 224.990982 - }, - "Rotation": { - "x": 0.0, - "y": 252.0725, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075e0", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075e0", - "_tpl": "5d6e6a05a4b93618084f58d0", - "upd": { - "StackObjectsCount": 8 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107568", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107568", + "_tpl": "638e9d5536b3b72c944e2fc7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (38) [7c0cbdf9-df14-497b-bef8-b3e0745eb10e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.347, - "y": 0.5889995, - "z": 227.407 - }, - "Rotation": { - "x": 0.0, - "y": 252.0725, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075e4", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075e4", - "_tpl": "5cc86840d7f00c002412c56c", - "upd": { - "StackObjectsCount": 33 + { + "Id": "item_quest_c28_medbook [26dd8943-4bd3-40b2-9931-4edb2f763710]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -53.01919, + "y": 3.51169968, + "z": 199.7029 + }, + "Rotation": { + "x": 22.6629715, + "y": 9.852069, + "z": -4.6260584e-7 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -53.01919, + "y": 3.51169968, + "z": 199.7029 + }, + "Rotation": { + "x": 22.6629715, + "y": 9.852069, + "z": -4.6260584e-7 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -50.0019951, + "y": 3.21369982, + "z": 198.37 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (4) [f8437e6e-58bb-4311-b1fe-007dcf48fc4a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -132.313, - "y": 10.044, - "z": 269.969 - }, - "Rotation": { - "x": 0.0, - "y": 252.0725, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075e8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075e8", - "_tpl": "590a3cd386f77436f20848cb", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910756a", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910756a", + "_tpl": "6393262086e646067c176aa2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (40) [55aacc7b-9ad1-4d9b-bcae-558d467dea2e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.591, - "y": 0.5889995, - "z": 226.378983 - }, - "Rotation": { - "x": 0.0, - "y": 335.0017, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075ea", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075ea", - "_tpl": "5755383e24597772cb798966", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_quest_c3_teh_flash [212185da-3781-4ff9-b3ad-e4717dbda0a3]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 66.8009949, + "y": 7.72719955, + "z": 303.143 + }, + "Rotation": { + "x": 270.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910756c", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910756c", + "_tpl": "638cbb3ba63f1b49be6a300e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot 135_Leo_Rare (43) [6df849e2-7672-41c7-a6ae-b512fe556952]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.583, - "y": 0.476999968, - "z": 226.887985 - }, - "Rotation": { - "x": 1.70754731e-6, - "y": 134.652985, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91075ed", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91075ed", - "_tpl": "5d3eb3b0a4b93615055e84d2", - "upd": { - "FireMode": { - "FireMode": "single" + { + "Id": "item_quest_c7_mel [15250209-d435-4a60-9404-574545d96fa4]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 44.6515, + "y": 11.7606983, + "z": 149.323914 + }, + "Rotation": { + "x": 0.0, + "y": 5.75599957, + "z": 0.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 42.2910042, + "y": 12.5537491, + "z": 148.518311 + }, + "Rotation": { + "x": 0, + "y": 28.141243, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 44.3447, + "y": 12.6434994, + "z": 151.7695 + }, + "Rotation": { + "x": 0, + "y": 280.409149, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 36.995472, + "y": 12.5019989, + "z": 153.307312 + }, + "Rotation": { + "x": 0, + "y": 145.904968, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 36.3492126, + "y": 12.2785988, + "z": 148.5618 + }, + "Rotation": { + "x": 0, + "y": 91.44142, + "z": 0 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 41.0520058, + "y": 12.5601988, + "z": 154.98201 + }, + "Rotation": { + "x": 0, + "y": 41.96576, + "z": 0 + } + }, + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": 34.95802, + "y": 12.5019989, + "z": 152.327286 + }, + "Rotation": { + "x": 0, + "y": 99.00099, + "z": 0 + } + }, + { + "Name": "groupPoint[6]", + "Weight": 1, + "Position": { + "x": 44.6515, + "y": 11.7606983, + "z": 149.323914 + }, + "Rotation": { + "x": 0, + "y": 5.75599957, + "z": 0 + } + }, + { + "Name": "groupPoint[7]", + "Weight": 1, + "Position": { + "x": 42.913, + "y": 11.7292986, + "z": 152.357513 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[8]", + "Weight": 1, + "Position": { + "x": 36.4939842, + "y": 11.8429985, + "z": 157.480011 + }, + "Rotation": { + "x": 0, + "y": 278.826019, + "z": 0 + } + }, + { + "Name": "groupPoint[9]", + "Weight": 1, + "Position": { + "x": 40.6016045, + "y": 11.7158985, + "z": 153.7631 + }, + "Rotation": { + "x": 292.661, + "y": 180, + "z": 180 } } - }, - { - "_id": "66c90dc2c7d43f68b91075ee", - "_tpl": "5d3eb5b6a4b9361eab311902", - "parentId": "66c90dc2c7d43f68b91075ed", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dc2c7d43f68b91075ef", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "66c90dc2c7d43f68b91075ed", - "slotId": "mod_reciever" - }, - { - "_id": "66c90dc2c7d43f68b91075f0", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "66c90dc2c7d43f68b91075ef", - "slotId": "mod_sight_rear" - }, - { - "_id": "66c90dc2c7d43f68b91075f1", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "66c90dc2c7d43f68b91075ef", - "slotId": "mod_sight_front" - }, - { - "_id": "66c90dc2c7d43f68b91075f2", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "66c90dc2c7d43f68b91075ed", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc2c7d43f68b91075f3", - "_tpl": "5cc80f8fe4a949033b0224a2", - "parentId": "66c90dc2c7d43f68b91075f2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18.0 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910756e", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910756e", + "_tpl": "638df4cc7b560b03794a18d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (119) [d928d8d4-aad9-4d14-bcdc-6c474400bde2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -108.108, - "y": 8.679, - "z": 92.75398 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107607", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107607", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_quest_keeper2_diary [f9a31593-4aeb-4a31-b0b5-55344b73ac86]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -127.914, + "y": 2.38099957, + "z": 397.042969 + }, + "Rotation": { + "x": 90.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -132.226, + "y": 2.37899971, + "z": 397.643982 + }, + "Rotation": { + "x": 90, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -127.914, + "y": 2.38099957, + "z": 397.042969 + }, + "Rotation": { + "x": 90, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -129.309, + "y": 2.37359953, + "z": 392.5885 + }, + "Rotation": { + "x": 90, + "y": 0, + "z": 0 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (123) [35d97e99-1b19-4a45-8724-fcc823231db3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -98.663, - "y": 8.23699951, - "z": 86.31398 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107617", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107617", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 629 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107570", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107570", + "_tpl": "63989ced706b793c7d60cfef", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (125) [7719774a-84a0-4852-b84d-8a59a7617039]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -115.037, - "y": 8.186, - "z": 67.57598 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910761d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910761d", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_quest_letter_c4_pos [09be6200-f3f7-48ac-a00b-1f6295a112ad]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 39.2349968, + "y": 1.51599979, + "z": 117.6931 + }, + "Rotation": { + "x": 90.0, + "y": 280.164, + "z": 0.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 39.2349968, + "y": 1.51599979, + "z": 117.6931 + }, + "Rotation": { + "x": 90, + "y": 280.164, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 36.1079979, + "y": 1.29199982, + "z": 126.599 + }, + "Rotation": { + "x": 90, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 42.3956947, + "y": 1.91799974, + "z": 118.768196 + }, + "Rotation": { + "x": 90, + "y": 72.77599, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 39.475, + "y": 1.19559956, + "z": 113.470993 + }, + "Rotation": { + "x": 90, + "y": 0, + "z": 0 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (130) [1200e9b0-9c20-48d1-aab8-b68d16fd1563]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.498, - "y": 8.201, - "z": 60.8229828 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107635", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107635", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107572", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107572", + "_tpl": "638cbc68a63f1b49be6a3010", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (132) [3b2c1630-4fdf-4f38-be35-2ca437db0a1d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 221.179, - "y": 4.0199995, - "z": 362.155 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910763f", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910763f", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "item_quest_st2_chem_cook [7fa3d139-280d-4080-8feb-49dbb1eb2c7e]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -27.506, + "y": 7.433, + "z": -109.472992 + }, + "Rotation": { + "x": 354.911682, + "y": 347.6351, + "z": 114.987312 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -28.5096, + "y": 7.37619972, + "z": -117.110794 + }, + "Rotation": { + "x": 0.554396331, + "y": 39.9235153, + "z": 273.259583 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -41.1733, + "y": 7.6146, + "z": -110.085281 + }, + "Rotation": { + "x": 273.511017, + "y": 273.276245, + "z": 320.0882 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -27.506, + "y": 7.433, + "z": -109.472992 + }, + "Rotation": { + "x": 354.911682, + "y": 347.6351, + "z": 114.987312 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 41.592, + "y": 1.57599974, + "z": -53.9449921 + }, + "Rotation": { + "x": 4.332853, + "y": 180, + "z": 180 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 58.4839973, + "y": 0.9229994, + "z": -72.7649841 + }, + "Rotation": { + "x": 0, + "y": 326.8631, + "z": 0 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (137) [a9efcdfb-c429-4d54-9686-aa5191898268]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 233.488983, - "y": 3.56099987, - "z": 390.525 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107643", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107643", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107574", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107574", + "_tpl": "64f5b4f71a5f313cb144c06c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (144) [a8a1bf4f-eee9-46a9-89c0-57e9ef4d070a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 273.38, - "y": 6.91299963, - "z": 382.943 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910764e", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910764e", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "item_quest_st2_diary_cook [3480bcdc-6b7f-4b8f-9c6f-c467ce8aeb21]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -42.788002, + "y": 10.1146, + "z": -66.412 + }, + "Rotation": { + "x": 270.019775, + "y": 127.763008, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910764f", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c90dc2c7d43f68b910764e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -41.3808975, + "y": 5.9082, + "z": -42.9324036 + }, + "Rotation": { + "x": 273.0994, + "y": 9.47437e-5, + "z": 344.8277 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -29.297, + "y": 10.104, + "z": -70.153 + }, + "Rotation": { + "x": 85.49959, + "y": 8.704493e-5, + "z": 306.773468 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -42.788002, + "y": 10.1146, + "z": -66.412 + }, + "Rotation": { + "x": 270.019775, + "y": 127.763008, + "z": 0 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": -26.149, + "y": 10.6282, + "z": -56.0783 + }, + "Rotation": { + "x": 271.981384, + "y": 180, + "z": 180 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (153) [6bd5f431-8f86-44b8-98ae-20331f33625d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 209.013, - "y": -1.14500046, - "z": 369.71 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107655", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107655", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107576", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107576", + "_tpl": "64f69b4267e11a7c6206e010", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (154) [5b391304-00bb-4994-a6e1-2fdfd796caa9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 151.256, - "y": -0.743000031, - "z": 81.6789856 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107658", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107658", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66c90dc2c7d43f68b9107659", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c90dc2c7d43f68b9107658", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + { + "Id": "item_quest_st2_kpss2 [5d3f05e7-1c35-45fb-829f-b13da8b18b58]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 245.893982, + "y": -0.6870003, + "z": 55.196 + }, + "Rotation": { + "x": 9.897174, + "y": 308.012848, + "z": 4.67009926 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 249.290985, + "y": -0.5653, + "z": 57.7654 + }, + "Rotation": { + "x": 273.0994, + "y": 6.316254e-5, + "z": 309.952545 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 245.601379, + "y": -0.324500084, + "z": 57.9813 + }, + "Rotation": { + "x": 0, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 245.893982, + "y": -0.6870003, + "z": 55.196 + }, + "Rotation": { + "x": 9.897174, + "y": 308.012848, + "z": 4.67009926 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 247.161987, + "y": -0.479999542, + "z": 51.082 + }, + "Rotation": { + "x": 272.773041, + "y": -3.52916722e-5, + "z": 331.0864 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (158) [f99dd881-2978-4700-b3c1-4440150e4478]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 211.021, - "y": -1.14500046, - "z": 345.194977 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910765d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910765d", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107578", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107578", + "_tpl": "64f07f7726cfa02c506f8ac0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (160) [451a0d8a-d1db-4d40-8a2c-5fe188871e14]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -93.278, - "y": 8.179999, - "z": 66.2099838 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107663", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107663", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_all (18) [599506b6-aae8-401a-be83-0525878e1311]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 111.012024, + "y": 7.182, + "z": 228.753067 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910757e", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910757e", + "_tpl": "66b37ea4c5d72b0277488439", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (183) [5990061a-9d20-4962-a38e-ce9efbd96460]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -110.005005, - "y": 8.297, - "z": 121.236984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910767a", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910767a", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "jeverly_all (28) [44778706-170a-46bc-b6b5-a9501f92152b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 106.38002, + "y": 4.237, + "z": 222.889053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910767b", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c90dc2c7d43f68b910767a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107584", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107584", + "_tpl": "590de7e986f7741b096e5f32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (19) [0f803465-ae44-46a6-82f3-5c46a781b823]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 104.724, - "y": 0.7659998, - "z": 126.123985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107688", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107688", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "jeverly_all (39) [91c546d8-b258-4940-9551-3900af3979a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 279.782074, + "y": 6.338, + "z": 380.0391 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107689", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc2c7d43f68b9107688", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107586", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107586", + "_tpl": "66b37ea4c5d72b0277488439", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (192) [c0466ed5-b006-4376-8288-d8dc42d1cd1b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -94.12601, - "y": 8.203, - "z": 122.451981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107691", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107691", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_all (42) [174104a2-6caf-4c30-879a-798b9c4305cc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 277.737061, + "y": 7.059, + "z": 382.8311 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107588", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107588", + "_tpl": "5d235a5986f77443f6329bc6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (204) [e9d2c200-84d7-46e1-846a-7d660e607b86]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -92.459, - "y": 8.183, - "z": 126.453987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910769f", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910769f", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_all (46) [afb19572-2653-475a-bd60-fce868c69729]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 65.1650162, + "y": 7.223, + "z": 308.012054 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910758c", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910758c", + "_tpl": "59e3639286f7741777737013", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (215) [48449f9e-8405-439e-9a6a-8bee07db1172]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -78.47, - "y": 8.691, - "z": 164.68399 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91076aa", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91076aa", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "jeverly_all (50) [3c52666a-445d-4b4c-b746-d9717e3bab4e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.047028, + "y": 3.232, + "z": 396.0881 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91076ab", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c90dc2c7d43f68b91076aa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910758e", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910758e", + "_tpl": "5d235a5986f77443f6329bc6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (230) [6389ee71-9674-47a0-9fa2-9773ecee1636]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -105.671005, - "y": 0.8739996, - "z": -3.705017 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91076be", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91076be", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "jeverly_all (66) (37) [02784188-1441-4636-86fb-56aa02753692]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 98.1890259, + "y": -1.054, + "z": 37.65801 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91076bf", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c90dc2c7d43f68b91076be", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107596", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107596", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (240) [b8bf8ba6-6371-4495-8855-e4556449123f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.555, - "y": 9.888, - "z": -8.479015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91076c5", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91076c5", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_all (73) [4b6f445f-5349-49d1-8c8d-06a7c1dc4bf5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.05302, + "y": 7.263, + "z": 314.361053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910759a", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910759a", + "_tpl": "655c66e40b2de553b618d4b8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (248) [266b81e8-7f9d-44de-be6e-91ec71b86cc4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.621, - "y": 10.962, - "z": -26.169014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91076d1", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91076d1", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_all (86) [5b5847f0-2be5-4987-9bc4-c95edc872524]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -249.183, + "y": 4.603, + "z": 130.317 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075a4", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075a4", + "_tpl": "59e3647686f774176a362507", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (253) [a4056a55-57ee-4535-bbb7-d87d627b9002]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -156.019, - "y": 9.888, - "z": -2.14201736 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91076d7", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91076d7", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jeverly_all (87) [8ee0e274-b40a-4faa-aead-076f38b13bcf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -246.04, + "y": 4.603, + "z": 133.174 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075a6", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075a6", + "_tpl": "5f745ee30acaeb0d490d8c5b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (297) [117be5c9-878f-44ed-ba97-8619fe05f5b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -104.508, - "y": 0.8660002, - "z": -39.2760162 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91076f9", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91076f9", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jewel_small_Kochnev_SuperRare (1) [f77f2849-b60a-4822-8de8-e3bde8a6c9e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 110.961792, + "y": 4.85149956, + "z": 137.281677 + }, + "Rotation": { + "x": 0.0, + "y": 267.3643, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075ae", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075ae", + "_tpl": "59faf7ca86f7740dbe19f6c2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (30) [df37b8f3-81b5-4d9d-aba4-3bd399e33996]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 131.263992, - "y": 0.384999275, - "z": 185.265991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91076fb", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91076fb", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jewerly hooka (17) [194bcf1e-1bae-4a58-aa3f-364f768360d3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -211.69, + "y": 4.938, + "z": 299.99 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075b8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075b8", + "_tpl": "655c669103999d3c810c025b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (310) [62cf92e7-b0a1-43e4-ae40-1e16401af737]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -64.48601, - "y": 5.276, - "z": -62.4290161 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107703", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107703", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "jewerly hooka (2) [33616e83-b6db-4d3d-8dcd-4da1c5d9fdd7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -203.948, + "y": 4.866, + "z": 306.511 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075ba", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075ba", + "_tpl": "62a091170b9d3c46de5b6cf2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (312) [61b0c265-8d97-4e9f-a39f-ad91d71290c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -53.5010033, - "y": 5.34699965, - "z": -72.99202 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107705", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107705", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Key hookah [e7d0ef1e-21fd-4f8e-80b2-33dce3825501]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 168.0757, + "y": 1.78200006, + "z": 161.8081 + }, + "Rotation": { + "x": 11.201, + "y": 291.826, + "z": 3.037143 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 169.1445, + "y": 2.2618, + "z": 165.7763 + }, + "Rotation": { + "x": 271.1219, + "y": 179.999908, + "z": 300.098083 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 168.2735, + "y": 1.92210007, + "z": 164.3672 + }, + "Rotation": { + "x": 2.085996, + "y": 103.784, + "z": 271.912 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 168.0757, + "y": 1.78200006, + "z": 161.8081 + }, + "Rotation": { + "x": 11.201, + "y": 291.826, + "z": 3.037143 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 164.264191, + "y": 1.6443001, + "z": 168.1431 + }, + "Rotation": { + "x": 273.2279, + "y": 180, + "z": 180 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 163.7102, + "y": 1.47460008, + "z": 157.8143 + }, + "Rotation": { + "x": 78.92797, + "y": 355.268158, + "z": 86.1219 + } + }, + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": 167.9183, + "y": 1.60050011, + "z": 154.9508 + }, + "Rotation": { + "x": 273.764954, + "y": 307.366, + "z": 0.591032743 + } + }, + { + "Name": "groupPoint[6]", + "Weight": 1, + "Position": { + "x": 164.96759, + "y": 1.51080012, + "z": 144.6231 + }, + "Rotation": { + "x": 78.15202, + "y": 178.474136, + "z": 178.474136 + } + }, + { + "Name": "groupPoint[7]", + "Weight": 1, + "Position": { + "x": 165.6147, + "y": 1.61680007, + "z": 147.094391 + }, + "Rotation": { + "x": 0, + "y": 132.081, + "z": 0 + } + }, + { + "Name": "groupPoint[8]", + "Weight": 1, + "Position": { + "x": 158.0466, + "y": 1.47670007, + "z": 139.2446 + }, + "Rotation": { + "x": 87.0401154, + "y": 306.1459, + "z": 132.927933 + } + }, + { + "Name": "groupPoint[9]", + "Weight": 1, + "Position": { + "x": 152.1227, + "y": 1.6443001, + "z": 135.6361 + }, + "Rotation": { + "x": 88.26416, + "y": 275.641968, + "z": 0 + } + }, + { + "Name": "groupPoint[10]", + "Weight": 1, + "Position": { + "x": 154.589, + "y": 1.65810013, + "z": 137.6211 + }, + "Rotation": { + "x": 87.66108, + "y": 269.7711, + "z": 269.643066 + } + }, + { + "Name": "groupPoint[11]", + "Weight": 1, + "Position": { + "x": 166.135391, + "y": 2.1205, + "z": 165.1156 + }, + "Rotation": { + "x": 90, + "y": 0, + "z": 0 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (326) [f061bc5e-ec64-4198-b4c5-39a89aa57e80]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -54.4900055, - "y": 0.8629999, - "z": -78.43602 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107711", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107711", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": true, + "Root": "66c90dc2c7d43f68b91075bc", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075bc", + "_tpl": "6582dbf0b8d7830efc45016f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (339) [0f51affa-45be-458a-b496-f1cbb5f9f2f1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -27.1440029, - "y": 0.8909998, - "z": -16.5530167 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107725", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107725", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "key_from_city_quest [c1c6be4b-5ea5-4f67-81f2-c3f827393f1b]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 246.691513, + "y": -0.07700001, + "z": 47.761 + }, + "Rotation": { + "x": 270.504364, + "y": 180.0, + "z": 180.0 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 247.702011, + "y": -0.403, + "z": 58.834 + }, + "Rotation": { + "x": 88.941864, + "y": 177.9294, + "z": 180.000015 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 242.953, + "y": -0.7722, + "z": 55.2452 + }, + "Rotation": { + "x": 271.2684, + "y": 180, + "z": 180 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 246.691513, + "y": -0.07700001, + "z": 47.761 + }, + "Rotation": { + "x": 270.504364, + "y": 180, + "z": 180 + } + }, + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": 243.3352, + "y": -3.6153, + "z": 52.9535027 + }, + "Rotation": { + "x": 348.6847, + "y": 269.255859, + "z": 181.110565 + } + }, + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": 245.672012, + "y": -3.622, + "z": 50.7600021 + }, + "Rotation": { + "x": 36.1361961, + "y": 0, + "z": 0 + } + }, + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": 248.3334, + "y": -3.6317, + "z": 55.3626022 + }, + "Rotation": { + "x": 85.86672, + "y": -4.73806649e-5, + "z": 50.45149 + } + }, + { + "Name": "groupPoint[6]", + "Weight": 1, + "Position": { + "x": 248.9992, + "y": -3.6352, + "z": 53.7660027 + }, + "Rotation": { + "x": 272.511536, + "y": 0, + "z": 0 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (346) [38459ba1-292e-4925-b54b-e156628ab5d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -6.20700264, - "y": 1.47699976, - "z": -47.1420135 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107727", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107727", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075be", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075be", + "_tpl": "66687bc89111279d600b5062", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (353) [314515e5-a19b-4dd1-acfb-c8c212681022]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -28.2560043, - "y": 1.85499954, - "z": -43.8170166 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910772f", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910772f", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135_Leo_Rare (10) [432d331d-b5c2-4dd7-bd3a-97fc68ee3186]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.198013, + "y": 9.932, + "z": 270.304 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 134.652985, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075c2", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075c2", + "_tpl": "62178c4d4ecf221597654e3d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (356) [c573e042-e783-49d1-a7be-ca496c8d561d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -42.989006, - "y": 1.57899952, - "z": -45.9860153 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107731", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107731", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135_Leo_Rare (13) [5789062c-5ec5-41af-b9ef-e9cf6ca7f1bd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.38, + "y": 9.932, + "z": 270.601 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 134.652985, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075c3", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075c3", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c90dc2c7d43f68b91075c4", + "_tpl": "5d3eb5b6a4b9361eab311902", + "parentId": "66c90dc2c7d43f68b91075c3", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc2c7d43f68b91075c5", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "66c90dc2c7d43f68b91075c3", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc2c7d43f68b91075c6", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "66c90dc2c7d43f68b91075c5", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc2c7d43f68b91075c7", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "66c90dc2c7d43f68b91075c5", + "slotId": "mod_sight_front" + }, + { + "_id": "66c90dc2c7d43f68b91075c8", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "66c90dc2c7d43f68b91075c3", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b91075c9", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "66c90dc2c7d43f68b91075c8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (371) [7ff700d0-bc02-4d5f-8cf1-8c855f731eeb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.39, - "y": 5.2699995, - "z": -32.0320129 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107747", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107747", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135_Leo_Rare (14) [912987cd-1289-483e-a89e-4ee01bdd784d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.556, + "y": 9.932, + "z": 271.297 + }, + "Rotation": { + "x": 0.0, + "y": 252.0725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075cb", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075cb", + "_tpl": "57371e4124597760ff7b25f1", + "upd": { + "StackObjectsCount": 37 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (373) [d5c4b261-5b49-4f48-bdf8-7d31c448732b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -62.6510048, - "y": 5.311, - "z": -24.6650162 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910774a", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910774a", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 135_Leo_Rare (2) [53628368-300b-49dd-951e-90b65bf5c83b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.161, + "y": 10.044, + "z": 269.648 + }, + "Rotation": { + "x": 0.0, + "y": 252.0725, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910774b", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc2c7d43f68b910774a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075cd", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075cd", + "_tpl": "5d6e6a5fa4b93614ec501745", + "upd": { + "StackObjectsCount": 4 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (414) [7636099d-8aa8-4aa5-9d04-89e7dadd7068]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -148.429, - "y": 0.9239998, - "z": -8.628017 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910777d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910777d", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135_Leo_Rare (29) [efbae470-df06-425c-94ed-87c79c7f7820]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.934982, + "y": 0.476999968, + "z": 226.546982 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 134.652985, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075ce", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075ce", + "_tpl": "6410733d5dd49d77bd07847e", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "66c90dc2c7d43f68b91075cf", + "_tpl": "6410745d5dd49d77bd078485", + "parentId": "66c90dc2c7d43f68b91075ce", + "slotId": "mod_stock" + }, + { + "_id": "66c90dc2c7d43f68b91075d0", + "_tpl": "6410758c857473525b08bb77", + "parentId": "66c90dc2c7d43f68b91075ce", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc2c7d43f68b91075d1", + "_tpl": "64119d1f2c6d6f921a0929f8", + "parentId": "66c90dc2c7d43f68b91075d0", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc2c7d43f68b91075d2", + "_tpl": "64119d672c6d6f921a0929fb", + "parentId": "66c90dc2c7d43f68b91075d1", + "slotId": "mod_sight_front" + }, + { + "_id": "66c90dc2c7d43f68b91075d3", + "_tpl": "64119d90dcf48d656f0aa275", + "parentId": "66c90dc2c7d43f68b91075d0", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc2c7d43f68b91075d4", + "_tpl": "64119cdbdcf48d656f0aa272", + "parentId": "66c90dc2c7d43f68b91075ce", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc2c7d43f68b91075d5", + "_tpl": "641074a07fd350b98c0b3f96", + "parentId": "66c90dc2c7d43f68b91075ce", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b91075d6", + "_tpl": "5887431f2459777e1612938f", + "parentId": "66c90dc2c7d43f68b91075d5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11.0 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (42) [cd57acce-d475-4601-a51c-687dc45961aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 85.0089951, - "y": 1.36099958, - "z": 158.749985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107785", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107785", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135_Leo_Rare (3) [03ece279-741f-4aa5-bdda-211ec2947061]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -130.882, + "y": 10.044, + "z": 269.429 + }, + "Rotation": { + "x": 0.0, + "y": 252.0725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075d8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075d8", + "_tpl": "54527a984bdc2d4e668b4567", + "upd": { + "StackObjectsCount": 54 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (427) [e6568259-ba94-4d90-8de7-836e1e77afe6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -152.14, - "y": 0.9209995, - "z": -43.030014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910778d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910778d", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135_Leo_Rare (30) [79f03f87-c958-47cd-9d56-e0515752ce95]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.847, + "y": 0.476999968, + "z": 225.913986 + }, + "Rotation": { + "x": 0.0, + "y": 269.8601, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075da", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075da", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (436) [7383bde6-d39b-4b32-bb8e-a56466fb70b2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -47.7100029, - "y": 3.11899948, - "z": -136.930023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107795", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107795", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135_Leo_Rare (34) [531837f0-23ec-4ec7-8fae-9cbcd7a6cd9c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.734, + "y": 0.5889995, + "z": 224.990982 + }, + "Rotation": { + "x": 0.0, + "y": 252.0725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075e0", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075e0", + "_tpl": "5d6e6a05a4b93618084f58d0", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (448) [fe8c5c20-c60f-445b-91c8-c525e345bfa9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -68.573, - "y": 6.88099957, - "z": -145.208023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107799", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107799", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135_Leo_Rare (38) [7c0cbdf9-df14-497b-bef8-b3e0745eb10e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.347, + "y": 0.5889995, + "z": 227.407 + }, + "Rotation": { + "x": 0.0, + "y": 252.0725, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075e4", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075e4", + "_tpl": "5cc86840d7f00c002412c56c", + "upd": { + "StackObjectsCount": 33 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (457) [132397bc-8e2e-4dc0-b2cc-497510ae3339]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -51.8530045, - "y": 9.539, - "z": -147.765015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91077a0", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91077a0", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot 135_Leo_Rare (4) [f8437e6e-58bb-4311-b1fe-007dcf48fc4a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -132.313, + "y": 10.044, + "z": 269.969 + }, + "Rotation": { + "x": 0.0, + "y": 252.0725, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91077a1", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c90dc2c7d43f68b91077a0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075e8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075e8", + "_tpl": "590a3cd386f77436f20848cb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (46) [cab86335-0557-4087-8983-ad54497b6cd7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 54.35, - "y": 2.938, - "z": 289.248 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91077a3", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91077a3", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135_Leo_Rare (40) [55aacc7b-9ad1-4d9b-bcae-558d467dea2e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.591, + "y": 0.5889995, + "z": 226.378983 + }, + "Rotation": { + "x": 0.0, + "y": 335.0017, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075ea", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075ea", + "_tpl": "5755383e24597772cb798966", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (60) [ff34e399-9a3f-40f2-9ddc-b6cdf55ca768]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.854, - "y": 2.47999954, - "z": 214.736984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91077c5", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91077c5", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot 135_Leo_Rare (43) [6df849e2-7672-41c7-a6ae-b512fe556952]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.583, + "y": 0.476999968, + "z": 226.887985 + }, + "Rotation": { + "x": 1.70754731e-6, + "y": 134.652985, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91075ed", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91075ed", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c90dc2c7d43f68b91075ee", + "_tpl": "5d3eb5b6a4b9361eab311902", + "parentId": "66c90dc2c7d43f68b91075ed", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc2c7d43f68b91075ef", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "66c90dc2c7d43f68b91075ed", + "slotId": "mod_reciever" + }, + { + "_id": "66c90dc2c7d43f68b91075f0", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "66c90dc2c7d43f68b91075ef", + "slotId": "mod_sight_rear" + }, + { + "_id": "66c90dc2c7d43f68b91075f1", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "66c90dc2c7d43f68b91075ef", + "slotId": "mod_sight_front" + }, + { + "_id": "66c90dc2c7d43f68b91075f2", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "66c90dc2c7d43f68b91075ed", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc2c7d43f68b91075f3", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "66c90dc2c7d43f68b91075f2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18.0 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (63) [5d358025-a540-4944-b7b8-b0160101bd8a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 179.135, - "y": 4.184, - "z": 373.028 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91077c7", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91077c7", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (119) [d928d8d4-aad9-4d14-bcdc-6c474400bde2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -108.108, + "y": 8.679, + "z": 92.75398 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107607", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107607", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (7) [bf293e58-0472-4444-a405-3c17423ad0af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 120.604004, - "y": 7.613, - "z": 148.081 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91077d5", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91077d5", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 1001 + { + "Id": "Loot_street_Kochnev_Common (123) [35d97e99-1b19-4a45-8724-fcc823231db3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -98.663, + "y": 8.23699951, + "z": 86.31398 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107617", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107617", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 629 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (70) [59a3ab74-0c6a-425f-8468-764344d54dc5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 240.577, - "y": 3.612, - "z": 360.949 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91077d7", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91077d7", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (125) [7719774a-84a0-4852-b84d-8a59a7617039]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -115.037, + "y": 8.186, + "z": 67.57598 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910761d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910761d", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (84) [dd6d3eb3-a5e0-4ffc-8bb5-f8223793af15]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 257.094, - "y": 9.426, - "z": 402.443 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91077df", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91077df", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (130) [1200e9b0-9c20-48d1-aab8-b68d16fd1563]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.498, + "y": 8.201, + "z": 60.8229828 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107635", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107635", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Common (91) [c61ea73a-55a0-494d-9dfd-3b40d4cdb027]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 269.106, - "y": 3.54, - "z": 375.064 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91077eb", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91077eb", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (132) [3b2c1630-4fdf-4f38-be35-2ca437db0a1d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 221.179, + "y": 4.0199995, + "z": 362.155 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910763f", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910763f", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Kochnev_Rare (109) [fe47995c-e462-468a-9db1-308a7b2893a2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -159.231, - "y": 1.02899981, - "z": -25.3990173 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91077fa", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91077fa", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (137) [a9efcdfb-c429-4d54-9686-aa5191898268]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 233.488983, + "y": 3.56099987, + "z": 390.525 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91077fb", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c90dc2c7d43f68b91077fa", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107643", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107643", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_30_common (375) [65c8adf5-71eb-4567-8fac-a224c364a47d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 205.611, - "y": 0.673, - "z": 145.583 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107801", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107801", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (144) [a8a1bf4f-eee9-46a9-89c0-57e9ef4d070a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 273.38, + "y": 6.91299963, + "z": 382.943 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910764e", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910764e", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910764f", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c90dc2c7d43f68b910764e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (103) [8a008571-4c3d-44d7-99df-2ab068499f55]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -29.769, - "y": 1.597, - "z": 416.547 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910780f", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910780f", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (153) [6bd5f431-8f86-44b8-98ae-20331f33625d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 209.013, + "y": -1.14500046, + "z": 369.71 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107655", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107655", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (107) [69c368c1-ccc4-4384-9b28-6462322c856f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -33.614, - "y": 1.597, - "z": 416.267 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107817", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107817", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (154) [5b391304-00bb-4994-a6e1-2fdfd796caa9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 151.256, + "y": -0.743000031, + "z": 81.6789856 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107818", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc2c7d43f68b9107817", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107658", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107658", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107659", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c90dc2c7d43f68b9107658", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "Loot_street_Kochnev_Common (158) [f99dd881-2978-4700-b3c1-4440150e4478]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 211.021, + "y": -1.14500046, + "z": 345.194977 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107819", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc2c7d43f68b9107817", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910765d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910765d", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (137) [e9fbaeb1-761c-4730-b275-a9af005713af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -61.252, - "y": 2.638, - "z": 352.926 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107846", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107846", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (160) [451a0d8a-d1db-4d40-8a2c-5fe188871e14]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -93.278, + "y": 8.179999, + "z": 66.2099838 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107847", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c90dc2c7d43f68b9107846", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107663", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107663", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (139) [ed6f51b3-a7b8-46a7-8a43-fbe15a1e9eaf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -74.641, - "y": 2.638, - "z": 352.94 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910784b", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910784b", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (183) [5990061a-9d20-4962-a38e-ce9efbd96460]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -110.005005, + "y": 8.297, + "z": 121.236984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910767a", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910767a", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910767b", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c90dc2c7d43f68b910767a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (153) [ef9d7b70-02e9-49fc-80b5-a77c0e910e97]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 226.215, - "y": 1.046, - "z": 194.453 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107856", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107856", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (19) [0f803465-ae44-46a6-82f3-5c46a781b823]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 104.724, + "y": 0.7659998, + "z": 126.123985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107688", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107688", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107689", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc2c7d43f68b9107688", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "Loot_street_Kochnev_Common (192) [c0466ed5-b006-4376-8288-d8dc42d1cd1b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -94.12601, + "y": 8.203, + "z": 122.451981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107857", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc2c7d43f68b9107856", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107691", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107691", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (161) [09a02254-8da6-4f2b-9acb-10cf17e6cde6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 179.803, - "y": -0.406, - "z": 115.232 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107863", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107863", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (204) [e9d2c200-84d7-46e1-846a-7d660e607b86]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -92.459, + "y": 8.183, + "z": 126.453987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910769f", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910769f", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (168) [159383c6-e57a-4e7c-9f59-053ed877c71f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 177.676, - "y": -0.806, - "z": 54.999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107869", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107869", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 938 + { + "Id": "Loot_street_Kochnev_Common (215) [48449f9e-8405-439e-9a6a-8bee07db1172]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -78.47, + "y": 8.691, + "z": 164.68399 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91076aa", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91076aa", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91076ab", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c90dc2c7d43f68b91076aa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (179) [c6369aa1-6c9f-4486-9c78-f6d8e02418e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.88, - "y": -0.806, - "z": 53.329 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107880", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107880", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (230) [6389ee71-9674-47a0-9fa2-9773ecee1636]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -105.671005, + "y": 0.8739996, + "z": -3.705017 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107881", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c90dc2c7d43f68b9107880", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91076be", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91076be", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91076bf", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c90dc2c7d43f68b91076be", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (182) [5d572ce2-5f89-490a-a786-6be7d0a9366d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -184.589, - "y": 8.054, - "z": 274.742 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107886", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107886", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (240) [b8bf8ba6-6371-4495-8855-e4556449123f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.555, + "y": 9.888, + "z": -8.479015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107887", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc2c7d43f68b9107886", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91076c5", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91076c5", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (201) [e856082a-b110-4e73-b72e-3b14e4a3feb0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.89, - "y": 16.342, - "z": 395.401 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078a9", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078a9", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (248) [266b81e8-7f9d-44de-be6e-91ec71b86cc4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.621, + "y": 10.962, + "z": -26.169014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91076d1", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91076d1", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (207) [4a8ac80e-444b-407d-af21-2f28e9fbeaee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -206.13, - "y": 2.9, - "z": 297.79 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078c8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078c8", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (253) [a4056a55-57ee-4535-bbb7-d87d627b9002]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -156.019, + "y": 9.888, + "z": -2.14201736 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91078c9", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c90dc2c7d43f68b91078c8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91076d7", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91076d7", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (208) [6945b9f1-bb18-45b3-a5b0-554cfd143e6b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 237.789017, - "y": -2.277, - "z": -67.108 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078cc", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078cc", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (297) [117be5c9-878f-44ed-ba97-8619fe05f5b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -104.508, + "y": 0.8660002, + "z": -39.2760162 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91078cd", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c90dc2c7d43f68b91078cc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91076f9", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91076f9", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (209) [f5d0be10-8091-4999-a426-6580f30c7f0c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.546, - "y": 16.116, - "z": 394.358 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078d3", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078d3", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (30) [df37b8f3-81b5-4d9d-aba4-3bd399e33996]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 131.263992, + "y": 0.384999275, + "z": 185.265991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91076fb", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91076fb", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (212) [4569643d-efbe-4d84-bf88-7a38d9506f02]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -216.724, - "y": 2.67, - "z": 278.277 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078d9", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078d9", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (310) [62cf92e7-b0a1-43e4-ae40-1e16401af737]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -64.48601, + "y": 5.276, + "z": -62.4290161 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107703", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107703", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (214) [9cbac1c9-b167-4c23-a905-c7e35777e1c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 236.500015, - "y": -1.9289999, - "z": -80.4720154 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078e0", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078e0", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (312) [61b0c265-8d97-4e9f-a39f-ad91d71290c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -53.5010033, + "y": 5.34699965, + "z": -72.99202 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91078e1", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c90dc2c7d43f68b91078e0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107705", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107705", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (219) [6420d62d-28b5-4fd9-b7c6-984fed1fb720]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 187.349014, - "y": -1.40700006, - "z": -49.9629822 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078e8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078e8", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (326) [f061bc5e-ec64-4198-b4c5-39a89aa57e80]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -54.4900055, + "y": 0.8629999, + "z": -78.43602 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91078e9", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c90dc2c7d43f68b91078e8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107711", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107711", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (224) [35a29530-77f5-4716-868e-947c7011ca4d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 186.608017, - "y": -1.01000023, - "z": -75.28598 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078f5", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078f5", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (339) [0f51affa-45be-458a-b496-f1cbb5f9f2f1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -27.1440029, + "y": 0.8909998, + "z": -16.5530167 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107725", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107725", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (224) [3680acdf-850d-404f-9bc5-8bfe005f7a04]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -227.58, - "y": 2.67, - "z": 227.25 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078f7", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078f7", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (346) [38459ba1-292e-4925-b54b-e156628ab5d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -6.20700264, + "y": 1.47699976, + "z": -47.1420135 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107727", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107727", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (224) [ece3c2b9-c110-4265-9f09-e6106a64173e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -4.18499756, - "y": -3.06099987, - "z": 18.1110229 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078f9", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078f9", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (353) [314515e5-a19b-4dd1-acfb-c8c212681022]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -28.2560043, + "y": 1.85499954, + "z": -43.8170166 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910772f", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910772f", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (225) [a789d507-8ca6-4a45-8d48-6d29026a9c42]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 202.215, - "y": 4.403, - "z": 102.05 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91078fc", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91078fc", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (356) [c573e042-e783-49d1-a7be-ca496c8d561d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -42.989006, + "y": 1.57899952, + "z": -45.9860153 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91078fd", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c90dc2c7d43f68b91078fc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107731", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107731", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (228) [931de594-29a7-4a4a-a23f-42ded898d71a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -172.579987, - "y": 15.067, - "z": 396.333984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107902", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107902", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (371) [7ff700d0-bc02-4d5f-8cf1-8c855f731eeb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.39, + "y": 5.2699995, + "z": -32.0320129 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107747", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107747", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Kochnev_Common (373) [d5c4b261-5b49-4f48-bdf8-7d31c448732b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -62.6510048, + "y": 5.311, + "z": -24.6650162 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107903", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c90dc2c7d43f68b9107902", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910774a", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910774a", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910774b", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc2c7d43f68b910774a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (233) [bf234a9d-e4ef-4b85-a395-1ceac6a7c91e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 167.302017, - "y": -1.32000017, - "z": -22.4790039 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107917", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107917", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (414) [7636099d-8aa8-4aa5-9d04-89e7dadd7068]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -148.429, + "y": 0.9239998, + "z": -8.628017 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910777d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910777d", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (234) [4b29dabf-5bf6-4b0c-8c43-f948faeea974]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -205.479, - "y": 2.461, - "z": 219.471 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910791b", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910791b", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (42) [cd57acce-d475-4601-a51c-687dc45961aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 85.0089951, + "y": 1.36099958, + "z": 158.749985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107785", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107785", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Kochnev_Common (427) [e6568259-ba94-4d90-8de7-836e1e77afe6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -152.14, + "y": 0.9209995, + "z": -43.030014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910791c", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc2c7d43f68b910791b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910778d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910778d", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Kochnev_Common (436) [7383bde6-d39b-4b32-bb8e-a56466fb70b2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -47.7100029, + "y": 3.11899948, + "z": -136.930023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910791d", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc2c7d43f68b910791b", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107795", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107795", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (235) [76e39afc-663f-4aec-9edd-2e1e7e83cf66]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -174.501, - "y": 14.9159, - "z": 389.849 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910791f", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910791f", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (448) [fe8c5c20-c60f-445b-91c8-c525e345bfa9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -68.573, + "y": 6.88099957, + "z": -145.208023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107799", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107799", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (239) [f140ce71-5576-4fb5-af72-6ea506f601ba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 8.268005, - "y": -3.06099987, - "z": 1.88601685 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910792a", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910792a", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (457) [132397bc-8e2e-4dc0-b2cc-497510ae3339]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -51.8530045, + "y": 9.539, + "z": -147.765015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b910792b", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c90dc2c7d43f68b910792a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91077a0", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91077a0", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91077a1", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c90dc2c7d43f68b91077a0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (242) [5ad5b1bf-5bbc-406b-a5fa-3ab0dca2a244]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 183.022, - "y": -0.39, - "z": 61.865 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910793d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910793d", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (46) [cab86335-0557-4087-8983-ad54497b6cd7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 54.35, + "y": 2.938, + "z": 289.248 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91077a3", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91077a3", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (243) [e7e1414e-8008-4f5a-b9db-d53741c68c0f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.068008, - "y": 15.059, - "z": 404.111 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107941", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107941", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (60) [ff34e399-9a3f-40f2-9ddc-b6cdf55ca768]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.854, + "y": 2.47999954, + "z": 214.736984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91077c5", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91077c5", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (244) [0a7ce15f-7fa6-4e6f-8f78-683b3f304662]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 175.542, - "y": -1.07399988, - "z": -93.12399 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107943", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107943", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (63) [5d358025-a540-4944-b7b8-b0160101bd8a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 179.135, + "y": 4.184, + "z": 373.028 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91077c7", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91077c7", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (246) [c0cfb916-0361-4e53-9a00-a7b51f74e1b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 172.943008, - "y": -1.34100008, - "z": -99.13199 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b910794d", - "Items": [ - { - "_id": "66c90dc2c7d43f68b910794d", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Common (7) [bf293e58-0472-4444-a405-3c17423ad0af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 120.604004, + "y": 7.613, + "z": 148.081 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91077d5", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91077d5", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 1001 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (253) [25524eeb-97db-48e6-a093-2558e17f049d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -166.952, - "y": 16.44, - "z": 405.543 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107958", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107958", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (70) [59a3ab74-0c6a-425f-8468-764344d54dc5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 240.577, + "y": 3.612, + "z": 360.949 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107959", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c90dc2c7d43f68b9107958", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91077d7", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91077d7", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (264) [d1ba233a-91f9-4da3-bcba-5c7c063e0374]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -169.485, - "y": 15.728, - "z": 409.582 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107987", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107987", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Kochnev_Common (84) [dd6d3eb3-a5e0-4ffc-8bb5-f8223793af15]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 257.094, + "y": 9.426, + "z": 402.443 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107988", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc2c7d43f68b9107987", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91077df", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91077df", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Kochnev_Common (91) [c61ea73a-55a0-494d-9dfd-3b40d4cdb027]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 269.106, + "y": 3.54, + "z": 375.064 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107989", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc2c7d43f68b9107987", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91077eb", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91077eb", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (275) [6f7e068e-6db4-463e-982a-b412257ce313]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -105.073, - "y": 2.784, - "z": 244.8 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079a9", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079a9", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Kochnev_Rare (109) [fe47995c-e462-468a-9db1-308a7b2893a2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -159.231, + "y": 1.02899981, + "z": -25.3990173 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91077fa", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91077fa", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91077fb", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c90dc2c7d43f68b91077fa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (276) [43818b69-8cd2-48ab-8d0e-7e91c61c6453]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 250.386, - "y": -0.477, - "z": 146.24 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079ac", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079ac", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_30_common (375) [65c8adf5-71eb-4567-8fac-a224c364a47d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 205.611, + "y": 0.673, + "z": 145.583 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91079ad", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c90dc2c7d43f68b91079ac", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107801", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107801", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (277) [5e6aa385-00a5-483d-983f-23897efdc2f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 161.068008, - "y": -0.9460001, - "z": -19.4029846 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079af", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079af", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (103) [8a008571-4c3d-44d7-99df-2ab068499f55]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -29.769, + "y": 1.597, + "z": 416.547 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910780f", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910780f", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (277) [cf4d7f7e-1ae6-4623-b9d0-5e66fe5be0ec]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -174.498, - "y": 14.964, - "z": 410.186 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079b2", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079b2", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (107) [69c368c1-ccc4-4384-9b28-6462322c856f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -33.614, + "y": 1.597, + "z": 416.267 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91079b3", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c90dc2c7d43f68b91079b2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107817", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107817", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107818", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc2c7d43f68b9107817", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc2c7d43f68b9107819", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc2c7d43f68b9107817", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (281) [17eab89f-e46e-4caf-8fd7-88d9c705ee0b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 124.746994, - "y": -1.125, - "z": -14.571991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079b7", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079b7", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (137) [e9fbaeb1-761c-4730-b275-a9af005713af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -61.252, + "y": 2.638, + "z": 352.926 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107846", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107846", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107847", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c90dc2c7d43f68b9107846", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (285) [d561d25c-866a-4b30-b921-a6ce364ceab4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.783, - "y": 11.842, - "z": 405.475 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079c5", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079c5", - "_tpl": "5751496424597720a27126da", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (139) [ed6f51b3-a7b8-46a7-8a43-fbe15a1e9eaf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -74.641, + "y": 2.638, + "z": 352.94 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910784b", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910784b", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (287) [802b7499-ae6c-491e-91b6-ebf7d617e532]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.738, - "y": 11.842, - "z": 404.043 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079c7", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079c7", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (153) [ef9d7b70-02e9-49fc-80b5-a77c0e910e97]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 226.215, + "y": 1.046, + "z": 194.453 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107856", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107856", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107857", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc2c7d43f68b9107856", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (291) [c9dd499c-567e-4859-86b6-40f7f5a446f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 87.718, - "y": 0.213999987, - "z": -14.4960022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079d6", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079d6", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (161) [09a02254-8da6-4f2b-9acb-10cf17e6cde6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 179.803, + "y": -0.406, + "z": 115.232 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91079d7", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c90dc2c7d43f68b91079d6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107863", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107863", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (293) [149f09ce-8a7d-4fc8-b1a0-b381840753d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 249.544, - "y": -0.477, - "z": 109.323 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079db", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079db", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (168) [159383c6-e57a-4e7c-9f59-053ed877c71f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 177.676, + "y": -0.806, + "z": 54.999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107869", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107869", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 938 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (298) [68ba81b0-35f2-4d82-8e65-58d948a0a926]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 242.881, - "y": -1.604, - "z": 102.508 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079e8", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079e8", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (179) [c6369aa1-6c9f-4486-9c78-f6d8e02418e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.88, + "y": -0.806, + "z": 53.329 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107880", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107880", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107881", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c90dc2c7d43f68b9107880", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (182) [5d572ce2-5f89-490a-a786-6be7d0a9366d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -184.589, + "y": 8.054, + "z": 274.742 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b91079e9", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c90dc2c7d43f68b91079e8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107886", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107886", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107887", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc2c7d43f68b9107886", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (304) [8285c15b-d37e-4e62-8c1c-76e2499fb266]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.7140045, - "y": 0.605999947, - "z": -15.48999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b91079fb", - "Items": [ - { - "_id": "66c90dc2c7d43f68b91079fb", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (201) [e856082a-b110-4e73-b72e-3b14e4a3feb0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.89, + "y": 16.342, + "z": 395.401 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078a9", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078a9", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (307) [86648eb9-38e8-4f77-9684-9815b903d8ed]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 259.964, - "y": -1.967, - "z": 83.456 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc2c7d43f68b9107a02", - "Items": [ - { - "_id": "66c90dc2c7d43f68b9107a02", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (207) [4a8ac80e-444b-407d-af21-2f28e9fbeaee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -206.13, + "y": 2.9, + "z": 297.79 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078c8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078c8", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91078c9", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c90dc2c7d43f68b91078c8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (208) [6945b9f1-bb18-45b3-a5b0-554cfd143e6b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 237.789017, + "y": -2.277, + "z": -67.108 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc2c7d43f68b9107a03", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c90dc2c7d43f68b9107a02", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078cc", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078cc", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91078cd", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c90dc2c7d43f68b91078cc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (321) [82d56850-6286-449f-809a-7bb0611c385e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -157.067, - "y": 2.826, - "z": 249.182 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a31", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a31", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (209) [f5d0be10-8091-4999-a426-6580f30c7f0c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.546, + "y": 16.116, + "z": 394.358 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078d3", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078d3", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (324) [70ad90da-4da3-497c-a862-fbe9b2ba5ea8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 243.401, - "y": -1.879, - "z": 84.251 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a38", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a38", - "_tpl": "64acea2c03378853630da53e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (212) [4569643d-efbe-4d84-bf88-7a38d9506f02]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -216.724, + "y": 2.67, + "z": 278.277 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107a39", - "_tpl": "59e4d3d286f774176a36250a", - "parentId": "66c90dc3c7d43f68b9107a38", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078d9", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078d9", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (326) [1417109a-00d4-471f-a42a-3a92aef781b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -179.52, - "y": 2.826, - "z": 257.06 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a3d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a3d", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 942 + { + "Id": "Loot_street_Leo_common (214) [9cbac1c9-b167-4c23-a905-c7e35777e1c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 236.500015, + "y": -1.9289999, + "z": -80.4720154 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078e0", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078e0", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91078e1", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c90dc2c7d43f68b91078e0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (326) [f1469ab3-845f-4f9f-be31-6c8179c91b10]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 245.091, - "y": -3.652, - "z": 62.18 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a43", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a43", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (219) [6420d62d-28b5-4fd9-b7c6-984fed1fb720]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 187.349014, + "y": -1.40700006, + "z": -49.9629822 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078e8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078e8", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91078e9", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c90dc2c7d43f68b91078e8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (328) [4f3f3302-1ec7-42c8-96dc-ddce694a0707]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -176.459015, - "y": 11.248, - "z": 392.824 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a49", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a49", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (224) [35a29530-77f5-4716-868e-947c7011ca4d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 186.608017, + "y": -1.01000023, + "z": -75.28598 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078f5", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078f5", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (329) [79962f0f-f85e-4d54-a1c9-bda63fa89e77]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -180.9, - "y": 2.826, - "z": 267.62 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a4d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a4d", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (224) [3680acdf-850d-404f-9bc5-8bfe005f7a04]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -227.58, + "y": 2.67, + "z": 227.25 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078f7", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078f7", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (332) [e2435e90-cfdf-486a-a233-65ff1994905a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -122.182, - "y": 2.826, - "z": 315.232 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a5a", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a5a", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (224) [ece3c2b9-c110-4265-9f09-e6106a64173e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -4.18499756, + "y": -3.06099987, + "z": 18.1110229 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107a5b", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c90dc3c7d43f68b9107a5a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078f9", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078f9", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (333) [112a05ff-b619-4565-a2c2-149355877764]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -121.665, - "y": 2.826, - "z": 315.523 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a5d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a5d", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (225) [a789d507-8ca6-4a45-8d48-6d29026a9c42]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 202.215, + "y": 4.403, + "z": 102.05 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91078fc", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91078fc", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91078fd", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c90dc2c7d43f68b91078fc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (341) [194ed997-a490-47ef-bdcc-4e83225b6cac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 248.663, - "y": -5.059, - "z": 28.923 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a7c", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a7c", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (228) [931de594-29a7-4a4a-a23f-42ded898d71a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -172.579987, + "y": 15.067, + "z": 396.333984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107a7d", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c90dc3c7d43f68b9107a7c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107902", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107902", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107903", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c90dc2c7d43f68b9107902", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (341) [7d07193f-4418-4864-9d3d-f3fbd7890080]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -185.705, - "y": 7.128, - "z": 230.904 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a82", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a82", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (233) [bf234a9d-e4ef-4b85-a395-1ceac6a7c91e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 167.302017, + "y": -1.32000017, + "z": -22.4790039 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107a83", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c90dc3c7d43f68b9107a82", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107917", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107917", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (343) [dce221ac-6925-4884-a72a-25c6b0e41fdd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -102.004, - "y": 2.652, - "z": 267.904 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a85", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a85", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (234) [4b29dabf-5bf6-4b0c-8c43-f948faeea974]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -205.479, + "y": 2.461, + "z": 219.471 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910791b", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910791b", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910791c", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc2c7d43f68b910791b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc2c7d43f68b910791d", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc2c7d43f68b910791b", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (344) [82f4d231-0e9d-4e47-8a8c-847bef9caf5c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.8280029, - "y": 13.354, - "z": -124.373016 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a89", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a89", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (235) [76e39afc-663f-4aec-9edd-2e1e7e83cf66]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -174.501, + "y": 14.9159, + "z": 389.849 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910791f", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910791f", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (348) [79efe957-241b-4a27-8bdc-eaa677da6e13]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 210.854, - "y": -4.732, - "z": 29.135 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107a99", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107a99", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (239) [f140ce71-5576-4fb5-af72-6ea506f601ba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 8.268005, + "y": -3.06099987, + "z": 1.88601685 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910792a", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910792a", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b910792b", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c90dc2c7d43f68b910792a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (357) [1b44b42e-bfb4-45cb-819b-1be40f344580]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 62.6570129, - "y": 0.662999868, - "z": -51.2850037 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107aba", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107aba", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (242) [5ad5b1bf-5bbc-406b-a5fa-3ab0dca2a244]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 183.022, + "y": -0.39, + "z": 61.865 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107abb", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c90dc3c7d43f68b9107aba", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910793d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910793d", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (36) [d70d723c-5d77-4332-b31b-ea48fed5f8e7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -87.617, - "y": 0.408, - "z": 385.365 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ac9", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ac9", - "_tpl": "5c06782b86f77426df5407d2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (243) [e7e1414e-8008-4f5a-b9db-d53741c68c0f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.068008, + "y": 15.059, + "z": 404.111 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107941", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107941", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (362) [1272b079-96d6-4584-9b13-6b750e274038]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 195.265, - "y": -4.247, - "z": 63.535 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ad0", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ad0", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (244) [0a7ce15f-7fa6-4e6f-8f78-683b3f304662]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 175.542, + "y": -1.07399988, + "z": -93.12399 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107ad1", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c90dc3c7d43f68b9107ad0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107943", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107943", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (370) [7ed93144-55c5-475b-a4f0-d9c5f234a733]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 216.973, - "y": -4.271, - "z": 57.66 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107af6", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107af6", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (246) [c0cfb916-0361-4e53-9a00-a7b51f74e1b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 172.943008, + "y": -1.34100008, + "z": -99.13199 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107af7", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c90dc3c7d43f68b9107af6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b910794d", + "Items": [ + { + "_id": "66c90dc2c7d43f68b910794d", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (375) [782b0791-6a40-4187-8c4c-58cbd1b77c2a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -169.468, - "y": 9.547, - "z": 419.723 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b07", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b07", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 748 + { + "Id": "Loot_street_Leo_common (253) [25524eeb-97db-48e6-a093-2558e17f049d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -166.952, + "y": 16.44, + "z": 405.543 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107958", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107958", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107959", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c90dc2c7d43f68b9107958", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (376) [93226b58-0a99-41d8-86bf-0028924433e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -169.468, - "y": 9.547, - "z": 419.723 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b0a", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b0a", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (264) [d1ba233a-91f9-4da3-bcba-5c7c063e0374]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -169.485, + "y": 15.728, + "z": 409.582 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107987", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107987", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107988", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc2c7d43f68b9107987", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc2c7d43f68b9107989", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc2c7d43f68b9107987", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (275) [6f7e068e-6db4-463e-982a-b412257ce313]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -105.073, + "y": 2.784, + "z": 244.8 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107b0b", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c90dc3c7d43f68b9107b0a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079a9", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079a9", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (376) [9ccf4608-724e-4277-bc24-bb56a83bbc2f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 100.57399, - "y": 0.662999868, - "z": -49.12497 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b0e", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b0e", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (276) [43818b69-8cd2-48ab-8d0e-7e91c61c6453]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 250.386, + "y": -0.477, + "z": 146.24 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107b0f", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c90dc3c7d43f68b9107b0e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079ac", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079ac", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91079ad", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c90dc2c7d43f68b91079ac", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (384) [ea6460c8-f719-4c8d-b2b0-9e86b58087d2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 82.89101, - "y": 0.662999868, - "z": -75.254 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b26", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b26", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (277) [5e6aa385-00a5-483d-983f-23897efdc2f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 161.068008, + "y": -0.9460001, + "z": -19.4029846 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107b27", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c90dc3c7d43f68b9107b26", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079af", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079af", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (396) [8179d2f4-61eb-4e0e-9088-189a1da2c514]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -85.626, - "y": 3.85, - "z": 221.793 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b39", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b39", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (277) [cf4d7f7e-1ae6-4623-b9d0-5e66fe5be0ec]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -174.498, + "y": 14.964, + "z": 410.186 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079b2", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079b2", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91079b3", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c90dc2c7d43f68b91079b2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (397) [fbb25819-68ff-496b-a43e-ee756567f8a8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -86.914, - "y": 3.85, - "z": 221.264 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b41", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b41", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (281) [17eab89f-e46e-4caf-8fd7-88d9c705ee0b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 124.746994, + "y": -1.125, + "z": -14.571991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079b7", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079b7", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (398) [9e267902-8a08-4eab-a972-6433d2b135e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -96.466, - "y": 2.771, - "z": 219.131 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b44", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b44", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (285) [d561d25c-866a-4b30-b921-a6ce364ceab4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.783, + "y": 11.842, + "z": 405.475 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107b45", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c90dc3c7d43f68b9107b44", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079c5", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079c5", + "_tpl": "5751496424597720a27126da", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (401) [1410873e-7f23-4639-943a-0deb6819dbd8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -105.12, - "y": 2.553, - "z": 219.64 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b4b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b4b", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (287) [802b7499-ae6c-491e-91b6-ebf7d617e532]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.738, + "y": 11.842, + "z": 404.043 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079c7", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079c7", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (408) [460556d8-7883-46ea-bf72-62a9379c8de2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 148.887, - "y": 3.552, - "z": 451.312 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b54", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b54", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (291) [c9dd499c-567e-4859-86b6-40f7f5a446f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 87.718, + "y": 0.213999987, + "z": -14.4960022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107b55", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc3c7d43f68b9107b54", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079d6", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079d6", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91079d7", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c90dc2c7d43f68b91079d6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (411) [2e86f513-c2bc-4659-a468-6e3e8b12a887]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -125.692, - "y": 3.523, - "z": 232.786 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b5f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b5f", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (293) [149f09ce-8a7d-4fc8-b1a0-b381840753d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 249.544, + "y": -0.477, + "z": 109.323 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079db", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079db", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (416) [c0daa8d2-a21f-4aef-aad4-a02d42f67122]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -110.26, - "y": 3.106, - "z": 238.974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b67", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b67", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (298) [68ba81b0-35f2-4d82-8e65-58d948a0a926]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 242.881, + "y": -1.604, + "z": 102.508 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079e8", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079e8", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b91079e9", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c90dc2c7d43f68b91079e8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (419) [34caf9e1-498d-42d4-ab20-347e4f446159]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -110.361, - "y": 3.27, - "z": 236.776 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b72", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b72", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (304) [8285c15b-d37e-4e62-8c1c-76e2499fb266]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.7140045, + "y": 0.605999947, + "z": -15.48999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b91079fb", + "Items": [ + { + "_id": "66c90dc2c7d43f68b91079fb", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (307) [86648eb9-38e8-4f77-9684-9815b903d8ed]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 259.964, + "y": -1.967, + "z": 83.456 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107b73", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c90dc3c7d43f68b9107b72", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc2c7d43f68b9107a02", + "Items": [ + { + "_id": "66c90dc2c7d43f68b9107a02", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc2c7d43f68b9107a03", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c90dc2c7d43f68b9107a02", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (421) [b6feae96-4a08-46e2-8039-c86f6c17a7ab]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 111.712, - "y": 3.279, - "z": 443.784 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b79", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b79", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (321) [82d56850-6286-449f-809a-7bb0611c385e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -157.067, + "y": 2.826, + "z": 249.182 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a31", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a31", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (425) [ae4d12fb-979d-432f-9dad-853d85e29413]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 125.865005, - "y": -1.0250001, - "z": -87.254 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b80", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b80", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (324) [70ad90da-4da3-497c-a862-fbe9b2ba5ea8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 243.401, + "y": -1.879, + "z": 84.251 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a38", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a38", + "_tpl": "64acea2c03378853630da53e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107a39", + "_tpl": "59e4d3d286f774176a36250a", + "parentId": "66c90dc3c7d43f68b9107a38", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (326) [1417109a-00d4-471f-a42a-3a92aef781b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -179.52, + "y": 2.826, + "z": 257.06 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107b81", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc3c7d43f68b9107b80", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a3d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a3d", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 942 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (43) [ddedd005-f854-420f-b376-56f5987c5709]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -67.587, - "y": 0.408, - "z": 387.702 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b8d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b8d", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (326) [f1469ab3-845f-4f9f-be31-6c8179c91b10]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 245.091, + "y": -3.652, + "z": 62.18 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a43", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a43", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (431) [6f3a1f7b-767d-40da-b6c3-4cf062a42127]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -182.987, - "y": 2.549, - "z": 192.753 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107b96", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107b96", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (328) [4f3f3302-1ec7-42c8-96dc-ddce694a0707]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -176.459015, + "y": 11.248, + "z": 392.824 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a49", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a49", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (329) [79962f0f-f85e-4d54-a1c9-bda63fa89e77]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -180.9, + "y": 2.826, + "z": 267.62 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107b97", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c90dc3c7d43f68b9107b96", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a4d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a4d", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (436) [5d648c16-452c-407f-b83a-9f54900b919b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 225.638, - "y": 4.526, - "z": 459.862 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ba1", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ba1", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 1116 + { + "Id": "Loot_street_Leo_common (332) [e2435e90-cfdf-486a-a233-65ff1994905a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -122.182, + "y": 2.826, + "z": 315.232 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a5a", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a5a", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107a5b", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c90dc3c7d43f68b9107a5a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (439) [7afabefa-c2fc-4522-9a22-ad787f14cbd5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 136.909012, - "y": -0.80700016, - "z": -49.74301 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ba7", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ba7", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (333) [112a05ff-b619-4565-a2c2-149355877764]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -121.665, + "y": 2.826, + "z": 315.523 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a5d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a5d", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (442) [12c240a3-4664-400f-97ca-eaccfbb6dbbd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 134.424, - "y": -0.80700016, - "z": -43.60199 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ba9", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ba9", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (341) [194ed997-a490-47ef-bdcc-4e83225b6cac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 248.663, + "y": -5.059, + "z": 28.923 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a7c", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a7c", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107a7d", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c90dc3c7d43f68b9107a7c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (445) [525ac555-728d-4044-985d-957106e3d998]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -131.313, - "y": 2.914, - "z": 192.057 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107bb1", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107bb1", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (341) [7d07193f-4418-4864-9d3d-f3fbd7890080]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -185.705, + "y": 7.128, + "z": 230.904 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a82", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a82", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107a83", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c90dc3c7d43f68b9107a82", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (448) [5dd5efe9-537a-449c-93a6-c31c06291c26]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -97.97, - "y": 2.597, - "z": 197.19 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107bb9", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107bb9", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (343) [dce221ac-6925-4884-a72a-25c6b0e41fdd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -102.004, + "y": 2.652, + "z": 267.904 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a85", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a85", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (450) [7d764df7-4d4d-4742-9550-384992c8e38e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -96.013, - "y": 2.597, - "z": 197.563 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107bbd", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107bbd", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (344) [82f4d231-0e9d-4e47-8a8c-847bef9caf5c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.8280029, + "y": 13.354, + "z": -124.373016 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a89", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a89", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (452) [fd29780d-486f-408c-8147-701ca2bd425b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.655, - "y": 0.704, - "z": 44.509 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107bc6", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107bc6", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (348) [79efe957-241b-4a27-8bdc-eaa677da6e13]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 210.854, + "y": -4.732, + "z": 29.135 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107bc7", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c90dc3c7d43f68b9107bc6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107a99", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107a99", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (453) [076ced9c-55b5-4c46-bf67-ce1a8804bf3d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.808, - "y": 0.704, - "z": 52.713 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107bc9", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107bc9", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (357) [1b44b42e-bfb4-45cb-819b-1be40f344580]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 62.6570129, + "y": 0.662999868, + "z": -51.2850037 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107aba", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107aba", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107abb", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c90dc3c7d43f68b9107aba", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (460) [65ef801c-85b6-4899-ad2f-ff8d465357d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.463, - "y": 0.704, - "z": 57.757 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107be3", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107be3", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (36) [d70d723c-5d77-4332-b31b-ea48fed5f8e7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -87.617, + "y": 0.408, + "z": 385.365 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ac9", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ac9", + "_tpl": "5c06782b86f77426df5407d2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (463) [c03e307b-cd46-436b-8b37-c238a837a723]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -74.694, - "y": 1.947, - "z": 180.559 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107bf1", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107bf1", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (362) [1272b079-96d6-4584-9b13-6b750e274038]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 195.265, + "y": -4.247, + "z": 63.535 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ad0", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ad0", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107ad1", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c90dc3c7d43f68b9107ad0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (466) [ecdbbcd2-95a2-41c5-a9d6-bce9f5164f08]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.639, - "y": 0.809, - "z": 72.711 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c01", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c01", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (370) [7ed93144-55c5-475b-a4f0-d9c5f234a733]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 216.973, + "y": -4.271, + "z": 57.66 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107af6", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107af6", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107af7", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c90dc3c7d43f68b9107af6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (469) [cd84361a-3d53-4de0-aac9-8100363f7f33]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 257.275, - "y": 4.502, - "z": 499.286 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c07", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c07", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (375) [782b0791-6a40-4187-8c4c-58cbd1b77c2a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -169.468, + "y": 9.547, + "z": 419.723 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b07", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b07", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 748 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (477) [853c2667-8e61-4135-8df1-a00eb446d0e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 234.559982, - "y": 4.296, - "z": 485.417 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c13", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c13", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (376) [93226b58-0a99-41d8-86bf-0028924433e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -169.468, + "y": 9.547, + "z": 419.723 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b0a", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b0a", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107b0b", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c90dc3c7d43f68b9107b0a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (481) [d005ded1-89fa-4128-9677-cb7a5b8a18a0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.3780022, - "y": 1.435, - "z": 110.453 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c1a", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c1a", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (376) [9ccf4608-724e-4277-bc24-bb56a83bbc2f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 100.57399, + "y": 0.662999868, + "z": -49.12497 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107c1b", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c90dc3c7d43f68b9107c1a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b0e", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b0e", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107b0f", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c90dc3c7d43f68b9107b0e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (483) [d6975a6e-cb8c-4721-97e6-5f9c4d2b35b6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.483, - "y": 1.332, - "z": 102.117 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c24", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c24", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (384) [ea6460c8-f719-4c8d-b2b0-9e86b58087d2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 82.89101, + "y": 0.662999868, + "z": -75.254 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b26", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b26", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107b27", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c90dc3c7d43f68b9107b26", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (396) [8179d2f4-61eb-4e0e-9088-189a1da2c514]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -85.626, + "y": 3.85, + "z": 221.793 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107c25", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c90dc3c7d43f68b9107c24", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b39", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b39", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (488) [657acc62-2979-419b-9af1-5cbb2d0d64c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 45.3070068, - "y": 0.625, - "z": -16.6659851 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c31", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c31", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (397) [fbb25819-68ff-496b-a43e-ee756567f8a8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -86.914, + "y": 3.85, + "z": 221.264 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b41", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b41", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (493) [e5f2e61d-9c82-41e7-97e0-02a5bd355fa0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 33.158, - "y": 1.845, - "z": 132.515 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c40", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c40", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (398) [9e267902-8a08-4eab-a972-6433d2b135e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -96.466, + "y": 2.771, + "z": 219.131 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b44", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b44", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107b45", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c90dc3c7d43f68b9107b44", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (401) [1410873e-7f23-4639-943a-0deb6819dbd8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -105.12, + "y": 2.553, + "z": 219.64 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107c41", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c90dc3c7d43f68b9107c40", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b4b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b4b", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (496) [40ffbf52-fcac-4a34-ba6a-1570134ab58f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 42.1300049, - "y": 0.20299983, - "z": -15.4179993 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c47", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c47", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (408) [460556d8-7883-46ea-bf72-62a9379c8de2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 148.887, + "y": 3.552, + "z": 451.312 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b54", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b54", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107b55", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc3c7d43f68b9107b54", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (497) [db9c2759-2245-488a-a78c-8b7bfa09bbf6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -16.594, - "y": 1.899, - "z": 126.019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c49", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c49", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (411) [2e86f513-c2bc-4659-a468-6e3e8b12a887]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -125.692, + "y": 3.523, + "z": 232.786 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b5f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b5f", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (499) [9b75ec8e-d257-4620-b949-fc5b628b8ad7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.216, - "y": 1.845, - "z": 134.271 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c53", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c53", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (416) [c0daa8d2-a21f-4aef-aad4-a02d42f67122]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -110.26, + "y": 3.106, + "z": 238.974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b67", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b67", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (5) [5cb90d4c-ed80-4411-b8c0-30139def30ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -74.777, - "y": 0.348, - "z": 415.914 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c55", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c55", - "_tpl": "5449016a4bdc2d6f028b456f", - "upd": { - "StackObjectsCount": 613 + { + "Id": "Loot_street_Leo_common (419) [34caf9e1-498d-42d4-ab20-347e4f446159]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -110.361, + "y": 3.27, + "z": 236.776 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b72", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b72", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107b73", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c90dc3c7d43f68b9107b72", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (502) [63dc5ca5-26d4-44b7-85fc-111afe389b2a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -17.54, - "y": 1.899, - "z": 117.37 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c5d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c5d", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (421) [b6feae96-4a08-46e2-8039-c86f6c17a7ab]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 111.712, + "y": 3.279, + "z": 443.784 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b79", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b79", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (505) [6a9ae921-c0e1-4f34-8813-420e1008c4f3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 281.851, - "y": 4.186, - "z": 416.64 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c5f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c5f", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (425) [ae4d12fb-979d-432f-9dad-853d85e29413]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 125.865005, + "y": -1.0250001, + "z": -87.254 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b80", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b80", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107b81", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc3c7d43f68b9107b80", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (507) [9cdfb465-0a55-4194-85a3-e8bcfe3a853f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 44.808, - "y": 1.845, - "z": 134.721985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c6f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c6f", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (43) [ddedd005-f854-420f-b376-56f5987c5709]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -67.587, + "y": 0.408, + "z": 387.702 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107c70", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc3c7d43f68b9107c6f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b8d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b8d", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (431) [6f3a1f7b-767d-40da-b6c3-4cf062a42127]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -182.987, + "y": 2.549, + "z": 192.753 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107c71", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc3c7d43f68b9107c6f", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107b96", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107b96", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107b97", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c90dc3c7d43f68b9107b96", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (510) [5f442d5a-218d-4a2c-aeaa-53f2f7258307]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 224.051, - "y": 4.389, - "z": 484.745 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c77", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c77", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (436) [5d648c16-452c-407f-b83a-9f54900b919b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 225.638, + "y": 4.526, + "z": 459.862 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ba1", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ba1", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 1116 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (511) [4800f04f-d6c0-4977-846c-25ac631fe645]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 45.3380127, - "y": 9.34, - "z": -132.27298 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c7d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c7d", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (439) [7afabefa-c2fc-4522-9a22-ad787f14cbd5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 136.909012, + "y": -0.80700016, + "z": -49.74301 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107c7e", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc3c7d43f68b9107c7d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ba7", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ba7", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (442) [12c240a3-4664-400f-97ca-eaccfbb6dbbd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 134.424, + "y": -0.80700016, + "z": -43.60199 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107c7f", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc3c7d43f68b9107c7d", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ba9", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ba9", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (513) [935af9a5-e996-4fcd-bf93-6c9d6efc5604]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 61.939003, - "y": 1.845, - "z": 129.888 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c8e", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c8e", - "_tpl": "5737330a2459776af32363a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (445) [525ac555-728d-4044-985d-957106e3d998]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -131.313, + "y": 2.914, + "z": 192.057 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107c8f", - "_tpl": "56dff0bed2720bb0668b4567", - "parentId": "66c90dc3c7d43f68b9107c8e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107bb1", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107bb1", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (516) [7c8834f6-551f-4d3b-b27b-acc7268b7a61]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 59.014, - "y": 1.845, - "z": 121.803 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c98", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c98", - "_tpl": "573725b0245977612125bae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (448) [5dd5efe9-537a-449c-93a6-c31c06291c26]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -97.97, + "y": 2.597, + "z": 197.19 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107c99", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c90dc3c7d43f68b9107c98", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107bb9", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107bb9", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (519) [1c1a4a9f-3130-4c7d-aaec-53a4ec2f3acd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 68.048, - "y": 1.575, - "z": 116.14 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107c9e", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107c9e", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (450) [7d764df7-4d4d-4742-9550-384992c8e38e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -96.013, + "y": 2.597, + "z": 197.563 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107bbd", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107bbd", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (452) [fd29780d-486f-408c-8147-701ca2bd425b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.655, + "y": 0.704, + "z": 44.509 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107c9f", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c90dc3c7d43f68b9107c9e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107bc6", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107bc6", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107bc7", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c90dc3c7d43f68b9107bc6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (520) [14e62319-b925-4ebf-b5fd-3f50f3d5868e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 210.829, - "y": 4.389, - "z": 478.544 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ca1", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ca1", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (453) [076ced9c-55b5-4c46-bf67-ce1a8804bf3d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.808, + "y": 0.704, + "z": 52.713 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107bc9", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107bc9", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (520) [b68ebfa7-c0d1-4e9a-a0b6-58f50c67b544]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.711, - "y": 1.575, - "z": 116.532 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ca3", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ca3", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (460) [65ef801c-85b6-4899-ad2f-ff8d465357d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.463, + "y": 0.704, + "z": 57.757 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107be3", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107be3", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (520) [c4cc2df4-8be7-46e2-8fd7-2d8c4f664233]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 111.809006, - "y": -1.47100019, - "z": -138.17099 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ca5", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ca5", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (463) [c03e307b-cd46-436b-8b37-c238a837a723]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -74.694, + "y": 1.947, + "z": 180.559 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107bf1", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107bf1", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (521) [5db645c9-bd9c-4dde-adf3-aef0f15d8d4f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 67.2290039, - "y": 1.575, - "z": 113.087 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ca9", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ca9", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (466) [ecdbbcd2-95a2-41c5-a9d6-bce9f5164f08]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.639, + "y": 0.809, + "z": 72.711 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c01", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c01", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (524) [b40503ae-669e-461f-b22d-0bb6448590cf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 55.131, - "y": 1.575, - "z": 96.61 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107cb1", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107cb1", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (469) [cd84361a-3d53-4de0-aac9-8100363f7f33]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 257.275, + "y": 4.502, + "z": 499.286 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c07", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c07", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (53) [41def93d-3e08-4a4d-96e2-e2529638893a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -81.45, - "y": 0.408, - "z": 387.13 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ccd", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ccd", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (477) [853c2667-8e61-4135-8df1-a00eb446d0e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 234.559982, + "y": 4.296, + "z": 485.417 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c13", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c13", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (530) [f238a800-558e-4e3b-b587-67fd06f0ba4a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 152.37001, - "y": -1.50400019, - "z": -88.57999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ccf", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ccf", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (481) [d005ded1-89fa-4128-9677-cb7a5b8a18a0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.3780022, + "y": 1.435, + "z": 110.453 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c1a", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c1a", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107c1b", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c90dc3c7d43f68b9107c1a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (531) [587e4d11-d16f-4d52-958c-7515e2181262]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 208.428009, - "y": 4.389, - "z": 461.350983 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107cd1", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107cd1", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (483) [d6975a6e-cb8c-4721-97e6-5f9c4d2b35b6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.483, + "y": 1.332, + "z": 102.117 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c24", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c24", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107c25", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c90dc3c7d43f68b9107c24", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (532) [5739c980-6392-4499-a110-11dff12730ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -8.531, - "y": 0.61, - "z": 29.986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107cd4", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107cd4", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (488) [657acc62-2979-419b-9af1-5cbb2d0d64c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 45.3070068, + "y": 0.625, + "z": -16.6659851 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c31", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c31", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (493) [e5f2e61d-9c82-41e7-97e0-02a5bd355fa0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 33.158, + "y": 1.845, + "z": 132.515 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107cd5", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc3c7d43f68b9107cd4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c40", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c40", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107c41", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c90dc3c7d43f68b9107c40", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (539) [d44582a7-b508-41f0-9977-709592d8c985]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 51.196, - "y": 1.575, - "z": 58.056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107cdd", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107cdd", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (496) [40ffbf52-fcac-4a34-ba6a-1570134ab58f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 42.1300049, + "y": 0.20299983, + "z": -15.4179993 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c47", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c47", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (539) [dd0f5670-d642-4931-aa66-ba80125513bc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 165.377, - "y": -0.8499999, - "z": -133.967987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107cdf", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107cdf", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (497) [db9c2759-2245-488a-a78c-8b7bfa09bbf6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -16.594, + "y": 1.899, + "z": 126.019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c49", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c49", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (548) [d0b4634b-9c1e-4eab-bbcd-94abed516768]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.81, - "y": 0.417, - "z": 37.777 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ce7", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ce7", - "_tpl": "5d1b3f2d86f774253763b735", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (499) [9b75ec8e-d257-4620-b949-fc5b628b8ad7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.216, + "y": 1.845, + "z": 134.271 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c53", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c53", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (554) [45fe79cf-cbbf-47db-a7cd-11a178dc5add]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.863, - "y": 6.882, - "z": 200.6 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107cee", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107cee", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (5) [5cb90d4c-ed80-4411-b8c0-30139def30ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -74.777, + "y": 0.348, + "z": 415.914 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c55", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c55", + "_tpl": "5449016a4bdc2d6f028b456f", + "upd": { + "StackObjectsCount": 613 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (502) [63dc5ca5-26d4-44b7-85fc-111afe389b2a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -17.54, + "y": 1.899, + "z": 117.37 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107cef", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc3c7d43f68b9107cee", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c5d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c5d", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (562) [1026fc49-dd63-418e-b990-ef640d5b9c4d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -89.084, - "y": 1.398, - "z": 51.684 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d05", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d05", - "_tpl": "5672cb304bdc2dc2088b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (505) [6a9ae921-c0e1-4f34-8813-420e1008c4f3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 281.851, + "y": 4.186, + "z": 416.64 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c5f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c5f", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (566) [a145c88d-23a7-48c0-ac94-ff2f13e68794]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -126.18, - "y": 1.21, - "z": 56.987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d07", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d07", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (507) [9cdfb465-0a55-4194-85a3-e8bcfe3a853f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 44.808, + "y": 1.845, + "z": 134.721985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c6f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c6f", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107c70", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc3c7d43f68b9107c6f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107c71", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc3c7d43f68b9107c6f", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (58) [6f3bac8c-fd09-4d14-a08e-6b03dbd1154c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -82.17, - "y": 0.408, - "z": 413.4 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d21", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d21", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (510) [5f442d5a-218d-4a2c-aeaa-53f2f7258307]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 224.051, + "y": 4.389, + "z": 484.745 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c77", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c77", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (580) [eda6245a-4438-4c05-bc67-6bb68c935ada]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -149.213, - "y": 1.151, - "z": 79.31 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d24", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d24", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (511) [4800f04f-d6c0-4977-846c-25ac631fe645]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 45.3380127, + "y": 9.34, + "z": -132.27298 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107d25", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc3c7d43f68b9107d24", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c7d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c7d", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107c7e", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc3c7d43f68b9107c7d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107c7f", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc3c7d43f68b9107c7d", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (586) [4ca639db-b667-436b-b72d-6de3470a1345]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -148.024, - "y": 1.151, - "z": 84.087 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d2b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d2b", - "_tpl": "573474f924597738002c6174", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (513) [935af9a5-e996-4fcd-bf93-6c9d6efc5604]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 61.939003, + "y": 1.845, + "z": 129.888 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c8e", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c8e", + "_tpl": "5737330a2459776af32363a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107c8f", + "_tpl": "56dff0bed2720bb0668b4567", + "parentId": "66c90dc3c7d43f68b9107c8e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (598) [71508a40-fbff-4a8a-94e5-22f08cab8cea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 36.181, - "y": 3.234, - "z": 233.839 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d43", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d43", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (516) [7c8834f6-551f-4d3b-b27b-acc7268b7a61]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 59.014, + "y": 1.845, + "z": 121.803 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c98", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c98", + "_tpl": "573725b0245977612125bae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107c99", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c90dc3c7d43f68b9107c98", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (6) [817ff5a0-51de-454a-9c47-156a4e052017]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -83.876, - "y": 0.348, - "z": 414.681 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d45", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d45", - "_tpl": "57347b8b24597737dd42e192", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (519) [1c1a4a9f-3130-4c7d-aaec-53a4ec2f3acd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 68.048, + "y": 1.575, + "z": 116.14 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107c9e", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107c9e", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107c9f", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c90dc3c7d43f68b9107c9e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (607) [b1f45c1a-9f1c-44ba-aeaa-42dc8282ed8b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -133.914, - "y": 1.268, - "z": 186.83 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d4b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d4b", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (520) [14e62319-b925-4ebf-b5fd-3f50f3d5868e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 210.829, + "y": 4.389, + "z": 478.544 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ca1", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ca1", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (611) [0de5f9ca-aad7-43de-8f6f-739942dc5c27]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 97.27, - "y": 3.234, - "z": 239.098 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d51", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d51", - "_tpl": "573476f124597737e04bf328", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (520) [b68ebfa7-c0d1-4e9a-a0b6-58f50c67b544]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.711, + "y": 1.575, + "z": 116.532 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ca3", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ca3", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (658) [68cf1919-ee90-4f71-89f1-67f27a38b698]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -111.279, - "y": 5.687, - "z": 90.275 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d86", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d86", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (520) [c4cc2df4-8be7-46e2-8fd7-2d8c4f664233]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 111.809006, + "y": -1.47100019, + "z": -138.17099 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107d87", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66c90dc3c7d43f68b9107d86", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ca5", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ca5", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (661) [f3af9d5e-23b6-4562-ba44-aac1f41b3bc0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.046, - "y": 5.405, - "z": 85.966 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d8a", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d8a", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (521) [5db645c9-bd9c-4dde-adf3-aef0f15d8d4f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 67.2290039, + "y": 1.575, + "z": 113.087 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107d8b", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66c90dc3c7d43f68b9107d8a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ca9", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ca9", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (672) [605e4bb7-73eb-4663-bfa4-c417e0a72783]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -147.923, - "y": 1.533, - "z": 184.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d98", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d98", - "_tpl": "64ace9ff03378853630da538", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (524) [b40503ae-669e-461f-b22d-0bb6448590cf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 55.131, + "y": 1.575, + "z": 96.61 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107d99", - "_tpl": "64b7af734b75259c590fa895", - "parentId": "66c90dc3c7d43f68b9107d98", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107cb1", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107cb1", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (674) [0a011b33-2dbe-4103-8da5-bb57bd8b0624]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -162.87, - "y": 1.533, - "z": 156.62 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107d9c", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107d9c", - "_tpl": "64ace9d9b5bf5e95f50a4c1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (53) [41def93d-3e08-4a4d-96e2-e2529638893a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -81.45, + "y": 0.408, + "z": 387.13 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107d9d", - "_tpl": "64b7af5a8532cf95ee0a0dbd", - "parentId": "66c90dc3c7d43f68b9107d9c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ccd", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ccd", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (78) [630b2067-bbe4-406e-beb3-dda8ac50e13d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -33.754, - "y": 1.563, - "z": 384.432 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107dc0", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107dc0", - "_tpl": "573722e82459776104581c21", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (530) [f238a800-558e-4e3b-b587-67fd06f0ba4a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 152.37001, + "y": -1.50400019, + "z": -88.57999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107dc1", - "_tpl": "573718ba2459775a75491131", - "parentId": "66c90dc3c7d43f68b9107dc0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ccf", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ccf", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (93) [3bf689c8-9ff7-4a76-8580-eb730fba4324]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -17.058, - "y": 2.284, - "z": 412.011 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107dcd", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107dcd", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (531) [587e4d11-d16f-4d52-958c-7515e2181262]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 208.428009, + "y": 4.389, + "z": 461.350983 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107dce", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc3c7d43f68b9107dcd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107cd1", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107cd1", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (532) [5739c980-6392-4499-a110-11dff12730ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -8.531, + "y": 0.61, + "z": 29.986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107dcf", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66c90dc3c7d43f68b9107dcd", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107cd4", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107cd4", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107cd5", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc3c7d43f68b9107cd4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Loot_street_Leo_common (96) [d542ff91-54f6-4857-ba9e-7bd1a4e0f421]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -25.44, - "y": 2.284, - "z": 412.84 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107dd4", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107dd4", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (539) [d44582a7-b508-41f0-9977-709592d8c985]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 51.196, + "y": 1.575, + "z": 58.056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107dd5", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c90dc3c7d43f68b9107dd4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107cdd", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107cdd", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (33)_sup (5) [62111717-c05c-42cf-b802-2a4164f70ffa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.5600166, - "y": 3.43, - "z": 337.5661 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107df3", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107df3", - "_tpl": "5ed5160a87bb8443d10680b5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (539) [dd0f5670-d642-4931-aa66-ba80125513bc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 165.377, + "y": -0.8499999, + "z": -133.967987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107cdf", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107cdf", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (63) [74e0f029-1cc0-45e5-bc2a-d83c900663a4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 46.441, - "y": 4.443, - "z": 148.254 - }, - "Rotation": { - "x": 0.0, - "y": 93.425705, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e01", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e01", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (548) [d0b4634b-9c1e-4eab-bbcd-94abed516768]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.81, + "y": 0.417, + "z": 37.777 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ce7", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ce7", + "_tpl": "5d1b3f2d86f774253763b735", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all (64) [baccc08b-9498-4c06-b5e3-ddc2875f8ac5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -56.305, - "y": 3.987, - "z": 341.007 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e05", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e05", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (554) [45fe79cf-cbbf-47db-a7cd-11a178dc5add]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.863, + "y": 6.882, + "z": 200.6 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107cee", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107cee", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107cef", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc3c7d43f68b9107cee", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Medical_all&suplies_Kochnev_Common (101) [61e1023d-58c9-4b23-9dd2-104ced02be9c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.063, - "y": 1.25999975, - "z": 16.200985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e0b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e0b", - "_tpl": "5751a25924597722c463c472", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (562) [1026fc49-dd63-418e-b990-ef640d5b9c4d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -89.084, + "y": 1.398, + "z": 51.684 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d05", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d05", + "_tpl": "5672cb304bdc2dc2088b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies_Kochnev_Common (103) [4521064d-9b1a-470c-8070-16641731e46f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 189.381, - "y": 2.64699984, - "z": 101.088989 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e0d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e0d", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (566) [a145c88d-23a7-48c0-ac94-ff2f13e68794]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -126.18, + "y": 1.21, + "z": 56.987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d07", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d07", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies_Kochnev_Common (106) [215abdbb-43f1-4bfd-ab40-97ba07572707]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.055008, - "y": 5.429, - "z": -22.3070145 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e0f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e0f", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (58) [6f3bac8c-fd09-4d14-a08e-6b03dbd1154c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -82.17, + "y": 0.408, + "z": 413.4 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d21", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d21", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies_Kochnev_Rare (16) [5843dba8-4b33-4d89-b017-bf4701d02fbe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 83.243, - "y": 3.779, - "z": 267.297 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e23", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e23", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (580) [eda6245a-4438-4c05-bc67-6bb68c935ada]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -149.213, + "y": 1.151, + "z": 79.31 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d24", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d24", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107d25", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc3c7d43f68b9107d24", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Medical_all&suplies_Kochnev_Rare (29) [83064bff-8069-4f96-9856-b3f4acb323d8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 136.548, - "y": -0.8010006, - "z": 94.7789841 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e29", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e29", - "_tpl": "5b4335ba86f7744d2837a264", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (586) [4ca639db-b667-436b-b72d-6de3470a1345]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -148.024, + "y": 1.151, + "z": 84.087 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d2b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d2b", + "_tpl": "573474f924597738002c6174", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies_Kochnev_Rare (29) [97cc2588-dc90-42ec-b878-ecb21983d5d8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -109.423004, - "y": 8.375, - "z": 115.701981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e2b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e2b", - "_tpl": "59e361e886f774176c10a2a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (598) [71508a40-fbff-4a8a-94e5-22f08cab8cea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 36.181, + "y": 3.234, + "z": 233.839 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d43", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d43", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies_Kochnev_Rare (3) [56846ddc-9a8c-4e2d-b0cc-8014edfbd8a9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 86.164, - "y": 3.732, - "z": 350.253 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e2d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e2d", - "_tpl": "60098af40accd37ef2175f27", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (6) [817ff5a0-51de-454a-9c47-156a4e052017]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -83.876, + "y": 0.348, + "z": 414.681 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d45", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d45", + "_tpl": "57347b8b24597737dd42e192", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Medical_all&suplies_Kochnev_Rare (32) [1e0a0a60-0c09-4d31-a9b7-e76814dfdbdf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 181.564, - "y": 2.96999979, - "z": 101.990982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e33", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e33", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (607) [b1f45c1a-9f1c-44ba-aeaa-42dc8282ed8b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -133.914, + "y": 1.268, + "z": 186.83 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d4b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d4b", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (1) [389fcf00-d664-47ff-9065-c9cc3156000e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 124.490028, - "y": -1.725, - "z": 43.59001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e4e", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e4e", - "_tpl": "657024bdc5d7d4cb4d078564", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (611) [0de5f9ca-aad7-43de-8f6f-739942dc5c27]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 97.27, + "y": 3.234, + "z": 239.098 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107e4f", - "_tpl": "5e85a9f4add9fe03027d9bf1", - "parentId": "66c90dc3c7d43f68b9107e4e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d51", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d51", + "_tpl": "573476f124597737e04bf328", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (10) [29108bb3-7af8-45f7-8a17-9b20d1befc04]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 104.927025, - "y": -1.751, - "z": 55.4080124 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e51", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e51", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_street_Leo_common (658) [68cf1919-ee90-4f71-89f1-67f27a38b698]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -111.279, + "y": 5.687, + "z": 90.275 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d86", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d86", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107d87", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66c90dc3c7d43f68b9107d86", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (11) [9c68729a-b047-4f53-b3b0-bf47c74a8708]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 94.02103, - "y": -1.61, - "z": 53.74401 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e62", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e62", - "_tpl": "65702561cfc010a0f5006a28", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (661) [f3af9d5e-23b6-4562-ba44-aac1f41b3bc0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.046, + "y": 5.405, + "z": 85.966 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107e63", - "_tpl": "5e023e53d4353e3302577c4c", - "parentId": "66c90dc3c7d43f68b9107e62", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d8a", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d8a", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107d8b", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66c90dc3c7d43f68b9107d8a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (123) [9c39ae63-6144-4e8f-b83a-d3ebd01526cc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 128.478027, - "y": 7.296, - "z": 226.818054 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e78", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e78", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (672) [605e4bb7-73eb-4663-bfa4-c417e0a72783]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -147.923, + "y": 1.533, + "z": 184.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107e79", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66c90dc3c7d43f68b9107e78", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d98", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d98", + "_tpl": "64ace9ff03378853630da538", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107d99", + "_tpl": "64b7af734b75259c590fa895", + "parentId": "66c90dc3c7d43f68b9107d98", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (126) [34da58c0-5b4a-4d87-8ed2-48371b47718a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 141.886032, - "y": 9.856, - "z": 226.368057 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e82", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e82", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (674) [0a011b33-2dbe-4103-8da5-bb57bd8b0624]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -162.87, + "y": 1.533, + "z": 156.62 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107e83", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66c90dc3c7d43f68b9107e82", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107d9c", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107d9c", + "_tpl": "64ace9d9b5bf5e95f50a4c1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107d9d", + "_tpl": "64b7af5a8532cf95ee0a0dbd", + "parentId": "66c90dc3c7d43f68b9107d9c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (127) [bb8d5154-be96-4360-80aa-371b4bdd29da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 134.603027, - "y": 9.744, - "z": 230.484055 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e87", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e87", - "_tpl": "6570248dcfc010a0f5006a04", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (78) [630b2067-bbe4-406e-beb3-dda8ac50e13d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -33.754, + "y": 1.563, + "z": 384.432 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107e88", - "_tpl": "5d6e69b9a4b9361bc8618958", - "parentId": "66c90dc3c7d43f68b9107e87", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107dc0", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107dc0", + "_tpl": "573722e82459776104581c21", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107dc1", + "_tpl": "573718ba2459775a75491131", + "parentId": "66c90dc3c7d43f68b9107dc0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "Loot_street_Leo_common (93) [3bf689c8-9ff7-4a76-8580-eb730fba4324]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -17.058, + "y": 2.284, + "z": 412.011 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107e89", - "_tpl": "5d6e69b9a4b9361bc8618958", - "parentId": "66c90dc3c7d43f68b9107e87", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107dcd", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107dcd", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107dce", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc3c7d43f68b9107dcd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107dcf", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66c90dc3c7d43f68b9107dcd", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (132) [b99089e6-2433-4526-9752-af3342a69f61]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 130.796036, - "y": 10.004, - "z": 232.413055 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e8e", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e8e", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Loot_street_Leo_common (96) [d542ff91-54f6-4857-ba9e-7bd1a4e0f421]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -25.44, + "y": 2.284, + "z": 412.84 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107e8f", - "_tpl": "57372140245977611f70ee91", - "parentId": "66c90dc3c7d43f68b9107e8e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107dd4", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107dd4", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107dd5", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c90dc3c7d43f68b9107dd4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (133) [ae987143-49d4-43c3-9572-f5ac5206ee02]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 130.553024, - "y": 10.004, - "z": 231.939056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107e92", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107e92", - "_tpl": "65702536c5d7d4cb4d078570", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all (33)_sup (5) [62111717-c05c-42cf-b802-2a4164f70ffa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.5600166, + "y": 3.43, + "z": 337.5661 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107df3", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107df3", + "_tpl": "5ed5160a87bb8443d10680b5", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Medical_all (63) [74e0f029-1cc0-45e5-bc2a-d83c900663a4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 46.441, + "y": 4.443, + "z": 148.254 + }, + "Rotation": { + "x": 0.0, + "y": 93.425705, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107e93", - "_tpl": "573601b42459776410737435", - "parentId": "66c90dc3c7d43f68b9107e92", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e01", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e01", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (14) [0aef5108-0e08-439d-b6e9-495e9672753d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 80.21502, - "y": -1.539, - "z": 50.2890129 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ea0", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ea0", - "_tpl": "57372e4a24597768553071c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all (64) [baccc08b-9498-4c06-b5e3-ddc2875f8ac5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -56.305, + "y": 3.987, + "z": 341.007 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e05", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e05", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Medical_all&suplies_Kochnev_Common (101) [61e1023d-58c9-4b23-9dd2-104ced02be9c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.063, + "y": 1.25999975, + "z": 16.200985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107ea1", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66c90dc3c7d43f68b9107ea0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e0b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e0b", + "_tpl": "5751a25924597722c463c472", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (146) [c5a1a96c-b6cd-4682-9446-3ded10e34704]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -225.021057, - "y": 6.095, - "z": 274.268066 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ea6", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ea6", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all&suplies_Kochnev_Common (103) [4521064d-9b1a-470c-8070-16641731e46f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 189.381, + "y": 2.64699984, + "z": 101.088989 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e0d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e0d", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Medical_all&suplies_Kochnev_Common (106) [215abdbb-43f1-4bfd-ab40-97ba07572707]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.055008, + "y": 5.429, + "z": -22.3070145 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107ea7", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c90dc3c7d43f68b9107ea6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e0f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e0f", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (148) [51d1fe45-dd7c-42f4-a594-99ee54e51298]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -224.860062, - "y": 2.652, - "z": 288.597046 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ea9", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ea9", - "_tpl": "57513fcc24597720a31c09a6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all&suplies_Kochnev_Rare (16) [5843dba8-4b33-4d89-b017-bf4701d02fbe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 83.243, + "y": 3.779, + "z": 267.297 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e23", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e23", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (149) [4a1727bd-de38-4462-b48a-4b82a00ef608]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -224.604065, - "y": 2.652, - "z": 289.623047 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107eab", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107eab", - "_tpl": "635a758bfefc88a93f021b8a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Medical_all&suplies_Kochnev_Rare (29) [83064bff-8069-4f96-9856-b3f4acb323d8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 136.548, + "y": -0.8010006, + "z": 94.7789841 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e29", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e29", + "_tpl": "5b4335ba86f7744d2837a264", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (152) [a2ca2bc2-6d7f-4ae2-bd71-ede06a51fa5b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -218.498047, - "y": 11.363, - "z": 279.775055 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107eb0", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107eb0", - "_tpl": "657023decfc010a0f50069ec", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Medical_all&suplies_Kochnev_Rare (29) [97cc2588-dc90-42ec-b878-ecb21983d5d8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -109.423004, + "y": 8.375, + "z": 115.701981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107eb1", - "_tpl": "62330b3ed4dc74626d570b95", - "parentId": "66c90dc3c7d43f68b9107eb0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e2b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e2b", + "_tpl": "59e361e886f774176c10a2a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (154) [95ac2379-3c4c-44cf-8c9a-4a9c1eb68e9f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -221.07605, - "y": 11.363, - "z": 276.577057 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107eb4", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107eb4", - "_tpl": "65702532cfc010a0f5006a19", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Medical_all&suplies_Kochnev_Rare (3) [56846ddc-9a8c-4e2d-b0cc-8014edfbd8a9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 86.164, + "y": 3.732, + "z": 350.253 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107eb5", - "_tpl": "5735ff5c245977640e39ba7e", - "parentId": "66c90dc3c7d43f68b9107eb4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e2d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e2d", + "_tpl": "60098af40accd37ef2175f27", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (166) [0f31a2aa-44dd-44e5-8469-12d9725ad000]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -179.253052, - "y": 17.293, - "z": 417.1271 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ed1", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ed1", - "_tpl": "6570266bc5d7d4cb4d078594", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Medical_all&suplies_Kochnev_Rare (32) [1e0a0a60-0c09-4d31-a9b7-e76814dfdbdf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 181.564, + "y": 2.96999979, + "z": 101.990982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107ed2", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66c90dc3c7d43f68b9107ed1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e33", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e33", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix_food_ammo_common (1) [389fcf00-d664-47ff-9065-c9cc3156000e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 124.490028, + "y": -1.725, + "z": 43.59001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107ed3", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66c90dc3c7d43f68b9107ed1", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e4e", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e4e", + "_tpl": "657024bdc5d7d4cb4d078564", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107e4f", + "_tpl": "5e85a9f4add9fe03027d9bf1", + "parentId": "66c90dc3c7d43f68b9107e4e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (169) [5dc9e512-0a00-46b6-9e58-c26ce04c494a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 222.050049, - "y": 9.975, - "z": 409.4331 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ed6", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ed6", - "_tpl": "657024f9bfc87b3a3409323b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (10) [29108bb3-7af8-45f7-8a17-9b20d1befc04]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 104.927025, + "y": -1.751, + "z": 55.4080124 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107ed7", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66c90dc3c7d43f68b9107ed6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e51", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e51", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (170) [b14c026a-0627-4716-bd8a-959b170d2ad7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 222.177048, - "y": 9.975, - "z": 410.2941 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ede", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ede", - "_tpl": "657024debfc87b3a34093238", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (11) [9c68729a-b047-4f53-b3b0-bf47c74a8708]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 94.02103, + "y": -1.61, + "z": 53.74401 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107edf", - "_tpl": "59e6927d86f77411da468256", - "parentId": "66c90dc3c7d43f68b9107ede", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e62", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e62", + "_tpl": "65702561cfc010a0f5006a28", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107e63", + "_tpl": "5e023e53d4353e3302577c4c", + "parentId": "66c90dc3c7d43f68b9107e62", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (178) [9a9f150b-32fc-4bcc-a6d9-68243065854e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 207.456039, - "y": 6.518, - "z": 395.986084 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107eef", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107eef", - "_tpl": "5c13cd2486f774072c757944", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (123) [9c39ae63-6144-4e8f-b83a-d3ebd01526cc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 128.478027, + "y": 7.296, + "z": 226.818054 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e78", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e78", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107e79", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66c90dc3c7d43f68b9107e78", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (184) [42865404-e5b9-49bc-a87e-7c8d1b3e04ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 201.859039, - "y": 3.676, - "z": 402.0771 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f03", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f03", - "_tpl": "57372e73245977685d4159b4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (126) [34da58c0-5b4a-4d87-8ed2-48371b47718a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 141.886032, + "y": 9.856, + "z": 226.368057 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f04", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c90dc3c7d43f68b9107f03", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e82", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e82", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107e83", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66c90dc3c7d43f68b9107e82", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "mix_food_ammo_common (127) [bb8d5154-be96-4360-80aa-371b4bdd29da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 134.603027, + "y": 9.744, + "z": 230.484055 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f05", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66c90dc3c7d43f68b9107f03", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e87", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e87", + "_tpl": "6570248dcfc010a0f5006a04", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107e88", + "_tpl": "5d6e69b9a4b9361bc8618958", + "parentId": "66c90dc3c7d43f68b9107e87", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c90dc3c7d43f68b9107e89", + "_tpl": "5d6e69b9a4b9361bc8618958", + "parentId": "66c90dc3c7d43f68b9107e87", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (20) [13f81f41-ba85-4d6e-9642-7150e63ce9d7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 32.34601, - "y": 1.175, - "z": 91.32202 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f16", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f16", - "_tpl": "657024e8cfc010a0f5006a0d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (132) [b99089e6-2433-4526-9752-af3342a69f61]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 130.796036, + "y": 10.004, + "z": 232.413055 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f17", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc3c7d43f68b9107f16", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e8e", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e8e", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107e8f", + "_tpl": "57372140245977611f70ee91", + "parentId": "66c90dc3c7d43f68b9107e8e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (204) [0610a766-6316-4b3b-8384-300fc5b41873]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 136.007034, - "y": 7.415, - "z": 375.2691 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f1f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f1f", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (133) [ae987143-49d4-43c3-9572-f5ac5206ee02]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 130.553024, + "y": 10.004, + "z": 231.939056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107e92", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107e92", + "_tpl": "65702536c5d7d4cb4d078570", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107e93", + "_tpl": "573601b42459776410737435", + "parentId": "66c90dc3c7d43f68b9107e92", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (209) [0e06150e-e0fb-420b-a87a-6d9c6e3e7ef7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.962036, - "y": 7.518, - "z": 370.6901 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f22", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f22", - "_tpl": "657024e8cfc010a0f5006a0d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (14) [0aef5108-0e08-439d-b6e9-495e9672753d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 80.21502, + "y": -1.539, + "z": 50.2890129 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f23", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc3c7d43f68b9107f22", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ea0", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ea0", + "_tpl": "57372e4a24597768553071c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107ea1", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66c90dc3c7d43f68b9107ea0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (212) [950336d1-8776-4ca8-87db-0f60cafbb7b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 141.867035, - "y": 7.394, - "z": 367.796082 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f26", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f26", - "_tpl": "64acee6903378853630da544", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (146) [c5a1a96c-b6cd-4682-9446-3ded10e34704]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -225.021057, + "y": 6.095, + "z": 274.268066 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f27", - "_tpl": "64b8f7c241772715af0f9c3d", - "parentId": "66c90dc3c7d43f68b9107f26", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ea6", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ea6", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107ea7", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c90dc3c7d43f68b9107ea6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (214) [4cf066f8-c053-4881-a898-fd1c57188488]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 141.984024, - "y": 7.688, - "z": 370.8811 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f2a", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f2a", - "_tpl": "657023e7c5d7d4cb4d078552", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (148) [51d1fe45-dd7c-42f4-a594-99ee54e51298]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -224.860062, + "y": 2.652, + "z": 288.597046 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f2b", - "_tpl": "62330c18744e5e31df12f516", - "parentId": "66c90dc3c7d43f68b9107f2a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ea9", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ea9", + "_tpl": "57513fcc24597720a31c09a6", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (216) [5aaa8673-7a07-4ad4-80bf-96cdf0281afa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.930031, - "y": 4.079, - "z": 456.650116 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f2d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f2d", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (149) [4a1727bd-de38-4462-b48a-4b82a00ef608]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -224.604065, + "y": 2.652, + "z": 289.623047 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107eab", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107eab", + "_tpl": "635a758bfefc88a93f021b8a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (217) [4ed629ae-24ef-4e7a-b130-b80f7cf22bcb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 119.687027, - "y": 4.079, - "z": 456.407135 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f30", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f30", - "_tpl": "657024e8cfc010a0f5006a0d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (152) [a2ca2bc2-6d7f-4ae2-bd71-ede06a51fa5b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -218.498047, + "y": 11.363, + "z": 279.775055 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f31", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc3c7d43f68b9107f30", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107eb0", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107eb0", + "_tpl": "657023decfc010a0f50069ec", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107eb1", + "_tpl": "62330b3ed4dc74626d570b95", + "parentId": "66c90dc3c7d43f68b9107eb0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (220) [ce7211c0-ca68-4e06-89b7-e817447c02ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 87.15402, - "y": 3.773, - "z": 419.0901 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f35", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f35", - "_tpl": "6570265bcfc010a0f5006a56", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (154) [95ac2379-3c4c-44cf-8c9a-4a9c1eb68e9f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -221.07605, + "y": 11.363, + "z": 276.577057 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107eb4", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107eb4", + "_tpl": "65702532cfc010a0f5006a19", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107eb5", + "_tpl": "5735ff5c245977640e39ba7e", + "parentId": "66c90dc3c7d43f68b9107eb4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } + ] + }, + { + "Id": "mix_food_ammo_common (166) [0f31a2aa-44dd-44e5-8469-12d9725ad000]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -179.253052, + "y": 17.293, + "z": 417.1271 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f36", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66c90dc3c7d43f68b9107f35", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ed1", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ed1", + "_tpl": "6570266bc5d7d4cb4d078594", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107ed2", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66c90dc3c7d43f68b9107ed1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107ed3", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66c90dc3c7d43f68b9107ed1", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "mix_food_ammo_common (169) [5dc9e512-0a00-46b6-9e58-c26ce04c494a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 222.050049, + "y": 9.975, + "z": 409.4331 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f37", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66c90dc3c7d43f68b9107f35", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ed6", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ed6", + "_tpl": "657024f9bfc87b3a3409323b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107ed7", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66c90dc3c7d43f68b9107ed6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (221) [eab86aee-e28d-4c79-8b8e-66e4933a329a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 84.11502, - "y": 3.813, - "z": 422.1001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f3a", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f3a", - "_tpl": "657025421419851aef03e71e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (170) [b14c026a-0627-4716-bd8a-959b170d2ad7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 222.177048, + "y": 9.975, + "z": 410.2941 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f3b", - "_tpl": "5736026a245977644601dc61", - "parentId": "66c90dc3c7d43f68b9107f3a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ede", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ede", + "_tpl": "657024debfc87b3a34093238", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107edf", + "_tpl": "59e6927d86f77411da468256", + "parentId": "66c90dc3c7d43f68b9107ede", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (222) [8f4ea318-dc40-4d7a-b8da-7e04a3a09daf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 85.39402, - "y": 3.813, - "z": 422.1051 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f3d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f3d", - "_tpl": "544fb62a4bdc2dfb738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (178) [9a9f150b-32fc-4bcc-a6d9-68243065854e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 207.456039, + "y": 6.518, + "z": 395.986084 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107eef", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107eef", + "_tpl": "5c13cd2486f774072c757944", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (225) [4685ba1b-05f4-4ff9-802a-9cfa04b5fa3b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 65.56502, - "y": 2.925, - "z": 428.5951 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f40", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f40", - "_tpl": "657024b31419851aef03e70f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (184) [42865404-e5b9-49bc-a87e-7c8d1b3e04ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 201.859039, + "y": 3.676, + "z": 402.0771 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f41", - "_tpl": "5f647f31b6238e5dd066e196", - "parentId": "66c90dc3c7d43f68b9107f40", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f03", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f03", + "_tpl": "57372e73245977685d4159b4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f04", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c90dc3c7d43f68b9107f03", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f05", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66c90dc3c7d43f68b9107f03", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (226) [0b7a1183-d384-4496-9743-557f43b2b7f9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 89.31102, - "y": 3.533, - "z": 445.2851 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f44", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f44", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (20) [13f81f41-ba85-4d6e-9642-7150e63ce9d7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 32.34601, + "y": 1.175, + "z": 91.32202 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f45", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66c90dc3c7d43f68b9107f44", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f16", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f16", + "_tpl": "657024e8cfc010a0f5006a0d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f17", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc3c7d43f68b9107f16", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (23) [1f2d365a-4b4e-4d15-be60-eb060bc4e89b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 42.70301, - "y": 2.267, - "z": 119.363029 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f4a", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f4a", - "_tpl": "6570240ecfc010a0f50069f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (204) [0610a766-6316-4b3b-8384-300fc5b41873]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 136.007034, + "y": 7.415, + "z": 375.2691 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f4b", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66c90dc3c7d43f68b9107f4a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f1f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f1f", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (237) [d020a9ac-d6e8-47fb-ab2c-948ba012cbe5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 185.320053, - "y": 7.037, - "z": 182.873047 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f57", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f57", - "_tpl": "57372ee1245977685d4159b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (209) [0e06150e-e0fb-420b-a87a-6d9c6e3e7ef7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.962036, + "y": 7.518, + "z": 370.6901 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f58", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66c90dc3c7d43f68b9107f57", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f22", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f22", + "_tpl": "657024e8cfc010a0f5006a0d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f23", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc3c7d43f68b9107f22", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "mix_food_ammo_common (212) [950336d1-8776-4ca8-87db-0f60cafbb7b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 141.867035, + "y": 7.394, + "z": 367.796082 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f59", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66c90dc3c7d43f68b9107f57", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f26", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f26", + "_tpl": "64acee6903378853630da544", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f27", + "_tpl": "64b8f7c241772715af0f9c3d", + "parentId": "66c90dc3c7d43f68b9107f26", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (239) [324e55a9-500e-41d2-af8e-9d237005fb06]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 187.735046, - "y": 7.149, - "z": 185.973053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f5c", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f5c", - "_tpl": "657023fcbfc87b3a34093213", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (214) [4cf066f8-c053-4881-a898-fd1c57188488]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 141.984024, + "y": 7.688, + "z": 370.8811 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f5d", - "_tpl": "59e6658b86f77411d949b250", - "parentId": "66c90dc3c7d43f68b9107f5c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f2a", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f2a", + "_tpl": "657023e7c5d7d4cb4d078552", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f2b", + "_tpl": "62330c18744e5e31df12f516", + "parentId": "66c90dc3c7d43f68b9107f2a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (240) [e38e5719-2cb2-40f7-9cc2-3aa0f3b8fc6f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 188.609039, - "y": 7.086, - "z": 187.71904 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f5f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f5f", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (216) [5aaa8673-7a07-4ad4-80bf-96cdf0281afa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.930031, + "y": 4.079, + "z": 456.650116 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f2d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f2d", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (252) [36c9abda-54a0-4d9a-8492-0918e199bec1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 83.5500259, - "y": -1.062, - "z": 25.7520065 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f6a", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f6a", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (217) [4ed629ae-24ef-4e7a-b130-b80f7cf22bcb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 119.687027, + "y": 4.079, + "z": 456.407135 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f6b", - "_tpl": "5cadf6eeae921500134b2799", - "parentId": "66c90dc3c7d43f68b9107f6a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f30", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f30", + "_tpl": "657024e8cfc010a0f5006a0d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f31", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc3c7d43f68b9107f30", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (255) [2dd5bf6e-7bf5-43a6-bdc7-bc04ef1ce107]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 65.98002, - "y": -1.156, - "z": 21.0700054 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f73", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f73", - "_tpl": "57372deb245977685d4159b3", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (220) [ce7211c0-ca68-4e06-89b7-e817447c02ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 87.15402, + "y": 3.773, + "z": 419.0901 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f74", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66c90dc3c7d43f68b9107f73", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f35", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f35", + "_tpl": "6570265bcfc010a0f5006a56", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f36", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66c90dc3c7d43f68b9107f35", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f37", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66c90dc3c7d43f68b9107f35", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "mix_food_ammo_common (221) [eab86aee-e28d-4c79-8b8e-66e4933a329a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 84.11502, + "y": 3.813, + "z": 422.1001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f75", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66c90dc3c7d43f68b9107f73", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f3a", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f3a", + "_tpl": "657025421419851aef03e71e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f3b", + "_tpl": "5736026a245977644601dc61", + "parentId": "66c90dc3c7d43f68b9107f3a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (257) [a000db7e-c456-4200-a772-78c7ced91e8e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 40.34001, - "y": 0.1, - "z": 29.1500072 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f7b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f7b", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (222) [8f4ea318-dc40-4d7a-b8da-7e04a3a09daf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 85.39402, + "y": 3.813, + "z": 422.1051 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f7c", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66c90dc3c7d43f68b9107f7b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f3d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f3d", + "_tpl": "544fb62a4bdc2dfb738b4568", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix_food_ammo_common (225) [4685ba1b-05f4-4ff9-802a-9cfa04b5fa3b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 65.56502, + "y": 2.925, + "z": 428.5951 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f7d", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66c90dc3c7d43f68b9107f7b", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f40", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f40", + "_tpl": "657024b31419851aef03e70f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f41", + "_tpl": "5f647f31b6238e5dd066e196", + "parentId": "66c90dc3c7d43f68b9107f40", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (269) [9be45ed9-8cf0-477c-98e1-3f2984b74112]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -85.48802, - "y": 0.331, - "z": -4.402001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f91", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f91", - "_tpl": "57372ee1245977685d4159b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (226) [0b7a1183-d384-4496-9743-557f43b2b7f9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 89.31102, + "y": 3.533, + "z": 445.2851 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f92", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66c90dc3c7d43f68b9107f91", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f44", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f44", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f45", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66c90dc3c7d43f68b9107f44", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "mix_food_ammo_common (23) [1f2d365a-4b4e-4d15-be60-eb060bc4e89b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 42.70301, + "y": 2.267, + "z": 119.363029 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107f93", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66c90dc3c7d43f68b9107f91", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f4a", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f4a", + "_tpl": "6570240ecfc010a0f50069f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f4b", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66c90dc3c7d43f68b9107f4a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (271) [2ef2648e-a941-4dd7-8080-d3cde55be55f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -14.5920038, - "y": 2.915, - "z": -132.437027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107f99", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107f99", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (237) [d020a9ac-d6e8-47fb-ab2c-948ba012cbe5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 185.320053, + "y": 7.037, + "z": 182.873047 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f57", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f57", + "_tpl": "57372ee1245977685d4159b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f58", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66c90dc3c7d43f68b9107f57", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f59", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66c90dc3c7d43f68b9107f57", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (31) [82a589c4-e49f-47ef-999d-14b33089c317]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 43.74301, - "y": 1.631, - "z": 71.60502 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107fa8", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107fa8", - "_tpl": "560d75f54bdc2da74d8b4573", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (239) [324e55a9-500e-41d2-af8e-9d237005fb06]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 187.735046, + "y": 7.149, + "z": 185.973053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107fa9", - "_tpl": "560d61e84bdc2da74d8b4571", - "parentId": "66c90dc3c7d43f68b9107fa8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f5c", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f5c", + "_tpl": "657023fcbfc87b3a34093213", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f5d", + "_tpl": "59e6658b86f77411d949b250", + "parentId": "66c90dc3c7d43f68b9107f5c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (43) [31f59a1a-d2e2-4ccb-97ed-e1c16d256ebc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 50.0730133, - "y": 7.72, - "z": 92.4270248 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107fbf", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107fbf", - "_tpl": "65702664cfc010a0f5006a59", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (240) [e38e5719-2cb2-40f7-9cc2-3aa0f3b8fc6f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 188.609039, + "y": 7.086, + "z": 187.71904 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107fc0", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66c90dc3c7d43f68b9107fbf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f5f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f5f", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix_food_ammo_common (252) [36c9abda-54a0-4d9a-8492-0918e199bec1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 83.5500259, + "y": -1.062, + "z": 25.7520065 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107fc1", - "_tpl": "59e6918f86f7746c9f75e849", - "parentId": "66c90dc3c7d43f68b9107fbf", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f6a", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f6a", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f6b", + "_tpl": "5cadf6eeae921500134b2799", + "parentId": "66c90dc3c7d43f68b9107f6a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (65) [ebb923f6-d604-45a1-8992-08bde142820d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 36.6620064, - "y": 7.564, - "z": 95.82002 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107fdb", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107fdb", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (255) [2dd5bf6e-7bf5-43a6-bdc7-bc04ef1ce107]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 65.98002, + "y": -1.156, + "z": 21.0700054 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f73", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f73", + "_tpl": "57372deb245977685d4159b3", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f74", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66c90dc3c7d43f68b9107f73", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f75", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66c90dc3c7d43f68b9107f73", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (66) [347a5946-935b-4b68-b069-f1a748df895f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 39.71901, - "y": 7.533, - "z": 99.8690262 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107fde", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107fde", - "_tpl": "6489879db5a2df1c815a04ef", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (257) [a000db7e-c456-4200-a772-78c7ced91e8e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 40.34001, + "y": 0.1, + "z": 29.1500072 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107fdf", - "_tpl": "5efb0cabfb3e451d70735af5", - "parentId": "66c90dc3c7d43f68b9107fde", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f7b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f7b", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f7c", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66c90dc3c7d43f68b9107f7b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f7d", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66c90dc3c7d43f68b9107f7b", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (70) [513dced0-18b8-4d8b-b5b2-0f32f6ac80fb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 45.37601, - "y": 11.261, - "z": 75.12302 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107fe6", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107fe6", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (269) [9be45ed9-8cf0-477c-98e1-3f2984b74112]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -85.48802, + "y": 0.331, + "z": -4.402001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107fe7", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66c90dc3c7d43f68b9107fe6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f91", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f91", + "_tpl": "57372ee1245977685d4159b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f92", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66c90dc3c7d43f68b9107f91", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107f93", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66c90dc3c7d43f68b9107f91", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (80) [b8e83618-a565-40f5-befa-0c72afdb6b62]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 143.790024, - "y": 3.742, - "z": 215.25705 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107fed", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107fed", - "_tpl": "6570246fcfc010a0f5006a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (271) [2ef2648e-a941-4dd7-8080-d3cde55be55f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -14.5920038, + "y": 2.915, + "z": -132.437027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107fee", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "66c90dc3c7d43f68b9107fed", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107f99", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107f99", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "mix_food_ammo_common (31) [82a589c4-e49f-47ef-999d-14b33089c317]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 43.74301, + "y": 1.631, + "z": 71.60502 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107fef", - "_tpl": "58820d1224597753c90aeb13", - "parentId": "66c90dc3c7d43f68b9107fed", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107fa8", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107fa8", + "_tpl": "560d75f54bdc2da74d8b4573", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107fa9", + "_tpl": "560d61e84bdc2da74d8b4571", + "parentId": "66c90dc3c7d43f68b9107fa8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (81) [986f4b20-e3f9-4024-b205-fa2544b027bb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 143.800034, - "y": 3.742, - "z": 216.557053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ff2", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ff2", - "_tpl": "573727c624597765cc785b5b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (43) [31f59a1a-d2e2-4ccb-97ed-e1c16d256ebc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 50.0730133, + "y": 7.72, + "z": 92.4270248 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107ff3", - "_tpl": "5737201124597760fc4431f1", - "parentId": "66c90dc3c7d43f68b9107ff2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107fbf", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107fbf", + "_tpl": "65702664cfc010a0f5006a59", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107fc0", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66c90dc3c7d43f68b9107fbf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b9107fc1", + "_tpl": "59e6918f86f7746c9f75e849", + "parentId": "66c90dc3c7d43f68b9107fbf", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (85) [8fcae417-a171-4bcc-b31f-0c0fd9112d2c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 142.322037, - "y": 4.243, - "z": 229.89006 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ff8", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ff8", - "_tpl": "65702619bfc87b3a34093259", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (65) [ebb923f6-d604-45a1-8992-08bde142820d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 36.6620064, + "y": 7.564, + "z": 95.82002 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9107ff9", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66c90dc3c7d43f68b9107ff8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107fdb", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107fdb", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (90) [4a5cf13b-1600-4492-9501-b83e1aa437b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 129.909027, - "y": 3.864, - "z": 234.556061 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9107ffb", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9107ffb", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (66) [347a5946-935b-4b68-b069-f1a748df895f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 39.71901, + "y": 7.533, + "z": 99.8690262 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107fde", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107fde", + "_tpl": "6489879db5a2df1c815a04ef", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107fdf", + "_tpl": "5efb0cabfb3e451d70735af5", + "parentId": "66c90dc3c7d43f68b9107fde", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (92) [7d6a219d-a0b9-4f63-917a-57128174e8d8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 117.233032, - "y": 3.408, - "z": 229.098068 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108000", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108000", - "_tpl": "65702420bfc87b3a34093219", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (70) [513dced0-18b8-4d8b-b5b2-0f32f6ac80fb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 45.37601, + "y": 11.261, + "z": 75.12302 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9108001", - "_tpl": "5cadf6e5ae921500113bb973", - "parentId": "66c90dc3c7d43f68b9108000", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107fe6", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107fe6", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107fe7", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66c90dc3c7d43f68b9107fe6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (95) [65c98a83-6a30-489c-b153-b801bfbb2487]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 106.93602, - "y": 2.333, - "z": 219.297043 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108006", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108006", - "_tpl": "6570240ecfc010a0f50069f2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (80) [b8e83618-a565-40f5-befa-0c72afdb6b62]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 143.790024, + "y": 3.742, + "z": 215.25705 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9108007", - "_tpl": "5e81f423763d9f754677bf2e", - "parentId": "66c90dc3c7d43f68b9108006", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107fed", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107fed", + "_tpl": "6570246fcfc010a0f5006a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107fee", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "66c90dc3c7d43f68b9107fed", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66c90dc3c7d43f68b9107fef", + "_tpl": "58820d1224597753c90aeb13", + "parentId": "66c90dc3c7d43f68b9107fed", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_food_ammo_common (96) [2d30f376-360a-47cc-af02-1c86864493b4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 104.359024, - "y": 4.221, - "z": 222.231049 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910800b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910800b", - "_tpl": "65702656c5d7d4cb4d078591", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_food_ammo_common (81) [986f4b20-e3f9-4024-b205-fa2544b027bb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 143.800034, + "y": 3.742, + "z": 216.557053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b910800c", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc3c7d43f68b910800b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ff2", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ff2", + "_tpl": "573727c624597765cc785b5b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107ff3", + "_tpl": "5737201124597760fc4431f1", + "parentId": "66c90dc3c7d43f68b9107ff2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "mix_food_ammo_common (85) [8fcae417-a171-4bcc-b31f-0c0fd9112d2c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 142.322037, + "y": 4.243, + "z": 229.89006 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b910800d", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66c90dc3c7d43f68b910800b", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ff8", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ff8", + "_tpl": "65702619bfc87b3a34093259", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9107ff9", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66c90dc3c7d43f68b9107ff8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Mods (1) [d0fa361a-64cb-4057-99bb-a65b28856117]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 166.831, - "y": 3.6, - "z": 158.748 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108013", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108013", - "_tpl": "5cf67cadd7f00c065a5abab7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (90) [4a5cf13b-1600-4492-9501-b83e1aa437b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 129.909027, + "y": 3.864, + "z": 234.556061 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9107ffb", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9107ffb", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (10) [0ba78274-1bb6-4793-b232-6349a226ea2d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -219.792, - "y": 3.872, - "z": 137.384 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108015", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108015", - "_tpl": "5beec8b20db834001961942a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (92) [7d6a219d-a0b9-4f63-917a-57128174e8d8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 117.233032, + "y": 3.408, + "z": 229.098068 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108000", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108000", + "_tpl": "65702420bfc87b3a34093219", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9108001", + "_tpl": "5cadf6e5ae921500113bb973", + "parentId": "66c90dc3c7d43f68b9108000", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "Mods (11) [52dbf5dc-bb2d-4fbd-8d69-3ad77a214ab1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -193.105, - "y": 4.042, - "z": 341.218 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108017", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108017", - "_tpl": "593d493f86f7745e6b2ceb22", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (95) [65c98a83-6a30-489c-b153-b801bfbb2487]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 106.93602, + "y": 2.333, + "z": 219.297043 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108006", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108006", + "_tpl": "6570240ecfc010a0f50069f2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b9108007", + "_tpl": "5e81f423763d9f754677bf2e", + "parentId": "66c90dc3c7d43f68b9108006", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Mods (11) [ef8909c7-e68e-4f52-93a5-7c9dffb812a1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -259.519, - "y": 4.297, - "z": 130.405 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108019", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108019", - "_tpl": "5c1bc7432e221602b412949d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_food_ammo_common (96) [2d30f376-360a-47cc-af02-1c86864493b4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 104.359024, + "y": 4.221, + "z": 222.231049 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910800b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910800b", + "_tpl": "65702656c5d7d4cb4d078591", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b910800c", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc3c7d43f68b910800b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66c90dc3c7d43f68b910800d", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66c90dc3c7d43f68b910800b", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "Mods (13) [9ee1a2da-7d6b-48cc-a7a3-899a3184612d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -251.3288, - "y": 4.959, - "z": 147.068 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910801b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910801b", - "_tpl": "5bfe7fb30db8340018089fed", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods (1) [d0fa361a-64cb-4057-99bb-a65b28856117]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 166.831, + "y": 3.6, + "z": 158.748 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108013", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108013", + "_tpl": "5cf67cadd7f00c065a5abab7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods (9) [a2805ae3-4e98-4818-985a-51af2df167a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -218.318, - "y": 5.127, - "z": 132.926 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108021", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108021", - "_tpl": "5c079ed60db834001a66b372", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods (10) [0ba78274-1bb6-4793-b232-6349a226ea2d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -219.792, + "y": 3.872, + "z": 137.384 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108015", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108015", + "_tpl": "5beec8b20db834001961942a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods NATO_Kochnev_Common (6) [042ef77d-2192-4035-9bac-612ce554a22b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 63.995, - "y": 3.674, - "z": 342.583 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108027", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108027", - "_tpl": "6516e9d7e239bd0c487e3766", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods (11) [52dbf5dc-bb2d-4fbd-8d69-3ad77a214ab1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -193.105, + "y": 4.042, + "z": 341.218 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108017", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108017", + "_tpl": "593d493f86f7745e6b2ceb22", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods RUS_Kochnev_Common (1) [7ce5b938-1d9a-49a1-a297-f176d7d2e6b5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 70.0956, - "y": 3.768, - "z": 348.0449 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108029", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108029", - "_tpl": "5dff772da3651922b360bf91", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods (11) [ef8909c7-e68e-4f52-93a5-7c9dffb812a1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -259.519, + "y": 4.297, + "z": 130.405 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108019", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108019", + "_tpl": "5c1bc7432e221602b412949d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods RUS_Kochnev_Common (11) [c38f7c0d-db45-455d-afd4-bd19e22484d4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 82.148, - "y": 3.714, - "z": 296.048 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910802d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910802d", - "_tpl": "5d0a3a58d7ad1a669c15ca14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods (13) [9ee1a2da-7d6b-48cc-a7a3-899a3184612d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -251.3288, + "y": 4.959, + "z": 147.068 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910801b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910801b", + "_tpl": "5bfe7fb30db8340018089fed", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods RUS_Kochnev_Common (12) [8bf3ce33-4660-424d-85e9-fd621daae6b1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 82.502, - "y": 3.714, - "z": 296.206 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910802f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910802f", - "_tpl": "5c82343a2e221644f31c0611", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods (9) [a2805ae3-4e98-4818-985a-51af2df167a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -218.318, + "y": 5.127, + "z": 132.926 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108021", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108021", + "_tpl": "5c079ed60db834001a66b372", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods RUS_Kochnev_Common (2) [84a01001-d4c1-4223-81fa-528caf6fcfc1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 70.1079, - "y": 3.768, - "z": 348.3352 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108033", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108033", - "_tpl": "58272d7f2459774f6311ddfd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods NATO_Kochnev_Common (6) [042ef77d-2192-4035-9bac-612ce554a22b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 63.995, + "y": 3.674, + "z": 342.583 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108027", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108027", + "_tpl": "6516e9d7e239bd0c487e3766", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods RUS_Kochnev_Common [a496d4e2-0fd1-4bc0-8e16-e3351d42dc2f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 69.661, - "y": 3.768, - "z": 347.972 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910803b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910803b", - "_tpl": "570fd79bd2720bc7458b4583", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods RUS_Kochnev_Common (1) [7ce5b938-1d9a-49a1-a297-f176d7d2e6b5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 70.0956, + "y": 3.768, + "z": 348.0449 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108029", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108029", + "_tpl": "5dff772da3651922b360bf91", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Mods RUS_Kochnev_Rare [65ae07e5-acbc-4b5e-baa0-a38585aa83b7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 206.447, - "y": 7.337, - "z": 287.71 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910803d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910803d", - "_tpl": "5e2192a498a36665e8337386", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods RUS_Kochnev_Common (11) [c38f7c0d-db45-455d-afd4-bd19e22484d4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 82.148, + "y": 3.714, + "z": 296.048 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910802d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910802d", + "_tpl": "5d0a3a58d7ad1a669c15ca14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff (4) [9adef487-dcc5-4dce-92dd-552de7f269f3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 51.47501, - "y": 1.812, - "z": 94.86702 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910804b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910804b", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods RUS_Kochnev_Common (12) [8bf3ce33-4660-424d-85e9-fd621daae6b1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 82.502, + "y": 3.714, + "z": 296.206 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910802f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910802f", + "_tpl": "5c82343a2e221644f31c0611", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff (9) [93767fb2-9f74-43e6-9e2f-60fce7e1c8fc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 46.9010124, - "y": 1.486, - "z": 99.92002 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910804f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910804f", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods RUS_Kochnev_Common (2) [84a01001-d4c1-4223-81fa-528caf6fcfc1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 70.1079, + "y": 3.768, + "z": 348.3352 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108033", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108033", + "_tpl": "58272d7f2459774f6311ddfd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Kochnev_Common (16) [fee9d10b-16f6-4a05-85e9-cb50cee2ad3d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.921, - "y": 4.462, - "z": 354.528 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108053", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108053", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods RUS_Kochnev_Common [a496d4e2-0fd1-4bc0-8e16-e3351d42dc2f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 69.661, + "y": 3.768, + "z": 347.972 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910803b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910803b", + "_tpl": "570fd79bd2720bc7458b4583", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Kochnev_Common (23) [d2708e87-56de-4339-8034-bc488ed3d827]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 134.637, - "y": 4.504, - "z": 359.599 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108055", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108055", - "_tpl": "575062b524597720a31c09a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Mods RUS_Kochnev_Rare [65ae07e5-acbc-4b5e-baa0-a38585aa83b7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 206.447, + "y": 7.337, + "z": 287.71 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910803d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910803d", + "_tpl": "5e2192a498a36665e8337386", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Kochnev_Common (33) [b6205f14-033e-4a25-88fb-b2955c27089b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 212.634, - "y": 10.342, - "z": 400.144 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910805d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910805d", - "_tpl": "5734795124597738002c6176", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff (4) [9adef487-dcc5-4dce-92dd-552de7f269f3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 51.47501, + "y": 1.812, + "z": 94.86702 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910804b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910804b", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Kochnev_Common (39) [0d26b0b4-a529-4fdd-9f88-af9d645a0e2d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 128.763, - "y": 5.53399944, - "z": 153.561981 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108063", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108063", - "_tpl": "590c639286f774151567fa95", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff (9) [93767fb2-9f74-43e6-9e2f-60fce7e1c8fc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 46.9010124, + "y": 1.486, + "z": 99.92002 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910804f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910804f", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Kochnev_Common (43) [1883a4ff-25c9-4e89-9b3d-b4b7c6c42d59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -38.7180023, - "y": 7.73599958, - "z": -116.134018 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910806f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910806f", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Kochnev_Common (16) [fee9d10b-16f6-4a05-85e9-cb50cee2ad3d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.921, + "y": 4.462, + "z": 354.528 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108053", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108053", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Kochnev_Common (45) [d869ba8f-2729-4e1b-8142-f7c818ad4377]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 85.42899, - "y": 1.82799959, - "z": 141.144989 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108073", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108073", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Kochnev_Common (23) [d2708e87-56de-4339-8034-bc488ed3d827]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 134.637, + "y": 4.504, + "z": 359.599 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108055", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108055", + "_tpl": "575062b524597720a31c09a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Kochnev_Rare (12) [7b214a92-e70a-4d5e-a492-547ac4261369]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 184.51799, - "y": 2.80499983, - "z": 103.024979 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108093", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108093", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Kochnev_Common (33) [b6205f14-033e-4a25-88fb-b2955c27089b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 212.634, + "y": 10.342, + "z": 400.144 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910805d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910805d", + "_tpl": "5734795124597738002c6176", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Kochnev_Rare (19) [876caf7f-4726-441d-b646-5398dafa47d6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 183.2432, - "y": -0.04600048, - "z": 118.987686 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108095", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108095", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Kochnev_Common (39) [0d26b0b4-a529-4fdd-9f88-af9d645a0e2d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 128.763, + "y": 5.53399944, + "z": 153.561981 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108063", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108063", + "_tpl": "590c639286f774151567fa95", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (100) [80bdc898-c007-4758-b8a4-c97e2538224f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -51.021, - "y": 2.228, - "z": 64.902 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080a3", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080a3", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Kochnev_Common (43) [1883a4ff-25c9-4e89-9b3d-b4b7c6c42d59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -38.7180023, + "y": 7.73599958, + "z": -116.134018 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910806f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910806f", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (102) [97b3526a-d116-468b-bb85-6ee180b41d49]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -48.645, - "y": 2.291, - "z": 65.494 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080a5", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080a5", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Kochnev_Common (45) [d869ba8f-2729-4e1b-8142-f7c818ad4377]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 85.42899, + "y": 1.82799959, + "z": 141.144989 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108073", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108073", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (113) [6e7d9e29-e9e9-44fe-bcc0-2eb5efe6b35b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.3230133, - "y": 1.505, - "z": -43.5610046 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080b1", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080b1", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Kochnev_Rare (12) [7b214a92-e70a-4d5e-a492-547ac4261369]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 184.51799, + "y": 2.80499983, + "z": 103.024979 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108093", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108093", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (113) [fd0eddbb-c8d8-4250-98af-7e377e41461f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -120.846, - "y": 1.515, - "z": 62.43 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080b3", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080b3", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Kochnev_Rare (19) [876caf7f-4726-441d-b646-5398dafa47d6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 183.2432, + "y": -0.04600048, + "z": 118.987686 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108095", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108095", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (116) [98c400ec-4d13-4ef1-8a4f-d167496086af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 66.2810059, - "y": 5.38, - "z": -171.41 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080b5", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080b5", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (100) [80bdc898-c007-4758-b8a4-c97e2538224f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -51.021, + "y": 2.228, + "z": 64.902 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080a3", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080a3", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (125) [ef47e15b-0a69-481c-9b9c-d7401f40c2df]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.871017, - "y": 4.33, - "z": -54.7740173 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080b9", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080b9", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (102) [97b3526a-d116-468b-bb85-6ee180b41d49]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -48.645, + "y": 2.291, + "z": 65.494 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080a5", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080a5", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (127) [743662e2-4a9b-4aa5-a3db-1a28fdd5a809]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 123.649, - "y": 5.783, - "z": -37.9249878 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080bb", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080bb", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (113) [6e7d9e29-e9e9-44fe-bcc0-2eb5efe6b35b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.3230133, + "y": 1.505, + "z": -43.5610046 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080b1", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080b1", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (135) [b65146c6-86a3-4fd5-9044-419724517cc2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 108.36702, - "y": 6.055, - "z": -18.5350037 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080bf", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080bf", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (113) [fd0eddbb-c8d8-4250-98af-7e377e41461f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -120.846, + "y": 1.515, + "z": 62.43 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080b3", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080b3", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (139) [7f495bb1-9314-4638-b73f-532b46b34187]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 111.465012, - "y": 5.79, - "z": -18.2969971 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080c1", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080c1", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (116) [98c400ec-4d13-4ef1-8a4f-d167496086af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 66.2810059, + "y": 5.38, + "z": -171.41 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080b5", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080b5", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (149) [76eb62d1-2723-4e26-96df-7a186ae968a6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 48.9730072, - "y": 1.05099988, - "z": -23.16098 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080c9", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080c9", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (125) [ef47e15b-0a69-481c-9b9c-d7401f40c2df]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.871017, + "y": 4.33, + "z": -54.7740173 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080b9", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080b9", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (150) [22f9bd85-5c54-45f3-8424-03240af4e5de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 63.401, - "y": 13.993, - "z": -131.624969 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080cb", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080cb", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (127) [743662e2-4a9b-4aa5-a3db-1a28fdd5a809]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 123.649, + "y": 5.783, + "z": -37.9249878 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080bb", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080bb", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (173) [9f2aa057-07aa-4951-ae47-2c0799284fe0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 59.8560028, - "y": 1.398, - "z": -63.5209656 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080db", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080db", - "_tpl": "59e3556c86f7741776641ac2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (135) [b65146c6-86a3-4fd5-9044-419724517cc2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 108.36702, + "y": 6.055, + "z": -18.5350037 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080bf", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080bf", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (18) [1f6af92d-1a75-4343-a244-59ed407ff7de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -186.592, - "y": 7.128, - "z": 222.049 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080e1", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080e1", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (139) [7f495bb1-9314-4638-b73f-532b46b34187]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 111.465012, + "y": 5.79, + "z": -18.2969971 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080c1", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080c1", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (187) [ce179421-31b7-4a84-b705-f6ff77a6ff96]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 185.560013, - "y": -0.56799984, - "z": -134.696014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080e5", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080e5", - "_tpl": "56742c284bdc2d98058b456d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (149) [76eb62d1-2723-4e26-96df-7a186ae968a6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 48.9730072, + "y": 1.05099988, + "z": -23.16098 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080c9", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080c9", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (26) [6c472772-67de-48c7-b88e-c3d9510bd027]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -174.242, - "y": 7.047, - "z": 224.507 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080e7", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080e7", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (150) [22f9bd85-5c54-45f3-8424-03240af4e5de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 63.401, + "y": 13.993, + "z": -131.624969 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080cb", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080cb", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (4) [837ee85f-3a2b-4a22-8c86-185d5a30fef4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -135.918, - "y": 3.176, - "z": 325.685 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080ed", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080ed", - "_tpl": "62a09cb7a04c0c5c6e0a84f8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (173) [9f2aa057-07aa-4951-ae47-2c0799284fe0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 59.8560028, + "y": 1.398, + "z": -63.5209656 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080db", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080db", + "_tpl": "59e3556c86f7741776641ac2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (54) [de28253d-1d56-4273-89c9-68a384701c10]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 122.409, - "y": 5.191, - "z": 129.49 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080fd", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080fd", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (18) [1f6af92d-1a75-4343-a244-59ed407ff7de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -186.592, + "y": 7.128, + "z": 222.049 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080e1", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080e1", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (61) [cfa285b4-1549-47ae-b9c4-f04910b4f462]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -119.439, - "y": 5.778, - "z": 66.358 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91080ff", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91080ff", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (187) [ce179421-31b7-4a84-b705-f6ff77a6ff96]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 185.560013, + "y": -0.56799984, + "z": -134.696014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080e5", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080e5", + "_tpl": "56742c284bdc2d98058b456d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (72) [095a03af-2565-4f2a-9a70-8f4b3d09b640]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -93.239, - "y": 5.695, - "z": 71.149 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910810d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910810d", - "_tpl": "573476d324597737da2adc13", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (26) [6c472772-67de-48c7-b88e-c3d9510bd027]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -174.242, + "y": 7.047, + "z": 224.507 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080e7", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080e7", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (74) [4c6e1cf4-4e3d-4d0e-986b-f4f843f6b7d0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 189.605, - "y": -3.571, - "z": 80.379 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108111", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108111", - "_tpl": "57347d90245977448f7b7f65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (4) [837ee85f-3a2b-4a22-8c86-185d5a30fef4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -135.918, + "y": 3.176, + "z": 325.685 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080ed", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080ed", + "_tpl": "62a09cb7a04c0c5c6e0a84f8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (77) [b51111b6-a955-44ea-bc21-e8628a68f426]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 48.935, - "y": 8.1915, - "z": 103.1525 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108113", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108113", - "_tpl": "577e1c9d2459773cd707c525", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (54) [de28253d-1d56-4273-89c9-68a384701c10]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 122.409, + "y": 5.191, + "z": 129.49 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080fd", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080fd", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (8) [aab239a2-2dd8-42e6-8f6a-b6d81bfcd812]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -142.036, - "y": 3.742, - "z": 335.05 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910811d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910811d", - "_tpl": "59e3596386f774176c10a2a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (61) [cfa285b4-1549-47ae-b9c4-f04910b4f462]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -119.439, + "y": 5.778, + "z": 66.358 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91080ff", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91080ff", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (84) [3367db79-b640-437e-9c27-46f87eae22a3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -162.405, - "y": 14.944, - "z": 405.505 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910811f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910811f", - "_tpl": "656df4fec921ad01000481a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (72) [095a03af-2565-4f2a-9a70-8f4b3d09b640]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -93.239, + "y": 5.695, + "z": 71.149 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910810d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910810d", + "_tpl": "573476d324597737da2adc13", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_food_and_staff_Leo_common (93) [11f3d513-846c-4a94-9b72-e3b8dfed54fd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 206.134, - "y": 4.844, - "z": 113.982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910812f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910812f", - "_tpl": "5e2af2bc86f7746d3f3c33fc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (74) [4c6e1cf4-4e3d-4d0e-986b-f4f843f6b7d0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 189.605, + "y": -3.571, + "z": 80.379 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108111", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108111", + "_tpl": "57347d90245977448f7b7f65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_staff (7) [9b7bcddf-3159-4a2c-820c-d057a14baead]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 120.990028, - "y": 4.592, - "z": 222.059052 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910813d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910813d", - "_tpl": "57514643245977207f2c2d09", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (77) [b51111b6-a955-44ea-bc21-e8628a68f426]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 48.935, + "y": 8.1915, + "z": 103.1525 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108113", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108113", + "_tpl": "577e1c9d2459773cd707c525", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "office_staff [386e66c2-4b90-4124-a9ed-0068c204c6e6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 124.035, - "y": 5.023, - "z": 217.567 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910813f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910813f", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "office_food_and_staff_Leo_common (8) [aab239a2-2dd8-42e6-8f6a-b6d81bfcd812]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -142.036, + "y": 3.742, + "z": 335.05 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910811d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910811d", + "_tpl": "59e3596386f774176c10a2a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Pick_01 [d9d2936c-645f-4b4b-a023-f09ab7b834b1]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 245.137634, - "y": -2.53846645, - "z": -61.8523636 - }, - "Rotation": { - "x": 344.2106, - "y": 59.20456, - "z": -6.21075742e-6 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 247.250916, - "y": -2.728466, - "z": -56.7572021 - }, - "Rotation": { - "x": 348.545349, - "y": 282.2401, - "z": -3.048936e-6 + ] + }, + { + "Id": "office_food_and_staff_Leo_common (84) [3367db79-b640-437e-9c27-46f87eae22a3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -162.405, + "y": 14.944, + "z": 405.505 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910811f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910811f", + "_tpl": "656df4fec921ad01000481a2", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "office_food_and_staff_Leo_common (93) [11f3d513-846c-4a94-9b72-e3b8dfed54fd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 206.134, + "y": 4.844, + "z": 113.982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 245.137634, - "y": -2.53846645, - "z": -61.8523636 - }, - "Rotation": { - "x": 344.2106, - "y": 59.20456, - "z": -6.21075742e-6 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910812f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910812f", + "_tpl": "5e2af2bc86f7746d3f3c33fc", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "office_staff (7) [9b7bcddf-3159-4a2c-820c-d057a14baead]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 120.990028, + "y": 4.592, + "z": 222.059052 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 231.673187, - "y": -2.870266, - "z": -50.0946426 - }, - "Rotation": { - "x": 347.197052, - "y": 289.161316, - "z": -1.31331228e-6 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910813d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910813d", + "_tpl": "57514643245977207f2c2d09", + "upd": { + "StackObjectsCount": 1 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108141", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108141", - "_tpl": "64e73909cd54ef0580746af3", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "office_staff [386e66c2-4b90-4124-a9ed-0068c204c6e6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 124.035, + "y": 5.023, + "z": 217.567 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910813f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910813f", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Pick_02 [1fbb0a86-791e-49f3-bffc-4c5dd6abb50f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 62.73866, - "y": 12.8033, - "z": -141.245346 - }, - "Rotation": { - "x": 345.32254, - "y": 89.74871, - "z": 4.41287057e-6 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 59.4096, - "y": 14.28, - "z": -135.7849 + ] + }, + { + "Id": "Pick_01 [d9d2936c-645f-4b4b-a023-f09ab7b834b1]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 245.137634, + "y": -2.53846645, + "z": -61.8523636 + }, + "Rotation": { + "x": 344.2106, + "y": 59.20456, + "z": -6.21075742e-6 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 247.250916, + "y": -2.728466, + "z": -56.7572021 + }, + "Rotation": { + "x": 348.545349, + "y": 282.2401, + "z": -3.048936e-6 + } }, - "Rotation": { - "x": 0, - "y": 179.223724, - "z": 0 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 62.73866, - "y": 12.8033, - "z": -141.245346 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 245.137634, + "y": -2.53846645, + "z": -61.8523636 + }, + "Rotation": { + "x": 344.2106, + "y": 59.20456, + "z": -6.21075742e-6 + } }, - "Rotation": { - "x": 345.32254, - "y": 89.74871, - "z": 4.41287057e-6 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 68.42471, - "y": 12.8048992, - "z": -118.078186 - }, - "Rotation": { - "x": 348.155975, - "y": 180.000259, - "z": -5.446237e-5 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 231.673187, + "y": -2.870266, + "z": -50.0946426 + }, + "Rotation": { + "x": 347.197052, + "y": 289.161316, + "z": -1.31331228e-6 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108143", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108143", - "_tpl": "64e74a186393886f74114a96", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108141", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108141", + "_tpl": "64e73909cd54ef0580746af3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Pick_03 [036525ee-fd44-473d-981d-0cf6cdecb1fc]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 69.69252, - "y": 7.01823425, - "z": 304.250366 - }, - "Rotation": { - "x": 353.0712, - "y": 180.00032, - "z": -3.950779e-5 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 70.08631, - "y": 8.615934, - "z": 305.294952 + ] + }, + { + "Id": "Pick_02 [1fbb0a86-791e-49f3-bffc-4c5dd6abb50f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 62.73866, + "y": 12.8033, + "z": -141.245346 + }, + "Rotation": { + "x": 345.32254, + "y": 89.74871, + "z": 4.41287057e-6 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 59.4096, + "y": 14.28, + "z": -135.7849 + }, + "Rotation": { + "x": 0, + "y": 179.223724, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 269.7142, - "z": 0 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 69.09216, - "y": 7.834134, - "z": 309.9339 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 62.73866, + "y": 12.8033, + "z": -141.245346 + }, + "Rotation": { + "x": 345.32254, + "y": 89.74871, + "z": 4.41287057e-6 + } }, - "Rotation": { - "x": 270.2853, - "y": 204.199722, - "z": 89.96406 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 69.69252, - "y": 7.01823425, - "z": 304.250366 - }, - "Rotation": { - "x": 353.0712, - "y": 180.00032, - "z": -3.950779e-5 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 68.42471, + "y": 12.8048992, + "z": -118.078186 + }, + "Rotation": { + "x": 348.155975, + "y": 180.000259, + "z": -5.446237e-5 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108145", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108145", - "_tpl": "64e74a1faac4cd0a7264ecd9", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108143", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108143", + "_tpl": "64e74a186393886f74114a96", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Pick_04 [134f8b3c-e34f-4351-92ed-bf7939e4dc31]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 228.6012, - "y": 9.511701, - "z": 406.7285 - }, - "Rotation": { - "x": 329.9241, - "y": 292.944275, - "z": -2.95982545e-6 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 224.4595, - "y": 10.942, - "z": 411.665924 + ] + }, + { + "Id": "Pick_03 [036525ee-fd44-473d-981d-0cf6cdecb1fc]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 69.69252, + "y": 7.01823425, + "z": 304.250366 + }, + "Rotation": { + "x": 353.0712, + "y": 180.00032, + "z": -3.950779e-5 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 70.08631, + "y": 8.615934, + "z": 305.294952 + }, + "Rotation": { + "x": 0, + "y": 269.7142, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 269.7142, - "z": 0 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 228.6012, - "y": 9.511701, - "z": 406.7285 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 69.09216, + "y": 7.834134, + "z": 309.9339 + }, + "Rotation": { + "x": 270.2853, + "y": 204.199722, + "z": 89.96406 + } }, - "Rotation": { - "x": 329.9241, - "y": 292.944275, - "z": -2.95982545e-6 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 238.358368, - "y": 9.5109005, - "z": 409.120331 - }, - "Rotation": { - "x": 349.79306, - "y": 269.7096, - "z": 0.05145982 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 69.69252, + "y": 7.01823425, + "z": 304.250366 + }, + "Rotation": { + "x": 353.0712, + "y": 180.00032, + "z": -3.950779e-5 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108147", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108147", - "_tpl": "64e74a274d49d23b2c39d317", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108145", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108145", + "_tpl": "64e74a1faac4cd0a7264ecd9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Pick_05 [490b023c-2ff8-46bf-ae1e-08c2a6417b2f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 212.597412, - "y": 5.394934, - "z": 116.896126 - }, - "Rotation": { - "x": 0.0, - "y": 179.7142, - "z": 0.0 + ] }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": 212.597412, - "y": 5.394934, - "z": 116.896126 + { + "Id": "Pick_04 [134f8b3c-e34f-4351-92ed-bf7939e4dc31]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 228.6012, + "y": 9.511701, + "z": 406.7285 + }, + "Rotation": { + "x": 329.9241, + "y": 292.944275, + "z": -2.95982545e-6 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 224.4595, + "y": 10.942, + "z": 411.665924 + }, + "Rotation": { + "x": 0, + "y": 269.7142, + "z": 0 + } }, - "Rotation": { - "x": 0, - "y": 179.7142, - "z": 0 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": 214.477325, - "y": 3.936534, - "z": 112.118446 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 228.6012, + "y": 9.511701, + "z": 406.7285 + }, + "Rotation": { + "x": 329.9241, + "y": 292.944275, + "z": -2.95982545e-6 + } }, - "Rotation": { - "x": 342.832764, - "y": 270.000244, - "z": -7.416757e-5 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 238.358368, + "y": 9.5109005, + "z": 409.120331 + }, + "Rotation": { + "x": 349.79306, + "y": 269.7096, + "z": 0.05145982 + } + } + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108147", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108147", + "_tpl": "64e74a274d49d23b2c39d317", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Pick_05 [490b023c-2ff8-46bf-ae1e-08c2a6417b2f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 212.597412, + "y": 5.394934, + "z": 116.896126 + }, + "Rotation": { + "x": 0.0, + "y": 179.7142, + "z": 0.0 }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": 210.212189, - "y": 3.935134, - "z": 116.021812 - }, - "Rotation": { - "x": 343.102539, - "y": 89.00578, - "z": 0.288998455 + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": 212.597412, + "y": 5.394934, + "z": 116.896126 + }, + "Rotation": { + "x": 0, + "y": 179.7142, + "z": 0 + } + }, + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": 214.477325, + "y": 3.936534, + "z": 112.118446 + }, + "Rotation": { + "x": 342.832764, + "y": 270.000244, + "z": -7.416757e-5 + } + }, + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": 210.212189, + "y": 3.935134, + "z": 116.021812 + }, + "Rotation": { + "x": 343.102539, + "y": 89.00578, + "z": 0.288998455 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108149", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108149", - "_tpl": "64e74a2fc2b4f829615ec332", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108149", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108149", + "_tpl": "64e74a2fc2b4f829615ec332", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Pick_06 [cd3c1d5d-13d0-41d5-876b-a4fa3ede7a6a]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -166.6265, - "y": 3.853434, - "z": 480.261871 - }, - "Rotation": { - "x": 349.0679, - "y": -2.72117671e-8, - "z": 4.27906333e-9 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -165.874329, - "y": 8.02753448, - "z": 485.859222 + ] + }, + { + "Id": "Pick_06 [cd3c1d5d-13d0-41d5-876b-a4fa3ede7a6a]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -166.6265, + "y": 3.853434, + "z": 480.261871 + }, + "Rotation": { + "x": 349.0679, + "y": -2.72117671e-8, + "z": 4.27906333e-9 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -165.874329, + "y": 8.02753448, + "z": 485.859222 + }, + "Rotation": { + "x": 354.870941, + "y": 180.000336, + "z": -3.00314459e-5 + } }, - "Rotation": { - "x": 354.870941, - "y": 180.000336, - "z": -3.00314459e-5 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -166.6265, - "y": 3.853434, - "z": 480.261871 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -166.6265, + "y": 3.853434, + "z": 480.261871 + }, + "Rotation": { + "x": 349.0679, + "y": -2.72117671e-8, + "z": 4.27906333e-9 + } }, - "Rotation": { - "x": 349.0679, - "y": -2.72117671e-8, - "z": 4.27906333e-9 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -165.348663, - "y": 3.85143423, - "z": 484.921 - }, - "Rotation": { - "x": 345.953735, - "y": 106.712074, - "z": 0.833289146 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -165.348663, + "y": 3.85143423, + "z": 484.921 + }, + "Rotation": { + "x": 345.953735, + "y": 106.712074, + "z": 0.833289146 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910814b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910814b", - "_tpl": "64e74a35aac4cd0a7264ecdb", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910814b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910814b", + "_tpl": "64e74a35aac4cd0a7264ecdb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "quest thin diary [a9f2c7f1-c29e-468f-87ae-4ddcde4ba635]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -66.3453751, - "y": 2.68353367, - "z": 462.523956 - }, - "Rotation": { - "x": 88.95376, - "y": 180.000046, - "z": 169.61171 - }, - "IsGroupPosition": true, - "GroupPositions": [ - { - "Name": "groupPoint[0]", - "Weight": 1, - "Position": { - "x": -66.8118, - "y": 7.4455, - "z": 453.4604 + ] + }, + { + "Id": "quest thin diary [a9f2c7f1-c29e-468f-87ae-4ddcde4ba635]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -66.3453751, + "y": 2.68353367, + "z": 462.523956 + }, + "Rotation": { + "x": 88.95376, + "y": 180.000046, + "z": 169.61171 + }, + "IsGroupPosition": true, + "GroupPositions": [ + { + "Name": "groupPoint[0]", + "Weight": 1, + "Position": { + "x": -66.8118, + "y": 7.4455, + "z": 453.4604 + }, + "Rotation": { + "x": 12.9247608, + "y": -4.38281319e-7, + "z": -7.64954e-8 + } }, - "Rotation": { - "x": 12.9247608, - "y": -4.38281319e-7, - "z": -7.64954e-8 - } - }, - { - "Name": "groupPoint[1]", - "Weight": 1, - "Position": { - "x": -66.813, - "y": 7.970781, - "z": 459.4482 + { + "Name": "groupPoint[1]", + "Weight": 1, + "Position": { + "x": -66.813, + "y": 7.970781, + "z": 459.4482 + }, + "Rotation": { + "x": 270.881165, + "y": 64.03106, + "z": 205.942764 + } }, - "Rotation": { - "x": 270.881165, - "y": 64.03106, - "z": 205.942764 - } - }, - { - "Name": "groupPoint[2]", - "Weight": 1, - "Position": { - "x": -48.3300629, - "y": 7.825501, - "z": 460.1638 + { + "Name": "groupPoint[2]", + "Weight": 1, + "Position": { + "x": -48.3300629, + "y": 7.825501, + "z": 460.1638 + }, + "Rotation": { + "x": 2.21559882, + "y": -6.41721954e-7, + "z": -6.57799e-8 + } }, - "Rotation": { - "x": 2.21559882, - "y": -6.41721954e-7, - "z": -6.57799e-8 - } - }, - { - "Name": "groupPoint[3]", - "Weight": 1, - "Position": { - "x": -41.5907669, - "y": 8.561166, - "z": 455.145264 + { + "Name": "groupPoint[3]", + "Weight": 1, + "Position": { + "x": -41.5907669, + "y": 8.561166, + "z": 455.145264 + }, + "Rotation": { + "x": 88.5294, + "y": 308.71817, + "z": 39.2020874 + } }, - "Rotation": { - "x": 88.5294, - "y": 308.71817, - "z": 39.2020874 - } - }, - { - "Name": "groupPoint[4]", - "Weight": 1, - "Position": { - "x": -60.6400261, - "y": 3.66842461, - "z": 459.972443 + { + "Name": "groupPoint[4]", + "Weight": 1, + "Position": { + "x": -60.6400261, + "y": 3.66842461, + "z": 459.972443 + }, + "Rotation": { + "x": 346.362549, + "y": 180.254028, + "z": 359.928 + } }, - "Rotation": { - "x": 346.362549, - "y": 180.254028, - "z": 359.928 - } - }, - { - "Name": "groupPoint[5]", - "Weight": 1, - "Position": { - "x": -66.3453751, - "y": 2.68353367, - "z": 462.523956 - }, - "Rotation": { - "x": 88.95376, - "y": 180.000046, - "z": 169.61171 + { + "Name": "groupPoint[5]", + "Weight": 1, + "Position": { + "x": -66.3453751, + "y": 2.68353367, + "z": 462.523956 + }, + "Rotation": { + "x": 88.95376, + "y": 180.000046, + "z": 169.61171 + } } - } - ], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910814d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910814d", - "_tpl": "657acb2ac900be5902191ac9", - "upd": { - "StackObjectsCount": 1 + ], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910814d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910814d", + "_tpl": "657acb2ac900be5902191ac9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sh_ee_loot (10) [663a889d-dee8-4029-9413-bca14fa28e76]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": 183.652359, - "y": 5.88100433, - "z": 53.7110138 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910814f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910814f", - "_tpl": "5ede7a8229445733cb4c18e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sh_ee_loot (10) [663a889d-dee8-4029-9413-bca14fa28e76]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": 183.652359, + "y": 5.88100433, + "z": 53.7110138 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910814f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910814f", + "_tpl": "5ede7a8229445733cb4c18e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sh_ee_loot (12) [33a2b772-8621-4d8a-918f-9e11de85006f]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": 184.090134, - "y": 5.91500425, - "z": 55.96001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108153", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108153", - "_tpl": "62987cb98081af308d7558c8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sh_ee_loot (12) [33a2b772-8621-4d8a-918f-9e11de85006f]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": 184.090134, + "y": 5.91500425, + "z": 55.96001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108153", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108153", + "_tpl": "62987cb98081af308d7558c8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sh_ee_loot (13) [eed98924-950e-4b35-93d3-35b619c00c80]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": 182.687759, - "y": 6.69800425, - "z": 57.8710175 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108155", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108155", - "_tpl": "5af0534a86f7743b6f354284", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sh_ee_loot (13) [eed98924-950e-4b35-93d3-35b619c00c80]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": 182.687759, + "y": 6.69800425, + "z": 57.8710175 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108155", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108155", + "_tpl": "5af0534a86f7743b6f354284", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sh_ee_loot (14) [464a8d2c-d308-4449-958a-fd468c4e9d36]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": 184.932831, - "y": 5.89300442, - "z": 57.8050156 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108157", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108157", - "_tpl": "5bc9bdb8d4351e003562b8a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sh_ee_loot (14) [464a8d2c-d308-4449-958a-fd468c4e9d36]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": 184.932831, + "y": 5.89300442, + "z": 57.8050156 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108157", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108157", + "_tpl": "5bc9bdb8d4351e003562b8a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sh_ee_loot (15) [91ab7396-8da9-4383-b1d7-b2158d7c58ac]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": 184.881943, - "y": 6.64500427, - "z": 63.0160179 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108159", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108159", - "_tpl": "63a71e922b25f7513905ca20", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sh_ee_loot (15) [91ab7396-8da9-4383-b1d7-b2158d7c58ac]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": 184.881943, + "y": 6.64500427, + "z": 63.0160179 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108159", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108159", + "_tpl": "63a71e922b25f7513905ca20", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sh_ee_loot (16) [2a119a8c-84fd-46f4-922a-47f973b30bc3]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": 182.682449, - "y": 6.73600435, - "z": 60.4340172 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910815b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910815b", - "_tpl": "5c1f79a086f7746ed066fb8f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sh_ee_loot (16) [2a119a8c-84fd-46f4-922a-47f973b30bc3]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": 182.682449, + "y": 6.73600435, + "z": 60.4340172 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910815b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910815b", + "_tpl": "5c1f79a086f7746ed066fb8f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sh_ee_loot (4) [313815e3-321e-4a9c-9cc5-e097d7f7bab1]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": 182.708939, - "y": 6.732004, - "z": 58.5230179 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108165", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108165", - "_tpl": "5913877a86f774432f15d444", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sh_ee_loot (4) [313815e3-321e-4a9c-9cc5-e097d7f7bab1]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": 182.708939, + "y": 6.732004, + "z": 58.5230179 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108165", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108165", + "_tpl": "5913877a86f774432f15d444", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sh_ee_loot (6) [dda9c319-34ed-4a70-89a3-df7c57b14966]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": 184.96994, - "y": 5.85300446, - "z": 56.6900177 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108167", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108167", - "_tpl": "5d1b371186f774253763a656", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sh_ee_loot (6) [dda9c319-34ed-4a70-89a3-df7c57b14966]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": 184.96994, + "y": 5.85300446, + "z": 56.6900177 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108167", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108167", + "_tpl": "5d1b371186f774253763a656", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "sh_ee_loot [1e85e8e8-9368-4435-b408-a0684be89129]", - "IsContainer": false, - "useGravity": false, - "randomRotation": true, - "Position": { - "x": 185.018677, - "y": 5.942004, - "z": 54.5510139 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910816b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910816b", - "_tpl": "5bc9c377d4351e3bac12251b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "sh_ee_loot [1e85e8e8-9368-4435-b408-a0684be89129]", + "IsContainer": false, + "useGravity": false, + "randomRotation": true, + "Position": { + "x": 185.018677, + "y": 5.942004, + "z": 54.5510139 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910816b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910816b", + "_tpl": "5bc9c377d4351e3bac12251b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "small_tools (11) [b6d4a1a5-b216-478c-b27c-80a761fc4db7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 150.232025, - "y": 4.208, - "z": 212.524048 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910816f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910816f", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "small_tools (11) [b6d4a1a5-b216-478c-b27c-80a761fc4db7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 150.232025, + "y": 4.208, + "z": 212.524048 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910816f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910816f", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "small_tools (16) [bd39987f-13bc-4a39-9fd8-0c7ace65562a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 118.37603, - "y": 4.243, - "z": 225.611053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108171", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108171", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "small_tools (16) [bd39987f-13bc-4a39-9fd8-0c7ace65562a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 118.37603, + "y": 4.243, + "z": 225.611053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108171", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108171", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "small_tools_Leo_common (12) [10ce9ba6-ed7b-4098-a378-aa0ea79e0e09]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 224.76, - "y": -3.296, - "z": 60.858 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108177", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108177", - "_tpl": "590c2c9c86f774245b1f03f2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "small_tools_Leo_common (12) [10ce9ba6-ed7b-4098-a378-aa0ea79e0e09]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 224.76, + "y": -3.296, + "z": 60.858 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108177", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108177", + "_tpl": "590c2c9c86f774245b1f03f2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Tarkov loot cardinal (62) [b215235d-60b8-4089-8905-3a40a639eb77]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 126.14, - "y": 5.448, - "z": -212.8 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91081b3", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91081b3", - "_tpl": "5751487e245977207e26a315", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Tarkov loot cardinal (62) [b215235d-60b8-4089-8905-3a40a639eb77]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 126.14, + "y": 5.448, + "z": -212.8 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91081b3", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91081b3", + "_tpl": "5751487e245977207e26a315", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Tarkov loot cardinal (67) [026a57af-6836-44f6-a778-2bad48cb9ce7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 121.561, - "y": 5.448, - "z": -196.254 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91081b8", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91081b8", - "_tpl": "5737339e2459776af261abeb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Tarkov loot cardinal (67) [026a57af-6836-44f6-a778-2bad48cb9ce7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 121.561, + "y": 5.448, + "z": -196.254 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b91081b9", - "_tpl": "56dff216d2720bbd668b4568", - "parentId": "66c90dc3c7d43f68b91081b8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91081b8", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91081b8", + "_tpl": "5737339e2459776af261abeb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66c90dc3c7d43f68b91081b9", + "_tpl": "56dff216d2720bbd668b4568", + "parentId": "66c90dc3c7d43f68b91081b8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "technikal_staff_Kochnev_Rare (33) [9c0cdf05-1d1d-43b9-8131-2c993f389141]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -102.268005, - "y": 8.976, - "z": 53.549984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91081cb", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91081cb", - "_tpl": "5e2af02c86f7746d420957d4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "technikal_staff_Kochnev_Rare (33) [9c0cdf05-1d1d-43b9-8131-2c993f389141]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -102.268005, + "y": 8.976, + "z": 53.549984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91081cb", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91081cb", + "_tpl": "5e2af02c86f7746d420957d4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "technikal_staff_Kochnev_Rare (34) [1271b3ff-5d20-4c8f-b1e4-445ca734ecad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -104.417, - "y": 9.111, - "z": 53.5019836 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91081cd", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91081cd", - "_tpl": "59e35de086f7741778269d84", - "upd": { - "StackObjectsCount": 1 + { + "Id": "technikal_staff_Kochnev_Rare (34) [1271b3ff-5d20-4c8f-b1e4-445ca734ecad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -104.417, + "y": 9.111, + "z": 53.5019836 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91081cd", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91081cd", + "_tpl": "59e35de086f7741778269d84", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building (11) [70668a9f-9db4-45da-a55c-92e07ad2e0a4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 137.166031, - "y": 3.323, - "z": 441.606079 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91081e3", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91081e3", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building (11) [70668a9f-9db4-45da-a55c-92e07ad2e0a4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 137.166031, + "y": 3.323, + "z": 441.606079 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91081e3", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91081e3", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Kochnev_Common (18) [4840d567-f189-48ad-bdbc-7c9d59b9b5da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 212.188, - "y": 4.947, - "z": 295.885 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91081eb", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91081eb", - "_tpl": "590c311186f77424d1667482", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Kochnev_Common (18) [4840d567-f189-48ad-bdbc-7c9d59b9b5da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 212.188, + "y": 4.947, + "z": 295.885 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91081eb", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91081eb", + "_tpl": "590c311186f77424d1667482", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Kochnev_Common (19) [1e73e878-4268-477a-bddb-f123aad4d985]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 203.878, - "y": 7.7048, - "z": 290.903 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91081ed", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91081ed", - "_tpl": "57347c77245977448d35f6e2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Kochnev_Common (19) [1e73e878-4268-477a-bddb-f123aad4d985]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 203.878, + "y": 7.7048, + "z": 290.903 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91081ed", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91081ed", + "_tpl": "57347c77245977448d35f6e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Kochnev_Common (31) [599761e0-7f1a-4972-82e3-89618376a222]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.498, - "y": 3.403, - "z": 326.139 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91081f5", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91081f5", - "_tpl": "590c2b4386f77425357b6123", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Kochnev_Common (31) [599761e0-7f1a-4972-82e3-89618376a222]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.498, + "y": 3.403, + "z": 326.139 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91081f5", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91081f5", + "_tpl": "590c2b4386f77425357b6123", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Kochnev_Common (40) [cf79d1f4-944d-4ae9-a806-82523220acc7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 99.303, - "y": 2.75, - "z": 355.521 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91081f7", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91081f7", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Kochnev_Common (40) [cf79d1f4-944d-4ae9-a806-82523220acc7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 99.303, + "y": 2.75, + "z": 355.521 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91081f7", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91081f7", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Kochnev_Common (49) [0f86267c-3d9f-4818-8074-2a408aa8e110]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 136.310989, - "y": -0.411000252, - "z": 83.95499 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91081fd", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91081fd", - "_tpl": "590c2b4386f77425357b6123", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Kochnev_Common (49) [0f86267c-3d9f-4818-8074-2a408aa8e110]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 136.310989, + "y": -0.411000252, + "z": 83.95499 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91081fd", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91081fd", + "_tpl": "590c2b4386f77425357b6123", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Kochnev_Common (81) [3049b50f-2901-41f7-9f05-647e87b8e89e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -114.954, - "y": 1.20399952, - "z": -60.0310135 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910820f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910820f", - "_tpl": "590c311186f77424d1667482", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Kochnev_Common (81) [3049b50f-2901-41f7-9f05-647e87b8e89e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -114.954, + "y": 1.20399952, + "z": -60.0310135 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910820f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910820f", + "_tpl": "590c311186f77424d1667482", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (107) [f1ffc531-091d-46a9-b0c6-a2f090595308]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 282.092, - "y": 4.186, - "z": 417.047 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108217", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108217", - "_tpl": "5e2af37686f774755a234b65", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (107) [f1ffc531-091d-46a9-b0c6-a2f090595308]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 282.092, + "y": 4.186, + "z": 417.047 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108217", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108217", + "_tpl": "5e2af37686f774755a234b65", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (2) [430f5736-7a56-4304-bcaf-59a0c1ea60b5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.605, - "y": 9.489, - "z": 267.794 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910821f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910821f", - "_tpl": "59fafb5d86f774067a6f2084", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (2) [430f5736-7a56-4304-bcaf-59a0c1ea60b5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.605, + "y": 9.489, + "z": 267.794 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910821f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910821f", + "_tpl": "59fafb5d86f774067a6f2084", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (32) [9b19fd2e-8c19-455d-80a1-9d1d2205051d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -106.075, - "y": 3.699, - "z": 269.263 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108225", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108225", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (32) [9b19fd2e-8c19-455d-80a1-9d1d2205051d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -106.075, + "y": 3.699, + "z": 269.263 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108225", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108225", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (47) [3b801fd9-4abf-4329-9504-e9b4e0ea89cc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -39.697, - "y": 2.658, - "z": 130.489 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910822d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910822d", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (47) [3b801fd9-4abf-4329-9504-e9b4e0ea89cc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -39.697, + "y": 2.658, + "z": 130.489 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910822d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910822d", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (55) [28248b38-03c2-4d2e-84fc-05c4af02563e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -9.683, - "y": 0.61, - "z": 32.125 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108231", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108231", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (55) [28248b38-03c2-4d2e-84fc-05c4af02563e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -9.683, + "y": 0.61, + "z": 32.125 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108231", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108231", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (74) [a11c4476-30bc-4932-8f40-7173aca3a17d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 37.342, - "y": 7.409, - "z": 205.388 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108235", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108235", - "_tpl": "590c2d8786f774245b1f03f3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (74) [a11c4476-30bc-4932-8f40-7173aca3a17d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 37.342, + "y": 7.409, + "z": 205.388 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108235", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108235", + "_tpl": "590c2d8786f774245b1f03f3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (97) [47e3b593-8233-4b00-b297-a24f5310f48e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 105.669, - "y": 3.538, - "z": 459.589 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108247", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108247", - "_tpl": "590c2e1186f77425357b6124", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (97) [47e3b593-8233-4b00-b297-a24f5310f48e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 105.669, + "y": 3.538, + "z": 459.589 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108247", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108247", + "_tpl": "590c2e1186f77425357b6124", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools&building_Leo_Rare (98) [32dc2916-5491-434b-a505-0b3af65e627a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 107.938, - "y": 3.538, - "z": 460.789 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910824b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910824b", - "_tpl": "5d1b327086f7742525194449", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools&building_Leo_Rare (98) [32dc2916-5491-434b-a505-0b3af65e627a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 107.938, + "y": 3.538, + "z": 460.789 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910824b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910824b", + "_tpl": "5d1b327086f7742525194449", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univ_money_jeverly (10) [34b67d70-ca37-4d2f-9225-d08c74177212]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 113.661026, - "y": 7.12802362, - "z": 233.56105 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910824d", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910824d", - "_tpl": "5c0e533786f7747fa23f4d47", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univ_money_jeverly (10) [34b67d70-ca37-4d2f-9225-d08c74177212]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 113.661026, + "y": 7.12802362, + "z": 233.56105 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910824d", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910824d", + "_tpl": "5c0e533786f7747fa23f4d47", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univ_money_jeverly (13) [6a08aa73-6de0-4c57-b12a-effa87978cd1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 105.67202, - "y": 7.592013, - "z": 235.169067 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108253", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108253", - "_tpl": "5ed5166ad380ab312177c100", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univ_money_jeverly (13) [6a08aa73-6de0-4c57-b12a-effa87978cd1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 105.67202, + "y": 7.592013, + "z": 235.169067 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108253", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108253", + "_tpl": "5ed5166ad380ab312177c100", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univ_money_jeverly (25) [ad037387-2e15-4286-a7bb-c609c8aa840e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 264.94104, - "y": 7.01202631, - "z": 392.515137 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910825b", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910825b", - "_tpl": "5d0375ff86f774186372f685", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univ_money_jeverly (25) [ad037387-2e15-4286-a7bb-c609c8aa840e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 264.94104, + "y": 7.01202631, + "z": 392.515137 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910825b", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910825b", + "_tpl": "5d0375ff86f774186372f685", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univ_money_jeverly (27) [bad4f16a-be4b-4d85-875f-0e585b3a3a28]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 278.605042, - "y": 7.420016, - "z": 390.913147 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910825f", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910825f", - "_tpl": "5c0e530286f7747fa1419862", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univ_money_jeverly (27) [bad4f16a-be4b-4d85-875f-0e585b3a3a28]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 278.605042, + "y": 7.420016, + "z": 390.913147 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910825f", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910825f", + "_tpl": "5c0e530286f7747fa1419862", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univ_money_jeverly (6) [44559dc5-89b0-4e66-810b-3675fe4203e4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 58.37701, - "y": 6.29504633, - "z": 337.9391 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108265", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108265", - "_tpl": "637b60c3b7afa97bfc3d7001", - "upd": { - "StackObjectsCount": 1 + { + "Id": "univ_money_jeverly (6) [44559dc5-89b0-4e66-810b-3675fe4203e4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 58.37701, + "y": 6.29504633, + "z": 337.9391 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108265", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108265", + "_tpl": "637b60c3b7afa97bfc3d7001", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "univ_money_jeverly_Kochnev_Supperrare (3) [6d05b83f-c714-4a84-a58d-80d30287bc7a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -58.433, - "y": 6.095, - "z": -33.077 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108267", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108267", - "_tpl": "569668774bdc2da2298b4568", - "upd": { - "StackObjectsCount": 79 + { + "Id": "univ_money_jeverly_Kochnev_Supperrare (3) [6d05b83f-c714-4a84-a58d-80d30287bc7a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -58.433, + "y": 6.095, + "z": -33.077 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108267", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108267", + "_tpl": "569668774bdc2da2298b4568", + "upd": { + "StackObjectsCount": 79 + } } - } - ] - }, - { - "Id": "weapon cardinal [64846ae9-4d62-4ece-8dc5-771177234d70]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 126.375, - "y": 4.85, - "z": -217.479 - }, - "Rotation": { - "x": 359.843719, - "y": 359.744537, - "z": 271.39975 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108274", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108274", - "_tpl": "5de652c31b7e3716273428be", - "upd": { - "FireMode": { - "FireMode": "single" + ] + }, + { + "Id": "weapon cardinal [64846ae9-4d62-4ece-8dc5-771177234d70]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 126.375, + "y": 4.85, + "z": -217.479 + }, + "Rotation": { + "x": 359.843719, + "y": 359.744537, + "z": 271.39975 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108274", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108274", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66c90dc3c7d43f68b9108275", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "parentId": "66c90dc3c7d43f68b9108274", + "slotId": "mod_magazine" + }, + { + "_id": "66c90dc3c7d43f68b910827a", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "66c90dc3c7d43f68b9108275", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 } + }, + { + "_id": "66c90dc3c7d43f68b9108276", + "_tpl": "5de655be4a9f347bc92edb88", + "parentId": "66c90dc3c7d43f68b9108274", + "slotId": "mod_stock" + }, + { + "_id": "66c90dc3c7d43f68b9108277", + "_tpl": "5de65547883dde217541644b", + "parentId": "66c90dc3c7d43f68b9108274", + "slotId": "mod_barrel" + }, + { + "_id": "66c90dc3c7d43f68b9108278", + "_tpl": "5de6556a205ddc616a6bc4f7", + "parentId": "66c90dc3c7d43f68b9108277", + "slotId": "mod_muzzle" + }, + { + "_id": "66c90dc3c7d43f68b9108279", + "_tpl": "5de6558e9f98ac2bc65950fc", + "parentId": "66c90dc3c7d43f68b9108274", + "slotId": "mod_mount" } + ] + }, + { + "Id": "workshop_Items_Kochnev_Common (30) [7632361a-6fbf-4ee5-a9c8-569d56a9bcb0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 96.246, + "y": 2.964, + "z": 308.309 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9108275", - "_tpl": "5de653abf76fdc1ce94a5a2a", - "parentId": "66c90dc3c7d43f68b9108274", - "slotId": "mod_magazine" - }, - { - "_id": "66c90dc3c7d43f68b910827a", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "66c90dc3c7d43f68b9108275", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108286", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108286", + "_tpl": "57347c1124597737fb1379e3", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "workshop_Items_Kochnev_Common (5) [863eb1f9-317c-4060-8825-7809e61a0f7d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 98.589, + "y": 3.931, + "z": 288.035 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66c90dc3c7d43f68b9108276", - "_tpl": "5de655be4a9f347bc92edb88", - "parentId": "66c90dc3c7d43f68b9108274", - "slotId": "mod_stock" - }, - { - "_id": "66c90dc3c7d43f68b9108277", - "_tpl": "5de65547883dde217541644b", - "parentId": "66c90dc3c7d43f68b9108274", - "slotId": "mod_barrel" - }, - { - "_id": "66c90dc3c7d43f68b9108278", - "_tpl": "5de6556a205ddc616a6bc4f7", - "parentId": "66c90dc3c7d43f68b9108277", - "slotId": "mod_muzzle" - }, - { - "_id": "66c90dc3c7d43f68b9108279", - "_tpl": "5de6558e9f98ac2bc65950fc", - "parentId": "66c90dc3c7d43f68b9108274", - "slotId": "mod_mount" - } - ] - }, - { - "Id": "workshop_Items_Kochnev_Common (30) [7632361a-6fbf-4ee5-a9c8-569d56a9bcb0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 96.246, - "y": 2.964, - "z": 308.309 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b910828e", + "Items": [ + { + "_id": "66c90dc3c7d43f68b910828e", + "_tpl": "57347c1124597737fb1379e3", + "upd": { + "StackObjectsCount": 1 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108286", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108286", - "_tpl": "57347c1124597737fb1379e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items_Leo_common (11) [4886daef-7094-45c9-b70d-38096334344c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -190.967, + "y": 9.673, + "z": 405.654 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b9108296", + "Items": [ + { + "_id": "66c90dc3c7d43f68b9108296", + "_tpl": "60391a8b3364dc22b04d0ce5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items_Kochnev_Common (5) [863eb1f9-317c-4060-8825-7809e61a0f7d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 98.589, - "y": 3.931, - "z": 288.035 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b910828e", - "Items": [ - { - "_id": "66c90dc3c7d43f68b910828e", - "_tpl": "57347c1124597737fb1379e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items_Leo_common (18) [99d73daf-7f28-4ca6-a73d-4dbac2a899fb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 71.037, + "y": 6.836, + "z": 230.672 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91082a0", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91082a0", + "_tpl": "5d63d33b86f7746ea9275524", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items_Leo_common (11) [4886daef-7094-45c9-b70d-38096334344c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -190.967, - "y": 9.673, - "z": 405.654 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b9108296", - "Items": [ - { - "_id": "66c90dc3c7d43f68b9108296", - "_tpl": "60391a8b3364dc22b04d0ce5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items_Leo_common (2) [9da965c2-0d6f-40ba-b699-b7ca3b28570d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -128.679, + "y": 3.079, + "z": 396.612 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91082a2", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91082a2", + "_tpl": "61bf7b6302b3924be92fa8c3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items_Leo_common (18) [99d73daf-7f28-4ca6-a73d-4dbac2a899fb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 71.037, - "y": 6.836, - "z": 230.672 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91082a0", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91082a0", - "_tpl": "5d63d33b86f7746ea9275524", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items_Leo_common (26) [88e134b5-c777-4a53-8740-44222410c6db]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 139.442, + "y": 3.675, + "z": 451.226 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91082a4", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91082a4", + "_tpl": "57347cd0245977445a2d6ff1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items_Leo_common (2) [9da965c2-0d6f-40ba-b699-b7ca3b28570d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -128.679, - "y": 3.079, - "z": 396.612 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91082a2", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91082a2", - "_tpl": "61bf7b6302b3924be92fa8c3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items_Leo_common (29) [a57a019d-c4fb-4e10-8cba-6c0e095c34cc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 133.654, + "y": 4.434, + "z": 447.148 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91082a8", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91082a8", + "_tpl": "57347c5b245977448d35f6e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "workshop_Items_Leo_common (26) [88e134b5-c777-4a53-8740-44222410c6db]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 139.442, - "y": 3.675, - "z": 451.226 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91082a4", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91082a4", - "_tpl": "57347cd0245977445a2d6ff1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "workshop_Items_Leo_common (33) [43463a49-be69-4048-a178-4a79699348b9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 136.334, + "y": 6.915, + "z": 440.618 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66c90dc3c7d43f68b91082ac", + "Items": [ + { + "_id": "66c90dc3c7d43f68b91082ac", + "_tpl": "57347c1124597737fb1379e3", + "upd": { + "StackObjectsCount": 1 + } } + ] + } + ], + "Banners": [ + { + "id": "5803a58524597710ca36fcb2", + "pic": { + "path": "CONTENT\/banners\/banner_terragroup.jpg", + "rcid": "" } - ] - }, - { - "Id": "workshop_Items_Leo_common (29) [a57a019d-c4fb-4e10-8cba-6c0e095c34cc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 133.654, - "y": 4.434, - "z": 447.148 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91082a8", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91082a8", - "_tpl": "57347c5b245977448d35f6e1", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "63a9c1f5662a5b0a2c7fbde5", + "pic": { + "path": "CONTENT\/banners\/banner_City_final.jpg", + "rcid": "" } - ] - }, - { - "Id": "workshop_Items_Leo_common (33) [43463a49-be69-4048-a178-4a79699348b9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 136.334, - "y": 6.915, - "z": 440.618 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66c90dc3c7d43f68b91082ac", - "Items": [ - { - "_id": "66c90dc3c7d43f68b91082ac", - "_tpl": "57347c1124597737fb1379e3", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "64c0acf85174e095610734a0", + "pic": { + "path": "CONTENT\/banners\/banner_sherpa.jpg", + "rcid": "" } - ] - } - ], - "Banners": [ - { - "id": "5803a58524597710ca36fcb2", - "pic": { - "path": "CONTENT\/banners\/banner_terragroup.jpg", - "rcid": "" - } - }, - { - "id": "63a9c1f5662a5b0a2c7fbde5", - "pic": { - "path": "CONTENT\/banners\/banner_City_final.jpg", - "rcid": "" - } - }, - { - "id": "64c0acf85174e095610734a0", - "pic": { - "path": "CONTENT\/banners\/banner_sherpa.jpg", - "rcid": "" } - } - ] + ] + } } } \ No newline at end of file diff --git a/Fuyu.Platform.Server/embedded/database/locations/woods.json b/Fuyu.Platform.Server/embedded/database/locations/woods.json index bb23426d..a96534ad 100644 --- a/Fuyu.Platform.Server/embedded/database/locations/woods.json +++ b/Fuyu.Platform.Server/embedded/database/locations/woods.json @@ -1,34480 +1,34483 @@ { - "serverId": "PVE_OFFLINE_659885_26_08_2024_02_00_10", - "serverSettings": { - "TraderServerSettings": { - "TraderServices": { - "ExUsecLoyalty": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ExUsecLoyalty", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966ff54c3ef01b6f3ffad8" + "err": 0, + "data": { + "serverId": "PVE_OFFLINE_659885_26_08_2024_02_00_10", + "serverSettings": { + "TraderServerSettings": { + "TraderServices": { + "ExUsecLoyalty": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ExUsecLoyalty", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966ff54c3ef01b6f3ffad8" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.09 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.09 + }, + "ServiceItemCost": { + "569668774bdc2da2298b4568": { + "Count": 2500 + }, + "61bf7c024770ee6f9c6b8b53": { + "Count": 2 } - } - }, - "ServiceItemCost": { - "569668774bdc2da2298b4568": { - "Count": 2500 }, - "61bf7c024770ee6f9c6b8b53": { - "Count": 2 - } - }, - "UniqueItems": [] - }, - "ZryachiyAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "ZryachiyAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "6396701b9113f06a7c3b2379" + "UniqueItems": [] + }, + "ZryachiyAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "ZryachiyAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "6396701b9113f06a7c3b2379" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.18 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.18 + }, + "ServiceItemCost": { + "62a0a16d0b9d3c46de5b6e97": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 2000 } - } - }, - "ServiceItemCost": { - "62a0a16d0b9d3c46de5b6e97": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 2000 - } - }, - "UniqueItems": [] - }, - "CultistsAid": { - "TraderId": "638f541a29ffd1183d187f57", - "TraderServiceType": "CultistsAid", - "Requirements": { - "CompletedQuests": [ - { - "QuestId": "63966fccac6f8f3c677b9d89" + "UniqueItems": [] + }, + "CultistsAid": { + "TraderId": "638f541a29ffd1183d187f57", + "TraderServiceType": "CultistsAid", + "Requirements": { + "CompletedQuests": [ + { + "QuestId": "63966fccac6f8f3c677b9d89" + } + ], + "Standings": { + "638f541a29ffd1183d187f57": { + "Value": 0.03 + } } - ], - "Standings": { - "638f541a29ffd1183d187f57": { - "Value": 0.03 + }, + "ServiceItemCost": { + "5c12613b86f7743bbe2c3f76": { + "Count": 3 + }, + "5696686a4bdc2da3298b456a": { + "Count": 1000 } - } - }, - "ServiceItemCost": { - "5c12613b86f7743bbe2c3f76": { - "Count": 3 }, - "5696686a4bdc2da3298b456a": { - "Count": 1000 - } - }, - "UniqueItems": [ - "64d0b40fbe2eed70e254e2d4" - ] - }, - "PlayerTaxi": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "PlayerTaxi", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "BtrBotCover": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "BtrBotCover", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] - }, - "TransitItemsDelivery": { - "TraderId": "656f0f98d80a697f855d34b1", - "TraderServiceType": "TransitItemsDelivery", - "Requirements": { - "CompletedQuests": [], - "Standings": [] - }, - "ServiceItemCost": [], - "UniqueItems": [] + "UniqueItems": [ + "64d0b40fbe2eed70e254e2d4" + ] + }, + "PlayerTaxi": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "PlayerTaxi", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "BtrBotCover": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "BtrBotCover", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + }, + "TransitItemsDelivery": { + "TraderId": "656f0f98d80a697f855d34b1", + "TraderServiceType": "TransitItemsDelivery", + "Requirements": { + "CompletedQuests": [], + "Standings": [] + }, + "ServiceItemCost": [], + "UniqueItems": [] + } } - } - }, - "BTRServerSettings": { - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.77, - "BodySwingIntensity": 0.506, - "ServerMapBTRSettings": { - "Develop": { - "MapID": "develop", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "TarkovStreets": { - "MapID": "TarkovStreets", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 300.0, - "y": 600.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 - }, - "Woods": { - "MapID": "Woods", - "ChanceSpawn": 70.0, - "SpawnPeriod": { - "x": 180.0, - "y": 360.0, - "z": 0.0 - }, - "MoveSpeed": 8.0, - "ReadyToDepartureTime": 15.0, - "CheckTurnDistanceTime": 60.0, - "TurnCheckSensitivity": 0.98, - "DecreaseSpeedOnTurnLimit": 0.5, - "EndSplineDecelerationDistance": 3.0, - "AccelerationSpeed": 0.3, - "DecelerationSpeed": 1.5, - "PauseDurationRange": { - "x": 90.0, - "y": 150.0, - "z": 0.0 - }, - "BodySwingReturnSpeed": 1.0, - "BodySwingDamping": 0.6, - "BodySwingIntensity": 0.3 + "BTRServerSettings": { + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.77, + "BodySwingIntensity": 0.506, + "ServerMapBTRSettings": { + "Develop": { + "MapID": "develop", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "TarkovStreets": { + "MapID": "TarkovStreets", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 300.0, + "y": 600.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + }, + "Woods": { + "MapID": "Woods", + "ChanceSpawn": 70.0, + "SpawnPeriod": { + "x": 180.0, + "y": 360.0, + "z": 0.0 + }, + "MoveSpeed": 8.0, + "ReadyToDepartureTime": 15.0, + "CheckTurnDistanceTime": 60.0, + "TurnCheckSensitivity": 0.98, + "DecreaseSpeedOnTurnLimit": 0.5, + "EndSplineDecelerationDistance": 3.0, + "AccelerationSpeed": 0.3, + "DecelerationSpeed": 1.5, + "PauseDurationRange": { + "x": 90.0, + "y": 150.0, + "z": 0.0 + }, + "BodySwingReturnSpeed": 1.0, + "BodySwingDamping": 0.6, + "BodySwingIntensity": 0.3 + } } } - } - }, - "profile": { - "insuredItems": [] - }, - "locationLoot": { - "Enabled": true, - "EnableCoop": true, - "ForceOnlineRaidInPVE": false, - "Locked": false, - "Insurance": true, - "SafeLocation": false, - "Name": "Woods", - "Description": "The Priozersk Natural Reserve was recently included into the list of state-protected wildlife reserves of the North-Western Federal District.", - "Scene": { - "path": "maps\/woods_preset.bundle", - "rcid": "woods.scenespreset.asset" - }, - "Area": 0.0, - "RequiredPlayerLevelMin": 0, - "RequiredPlayerLevelMax": 100, - "PmcMaxPlayersInGroup": 5, - "ScavMaxPlayersInGroup": 4, - "MinPlayers": 10, - "MaxPlayers": 14, - "MaxCoopGroup": 14, - "exit_count": 1, - "exit_access_time": 10, - "exit_time": 90, - "Preview": { - "path": "", - "rcid": "" - }, - "IconX": 460, - "IconY": 660, - "filter_ex": [], - "waves": [ - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "ZoneClearVill", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 1, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "ZoneHouse", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 2, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "ZoneScavBase2", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 3, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneHouse", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 4, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneWoodCutter", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 5, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneHouse", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 6, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneWoodCutter", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 7, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneBigRocks", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 8, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneRoad", - "BotSide": "Savage", - "BotPreset": "easy", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 9, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 1, - "SpawnPoints": "ZoneHighRocks", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "marksman", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneMiniHouse", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneBigRocks", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "ZoneRoad", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "easy", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 3, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - }, - { - "number": 0, - "time_min": -1, - "time_max": -1, - "slots_min": 0, - "slots_max": 0, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false, - "OpenZones": "", - "SpawnMode": [ - "pve" - ] - } - ], - "limits": [ - { - "items": [ - "6389c8c5dbfd5e4b95197e6b" - ], - "min": 0, - "max": 1 - } - ], - "AveragePlayTime": 25, - "AveragePlayerLevel": 15, - "EscapeTimeLimit": 40, - "EscapeTimeLimitPVE": 40, - "EscapeTimeLimitCoop": 30, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 30, - "MaxDistToFreePoint": 200, - "MinDistToFreePoint": 50, - "MaxBotPerZone": 4, - "OpenZones": "ZoneClearVill,ZoneHouse,ZoneScavBase2,ZoneHouse,ZoneWoodCutter,ZoneBigRocks,ZoneRoad,ZoneHighRocks,ZoneMiniHouse,ZoneBigRocks", - "OcculsionCullingEnabled": false, - "GlobalLootChanceModifier": 0.4, - "GlobalLootChanceModifierPvE": 0.95, - "OldSpawn": true, - "OfflineOldSpawn": true, - "NewSpawn": true, - "OfflineNewSpawn": true, - "BotMax": 30, - "BotMaxPvE": 30, - "BotStart": 10, - "BotStartPlayer": 0, - "BotStop": 1900, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 260, - "BotSpawnTimeOnMax": 320, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOffMax": 30, - "BotMaxPlayer": 0, - "BotEasy": 10, - "BotNormal": 50, - "BotHard": 40, - "BotImpossible": 0, - "BotAssault": 80, - "BotMarksman": 20, - "DisabledScavExits": "", - "MinPlayerLvlAccessKeys": 0, - "AccessKeys": [], - "UnixDateTime": 1636382791, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "sav_summon_seconds": 60, - "matching_min_seconds": 60, - "GenerateLocalLootCache": true, - "PlayersRequestCount": -1, - "NonWaveGroupScenario": { - "MinToBeGroup": 2, - "MaxToBeGroup": 3, - "Chance": 50.0, - "Enabled": true }, - "BotSpawnCountStep": 4, - "BotSpawnPeriodCheck": 15, - "GlobalContainerChanceModifier": 1.0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 1.0, - "Scattering": 1.0, - "GainSight": 1.0, - "MarksmanAccuratyCoef": 1.0, - "VisibleDistance": 1.0, - "MagnetPower": 44.0, - "DistToSleep": 300.0, - "DistToActivate": 265.0, - "DistToPersueAxemanCoef": 1.1, - "KhorovodChance": 0, - "MinExfiltrationTime": 1200.0, - "MaxExfiltrationTime": 1800.0, - "DistToActivatePvE": 265.0, - "DistToSleepPvE": 300.0, - "AdditionalHostilitySettings": [ - { - "BotRole": "pmcBEAR", - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 90 - }, - { - "BotRole": "pmcUSEC", - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Warn": [ - "sectactPriestEvent" - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "SavagePlayerBehaviour": "Warn", - "BearPlayerBehaviour": "ChancedEnemies", - "BearEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "UsecEnemyChance": 75 - } - ] + "profile": { + "insuredItems": [] }, - "exits": [ - { - "Name": "ZB-016", - "EntryPoints": "House", - "Chance": 66.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 66.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "Outskirts", - "EntryPoints": "Old Station", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "UN Roadblock", - "EntryPoints": "House", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "RUAF Gate", - "EntryPoints": "House", - "Chance": 66.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 66.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "ZB-014", - "EntryPoints": "Old Station", - "Chance": 66.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 66.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - }, - { - "Name": "South V-Ex", - "EntryPoints": "House,Old Station", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 4, - "ExfiltrationTime": 60.0, - "PassageRequirement": "TransferItem", - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "Count": 5000, - "RequirementTip": "EXFIL_Item", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 5000, - "ExfiltrationTimePVE": 60.0, - "PlayersCountPVE": 4 - }, - { - "Name": "Factory Gate", - "EntryPoints": "House,Old Station", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 20.0, - "PassageRequirement": "ScavCooperation", - "ExfiltrationType": "SharedTimer", - "Id": "", - "Count": 0, - "RequirementTip": "EXFIL_Cooperate", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 20.0, - "PlayersCountPVE": 0 - }, - { - "Name": "un-sec", - "EntryPoints": "House", - "Chance": 100.0, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 8.0, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "Id": "", - "Count": 0, - "RequirementTip": "", - "EventAvailable": false, - "MinTimePVE": 0, - "MaxTimePVE": 0, - "ChancePVE": 100.0, - "CountPVE": 0, - "ExfiltrationTimePVE": 8.0, - "PlayersCountPVE": 0 - } - ], - "DisabledForScav": false, - "BossLocationSpawn": [ - { - "BossName": "bossPartisan", - "BossChance": 10.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent", - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": true, - "DependKarmaPVE": false - }, - { - "BossName": "bossKnight", - "BossChance": 25.0, - "BossZone": "ZoneScavBase2", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "exUsec", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2", - "Time": -1.0, - "Supports": [ - { - "BossEscortType": "followerBigPipe", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "1" - }, - { - "BossEscortType": "followerBirdEye", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "1" - }, - { - "BossEscortType": "followerGluharScout", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortAmount": "0" - } - ], - "RandomTimeSpawn": true, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "", - "TriggerName": "", - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "bossKojaniy", - "BossChance": 25.0, - "BossZone": "ZoneWoodCutter", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "followerKojaniy", - "BossEscortDifficult": "normal", - "BossEscortAmount": "2", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "", - "TriggerName": "", - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "sectantPriest", - "BossChance": 10.0, - "BossZone": "ZoneMiniHouse,ZoneBrokenVill", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossEscortDifficult": "normal", - "BossEscortAmount": "4", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "", - "TriggerName": "", - "Delay": 0.0, - "SpawnMode": [ - "regular", - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "", - "TriggerName": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "", - "TriggerName": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "", - "TriggerName": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "", - "TriggerName": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "", - "TriggerName": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcBEAR", - "BossChance": 50.0, - "BossZone": "", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "", - "TriggerName": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - }, - { - "BossName": "pmcUSEC", - "BossChance": 75.0, - "BossZone": "ZoneBigRocks", - "BossPlayer": false, - "BossDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossEscortDifficult": "normal", - "BossEscortAmount": "0,1,2", - "Time": -1.0, - "Supports": null, - "RandomTimeSpawn": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "TriggerId": "", - "TriggerName": "", - "Delay": 0.0, - "SpawnMode": [ - "pve" - ], - "DependKarma": false, - "DependKarmaPVE": false - } - ], - "SpawnPointParams": [ - { - "Id": "00113224-6357-4aaf-bb06-cad232f51b9a", - "Position": { - "x": -60.28, - "y": 18.8811035, - "z": -230.12 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + "locationLoot": { + "Enabled": true, + "EnableCoop": true, + "ForceOnlineRaidInPVE": false, + "Locked": false, + "Insurance": true, + "SafeLocation": false, + "Name": "Woods", + "Description": "The Priozersk Natural Reserve was recently included into the list of state-protected wildlife reserves of the North-Western Federal District.", + "Scene": { + "path": "maps\/woods_preset.bundle", + "rcid": "woods.scenespreset.asset" + }, + "Area": 0.0, + "RequiredPlayerLevelMin": 0, + "RequiredPlayerLevelMax": 100, + "PmcMaxPlayersInGroup": 5, + "ScavMaxPlayersInGroup": 4, + "MinPlayers": 10, + "MaxPlayers": 14, + "MaxCoopGroup": 14, + "exit_count": 1, + "exit_access_time": 10, + "exit_time": 90, + "Preview": { + "path": "", + "rcid": "" + }, + "IconX": 460, + "IconY": 660, + "filter_ex": [], + "waves": [ + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "ZoneClearVill", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 15 - }, - { - "Id": "007293cc-b2a3-4b23-a094-f0b2c77535e0", - "Position": { - "x": 370.670044, - "y": 17.26, - "z": -595.6699 - }, - "Rotation": 268.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 1, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "ZoneHouse", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "012f18e8-2f08-4681-9d17-e9d6c89ff068", - "Position": { - "x": -158.7, - "y": -4.339999, - "z": 296.5 - }, - "Rotation": 212.4, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "number": 2, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "ZoneScavBase2", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "01c489a9-a17c-45e0-9c42-803173881056", - "Position": { - "x": 487.358643, - "y": -18.7443466, - "z": 331.25 - }, - "Rotation": 229.460022, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 3, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneHouse", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "02457151-61f4-4f53-9d29-fc53e61bcdcb", - "Position": { - "x": -544.32, - "y": 11.0081148, - "z": -438.939972 - }, - "Rotation": 72.46, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "number": 4, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneWoodCutter", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "027273fa-04bc-48d1-acfb-74f008bb196c", - "Position": { - "x": 366.0, - "y": 13.94, - "z": -698.0 - }, - "Rotation": 325.167175, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 5, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneHouse", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "046ca3c7-3af3-4557-a5c3-c98262ced461", - "Position": { - "x": -275.98, - "y": -1.08744955, - "z": 334.3 - }, - "Rotation": 213.64, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 6, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneWoodCutter", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "04ae9885-e3b2-4713-bd7c-36f59351c47f", - "Position": { - "x": 410.780029, - "y": -5.35236, - "z": 13.3900146 - }, - "Rotation": 263.1, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 7, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneBigRocks", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "05679694-c3e4-4530-8360-41bcc2c56c97", - "Position": { - "x": -139.96, - "y": 30.8123264, - "z": -191.76 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "number": 8, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneRoad", + "BotSide": "Savage", + "BotPreset": "easy", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "ZoneBigRocks", - "CorePointId": 7 - }, - { - "Id": "0629d023-ea80-45cb-8376-9ea211e740f9", - "Position": { - "x": -63.1000061, - "y": 9.763999, - "z": -587.319946 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 9, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 1, + "SpawnPoints": "ZoneHighRocks", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "marksman", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "06f65382-5ecf-4852-9020-5b37c432331f", - "Position": { - "x": -420.16, - "y": 12.174, - "z": -509.619965 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneMiniHouse", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0739b113-2c10-47b2-b86c-6674f6ce92dd", - "Position": { - "x": -277.37, - "y": -1.50234556, - "z": 329.74 - }, - "Rotation": 200.38, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneBigRocks", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "078c67f6-5e64-4c48-b9b2-5e6c1042fe83", - "Position": { - "x": 368.650024, - "y": -1.62831867, - "z": -81.73999 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "ZoneRoad", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "08189e53-2a0a-4cf8-830e-75aa54e1bab5", - "Position": { - "x": -522.77, - "y": -2.59466934, - "z": 218.57 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "easy", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0ba5301a-df26-49b5-8ee5-61bd0c1bd808", - "Position": { - "x": -615.0, - "y": 14.66, - "z": -328.990021 - }, - "Rotation": 44.72, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 3, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "normal", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0ced4119-d0aa-481e-9c45-e93fc820a41f", - "Position": { - "x": -519.45, - "y": 12.6323347, - "z": -156.300018 - }, - "Rotation": 125.579994, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 + { + "number": 0, + "time_min": -1, + "time_max": -1, + "slots_min": 0, + "slots_max": 0, + "SpawnPoints": "", + "BotSide": "Savage", + "BotPreset": "hard", + "WildSpawnType": "assault", + "isPlayers": false, + "OpenZones": "", + "SpawnMode": [ + "pve" + ] + } + ], + "limits": [ + { + "items": [ + "6389c8c5dbfd5e4b95197e6b" + ], + "min": 0, + "max": 1 + } + ], + "AveragePlayTime": 25, + "AveragePlayerLevel": 15, + "EscapeTimeLimit": 40, + "EscapeTimeLimitPVE": 40, + "EscapeTimeLimitCoop": 30, + "Rules": "Normal", + "IsSecret": false, + "doors": [], + "tmp_location_field_remove_me": 0, + "MinDistToExitPoint": 30, + "MaxDistToFreePoint": 200, + "MinDistToFreePoint": 50, + "MaxBotPerZone": 4, + "OpenZones": "ZoneClearVill,ZoneHouse,ZoneScavBase2,ZoneHouse,ZoneWoodCutter,ZoneBigRocks,ZoneRoad,ZoneHighRocks,ZoneMiniHouse,ZoneBigRocks", + "OcculsionCullingEnabled": false, + "GlobalLootChanceModifier": 0.4, + "GlobalLootChanceModifierPvE": 0.95, + "OldSpawn": true, + "OfflineOldSpawn": true, + "NewSpawn": true, + "OfflineNewSpawn": true, + "BotMax": 30, + "BotMaxPvE": 30, + "BotStart": 10, + "BotStartPlayer": 0, + "BotStop": 1900, + "BotMaxTimePlayer": 0, + "BotSpawnTimeOnMin": 260, + "BotSpawnTimeOnMax": 320, + "BotSpawnTimeOffMin": 20, + "BotSpawnTimeOffMax": 30, + "BotMaxPlayer": 0, + "BotEasy": 10, + "BotNormal": 50, + "BotHard": 40, + "BotImpossible": 0, + "BotAssault": 80, + "BotMarksman": 20, + "DisabledScavExits": "", + "MinPlayerLvlAccessKeys": 0, + "AccessKeys": [], + "UnixDateTime": 1636382791, + "users_gather_seconds": 0, + "users_spawn_seconds_n": 120, + "users_spawn_seconds_n2": 200, + "users_summon_seconds": 0, + "sav_summon_seconds": 60, + "matching_min_seconds": 60, + "GenerateLocalLootCache": true, + "PlayersRequestCount": -1, + "NonWaveGroupScenario": { + "MinToBeGroup": 2, + "MaxToBeGroup": 3, + "Chance": 50.0, + "Enabled": true + }, + "BotSpawnCountStep": 4, + "BotSpawnPeriodCheck": 15, + "GlobalContainerChanceModifier": 1.0, + "MinMaxBots": [], + "BotLocationModifier": { + "AccuracySpeed": 1.0, + "Scattering": 1.0, + "GainSight": 1.0, + "MarksmanAccuratyCoef": 1.0, + "VisibleDistance": 1.0, + "MagnetPower": 44.0, + "DistToSleep": 300.0, + "DistToActivate": 265.0, + "DistToPersueAxemanCoef": 1.1, + "KhorovodChance": 0, + "MinExfiltrationTime": 1200.0, + "MaxExfiltrationTime": 1800.0, + "DistToActivatePvE": 265.0, + "DistToSleepPvE": 300.0, + "AdditionalHostilitySettings": [ + { + "BotRole": "pmcBEAR", + "AlwaysEnemies": [ + "pmcBot", + "exUsec", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar", + "bossKnight" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcUSEC" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 75, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 90 + }, + { + "BotRole": "pmcUSEC", + "AlwaysEnemies": [ + "pmcBot", + "bossBully", + "bossBoar", + "bossTagilla", + "bossKilla", + "bossKojaniy", + "bossSanitar", + "bossKolontay", + "bossGluhar" + ], + "ChancedEnemies": [ + { + "EnemyChance": 70, + "Role": "assault" + }, + { + "EnemyChance": 70, + "Role": "marksman" + }, + { + "EnemyChance": 75, + "Role": "pmcBEAR" + }, + { + "EnemyChance": 15, + "Role": "exUsec" + }, + { + "EnemyChance": 15, + "Role": "bossKnight" + } + ], + "Warn": [ + "sectactPriestEvent" + ], + "Neutral": [ + "sectantPriest", + "sectantWarrior" + ], + "AlwaysFriends": [ + "bossZryachiy", + "followerZryachiy", + "peacefullZryachiyEvent", + "ravangeZryachiyEvent", + "gifter" + ], + "SavagePlayerBehaviour": "Warn", + "BearPlayerBehaviour": "ChancedEnemies", + "BearEnemyChance": 90, + "UsecPlayerBehaviour": "ChancedEnemies", + "UsecEnemyChance": 75 } - }, - "BotZoneName": "", - "CorePointId": 0 + ] }, - { - "Id": "0dd1d014-6642-4a75-a496-242dd44a855b", - "Position": { - "x": 518.410034, - "y": -20.94, - "z": 264.3 - }, - "Rotation": 216.79, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + "exits": [ + { + "Name": "ZB-016", + "EntryPoints": "House", + "Chance": 66.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 66.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "0e7510d4-d17d-4600-bc4c-8800f221cffe", - "Position": { - "x": -171.64, - "y": 1.03652763, - "z": 432.26 - }, - "Rotation": 169.16, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Name": "Outskirts", + "EntryPoints": "Old Station", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "0eb57f89-f986-4e1b-b16c-758e672f5c69", - "Position": { - "x": 348.79, - "y": -0.9134421, - "z": -155.92 - }, - "Rotation": 335.01, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 145 - } + { + "Name": "UN Roadblock", + "EntryPoints": "House", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneMiniHouse", - "CorePointId": 5 - }, - { - "Id": "0ee210ea-e3ab-4046-9537-552a4881a245", - "Position": { - "x": -277.3, - "y": 30.9032745, - "z": -196.4 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Name": "RUAF Gate", + "EntryPoints": "House", + "Chance": 66.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 66.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneBigRocks", - "CorePointId": 8 - }, - { - "Id": "0fc483a4-67c2-4387-9f17-667dcd7be653", - "Position": { - "x": -293.67, - "y": 28.9518757, - "z": -199.67 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Name": "ZB-014", + "EntryPoints": "Old Station", + "Chance": 66.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 66.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneBigRocks", - "CorePointId": 8 - }, - { - "Id": "100d945d-1da3-434e-9a45-5d07c64bc296", - "Position": { - "x": -420.16, - "y": 11.2839994, - "z": -519.410034 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Name": "South V-Ex", + "EntryPoints": "House,Old Station", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 4, + "ExfiltrationTime": 60.0, + "PassageRequirement": "TransferItem", + "ExfiltrationType": "SharedTimer", + "Id": "5449016a4bdc2d6f028b456f", + "Count": 5000, + "RequirementTip": "EXFIL_Item", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 5000, + "ExfiltrationTimePVE": 60.0, + "PlayersCountPVE": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "106984cb-0739-4ee2-8d0b-374d594906bb", - "Position": { - "x": -55.9500122, - "y": 7.597872, - "z": -759.37 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Name": "Factory Gate", + "EntryPoints": "House,Old Station", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 20.0, + "PassageRequirement": "ScavCooperation", + "ExfiltrationType": "SharedTimer", + "Id": "", + "Count": 0, + "RequirementTip": "EXFIL_Cooperate", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 20.0, + "PlayersCountPVE": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "158e0a94-64fb-4555-afa0-90109713db91", - "Position": { - "x": -265.82, - "y": 10.58, - "z": -632.22 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Name": "un-sec", + "EntryPoints": "House", + "Chance": 100.0, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 8.0, + "PassageRequirement": "None", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequirementTip": "", + "EventAvailable": false, + "MinTimePVE": 0, + "MaxTimePVE": 0, + "ChancePVE": 100.0, + "CountPVE": 0, + "ExfiltrationTimePVE": 8.0, + "PlayersCountPVE": 0 + } + ], + "DisabledForScav": false, + "BossLocationSpawn": [ + { + "BossName": "bossPartisan", + "BossChance": 10.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "sectantWarrior", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "PARTISAN_TRIGGER", + "TriggerName": "botEvent", + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": true, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "16d34563-48a5-423f-9cc5-862c5b8f7416", - "Position": { - "x": 135.05, - "y": 8.544661, - "z": -174.15 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "BossName": "bossKnight", + "BossChance": 25.0, + "BossZone": "ZoneScavBase2", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "exUsec", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2", + "Time": -1.0, + "Supports": [ + { + "BossEscortType": "followerBigPipe", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "1" + }, + { + "BossEscortType": "followerBirdEye", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "1" + }, + { + "BossEscortType": "followerGluharScout", + "BossEscortDifficult": [ + "normal" + ], + "BossEscortAmount": "0" + } + ], + "RandomTimeSpawn": true, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "", + "TriggerName": "", + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 15 - }, - { - "Id": "17d3fee1-d9bb-4950-80bd-44cd33b12e50", - "Position": { - "x": 231.43, - "y": 26.17, - "z": -314.429962 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "BossName": "bossKojaniy", + "BossChance": 25.0, + "BossZone": "ZoneWoodCutter", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "followerKojaniy", + "BossEscortDifficult": "normal", + "BossEscortAmount": "2", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "", + "TriggerName": "", + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1804b780-85a9-4eff-a465-82e2fbb88f0c", - "Position": { - "x": -354.73, - "y": 0.950922132, - "z": 239.63 - }, - "Rotation": 129.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "BossName": "sectantPriest", + "BossChance": 10.0, + "BossZone": "ZoneMiniHouse,ZoneBrokenVill", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "sectantWarrior", + "BossEscortDifficult": "normal", + "BossEscortAmount": "4", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "", + "TriggerName": "", + "Delay": 0.0, + "SpawnMode": [ + "regular", + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "18392ff2-4c31-4a03-b827-645741b935cb", - "Position": { - "x": 125.9, - "y": 0.277326226, - "z": 4.92 - }, - "Rotation": 101.91, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "", + "TriggerName": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 10 - }, - { - "Id": "191b6c5a-0fb7-40b2-95b4-3a33397eb872", - "Position": { - "x": -54.1099854, - "y": 8.883999, - "z": -579.439941 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "", + "TriggerName": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1aaa922d-7f31-433a-8457-075f9886600b", - "Position": { - "x": -26.996, - "y": 22.998, - "z": -308.717 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1b3e5b5b-a6cc-4702-8b79-d00183af37b6", - "Position": { - "x": 370.959961, - "y": -1.82308924, - "z": -73.28 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "BossName": "pmcUSEC", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcUSEC", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "", + "TriggerName": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1baafdd1-e250-453c-94b3-f842c87f4b8a", - "Position": { - "x": -23.294, - "y": 22.997, - "z": -308.203 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "", + "TriggerName": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1c102540-4777-4cd4-bb36-b28d7b0b9bf9", - "Position": { - "x": 443.007935, - "y": -20.52517, - "z": 364.0982 - }, - "Rotation": 228.71, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "", + "TriggerName": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1c6ea7b6-4a93-4a2a-95d0-90c980b00ffb", - "Position": { - "x": -518.69, - "y": 7.2753315, - "z": 145.43 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcBEAR", + "BossChance": 50.0, + "BossZone": "", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "", + "TriggerName": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1dfb41ff-4233-47ba-8db1-054dd7923906", - "Position": { - "x": -331.59, - "y": 18.5271835, - "z": -138.91 - }, - "Rotation": 33.6, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "BossName": "pmcUSEC", + "BossChance": 75.0, + "BossZone": "ZoneBigRocks", + "BossPlayer": false, + "BossDifficult": "normal", + "BossEscortType": "pmcBEAR", + "BossEscortDifficult": "normal", + "BossEscortAmount": "0,1,2", + "Time": -1.0, + "Supports": null, + "RandomTimeSpawn": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "TriggerId": "", + "TriggerName": "", + "Delay": 0.0, + "SpawnMode": [ + "pve" + ], + "DependKarma": false, + "DependKarmaPVE": false + } + ], + "SpawnPointParams": [ + { + "Id": "00113224-6357-4aaf-bb06-cad232f51b9a", + "Position": { + "x": -60.28, + "y": 18.8811035, + "z": -230.12 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "1f0c515e-2287-483a-a613-9715e190feb6", - "Position": { - "x": -530.77, - "y": 13.7821617, - "z": -404.130035 - }, - "Rotation": 72.46, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "007293cc-b2a3-4b23-a094-f0b2c77535e0", + "Position": { + "x": 370.670044, + "y": 17.26, + "z": -595.6699 + }, + "Rotation": 268.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "1f21e83c-915b-4c89-99c1-fee2787737d4", - "Position": { - "x": -561.09, - "y": 15.2086506, - "z": -355.310028 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "012f18e8-2f08-4681-9d17-e9d6c89ff068", + "Position": { + "x": -158.7, + "y": -4.339999, + "z": 296.5 + }, + "Rotation": 212.4, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 7 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "20ee24e5-1db9-4191-9ba5-444ff4207f2b", - "Position": { - "x": 366.900024, - "y": 18.19, - "z": -598.199951 - }, - "Rotation": 268.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "01c489a9-a17c-45e0-9c42-803173881056", + "Position": { + "x": 487.358643, + "y": -18.7443466, + "z": 331.25 + }, + "Rotation": 229.460022, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "219c81c4-5e06-4abe-b971-61728edafde9", - "Position": { - "x": 226.43, - "y": -8.698159, - "z": 197.5 - }, - "Rotation": 193.25, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "02457151-61f4-4f53-9d29-fc53e61bcdcb", + "Position": { + "x": -544.32, + "y": 11.0081148, + "z": -438.939972 + }, + "Rotation": 72.46, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "21c4f855-6ada-4784-aec5-797f78732ed8", - "Position": { - "x": 282.47, - "y": -1.44, - "z": -62.81 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "027273fa-04bc-48d1-acfb-74f008bb196c", + "Position": { + "x": 366.0, + "y": 13.94, + "z": -698.0 + }, + "Rotation": 325.167175, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2533a3ec-8812-4546-9e44-d19ae093ef6b", - "Position": { - "x": 230.400024, - "y": 26.9, - "z": -320.27 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "046ca3c7-3af3-4557-a5c3-c98262ced461", + "Position": { + "x": -275.98, + "y": -1.08744955, + "z": 334.3 + }, + "Rotation": 213.64, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "25d3f1d7-e979-44e6-b332-b1f452bbc042", - "Position": { - "x": -528.91, - "y": 2.366396, - "z": 233.67 - }, - "Rotation": 76.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "04ae9885-e3b2-4713-bd7c-36f59351c47f", + "Position": { + "x": 410.780029, + "y": -5.35236, + "z": 13.3900146 + }, + "Rotation": 263.1, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 4 - }, - { - "Id": "262bca73-344c-44fe-96a9-cb86cddb5c75", - "Position": { - "x": 442.53, - "y": -17.47189, - "z": 261.18 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "05679694-c3e4-4530-8360-41bcc2c56c97", + "Position": { + "x": -139.96, + "y": 30.8123264, + "z": -191.76 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneBigRocks", + "CorePointId": 7 }, - "BotZoneName": "ZoneHouse", - "CorePointId": 9 - }, - { - "Id": "2685c5c9-9bde-40c1-bbc2-3a0f3b024106", - "Position": { - "x": 61.22003, - "y": 9.033999, - "z": -657.75 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "0629d023-ea80-45cb-8376-9ea211e740f9", + "Position": { + "x": -63.1000061, + "y": 9.763999, + "z": -587.319946 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "27a8cc4b-2cff-4e10-8e10-5f70d323fc5c", - "Position": { - "x": -538.41, - "y": 7.11805344, - "z": 157.71 - }, - "Rotation": 76.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "06f65382-5ecf-4852-9020-5b37c432331f", + "Position": { + "x": -420.16, + "y": 12.174, + "z": -509.619965 + }, + "Rotation": 14.210001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 4 - }, - { - "Id": "280011ca-3526-431d-af3d-67fb6312ee98", - "Position": { - "x": 418.410034, - "y": -6.196, - "z": 14.2999878 - }, - "Rotation": 262.49, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0739b113-2c10-47b2-b86c-6674f6ce92dd", + "Position": { + "x": -277.37, + "y": -1.50234556, + "z": 329.74 + }, + "Rotation": 200.38, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2915d180-1de7-42a6-a6da-1cf2de15e78c", - "Position": { - "x": 465.959961, - "y": -15.0385733, - "z": 176.27 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "078c67f6-5e64-4c48-b9b2-5e6c1042fe83", + "Position": { + "x": 368.650024, + "y": -1.62831867, + "z": -81.73999 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2a0f879d-7425-4f52-a0b4-3be6b4db52fa", - "Position": { - "x": -117.590027, - "y": 11.9433193, - "z": -729.39 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "08189e53-2a0a-4cf8-830e-75aa54e1bab5", + "Position": { + "x": -522.77, + "y": -2.59466934, + "z": 218.57 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "2b2b5b1e-0bfd-4316-af38-bbefa25ac3b2", - "Position": { - "x": 280.74, - "y": -11.9072313, - "z": 319.43 - }, - "Rotation": 255.300018, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0ba5301a-df26-49b5-8ee5-61bd0c1bd808", + "Position": { + "x": -615.0, + "y": 14.66, + "z": -328.990021 + }, + "Rotation": 44.72, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2d5858b4-7de0-4cee-adb7-71d7a2886382", - "Position": { - "x": -39.3000031, - "y": -13.4976988, - "z": 348.37 - }, - "Rotation": 212.4, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 250 - } + { + "Id": "0ced4119-d0aa-481e-9c45-e93fc820a41f", + "Position": { + "x": -519.45, + "y": 12.6323347, + "z": -156.300018 + }, + "Rotation": 125.579994, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "2d7f7e41-7f75-4d8f-be43-b025bb5078b3", - "Position": { - "x": -525.07, - "y": -2.56085658, - "z": 216.0 - }, - "Rotation": 261.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0dd1d014-6642-4a75-a496-242dd44a855b", + "Position": { + "x": 518.410034, + "y": -20.94, + "z": 264.3 + }, + "Rotation": 216.79, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "2e52ceb4-5491-4a44-bfe4-a658f87271ff", - "Position": { - "x": -539.87, - "y": -1.18963408, - "z": 294.67 - }, - "Rotation": 68.9, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "0e7510d4-d17d-4600-bc4c-8800f221cffe", + "Position": { + "x": -171.64, + "y": 1.03652763, + "z": 432.26 + }, + "Rotation": 169.16, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "316f5d0b-eb98-43fc-8849-c1435b7cb51f", - "Position": { - "x": 280.36, - "y": 8.309144, - "z": -674.51 - }, - "Rotation": 238.74, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } + { + "Id": "0eb57f89-f986-4e1b-b16c-758e672f5c69", + "Position": { + "x": 348.79, + "y": -0.9134421, + "z": -155.92 + }, + "Rotation": 335.01, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 145 + } + }, + "BotZoneName": "ZoneMiniHouse", + "CorePointId": 5 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "319279a1-ec16-4d6e-8c87-3382938823f7", - "Position": { - "x": -30.652, - "y": 23.19, - "z": -306.602 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "0ee210ea-e3ab-4046-9537-552a4881a245", + "Position": { + "x": -277.3, + "y": 30.9032745, + "z": -196.4 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneBigRocks", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "31d3dd12-a1c0-4e5f-a840-ccad3ad9f472", - "Position": { - "x": 466.76, - "y": -14.9067125, - "z": 174.25 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "0fc483a4-67c2-4387-9f17-667dcd7be653", + "Position": { + "x": -293.67, + "y": 28.9518757, + "z": -199.67 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneBigRocks", + "CorePointId": 8 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3245f7f0-21a2-457f-ae32-562f7955d4ae", - "Position": { - "x": -92.95001, - "y": -1.12518787, - "z": 385.31 - }, - "Rotation": 224.32, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "100d945d-1da3-434e-9a45-5d07c64bc296", + "Position": { + "x": -420.16, + "y": 11.2839994, + "z": -519.410034 + }, + "Rotation": 14.210001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3267b232-a68e-4a31-9d6e-caecd7e55c62", - "Position": { - "x": -84.17999, - "y": 8.84712, - "z": -607.78 - }, - "Rotation": 181.14, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "106984cb-0739-4ee2-8d0b-374d594906bb", + "Position": { + "x": -55.9500122, + "y": 7.597872, + "z": -759.37 + }, + "Rotation": 29.94, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "3357a73e-1b4a-4303-9c07-63c46ced17dc", - "Position": { - "x": -6.42999268, - "y": 10.9864779, - "z": -786.35 - }, - "Rotation": 10.29, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "158e0a94-64fb-4555-afa0-90109713db91", + "Position": { + "x": -265.82, + "y": 10.58, + "z": -632.22 + }, + "Rotation": 14.210001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "342bd347-016e-485a-b0b1-f573b8c31b21", - "Position": { - "x": 388.49, - "y": 13.16, - "z": -407.26004 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "16d34563-48a5-423f-9cc5-862c5b8f7416", + "Position": { + "x": 135.05, + "y": 8.544661, + "z": -174.15 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "343c91ec-df02-46ae-98ff-db8f62bf3587", - "Position": { - "x": -218.29, - "y": 31.64855, - "z": -202.19 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "17d3fee1-d9bb-4950-80bd-44cd33b12e50", + "Position": { + "x": 231.43, + "y": 26.17, + "z": -314.429962 + }, + "Rotation": 287.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBigRocks", - "CorePointId": 7 - }, - { - "Id": "3463a539-969d-4c3a-aba7-b350a07a6bc5", - "Position": { - "x": -492.41, - "y": 20.5913486, - "z": -50.23001 - }, - "Rotation": 53.04, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1804b780-85a9-4eff-a465-82e2fbb88f0c", + "Position": { + "x": -354.73, + "y": 0.950922132, + "z": 239.63 + }, + "Rotation": 129.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "355125d1-b38b-4d77-b92d-b3733ea0ef1b", - "Position": { - "x": -155.17, - "y": -2.07000065, - "z": 181.17 - }, - "Rotation": 212.4, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "18392ff2-4c31-4a03-b827-645741b935cb", + "Position": { + "x": 125.9, + "y": 0.277326226, + "z": 4.92 + }, + "Rotation": 101.91, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 10 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "36138fa2-dac2-40a6-82d6-88af05dc7c00", - "Position": { - "x": -152.96, - "y": 0.37342453, - "z": 434.83 - }, - "Rotation": 218.52, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "191b6c5a-0fb7-40b2-95b4-3a33397eb872", + "Position": { + "x": -54.1099854, + "y": 8.883999, + "z": -579.439941 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "366cec0b-e96a-4706-a8c3-2fada6801993", - "Position": { - "x": -519.08, - "y": 9.627431, - "z": 88.3999939 - }, - "Rotation": 130.67, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "1aaa922d-7f31-433a-8457-075f9886600b", + "Position": { + "x": -26.996, + "y": 22.998, + "z": -308.717 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "37cff459-0504-4529-9b7f-0dde713bee40", - "Position": { - "x": -389.720032, - "y": 14.5486507, - "z": -423.34 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1b3e5b5b-a6cc-4702-8b79-d00183af37b6", + "Position": { + "x": 370.959961, + "y": -1.82308924, + "z": -73.28 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "38280e0c-af89-4081-ab01-5f1494074317", - "Position": { - "x": 464.75, - "y": -14.7679729, - "z": 174.27 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "1baafdd1-e250-453c-94b3-f842c87f4b8a", + "Position": { + "x": -23.294, + "y": 22.997, + "z": -308.203 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "38481684-83d2-4a25-98d9-e8fc9fb925c4", - "Position": { - "x": -330.93, - "y": 20.0108814, - "z": -142.31 - }, - "Rotation": 33.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "1c102540-4777-4cd4-bb36-b28d7b0b9bf9", + "Position": { + "x": 443.007935, + "y": -20.52517, + "z": 364.0982 + }, + "Rotation": 228.71, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "38df9752-76f3-4206-a46b-d279db55aee3", - "Position": { - "x": -512.65, - "y": 12.0778894, - "z": -150.15 - }, - "Rotation": 125.579994, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "1c6ea7b6-4a93-4a2a-95d0-90c980b00ffb", + "Position": { + "x": -518.69, + "y": 7.2753315, + "z": 145.43 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3977d085-4fa2-45dd-a341-ddb0fa55c06d", - "Position": { - "x": -408.96, - "y": 12.584, - "z": -513.01 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "1dfb41ff-4233-47ba-8db1-054dd7923906", + "Position": { + "x": -331.59, + "y": 18.5271835, + "z": -138.91 + }, + "Rotation": 33.6, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "398f013b-9c31-4b58-9238-0db8bab5b8d7", - "Position": { - "x": 269.67, - "y": 17.0124722, - "z": -758.63 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "1f0c515e-2287-483a-a613-9715e190feb6", + "Position": { + "x": -530.77, + "y": 13.7821617, + "z": -404.130035 + }, + "Rotation": 72.46, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "3a34ab1e-0821-4863-ae65-54e8925ae5fc", - "Position": { - "x": -171.68, - "y": 14.8065891, - "z": -617.699951 - }, - "Rotation": 120.210007, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "1f21e83c-915b-4c89-99c1-fee2787737d4", + "Position": { + "x": -561.09, + "y": 15.2086506, + "z": -355.310028 + }, + "Rotation": 287.409973, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "3d17ca8d-3e08-498c-8bcd-01f909c91c19", - "Position": { - "x": -361.25, - "y": 1.0406611, - "z": 237.99 - }, - "Rotation": 129.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "20ee24e5-1db9-4191-9ba5-444ff4207f2b", + "Position": { + "x": 366.900024, + "y": 18.19, + "z": -598.199951 + }, + "Rotation": 268.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3e8f83ba-7706-49ac-b19c-20f90da1309a", - "Position": { - "x": -256.18, - "y": 27.93854, - "z": -204.1 - }, - "Rotation": 9.03, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "219c81c4-5e06-4abe-b971-61728edafde9", + "Position": { + "x": 226.43, + "y": -8.698159, + "z": 197.5 + }, + "Rotation": 193.25, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "3ebc36b1-ff77-44f9-b72d-17848000fc9c", - "Position": { - "x": 375.81, - "y": -1.05202746, - "z": -115.25 - }, - "Rotation": 310.84, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 171 - } + { + "Id": "21c4f855-6ada-4784-aec5-797f78732ed8", + "Position": { + "x": 282.47, + "y": -1.44, + "z": -62.81 + }, + "Rotation": 268.0896, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneMiniHouse", - "CorePointId": 5 - }, - { - "Id": "407d97c8-e097-47fe-aeda-3346ee582f3d", - "Position": { - "x": -140.8, - "y": 61.4642448, - "z": -206.84 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 1700.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } + { + "Id": "2533a3ec-8812-4546-9e44-d19ae093ef6b", + "Position": { + "x": 230.400024, + "y": 26.9, + "z": -320.27 + }, + "Rotation": 287.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHighRocks", - "CorePointId": 6 - }, - { - "Id": "410307e8-cd43-45b4-8fb7-45a576f4f293", - "Position": { - "x": -611.92, - "y": 14.7, - "z": -331.79 - }, - "Rotation": 44.72, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "25d3f1d7-e979-44e6-b332-b1f452bbc042", + "Position": { + "x": -528.91, + "y": 2.366396, + "z": 233.67 + }, + "Rotation": 76.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRedHouse", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "43598be9-9042-4e06-8ee9-11a3d346d570", - "Position": { - "x": -63.6699829, - "y": 9.714, - "z": -581.03 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "262bca73-344c-44fe-96a9-cb86cddb5c75", + "Position": { + "x": 442.53, + "y": -17.47189, + "z": 261.18 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneHouse", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "45acc890-2d27-4f57-803b-db79e358ea32", - "Position": { - "x": 471.95, - "y": -18.3825169, - "z": 229.48 - }, - "Rotation": 321.01, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "2685c5c9-9bde-40c1-bbc2-3a0f3b024106", + "Position": { + "x": 61.22003, + "y": 9.033999, + "z": -657.75 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHouse", - "CorePointId": 9 - }, - { - "Id": "4b445560-ab5c-4ccb-a4aa-07737c92a725", - "Position": { - "x": -108.480011, - "y": 10.130621, - "z": -609.9 - }, - "Rotation": 152.43, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "27a8cc4b-2cff-4e10-8e10-5f70d323fc5c", + "Position": { + "x": -538.41, + "y": 7.11805344, + "z": 157.71 + }, + "Rotation": 76.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRedHouse", + "CorePointId": 4 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "4beb6bcf-aedb-4495-a002-0fbe36556eec", - "Position": { - "x": 9.660004, - "y": 15.707283, - "z": -780.569946 - }, - "Rotation": 10.29, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "280011ca-3526-431d-af3d-67fb6312ee98", + "Position": { + "x": 418.410034, + "y": -6.196, + "z": 14.2999878 + }, + "Rotation": 262.49, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "4bef69e6-18dd-4c33-8b74-39eba90908cd", - "Position": { - "x": -256.58, - "y": 10.61, - "z": -637.5499 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "2915d180-1de7-42a6-a6da-1cf2de15e78c", + "Position": { + "x": 465.959961, + "y": -15.0385733, + "z": 176.27 + }, + "Rotation": 239.859985, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4e02d667-c158-421c-9dba-2d5465895a05", - "Position": { - "x": -223.47, - "y": 3.73, - "z": 99.92 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "2a0f879d-7425-4f52-a0b4-3be6b4db52fa", + "Position": { + "x": -117.590027, + "y": 11.9433193, + "z": -729.39 + }, + "Rotation": 29.94, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "4ed00eb2-25d7-4c09-819f-33b64ed7bbdb", - "Position": { - "x": 87.7668, - "y": -15.89571, - "z": 114.385811 - }, - "Rotation": 190.98, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } + { + "Id": "2b2b5b1e-0bfd-4316-af38-bbefa25ac3b2", + "Position": { + "x": 280.74, + "y": -11.9072313, + "z": 319.43 + }, + "Rotation": 255.300018, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 10 - }, - { - "Id": "4ed8f2c4-7b26-473c-b6ee-1489a374285f", - "Position": { - "x": 414.25, - "y": -5.71355152, - "z": 12.9500122 - }, - "Rotation": 268.46, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2d5858b4-7de0-4cee-adb7-71d7a2886382", + "Position": { + "x": -39.3000031, + "y": -13.4976988, + "z": 348.37 + }, + "Rotation": 212.4, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 250 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "506b435f-09b7-4abe-9da4-47e0f15632c6", - "Position": { - "x": -254.19, - "y": 28.1779785, - "z": -207.9 - }, - "Rotation": 25.38, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "2d7f7e41-7f75-4d8f-be43-b025bb5078b3", + "Position": { + "x": -525.07, + "y": -2.56085658, + "z": 216.0 + }, + "Rotation": 261.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5074c052-55d3-4e9f-b8aa-7e29555f79f7", - "Position": { - "x": 279.77002, - "y": -12.3185291, - "z": 314.4 - }, - "Rotation": 242.98999, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "2e52ceb4-5491-4a44-bfe4-a658f87271ff", + "Position": { + "x": -539.87, + "y": -1.18963408, + "z": 294.67 + }, + "Rotation": 68.9, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "51d2ce00-100c-47aa-8a61-e202460fccd7", - "Position": { - "x": 443.48, - "y": -11.4372435, - "z": 84.1300049 - }, - "Rotation": 295.57, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "316f5d0b-eb98-43fc-8849-c1435b7cb51f", + "Position": { + "x": 280.36, + "y": 8.309144, + "z": -674.51 + }, + "Rotation": 238.74, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 45 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "ZoneHouse", - "CorePointId": 9 - }, - { - "Id": "52bd721f-80ea-4c6d-ae97-af9379180a91", - "Position": { - "x": 418.01, - "y": -6.10511827, - "z": 11.9400024 - }, - "Rotation": 256.93, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "319279a1-ec16-4d6e-8c87-3382938823f7", + "Position": { + "x": -30.652, + "y": 23.19, + "z": -306.602 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5329029c-a381-4fd9-8616-20f3b41520d5", - "Position": { - "x": -103.43, - "y": 23.2189789, - "z": -214.55 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "31d3dd12-a1c0-4e5f-a840-ccad3ad9f472", + "Position": { + "x": 466.76, + "y": -14.9067125, + "z": 174.25 + }, + "Rotation": 239.859985, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBigRocks", - "CorePointId": 7 - }, - { - "Id": "53bc3938-f77c-413f-acd6-9d453925f152", - "Position": { - "x": -335.8, - "y": 19.2544765, - "z": -139.37 - }, - "Rotation": 51.83, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3245f7f0-21a2-457f-ae32-562f7955d4ae", + "Position": { + "x": -92.95001, + "y": -1.12518787, + "z": 385.31 + }, + "Rotation": 224.32, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5513ff4b-e5ca-4daf-b093-41f7ca6268cb", - "Position": { - "x": 355.3, - "y": -0.345851064, - "z": -91.5099945 - }, - "Rotation": 199.23, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 249.4 - } + { + "Id": "3267b232-a68e-4a31-9d6e-caecd7e55c62", + "Position": { + "x": -84.17999, + "y": 8.84712, + "z": -607.78 + }, + "Rotation": 181.14, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "ZoneMiniHouse", - "CorePointId": 5 - }, - { - "Id": "55e42033-1a9e-4cee-8865-e072200ea1ea", - "Position": { - "x": 96.41, - "y": 14.954258, - "z": -761.12 - }, - "Rotation": 165.36, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "3357a73e-1b4a-4303-9c07-63c46ced17dc", + "Position": { + "x": -6.42999268, + "y": 10.9864779, + "z": -786.35 + }, + "Rotation": 10.29, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "56a19fa9-5b80-4b61-9817-fb28e0458f51", - "Position": { - "x": -203.55, - "y": 1.13691711, - "z": 417.31 - }, - "Rotation": 157.57, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "342bd347-016e-485a-b0b1-f573b8c31b21", + "Position": { + "x": 388.49, + "y": 13.16, + "z": -407.26004 + }, + "Rotation": 287.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "57b4786d-ee61-4c7f-b6ef-94467e39a3cf", - "Position": { - "x": -260.32, - "y": 11.27, - "z": -631.89 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "343c91ec-df02-46ae-98ff-db8f62bf3587", + "Position": { + "x": -218.29, + "y": 31.64855, + "z": -202.19 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneBigRocks", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "58351d4d-3b8e-4ea5-8453-9c67c6e8964d", - "Position": { - "x": -525.09, - "y": -2.59466934, - "z": 218.24 - }, - "Rotation": 295.64, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "3463a539-969d-4c3a-aba7-b350a07a6bc5", + "Position": { + "x": -492.41, + "y": 20.5913486, + "z": -50.23001 + }, + "Rotation": 53.04, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "583d3cc8-2a34-461c-9ec7-0376e23f4e72", - "Position": { - "x": 283.31, - "y": -0.82, - "z": -48.99 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "355125d1-b38b-4d77-b92d-b3733ea0ef1b", + "Position": { + "x": -155.17, + "y": -2.07000065, + "z": 181.17 + }, + "Rotation": 212.4, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "59d48277-b570-45ee-9fda-bcab7278119c", - "Position": { - "x": -2.308197, - "y": -1.44134891, - "z": -74.57119 - }, - "Rotation": 101.91, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "36138fa2-dac2-40a6-82d6-88af05dc7c00", + "Position": { + "x": -152.96, + "y": 0.37342453, + "z": 434.83 + }, + "Rotation": 218.52, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 7 }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 10 - }, - { - "Id": "5a00d2a4-d411-4154-972d-50edfcb2b22d", - "Position": { - "x": 457.29, - "y": -10.9947557, - "z": 97.48999 - }, - "Rotation": 295.57, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "366cec0b-e96a-4706-a8c3-2fada6801993", + "Position": { + "x": -519.08, + "y": 9.627431, + "z": 88.3999939 + }, + "Rotation": 130.67, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHouse", - "CorePointId": 9 - }, - { - "Id": "5a431592-8f50-4c7b-a9f9-c84f9060ea2b", - "Position": { - "x": 90.27, - "y": -15.8248549, - "z": 116.15 - }, - "Rotation": 190.98, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "37cff459-0504-4529-9b7f-0dde713bee40", + "Position": { + "x": -389.720032, + "y": 14.5486507, + "z": -423.34 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 10 - }, - { - "Id": "5a9c34d2-471c-4e5c-9fd6-68c5fe7ce2f5", - "Position": { - "x": -147.94, - "y": 31.125742, - "z": -189.35 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "38280e0c-af89-4081-ab01-5f1494074317", + "Position": { + "x": 464.75, + "y": -14.7679729, + "z": 174.27 + }, + "Rotation": 239.859985, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBigRocks", - "CorePointId": 7 - }, - { - "Id": "5beb21e5-df5f-4db0-b607-202cb7a62ecf", - "Position": { - "x": 59.6199951, - "y": 8.883999, - "z": -659.78 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "38481684-83d2-4a25-98d9-e8fc9fb925c4", + "Position": { + "x": -330.93, + "y": 20.0108814, + "z": -142.31 + }, + "Rotation": 33.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5cb2dc32-b2b1-480b-9533-68ec2bc83f32", - "Position": { - "x": -413.12, - "y": 16.0042686, - "z": -350.740021 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "38df9752-76f3-4206-a46b-d279db55aee3", + "Position": { + "x": -512.65, + "y": 12.0778894, + "z": -150.15 + }, + "Rotation": 125.579994, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "5e748beb-9aae-41f8-be21-500441518972", - "Position": { - "x": -90.1000061, - "y": -0.499712944, - "z": 377.36 - }, - "Rotation": 224.32, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "3977d085-4fa2-45dd-a341-ddb0fa55c06d", + "Position": { + "x": -408.96, + "y": 12.584, + "z": -513.01 + }, + "Rotation": 14.210001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "5f7e1367-b684-468d-bdc4-902a4bc33440", - "Position": { - "x": -130.62, - "y": 13.0453444, - "z": -623.1699 - }, - "Rotation": 120.210007, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "398f013b-9c31-4b58-9238-0db8bab5b8d7", + "Position": { + "x": 269.67, + "y": 17.0124722, + "z": -758.63 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "5f830a4d-21f3-466e-9f24-26e2aecc45dd", - "Position": { - "x": -174.909973, - "y": 13.6224213, - "z": -649.87 - }, - "Rotation": 62.2, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "3a34ab1e-0821-4863-ae65-54e8925ae5fc", + "Position": { + "x": -171.68, + "y": 14.8065891, + "z": -617.699951 + }, + "Rotation": 120.210007, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "62c3693b-3ab2-414a-a52d-8fc7344b1c22", - "Position": { - "x": -86.8900146, - "y": 7.94821644, - "z": -752.65 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "3d17ca8d-3e08-498c-8bcd-01f909c91c19", + "Position": { + "x": -361.25, + "y": 1.0406611, + "z": 237.99 + }, + "Rotation": 129.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "6767b1b7-da32-4b62-90f0-0d44712a642b", - "Position": { - "x": 370.959961, - "y": 13.9, - "z": -699.98 - }, - "Rotation": 323.3954, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "3e8f83ba-7706-49ac-b19c-20f90da1309a", + "Position": { + "x": -256.18, + "y": 27.93854, + "z": -204.1 + }, + "Rotation": 9.03, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "69378f13-ba17-464e-8875-618e6219d7e5", - "Position": { - "x": -28.461, - "y": 22.91, - "z": -302.726 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "3ebc36b1-ff77-44f9-b72d-17848000fc9c", + "Position": { + "x": 375.81, + "y": -1.05202746, + "z": -115.25 + }, + "Rotation": 310.84, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 171 + } + }, + "BotZoneName": "ZoneMiniHouse", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "69a4318c-7522-4738-877a-099b3733ae23", - "Position": { - "x": 369.829956, - "y": 17.62, - "z": -597.53 - }, - "Rotation": 268.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "407d97c8-e097-47fe-aeda-3346ee582f3d", + "Position": { + "x": -140.8, + "y": 61.4642448, + "z": -206.84 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 1700.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "ZoneHighRocks", + "CorePointId": 6 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "69c6da14-8dae-4c58-a826-59df5093a19d", - "Position": { - "x": -359.34, - "y": 0.9434962, - "z": 236.44 - }, - "Rotation": 129.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "410307e8-cd43-45b4-8fb7-45a576f4f293", + "Position": { + "x": -611.92, + "y": 14.7, + "z": -331.79 + }, + "Rotation": 44.72, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6aef3e62-3a74-4d9b-a168-d3520f740ba2", - "Position": { - "x": -413.22, - "y": 11.7039995, - "z": -522.429932 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "43598be9-9042-4e06-8ee9-11a3d346d570", + "Position": { + "x": -63.6699829, + "y": 9.714, + "z": -581.03 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6bd2a586-6792-435c-bad3-9c96e140ca7d", - "Position": { - "x": 441.848938, - "y": -20.5251675, - "z": 366.63916 - }, - "Rotation": 240.480011, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "45acc890-2d27-4f57-803b-db79e358ea32", + "Position": { + "x": 471.95, + "y": -18.3825169, + "z": 229.48 + }, + "Rotation": 321.01, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneHouse", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "6bd670eb-6c08-42e4-b879-a014d5df5660", - "Position": { - "x": -12.2900009, - "y": 13.7992649, - "z": -229.31 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "4b445560-ab5c-4ccb-a4aa-07737c92a725", + "Position": { + "x": -108.480011, + "y": 10.130621, + "z": -609.9 + }, + "Rotation": 152.43, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 15 - }, - { - "Id": "700851f4-5b96-4c98-88da-a1bdb0f3ca02", - "Position": { - "x": -416.220032, - "y": 15.7661858, - "z": -434.29 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4beb6bcf-aedb-4495-a002-0fbe36556eec", + "Position": { + "x": 9.660004, + "y": 15.707283, + "z": -780.569946 + }, + "Rotation": 10.29, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "702b7612-f1a2-4531-8090-aca235a70c7d", - "Position": { - "x": 283.31, - "y": -0.82, - "z": -53.2 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "4bef69e6-18dd-4c33-8b74-39eba90908cd", + "Position": { + "x": -256.58, + "y": 10.61, + "z": -637.5499 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7087e9e0-b625-4200-bfa6-8515184191f3", - "Position": { - "x": -52.23999, - "y": 7.8534317, - "z": -763.9 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "4e02d667-c158-421c-9dba-2d5465895a05", + "Position": { + "x": -223.47, + "y": 3.73, + "z": 99.92 + }, + "Rotation": 112.027237, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "70885532-6518-405f-aeb0-ee7a7f10ea46", - "Position": { - "x": -491.46, - "y": 20.58425, - "z": -45.23001 - }, - "Rotation": 53.04, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "4ed00eb2-25d7-4c09-819f-33b64ed7bbdb", + "Position": { + "x": 87.7668, + "y": -15.89571, + "z": 114.385811 + }, + "Rotation": 190.98, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 80 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 10 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "70abaf82-5502-4053-82c4-085128e74484", - "Position": { - "x": -162.85, - "y": 0.7303066, - "z": 435.96 - }, - "Rotation": 182.85, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "4ed8f2c4-7b26-473c-b6ee-1489a374285f", + "Position": { + "x": 414.25, + "y": -5.71355152, + "z": 12.9500122 + }, + "Rotation": 268.46, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "7149b906-da38-46dd-8fc3-6b4d8aca5ad8", - "Position": { - "x": 443.87, - "y": -20.51736, - "z": 362.51 - }, - "Rotation": 230.000015, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "506b435f-09b7-4abe-9da4-47e0f15632c6", + "Position": { + "x": -254.19, + "y": 28.1779785, + "z": -207.9 + }, + "Rotation": 25.38, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "720f1e94-b9d2-42d1-bc60-ac067651fa5d", - "Position": { - "x": -131.71, - "y": 28.4982586, - "z": -197.84 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "5074c052-55d3-4e9f-b8aa-7e29555f79f7", + "Position": { + "x": 279.77002, + "y": -12.3185291, + "z": 314.4 + }, + "Rotation": 242.98999, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBigRocks", - "CorePointId": 7 - }, - { - "Id": "74830520-ecc7-479d-9d39-b1c865827295", - "Position": { - "x": 178.999985, - "y": 18.13865, - "z": -771.420044 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "51d2ce00-100c-47aa-8a61-e202460fccd7", + "Position": { + "x": 443.48, + "y": -11.4372435, + "z": 84.1300049 + }, + "Rotation": 295.57, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneHouse", + "CorePointId": 9 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "75fe2cc6-b21e-437d-a629-1b56a98d37b3", - "Position": { - "x": -229.05, - "y": 3.77, - "z": 105.45 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "52bd721f-80ea-4c6d-ae97-af9379180a91", + "Position": { + "x": 418.01, + "y": -6.10511827, + "z": 11.9400024 + }, + "Rotation": 256.93, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "76582ea6-095f-494d-83b8-c9335ba3f14f", - "Position": { - "x": 59.8300171, - "y": 8.794, - "z": -654.540039 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "5329029c-a381-4fd9-8616-20f3b41520d5", + "Position": { + "x": -103.43, + "y": 23.2189789, + "z": -214.55 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneBigRocks", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "76e79e11-078c-42d5-8ba7-8017a2191af9", - "Position": { - "x": -23.7000122, - "y": 9.082792, - "z": -779.76 - }, - "Rotation": 10.29, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "53bc3938-f77c-413f-acd6-9d453925f152", + "Position": { + "x": -335.8, + "y": 19.2544765, + "z": -139.37 + }, + "Rotation": 51.83, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "77d9c02e-6167-4823-97b0-f7de30a9a95b", - "Position": { - "x": 368.599976, - "y": 16.83, - "z": -588.059937 - }, - "Rotation": 268.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "5513ff4b-e5ca-4daf-b093-41f7ca6268cb", + "Position": { + "x": 355.3, + "y": -0.345851064, + "z": -91.5099945 + }, + "Rotation": 199.23, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 249.4 + } + }, + "BotZoneName": "ZoneMiniHouse", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "78682e7d-3f65-4b8d-a33c-a6defd5070d8", - "Position": { - "x": 418.45, - "y": -6.083662, - "z": 9.01001 - }, - "Rotation": 276.02, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "55e42033-1a9e-4cee-8865-e072200ea1ea", + "Position": { + "x": 96.41, + "y": 14.954258, + "z": -761.12 + }, + "Rotation": 165.36, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "794c2ad7-29fa-4faf-8bcf-649c8925444a", - "Position": { - "x": 367.12, - "y": 13.2439995, - "z": -703.0 - }, - "Rotation": 306.008484, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "56a19fa9-5b80-4b61-9817-fb28e0458f51", + "Position": { + "x": -203.55, + "y": 1.13691711, + "z": 417.31 + }, + "Rotation": 157.57, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7a929379-fe61-411a-87b8-aa1184e7f2b6", - "Position": { - "x": -540.68, - "y": -1.05729878, - "z": 297.02 - }, - "Rotation": 78.41, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "57b4786d-ee61-4c7f-b6ef-94467e39a3cf", + "Position": { + "x": -260.32, + "y": 11.27, + "z": -631.89 + }, + "Rotation": 14.210001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7c7544d9-4e2f-4fb4-b967-9136e4441a71", - "Position": { - "x": -273.26, - "y": -1.596011, - "z": 333.25 - }, - "Rotation": 195.7, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "58351d4d-3b8e-4ea5-8453-9c67c6e8964d", + "Position": { + "x": -525.09, + "y": -2.59466934, + "z": 218.24 + }, + "Rotation": 295.64, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7d90e1b9-5aa1-4dcb-80ef-37ffcd141528", - "Position": { - "x": -615.8, - "y": 14.69, - "z": -333.949982 - }, - "Rotation": 66.96001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "583d3cc8-2a34-461c-9ec7-0376e23f4e72", + "Position": { + "x": 283.31, + "y": -0.82, + "z": -48.99 + }, + "Rotation": 268.0896, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "7f756f8e-6458-4d82-9135-ef4cc7dbc861", - "Position": { - "x": 283.38, - "y": -0.82, - "z": -45.99 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "59d48277-b570-45ee-9fda-bcab7278119c", + "Position": { + "x": -2.308197, + "y": -1.44134891, + "z": -74.57119 + }, + "Rotation": 101.91, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 10 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "802d0076-1a65-4fcd-9fd7-ae20620d06cd", - "Position": { - "x": -252.109985, - "y": 27.04601, - "z": -205.009979 - }, - "Rotation": 18.05, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "5a00d2a4-d411-4154-972d-50edfcb2b22d", + "Position": { + "x": 457.29, + "y": -10.9947557, + "z": 97.48999 + }, + "Rotation": 295.57, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneHouse", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "824b9a90-e0c2-432d-bcc6-46c057e279d1", - "Position": { - "x": 366.78, - "y": 1.09509182, - "z": 0.550003052 - }, - "Rotation": 295.57, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "5a431592-8f50-4c7b-a9f9-c84f9060ea2b", + "Position": { + "x": 90.27, + "y": -15.8248549, + "z": 116.15 + }, + "Rotation": 190.98, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 10 }, - "BotZoneName": "ZoneHouse", - "CorePointId": 5 - }, - { - "Id": "831704c9-39ca-4b9c-a23f-c1f4a05f326b", - "Position": { - "x": -334.02, - "y": 17.5681324, - "z": -136.199982 - }, - "Rotation": 47.6100044, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "5a9c34d2-471c-4e5c-9fd6-68c5fe7ce2f5", + "Position": { + "x": -147.94, + "y": 31.125742, + "z": -189.35 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneBigRocks", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "849e62c8-b599-4207-b757-74b8eea8affd", - "Position": { - "x": -540.69, - "y": 5.01928234, - "z": 133.86 - }, - "Rotation": 76.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "5beb21e5-df5f-4db0-b607-202cb7a62ecf", + "Position": { + "x": 59.6199951, + "y": 8.883999, + "z": -659.78 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 4 - }, - { - "Id": "84e8ac4a-07e4-4e99-a59e-6bccb6f10ece", - "Position": { - "x": -473.3, - "y": 22.0786514, - "z": -218.390015 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "5cb2dc32-b2b1-480b-9533-68ec2bc83f32", + "Position": { + "x": -413.12, + "y": 16.0042686, + "z": -350.740021 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 13 - }, - { - "Id": "8509256a-36ed-4170-ad6f-41511aee944f", - "Position": { - "x": -63.79, - "y": 19.15763, - "z": -233.02002 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "5e748beb-9aae-41f8-be21-500441518972", + "Position": { + "x": -90.1000061, + "y": -0.499712944, + "z": 377.36 + }, + "Rotation": 224.32, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 15 - }, - { - "Id": "850f44fe-ea49-4c84-91b3-5f31c6b14c5f", - "Position": { - "x": -27.0, - "y": 22.94, - "z": -305.6 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "5f7e1367-b684-468d-bdc4-902a4bc33440", + "Position": { + "x": -130.62, + "y": 13.0453444, + "z": -623.1699 + }, + "Rotation": 120.210007, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "886f0061-0d55-4206-bff2-154b4607bb22", - "Position": { - "x": -346.46, - "y": -8.439364, - "z": 131.01 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 250 - } + { + "Id": "5f830a4d-21f3-466e-9f24-26e2aecc45dd", + "Position": { + "x": -174.909973, + "y": 13.6224213, + "z": -649.87 + }, + "Rotation": 62.2, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 4 - }, - { - "Id": "88a7b981-c4ec-4dc6-8b90-90f5af4ba661", - "Position": { - "x": 242.89, - "y": 1.51325369, - "z": -164.249985 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "62c3693b-3ab2-414a-a52d-8fc7344b1c22", + "Position": { + "x": -86.8900146, + "y": 7.94821644, + "z": -752.65 + }, + "Rotation": 29.94, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "ZoneMiniHouse", - "CorePointId": 5 - }, - { - "Id": "8a83f974-320b-4810-acac-ce3f0d5c624d", - "Position": { - "x": -49.76001, - "y": 8.014783, - "z": -766.39 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "6767b1b7-da32-4b62-90f0-0d44712a642b", + "Position": { + "x": 370.959961, + "y": 13.9, + "z": -699.98 + }, + "Rotation": 323.3954, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "8b03a106-108f-44e0-a41f-a71118cb8268", - "Position": { - "x": -93.54001, - "y": -0.8849347, - "z": 382.53 - }, - "Rotation": 224.32, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "69378f13-ba17-464e-8875-618e6219d7e5", + "Position": { + "x": -28.461, + "y": 22.91, + "z": -302.726 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8b1af5ad-6d84-4fdb-8538-be150c5584da", - "Position": { - "x": -490.46, - "y": 20.6721783, - "z": -46.98999 - }, - "Rotation": 53.04, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "69a4318c-7522-4738-877a-099b3733ae23", + "Position": { + "x": 369.829956, + "y": 17.62, + "z": -597.53 + }, + "Rotation": 268.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8d19978a-28a9-4c15-8b1d-9bf51695f401", - "Position": { - "x": 282.66, - "y": -1.34, - "z": -59.17 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "69c6da14-8dae-4c58-a826-59df5093a19d", + "Position": { + "x": -359.34, + "y": 0.9434962, + "z": 236.44 + }, + "Rotation": 129.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "8dfb41b2-8dc2-4094-88bf-a92f2ea0a4b6", - "Position": { - "x": -155.220032, - "y": 18.26294, - "z": -620.36 - }, - "Rotation": 120.210007, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "6aef3e62-3a74-4d9b-a168-d3520f740ba2", + "Position": { + "x": -413.22, + "y": 11.7039995, + "z": -522.429932 + }, + "Rotation": 14.210001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "8efb8386-e830-48c3-98ad-088f8fbfbebd", - "Position": { - "x": 226.43, - "y": -8.280846, - "z": 199.06 - }, - "Rotation": 144.47, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "6bd2a586-6792-435c-bad3-9c96e140ca7d", + "Position": { + "x": 441.848938, + "y": -20.5251675, + "z": 366.63916 + }, + "Rotation": 240.480011, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "922c0b4f-5177-448b-8ab3-b8df4f82aa12", - "Position": { - "x": -418.82, - "y": 11.874, - "z": -515.23 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "6bd670eb-6c08-42e4-b879-a014d5df5660", + "Position": { + "x": -12.2900009, + "y": 13.7992649, + "z": -229.31 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "928f1dd2-4769-47c0-9803-77d7911e98e7", - "Position": { - "x": 368.87, - "y": -1.64707971, - "z": -67.45999 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "700851f4-5b96-4c98-88da-a1bdb0f3ca02", + "Position": { + "x": -416.220032, + "y": 15.7661858, + "z": -434.29 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9332f801-241b-4383-b8cb-25c6278888e1", - "Position": { - "x": -519.41, - "y": 7.2753315, - "z": 154.59 - }, - "Rotation": 188.21, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "702b7612-f1a2-4531-8090-aca235a70c7d", + "Position": { + "x": 283.31, + "y": -0.82, + "z": -53.2 + }, + "Rotation": 268.0896, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9426259b-9067-4fd2-96e9-2a308454a98a", - "Position": { - "x": -517.55, - "y": 7.2753315, - "z": 153.66983 - }, - "Rotation": 185.28, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "7087e9e0-b625-4200-bfa6-8515184191f3", + "Position": { + "x": -52.23999, + "y": 7.8534317, + "z": -763.9 + }, + "Rotation": 29.94, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "94b75655-0a2b-4d69-95e3-3ea2037d4bcd", - "Position": { - "x": 72.91, - "y": 11.85351, - "z": -220.450012 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "70885532-6518-405f-aeb0-ee7a7f10ea46", + "Position": { + "x": -491.46, + "y": 20.58425, + "z": -45.23001 + }, + "Rotation": 53.04, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 15 - }, - { - "Id": "94f47e76-1904-4586-a4d0-eaa230cc0f50", - "Position": { - "x": -509.56, - "y": 11.9674416, - "z": -147.490021 - }, - "Rotation": 125.579994, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "70abaf82-5502-4053-82c4-085128e74484", + "Position": { + "x": -162.85, + "y": 0.7303066, + "z": 435.96 + }, + "Rotation": 182.85, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9599df56-7a76-4ee7-86b3-198141da1cc2", - "Position": { - "x": 63.2168045, - "y": -7.55134869, - "z": 35.2158127 - }, - "Rotation": 190.98, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } + { + "Id": "7149b906-da38-46dd-8fc3-6b4d8aca5ad8", + "Position": { + "x": 443.87, + "y": -20.51736, + "z": 362.51 + }, + "Rotation": 230.000015, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 10 - }, - { - "Id": "962e0422-26ab-4d8e-9035-fbfb74f20872", - "Position": { - "x": 157.48999, - "y": 24.37865, - "z": -690.61 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "720f1e94-b9d2-42d1-bc60-ac067651fa5d", + "Position": { + "x": -131.71, + "y": 28.4982586, + "z": -197.84 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneBigRocks", + "CorePointId": 7 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "96a53a5c-a13d-4e13-b6ce-8c884e90990f", - "Position": { - "x": 218.6, - "y": -12.2584953, - "z": 279.4 - }, - "Rotation": 151.22, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 249.4 - } + { + "Id": "74830520-ecc7-479d-9d39-b1c865827295", + "Position": { + "x": 178.999985, + "y": 18.13865, + "z": -771.420044 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "ZoneHouse", - "CorePointId": 5 - }, - { - "Id": "97782b53-27e6-4943-b75f-7f5bd18703f3", - "Position": { - "x": -538.64, - "y": -0.9594319, - "z": 297.58 - }, - "Rotation": 97.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "75fe2cc6-b21e-437d-a629-1b56a98d37b3", + "Position": { + "x": -229.05, + "y": 3.77, + "z": 105.45 + }, + "Rotation": 112.027237, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "97ddad10-ffc4-4e91-a9b8-43d71eb61be9", - "Position": { - "x": -352.33, - "y": -8.285932, - "z": 132.14 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 250 - } + { + "Id": "76582ea6-095f-494d-83b8-c9335ba3f14f", + "Position": { + "x": 59.8300171, + "y": 8.794, + "z": -654.540039 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 4 - }, - { - "Id": "98e02682-9632-467d-97da-ccfdacca967c", - "Position": { - "x": 229.969971, - "y": -7.79950571, - "z": 200.65 - }, - "Rotation": 139.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "76e79e11-078c-42d5-8ba7-8017a2191af9", + "Position": { + "x": -23.7000122, + "y": 9.082792, + "z": -779.76 + }, + "Rotation": 10.29, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9ca380ef-e31f-45e4-b832-f49c4e266795", - "Position": { - "x": -252.25, - "y": 27.46981, - "z": -207.4 - }, - "Rotation": 25.48, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "77d9c02e-6167-4823-97b0-f7de30a9a95b", + "Position": { + "x": 368.599976, + "y": 16.83, + "z": -588.059937 + }, + "Rotation": 268.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9ec89724-0285-4ffc-9ba7-0e1b0912410c", - "Position": { - "x": -27.986, - "y": 23.098, - "z": -310.713 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "78682e7d-3f65-4b8d-a33c-a6defd5070d8", + "Position": { + "x": 418.45, + "y": -6.083662, + "z": 9.01001 + }, + "Rotation": 276.02, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9f04fd7f-bc63-4641-8373-ac41edfc16de", - "Position": { - "x": -23.418, - "y": 22.953, - "z": -304.148 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "794c2ad7-29fa-4faf-8bcf-649c8925444a", + "Position": { + "x": 367.12, + "y": 13.2439995, + "z": -703.0 + }, + "Rotation": 306.008484, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9f5da3b8-592e-43aa-8bfd-f2e0710cae63", - "Position": { - "x": 283.56, - "y": -0.82, - "z": -43.77 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "7a929379-fe61-411a-87b8-aa1184e7f2b6", + "Position": { + "x": -540.68, + "y": -1.05729878, + "z": 297.02 + }, + "Rotation": 78.41, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "9f6a4de7-10d9-405d-aca2-f0f81a5e51e2", - "Position": { - "x": 268.699982, - "y": 17.5370255, - "z": -756.9 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "7c7544d9-4e2f-4fb4-b967-9136e4441a71", + "Position": { + "x": -273.26, + "y": -1.596011, + "z": 333.25 + }, + "Rotation": 195.7, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "9fe61d41-cd4d-401f-9701-a059a122c21c", - "Position": { - "x": -486.63, - "y": 0.248063087, - "z": 330.58 - }, - "Rotation": 164.48, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "7d90e1b9-5aa1-4dcb-80ef-37ffcd141528", + "Position": { + "x": -615.8, + "y": 14.69, + "z": -333.949982 + }, + "Rotation": 66.96001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 4 - }, - { - "Id": "a0839226-5bac-449a-981f-f45e01fd24d6", - "Position": { - "x": -130.029968, - "y": 9.618751, - "z": -726.5499 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "7f756f8e-6458-4d82-9135-ef4cc7dbc861", + "Position": { + "x": 283.38, + "y": -0.82, + "z": -45.99 + }, + "Rotation": 268.0896, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "a0962412-c584-4809-be76-b7a5c78cb855", - "Position": { - "x": -616.79, - "y": 14.49, - "z": -324.47 - }, - "Rotation": 66.96001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "802d0076-1a65-4fcd-9fd7-ae20620d06cd", + "Position": { + "x": -252.109985, + "y": 27.04601, + "z": -205.009979 + }, + "Rotation": 18.05, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a0d48e20-249e-4e78-898d-6111de1507ed", - "Position": { - "x": 263.9, - "y": 17.3108673, - "z": -762.5 - }, - "Rotation": 165.36, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "824b9a90-e0c2-432d-bcc6-46c057e279d1", + "Position": { + "x": 366.78, + "y": 1.09509182, + "z": 0.550003052 + }, + "Rotation": 295.57, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneHouse", + "CorePointId": 5 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "a112057b-e7f1-4e10-b8e4-ec7d678b8b70", - "Position": { - "x": -516.73, - "y": 9.348391, - "z": 89.04001 - }, - "Rotation": 130.67, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "831704c9-39ca-4b9c-a23f-c1f4a05f326b", + "Position": { + "x": -334.02, + "y": 17.5681324, + "z": -136.199982 + }, + "Rotation": 47.6100044, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a17c3db8-9757-4574-adf1-6a918b8d4eb8", - "Position": { - "x": 135.88, - "y": 8.4578495, - "z": -664.99 - }, - "Rotation": 165.36, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "849e62c8-b599-4207-b757-74b8eea8affd", + "Position": { + "x": -540.69, + "y": 5.01928234, + "z": 133.86 + }, + "Rotation": 76.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRedHouse", + "CorePointId": 4 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "a251557e-6e6c-4b3b-9e3b-2bd926b69ff2", - "Position": { - "x": -517.12, - "y": 14.1786509, - "z": -160.300018 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "84e8ac4a-07e4-4e99-a59e-6bccb6f10ece", + "Position": { + "x": -473.3, + "y": 22.0786514, + "z": -218.390015 + }, + "Rotation": 287.409973, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneClearVill", + "CorePointId": 13 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 13 - }, - { - "Id": "a4b2e037-8469-4547-bea2-348c96ad56e6", - "Position": { - "x": 517.98, - "y": -20.9, - "z": 260.66 - }, - "Rotation": 257.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8509256a-36ed-4170-ad6f-41511aee944f", + "Position": { + "x": -63.79, + "y": 19.15763, + "z": -233.02002 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a4cd083a-e76f-456a-be08-885cfbea81e7", - "Position": { - "x": -492.6, - "y": 20.60238, - "z": -48.01999 - }, - "Rotation": 53.04, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "850f44fe-ea49-4c84-91b3-5f31c6b14c5f", + "Position": { + "x": -27.0, + "y": 22.94, + "z": -305.6 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a4e09fca-93ba-436c-9ffd-051a6b849a3c", - "Position": { - "x": -357.55, - "y": 0.862437665, - "z": 237.46 - }, - "Rotation": 129.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "886f0061-0d55-4206-bff2-154b4607bb22", + "Position": { + "x": -346.46, + "y": -8.439364, + "z": 131.01 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 250 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a5b20828-ad7b-4b07-a291-e2f07aa78e64", - "Position": { - "x": -91.26001, - "y": -0.5494947, - "z": 379.36 - }, - "Rotation": 224.32, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "88a7b981-c4ec-4dc6-8b90-90f5af4ba661", + "Position": { + "x": 242.89, + "y": 1.51325369, + "z": -164.249985 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneMiniHouse", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a6cd849b-d311-48a3-8ecc-5c79fe6a2b15", - "Position": { - "x": 280.46, - "y": 7.95858765, - "z": -665.38 - }, - "Rotation": 238.74, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "8a83f974-320b-4810-acac-ce3f0d5c624d", + "Position": { + "x": -49.76001, + "y": 8.014783, + "z": -766.39 + }, + "Rotation": 29.94, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "a6fd8d7e-1bd3-4a41-8589-b3f0c35eb87c", - "Position": { - "x": -26.638, - "y": 23.03, - "z": -310.343 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "8b03a106-108f-44e0-a41f-a71118cb8268", + "Position": { + "x": -93.54001, + "y": -0.8849347, + "z": 382.53 + }, + "Rotation": 224.32, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "a70f89f5-20a9-4962-8d08-075aa088c7ba", - "Position": { - "x": -272.01, - "y": -2.0762434, - "z": 329.42 - }, - "Rotation": 198.39, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "8b1af5ad-6d84-4fdb-8538-be150c5584da", + "Position": { + "x": -490.46, + "y": 20.6721783, + "z": -46.98999 + }, + "Rotation": 53.04, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "aa0bba63-9513-4311-b0cd-94cfd1237ce5", - "Position": { - "x": -298.29, - "y": 0.07000065, - "z": 205.650009 - }, - "Rotation": 212.4, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "8d19978a-28a9-4c15-8b1d-9bf51695f401", + "Position": { + "x": 282.66, + "y": -1.34, + "z": -59.17 + }, + "Rotation": 268.0896, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "aaab6926-0679-4bd7-94c5-174a437f0a08", - "Position": { - "x": -522.71, - "y": -2.58247924, - "z": 216.57 - }, - "Rotation": 89.89, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "8dfb41b2-8dc2-4094-88bf-a92f2ea0a4b6", + "Position": { + "x": -155.220032, + "y": 18.26294, + "z": -620.36 + }, + "Rotation": 120.210007, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "aac57df1-55bc-4496-b5ff-561204167bb1", - "Position": { - "x": 101.130005, - "y": 15.5523014, - "z": -761.98 - }, - "Rotation": 165.36, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "8efb8386-e830-48c3-98ad-088f8fbfbebd", + "Position": { + "x": 226.43, + "y": -8.280846, + "z": 199.06 + }, + "Rotation": 144.47, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "ab6dee85-93f5-45cb-a910-1ccd06e604ad", - "Position": { - "x": -21.7, - "y": 22.91, - "z": -301.63 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "922c0b4f-5177-448b-8ab3-b8df4f82aa12", + "Position": { + "x": -418.82, + "y": 11.874, + "z": -515.23 + }, + "Rotation": 14.210001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ae63ba35-6701-403b-9803-43a836a08c4b", - "Position": { - "x": 367.74, - "y": -1.32168114, - "z": -73.79001 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "928f1dd2-4769-47c0-9803-77d7911e98e7", + "Position": { + "x": 368.87, + "y": -1.64707971, + "z": -67.45999 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b035aa78-6597-492a-a876-fca6cf427dcf", - "Position": { - "x": 103.950012, - "y": 17.6159382, - "z": -757.72 - }, - "Rotation": 165.36, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "9332f801-241b-4383-b8cb-25c6278888e1", + "Position": { + "x": -519.41, + "y": 7.2753315, + "z": 154.59 + }, + "Rotation": 188.21, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "b0365322-2ae6-4748-9689-d644d2177c73", - "Position": { - "x": -494.04, - "y": 20.5889053, - "z": -47.8299866 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9426259b-9067-4fd2-96e9-2a308454a98a", + "Position": { + "x": -517.55, + "y": 7.2753315, + "z": 153.66983 + }, + "Rotation": 185.28, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b09e235d-d504-4607-843f-b8286c3dbd62", - "Position": { - "x": -24.03, - "y": 22.904, - "z": -301.99 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "94b75655-0a2b-4d69-95e3-3ea2037d4bcd", + "Position": { + "x": 72.91, + "y": 11.85351, + "z": -220.450012 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b10e6b2c-93fb-44af-ac24-a016042c03ea", - "Position": { - "x": -520.11, - "y": 10.3401012, - "z": 85.86 - }, - "Rotation": 130.67, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "94f47e76-1904-4586-a4d0-eaa230cc0f50", + "Position": { + "x": -509.56, + "y": 11.9674416, + "z": -147.490021 + }, + "Rotation": 125.579994, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b197fced-652b-4edc-8335-35ccbb8e555c", - "Position": { - "x": -94.08, - "y": -1.31425381, - "z": 387.77 - }, - "Rotation": 192.91, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 192.6 - } + { + "Id": "9599df56-7a76-4ee7-86b3-198141da1cc2", + "Position": { + "x": 63.2168045, + "y": -7.55134869, + "z": 35.2158127 + }, + "Rotation": 190.98, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 65 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 10 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "b2a16a9d-b4de-4ecc-a278-b6148098e92c", - "Position": { - "x": -439.99, - "y": 15.5185928, - "z": -325.17 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "962e0422-26ab-4d8e-9035-fbfb74f20872", + "Position": { + "x": 157.48999, + "y": 24.37865, + "z": -690.61 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "b3697fa5-29af-4a4e-afd1-3cf837b1fdae", - "Position": { - "x": -280.28, - "y": -0.8622794, - "z": 332.87 - }, - "Rotation": 193.46, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "96a53a5c-a13d-4e13-b6ce-8c884e90990f", + "Position": { + "x": 218.6, + "y": -12.2584953, + "z": 279.4 + }, + "Rotation": 151.22, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 249.4 + } + }, + "BotZoneName": "ZoneHouse", + "CorePointId": 5 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b43bd5a4-aa6c-4dd6-9052-d3359fa6b53c", - "Position": { - "x": -260.74, - "y": 10.41, - "z": -639.7899 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "97782b53-27e6-4943-b75f-7f5bd18703f3", + "Position": { + "x": -538.64, + "y": -0.9594319, + "z": 297.58 + }, + "Rotation": 97.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b4cee9ef-7ec2-4799-ad20-92e94b1365fc", - "Position": { - "x": -537.1, - "y": -1.2624706, - "z": 294.64 - }, - "Rotation": 76.84, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "97ddad10-ffc4-4e91-a9b8-43d71eb61be9", + "Position": { + "x": -352.33, + "y": -8.285932, + "z": 132.14 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 250 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b4e1a661-9925-4791-a4dd-e2756a6024f0", - "Position": { - "x": -229.16, - "y": 4.38, - "z": 99.81 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "98e02682-9632-467d-97da-ccfdacca967c", + "Position": { + "x": 229.969971, + "y": -7.79950571, + "z": 200.65 + }, + "Rotation": 139.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b593e2ff-9764-4bbe-9f8f-e05781071e7b", - "Position": { - "x": 372.94, - "y": 15.3039989, - "z": -695.569946 - }, - "Rotation": 317.312622, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "9ca380ef-e31f-45e4-b832-f49c4e266795", + "Position": { + "x": -252.25, + "y": 27.46981, + "z": -207.4 + }, + "Rotation": 25.48, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b5ac800f-8a61-44a7-b50a-9e58771e8eb6", - "Position": { - "x": 213.47, - "y": -14.6916227, - "z": 291.96 - }, - "Rotation": 151.22, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 249.4 - } + { + "Id": "9ec89724-0285-4ffc-9ba7-0e1b0912410c", + "Position": { + "x": -27.986, + "y": 23.098, + "z": -310.713 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneHouse", - "CorePointId": 5 - }, - { - "Id": "b612f46f-5a53-49cf-87b8-698fa6526e5a", - "Position": { - "x": 94.85, - "y": 6.81406, - "z": -203.72 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "9f04fd7f-bc63-4641-8373-ac41edfc16de", + "Position": { + "x": -23.418, + "y": 22.953, + "z": -304.148 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 15 - }, - { - "Id": "b74b9702-5543-4187-845f-db79885c0b11", - "Position": { - "x": 228.390015, - "y": -8.166669, - "z": 199.36 - }, - "Rotation": 157.11, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "9f5da3b8-592e-43aa-8bfd-f2e0710cae63", + "Position": { + "x": 283.56, + "y": -0.82, + "z": -43.77 + }, + "Rotation": 268.0896, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "b93d8187-0ae2-4971-be9c-7839721aeece", - "Position": { - "x": 487.358643, - "y": -18.4096375, - "z": 334.589966 - }, - "Rotation": 240.480011, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "9f6a4de7-10d9-405d-aca2-f0f81a5e51e2", + "Position": { + "x": 268.699982, + "y": 17.5370255, + "z": -756.9 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ba05b27c-b857-4d25-9fea-c20a4d7d8ce5", - "Position": { - "x": -621.0, - "y": 14.91, - "z": -328.73 - }, - "Rotation": 66.96001, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "9fe61d41-cd4d-401f-9701-a059a122c21c", + "Position": { + "x": -486.63, + "y": 0.248063087, + "z": 330.58 + }, + "Rotation": 164.48, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRedHouse", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bd0c617a-4288-47f9-ab50-25848294a38e", - "Position": { - "x": 465.27002, - "y": -15.150856, - "z": 177.84 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a0839226-5bac-449a-981f-f45e01fd24d6", + "Position": { + "x": -130.029968, + "y": 9.618751, + "z": -726.5499 + }, + "Rotation": 29.94, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bdcfc53f-69f8-44fb-9be1-238bab9c2629", - "Position": { - "x": 464.24, - "y": -14.9513435, - "z": 176.19 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a0962412-c584-4809-be76-b7a5c78cb855", + "Position": { + "x": -616.79, + "y": 14.49, + "z": -324.47 + }, + "Rotation": 66.96001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bdef1511-2fb2-47c1-8d57-eaa14290fb05", - "Position": { - "x": 463.69, - "y": -12.1854525, - "z": 115.73 - }, - "Rotation": 282.6, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "a0d48e20-249e-4e78-898d-6111de1507ed", + "Position": { + "x": 263.9, + "y": 17.3108673, + "z": -762.5 + }, + "Rotation": 165.36, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "ZoneHouse", - "CorePointId": 9 - }, - { - "Id": "be022f29-5b2b-4e94-893c-26d18fb3f61d", - "Position": { - "x": -524.17, - "y": -2.57875681, - "z": 220.33 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "a112057b-e7f1-4e10-b8e4-ec7d678b8b70", + "Position": { + "x": -516.73, + "y": 9.348391, + "z": 89.04001 + }, + "Rotation": 130.67, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "be2be8fa-4a03-4c1e-b8d7-85d702cf42f6", - "Position": { - "x": 487.358643, - "y": -18.8088722, - "z": 332.61 - }, - "Rotation": 245.390015, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a17c3db8-9757-4574-adf1-6a918b8d4eb8", + "Position": { + "x": 135.88, + "y": 8.4578495, + "z": -664.99 + }, + "Rotation": 165.36, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "beefc821-7b82-4489-a064-a43fc1f752b2", - "Position": { - "x": -228.55, - "y": 3.13, - "z": 110.76 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "a251557e-6e6c-4b3b-9e3b-2bd926b69ff2", + "Position": { + "x": -517.12, + "y": 14.1786509, + "z": -160.300018 + }, + "Rotation": 287.409973, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneClearVill", + "CorePointId": 13 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "bf2a6323-087e-4d49-a160-ea86b8295ac0", - "Position": { - "x": 63.3200073, - "y": 8.99399948, - "z": -661.4 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a4b2e037-8469-4547-bea2-348c96ad56e6", + "Position": { + "x": 517.98, + "y": -20.9, + "z": 260.66 + }, + "Rotation": 257.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c047a076-7425-4c63-ac40-75be5226847c", - "Position": { - "x": 391.61, - "y": 13.62, - "z": -400.750031 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a4cd083a-e76f-456a-be08-885cfbea81e7", + "Position": { + "x": -492.6, + "y": 20.60238, + "z": -48.01999 + }, + "Rotation": 53.04, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c053faa2-0f4e-4508-ac35-230ff6aa6a74", - "Position": { - "x": 234.299988, - "y": 26.98, - "z": -317.97 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a4e09fca-93ba-436c-9ffd-051a6b849a3c", + "Position": { + "x": -357.55, + "y": 0.862437665, + "z": 237.46 + }, + "Rotation": 129.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c079818d-1914-4829-80f0-4fcf485c9ad3", - "Position": { - "x": -516.06, - "y": 21.4670029, - "z": -20.0700073 - }, - "Rotation": 102.45, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "a5b20828-ad7b-4b07-a291-e2f07aa78e64", + "Position": { + "x": -91.26001, + "y": -0.5494947, + "z": 379.36 + }, + "Rotation": 224.32, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 11 - }, - { - "Id": "c0b93127-2d2f-4129-96e1-0d4dcc18a722", - "Position": { - "x": -222.23, - "y": 3.13, - "z": 110.95 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "a6cd849b-d311-48a3-8ecc-5c79fe6a2b15", + "Position": { + "x": 280.46, + "y": 7.95858765, + "z": -665.38 + }, + "Rotation": 238.74, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c5021df7-1750-44ff-ae44-137022a8bdac", - "Position": { - "x": 365.55, - "y": 13.35, - "z": -700.829956 - }, - "Rotation": 310.421173, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "a6fd8d7e-1bd3-4a41-8589-b3f0c35eb87c", + "Position": { + "x": -26.638, + "y": 23.03, + "z": -310.343 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c5674fba-b364-4eff-b46e-92db76694c2a", - "Position": { - "x": -390.63, - "y": -8.584538, - "z": 113.78 - }, - "Rotation": 222.64, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 250 - } + { + "Id": "a70f89f5-20a9-4962-8d08-075aa088c7ba", + "Position": { + "x": -272.01, + "y": -2.0762434, + "z": 329.42 + }, + "Rotation": 198.39, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 4 - }, - { - "Id": "c58f8bd9-ff28-48d3-a8e8-dbad862698a8", - "Position": { - "x": -222.56, - "y": 3.13, - "z": 105.69 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "aa0bba63-9513-4311-b0cd-94cfd1237ce5", + "Position": { + "x": -298.29, + "y": 0.07000065, + "z": 205.650009 + }, + "Rotation": 212.4, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c6f6dcc4-17ef-4842-83ab-124e34dfa53e", - "Position": { - "x": -225.79, - "y": 4.98, - "z": 85.72 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "aaab6926-0679-4bd7-94c5-174a437f0a08", + "Position": { + "x": -522.71, + "y": -2.58247924, + "z": 216.57 + }, + "Rotation": 89.89, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c7420e4b-fa33-4ce5-a3eb-49cf44c84b52", - "Position": { - "x": 318.82, - "y": -8.43767452, - "z": 352.05 - }, - "Rotation": 151.22, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "aac57df1-55bc-4496-b5ff-561204167bb1", + "Position": { + "x": 101.130005, + "y": 15.5523014, + "z": -761.98 + }, + "Rotation": 165.36, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "ZoneHouse", - "CorePointId": 9 - }, - { - "Id": "c78abf19-57ed-4537-a0c1-ad759c9cf305", - "Position": { - "x": -181.32, - "y": 34.0571442, - "z": -164.09 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "ab6dee85-93f5-45cb-a910-1ccd06e604ad", + "Position": { + "x": -21.7, + "y": 22.91, + "z": -301.63 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBigRocks", - "CorePointId": 7 - }, - { - "Id": "c82d2b76-ad46-4624-825e-975a6d40fcf4", - "Position": { - "x": -229.28, - "y": 5.19, - "z": 86.93 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "ae63ba35-6701-403b-9803-43a836a08c4b", + "Position": { + "x": 367.74, + "y": -1.32168114, + "z": -73.79001 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c880793b-d822-4677-870e-6ffa1c05abd7", - "Position": { - "x": -359.75, - "y": 0.8591096, - "z": 239.67 - }, - "Rotation": 129.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b035aa78-6597-492a-a876-fca6cf427dcf", + "Position": { + "x": 103.950012, + "y": 17.6159382, + "z": -757.72 + }, + "Rotation": 165.36, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 + } + }, + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "c8ceabb0-c76e-4f8d-a2ab-a36f34e79694", - "Position": { - "x": -170.87, - "y": 0.9297247, - "z": 431.87 - }, - "Rotation": 152.9, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "b0365322-2ae6-4748-9689-d644d2177c73", + "Position": { + "x": -494.04, + "y": 20.5889053, + "z": -47.8299866 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "c93838d9-3ec1-47b9-b5da-db2eb0fbec46", - "Position": { - "x": 389.72998, - "y": 13.24, - "z": -403.929962 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b09e235d-d504-4607-843f-b8286c3dbd62", + "Position": { + "x": -24.03, + "y": 22.904, + "z": -301.99 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ca70d792-4fc8-47d8-a70a-e08bc2598448", - "Position": { - "x": 367.37, - "y": 17.74, - "z": -594.9099 - }, - "Rotation": 268.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b10e6b2c-93fb-44af-ac24-a016042c03ea", + "Position": { + "x": -520.11, + "y": 10.3401012, + "z": 85.86 + }, + "Rotation": 130.67, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cb602055-146b-4bd4-b43b-4df81301d046", - "Position": { - "x": 373.61, - "y": -1.92541981, - "z": -76.16 - }, - "Rotation": 0.0, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b197fced-652b-4edc-8335-35ccbb8e555c", + "Position": { + "x": -94.08, + "y": -1.31425381, + "z": 387.77 + }, + "Rotation": 192.91, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 192.6 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ce2a9b2d-260a-4eb4-b0b1-239a10eab0cc", - "Position": { - "x": 487.358643, - "y": -18.615778, - "z": 330.75 - }, - "Rotation": 228.71, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b2a16a9d-b4de-4ecc-a278-b6148098e92c", + "Position": { + "x": -439.99, + "y": 15.5185928, + "z": -325.17 + }, + "Rotation": 287.409973, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 + } + }, + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ce5410a1-422a-4e27-9fe4-aa912665f8ae", - "Position": { - "x": -540.65, - "y": 5.0159235, - "z": 188.06 - }, - "Rotation": 76.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "b3697fa5-29af-4a4e-afd1-3cf837b1fdae", + "Position": { + "x": -280.28, + "y": -0.8622794, + "z": 332.87 + }, + "Rotation": 193.46, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 4 - }, - { - "Id": "cead6c41-d92b-47e5-8f03-8365ceccee77", - "Position": { - "x": -521.16, - "y": 7.2753315, - "z": 154.3 - }, - "Rotation": 183.39, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b43bd5a4-aa6c-4dd6-9052-d3359fa6b53c", + "Position": { + "x": -260.74, + "y": 10.41, + "z": -639.7899 + }, + "Rotation": 14.210001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ceb25518-5a40-42cd-b57d-076d40d29890", - "Position": { - "x": -60.97, - "y": 9.24399948, - "z": -579.6 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b4cee9ef-7ec2-4799-ad20-92e94b1365fc", + "Position": { + "x": -537.1, + "y": -1.2624706, + "z": 294.64 + }, + "Rotation": 76.84, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cec41a3d-7939-4d43-8c64-36b1aed8818f", - "Position": { - "x": -25.361, - "y": 22.997, - "z": -310.053 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b4e1a661-9925-4791-a4dd-e2756a6024f0", + "Position": { + "x": -229.16, + "y": 4.38, + "z": 99.81 + }, + "Rotation": 112.027237, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cef385ed-2de5-4337-a876-9ae52e50a1c6", - "Position": { - "x": 391.52002, - "y": 12.88, - "z": -406.429962 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b593e2ff-9764-4bbe-9f8f-e05781071e7b", + "Position": { + "x": 372.94, + "y": 15.3039989, + "z": -695.569946 + }, + "Rotation": 317.312622, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "cf89408b-6cca-43ff-8d07-5d0d040bc0b3", - "Position": { - "x": -414.220032, - "y": 16.6903229, - "z": -362.91 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "b5ac800f-8a61-44a7-b50a-9e58771e8eb6", + "Position": { + "x": 213.47, + "y": -14.6916227, + "z": 291.96 + }, + "Rotation": 151.22, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 249.4 + } + }, + "BotZoneName": "ZoneHouse", + "CorePointId": 5 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "d044ee6d-4391-4496-8d47-e541ea05e94f", - "Position": { - "x": 280.469971, - "y": -12.4933405, - "z": 312.44 - }, - "Rotation": 243.09, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b612f46f-5a53-49cf-87b8-698fa6526e5a", + "Position": { + "x": 94.85, + "y": 6.81406, + "z": -203.72 + }, + "Rotation": 283.99, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 15 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d0e088c0-9d02-4227-869b-193aa464d7aa", - "Position": { - "x": 516.7999, - "y": -20.9, - "z": 264.43 - }, - "Rotation": 198.81, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "b74b9702-5543-4187-845f-db79885c0b11", + "Position": { + "x": 228.390015, + "y": -8.166669, + "z": 199.36 + }, + "Rotation": 157.11, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d1b20f00-8c54-4ff5-afd6-b3e1035de6d5", - "Position": { - "x": 231.13, - "y": 26.48, - "z": -317.429962 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "b93d8187-0ae2-4971-be9c-7839721aeece", + "Position": { + "x": 487.358643, + "y": -18.4096375, + "z": 334.589966 + }, + "Rotation": 240.480011, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d290e1f7-ce87-4332-b386-c3f2441f45f7", - "Position": { - "x": -507.33, - "y": 12.1406317, - "z": -145.300018 - }, - "Rotation": 125.579994, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "ba05b27c-b857-4d25-9fea-c20a4d7d8ce5", + "Position": { + "x": -621.0, + "y": 14.91, + "z": -328.73 + }, + "Rotation": 66.96001, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d2da7554-3689-481c-9e29-4c55f4ba50cb", - "Position": { - "x": -24.789, - "y": 22.953, - "z": -304.759 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "bd0c617a-4288-47f9-ab50-25848294a38e", + "Position": { + "x": 465.27002, + "y": -15.150856, + "z": 177.84 + }, + "Rotation": 239.859985, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d4a73104-c195-476b-87cf-d158e183b980", - "Position": { - "x": -439.399963, - "y": 15.3167744, - "z": -334.679962 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "bdcfc53f-69f8-44fb-9be1-238bab9c2629", + "Position": { + "x": 464.24, + "y": -14.9513435, + "z": 176.19 + }, + "Rotation": 239.859985, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "d7005efc-32b9-4c26-bf50-1e13a3c0d774", - "Position": { - "x": -229.33, - "y": 4.94, - "z": 93.59 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "bdef1511-2fb2-47c1-8d57-eaa14290fb05", + "Position": { + "x": 463.69, + "y": -12.1854525, + "z": 115.73 + }, + "Rotation": 282.6, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneHouse", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "d708c8bc-3a1c-4dbb-985c-24ca63864d85", - "Position": { - "x": -428.98, - "y": 25.4802856, - "z": -81.73999 - }, - "Rotation": 36.98, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } + { + "Id": "be022f29-5b2b-4e94-893c-26d18fb3f61d", + "Position": { + "x": -524.17, + "y": -2.57875681, + "z": 220.33 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 11 - }, - { - "Id": "d7263462-9b04-40b2-91d6-ac77acb24167", - "Position": { - "x": -174.460022, - "y": 9.385831, - "z": -713.929932 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "be2be8fa-4a03-4c1e-b8d7-85d702cf42f6", + "Position": { + "x": 487.358643, + "y": -18.8088722, + "z": 332.61 + }, + "Rotation": 245.390015, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "d7a3bc55-f7df-42f9-a7b1-614b79a4269f", - "Position": { - "x": -517.32, - "y": 14.9372711, - "z": -365.990021 - }, - "Rotation": 106.22, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "beefc821-7b82-4489-a064-a43fc1f752b2", + "Position": { + "x": -228.55, + "y": 3.13, + "z": 110.76 + }, + "Rotation": 112.027237, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "d81fe392-2a7e-40cb-b8f7-b690cb8d29bb", - "Position": { - "x": -507.0, - "y": 24.63865, - "z": -276.79 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "bf2a6323-087e-4d49-a160-ea86b8295ac0", + "Position": { + "x": 63.3200073, + "y": 8.99399948, + "z": -661.4 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 13 - }, - { - "Id": "d837a9a9-afdc-4d44-81cc-c34cb90742a5", - "Position": { - "x": 2.75, - "y": 14.7908974, - "z": -777.28 - }, - "Rotation": 10.29, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } + { + "Id": "c047a076-7425-4c63-ac40-75be5226847c", + "Position": { + "x": 391.61, + "y": 13.62, + "z": -400.750031 + }, + "Rotation": 287.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneBrokenVill", - "CorePointId": 1 - }, - { - "Id": "d99c47b5-844b-4e50-983d-8b745b76c499", - "Position": { - "x": -442.600037, - "y": 15.3186512, - "z": -180.740021 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "c053faa2-0f4e-4508-ac35-230ff6aa6a74", + "Position": { + "x": 234.299988, + "y": 26.98, + "z": -317.97 + }, + "Rotation": 287.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 13 - }, - { - "Id": "da037755-e7ae-4738-8be9-be02991b422b", - "Position": { - "x": -254.13, - "y": 27.412447, - "z": -204.87 - }, - "Rotation": 23.36, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c079818d-1914-4829-80f0-4fcf485c9ad3", + "Position": { + "x": -516.06, + "y": 21.4670029, + "z": -20.0700073 + }, + "Rotation": 102.45, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRedHouse", + "CorePointId": 11 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "da22cead-d753-44c4-b44e-131a3d9690b7", - "Position": { - "x": -59.6399841, - "y": 9.093999, - "z": -577.11 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c0b93127-2d2f-4129-96e1-0d4dcc18a722", + "Position": { + "x": -222.23, + "y": 3.13, + "z": 110.95 + }, + "Rotation": 112.027237, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "da6f2732-4229-43bc-932f-5fa470859251", - "Position": { - "x": 25.57, - "y": 11.3200827, - "z": -226.610016 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } + { + "Id": "c5021df7-1750-44ff-ae44-137022a8bdac", + "Position": { + "x": 365.55, + "y": 13.35, + "z": -700.829956 + }, + "Rotation": 310.421173, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 15 - }, - { - "Id": "da89268f-c6c8-4689-a9d5-5be89a23740f", - "Position": { - "x": -92.29001, - "y": -0.6761878, - "z": 380.44 - }, - "Rotation": 224.32, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c5674fba-b364-4eff-b46e-92db76694c2a", + "Position": { + "x": -390.63, + "y": -8.584538, + "z": 113.78 + }, + "Rotation": 222.64, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 250 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 4 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "dba238b9-8555-456e-974b-f06a05b59426", - "Position": { - "x": -109.97, - "y": -12.87, - "z": 240.99 - }, - "Rotation": 212.4, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } + { + "Id": "c58f8bd9-ff28-48d3-a8e8-dbad862698a8", + "Position": { + "x": -222.56, + "y": 3.13, + "z": 105.69 + }, + "Rotation": 112.027237, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - }, - { - "Id": "dd6a29b3-46ab-4b43-a64d-a556342cc243", - "Position": { - "x": -25.769, - "y": 22.998, - "z": -308.583 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c6f6dcc4-17ef-4842-83ab-124e34dfa53e", + "Position": { + "x": -225.79, + "y": 4.98, + "z": 85.72 + }, + "Rotation": 112.027237, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "deaa5307-ad18-4d43-a46a-e6ef0c5aad7a", - "Position": { - "x": 283.39, - "y": -0.82, - "z": -51.36 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "c7420e4b-fa33-4ce5-a3eb-49cf44c84b52", + "Position": { + "x": 318.82, + "y": -8.43767452, + "z": 352.05 + }, + "Rotation": 151.22, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 + } + }, + "BotZoneName": "ZoneHouse", + "CorePointId": 9 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "deea2fb8-334a-4327-8e1e-a520140ac51e", - "Position": { - "x": -29.681, - "y": 22.91, - "z": -302.877 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c78abf19-57ed-4537-a0c1-ad759c9cf305", + "Position": { + "x": -181.32, + "y": 34.0571442, + "z": -164.09 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneBigRocks", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e02b3d1e-aa8d-4482-8188-d8680b91e274", - "Position": { - "x": 444.5885, - "y": -20.52517, - "z": 363.106354 - }, - "Rotation": 245.390015, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } + { + "Id": "c82d2b76-ad46-4624-825e-975a6d40fcf4", + "Position": { + "x": -229.28, + "y": 5.19, + "z": 86.93 + }, + "Rotation": 112.027237, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e05ef34f-8247-44aa-95a9-fc5085998045", - "Position": { - "x": -24.698, - "y": 22.998, - "z": -308.343 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c880793b-d822-4677-870e-6ffa1c05abd7", + "Position": { + "x": -359.75, + "y": 0.8591096, + "z": 239.67 + }, + "Rotation": 129.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e0fb7ebc-0a4c-45a3-b5a3-ba5e6b1456ba", - "Position": { - "x": 64.6600342, - "y": 9.084, - "z": -656.64 - }, - "Rotation": 284.39, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c8ceabb0-c76e-4f8d-a2ab-a36f34e79694", + "Position": { + "x": -170.87, + "y": 0.9297247, + "z": 431.87 + }, + "Rotation": 152.9, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 + } + }, + "BotZoneName": "ZoneRoad", + "CorePointId": 7 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e1986567-8367-44cd-9bfa-e5c20e9e1460", - "Position": { - "x": -253.669983, - "y": 11.57, - "z": -638.929932 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } + { + "Id": "c93838d9-3ec1-47b9-b5da-db2eb0fbec46", + "Position": { + "x": 389.72998, + "y": 13.24, + "z": -403.929962 + }, + "Rotation": 287.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e19ca9a4-2469-4db9-9fd0-cbffe864e6db", - "Position": { - "x": 187.1, - "y": 3.37974882, - "z": -149.559982 - }, - "Rotation": 323.97998, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 155 - } + { + "Id": "ca70d792-4fc8-47d8-a70a-e08bc2598448", + "Position": { + "x": 367.37, + "y": 17.74, + "z": -594.9099 + }, + "Rotation": 268.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "ZoneMiniHouse", - "CorePointId": 10 - }, - { - "Id": "e23a1216-20f7-4675-88b6-8538090e3dcc", - "Position": { - "x": 283.33, - "y": -0.82, - "z": -55.13 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } + { + "Id": "cb602055-146b-4bd4-b43b-4df81301d046", + "Position": { + "x": 373.61, + "y": -1.92541981, + "z": -76.16 + }, + "Rotation": 0.0, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 + } + }, + "BotZoneName": "", + "CorePointId": 0 }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e46cc7ed-cb3b-46cf-a822-ecca3fc36638", - "Position": { - "x": -28.69, - "y": 22.963, - "z": -305.98 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e48a6b22-ef3f-4c2b-96ef-1a36803af60d", - "Position": { - "x": -21.816, - "y": 23.211, - "z": -303.139 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e4f280f7-ba13-4fa1-83ec-fac99e8f66b5", - "Position": { - "x": -26.16, - "y": 22.91, - "z": -302.47 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e5198961-1e94-45b1-a09d-a8aea6b70f9a", - "Position": { - "x": 102.62, - "y": 7.21457958, - "z": -152.19 - }, - "Rotation": 114.56, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "BotZoneName": "ZoneWoodCutter", - "CorePointId": 15 - }, - { - "Id": "e645f456-584e-47c3-934d-ea87429b9bb7", - "Position": { - "x": -416.2, - "y": 12.9368525, - "z": -468.799957 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "BotZoneName": "ZoneClearVill", - "CorePointId": 2 - }, - { - "Id": "e6fb5fd6-dff6-4af0-bc35-7c4d8dd198fc", - "Position": { - "x": -31.028, - "y": 22.91, - "z": -303.086 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e75aad00-429f-4bc7-b24a-c6e7d9f2b05b", - "Position": { - "x": -496.5, - "y": 5.55468845, - "z": 81.54 - }, - "Rotation": 93.46, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 4 - }, - { - "Id": "e79077ff-20e2-401f-8836-87f347497c7d", - "Position": { - "x": 515.2101, - "y": -20.88, - "z": 264.44 - }, - "Rotation": 204.02, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e7e7fcfc-f2c0-4f5d-9b69-d6774de59df3", - "Position": { - "x": 282.93, - "y": -1.07, - "z": -57.08 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "e94aee7d-4b61-4214-a68c-498eebdd6574", - "Position": { - "x": 279.900024, - "y": -12.0694313, - "z": 317.73 - }, - "Rotation": 237.94, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ea3fc3bc-9190-43a2-af36-7647d782f54c", - "Position": { - "x": -532.56, - "y": -0.4881611, - "z": 254.2 - }, - "Rotation": 83.36, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 4 - }, - { - "Id": "ea838cee-14e1-418f-a616-a5f2d39987c1", - "Position": { - "x": 388.36, - "y": 12.85, - "z": -410.250031 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "eaabeff9-9737-4c63-a3e2-42f64c93b7ef", - "Position": { - "x": -225.33, - "y": 4.48, - "z": 90.68 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "eb67cff0-571a-4d65-b9be-766d1a58aafc", - "Position": { - "x": -522.32, - "y": 10.8116693, - "z": 86.6199951 - }, - "Rotation": 130.67, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "eb7ad162-909d-415b-9800-3508bc9f8664", - "Position": { - "x": 278.75, - "y": -11.9370832, - "z": 315.84 - }, - "Rotation": 223.42, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ebf3d0de-2b43-451e-aa13-b237bd130b1e", - "Position": { - "x": -199.91, - "y": 33.53726, - "z": -193.46 - }, - "Rotation": 0.0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "BotZoneName": "ZoneBigRocks", - "CorePointId": 7 - }, - { - "Id": "ec3445e7-00c8-43ba-9a91-69b426d0537e", - "Position": { - "x": 231.640015, - "y": -7.43194866, - "z": 201.72 - }, - "Rotation": 136.06, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ed269133-85c0-4307-bfe8-27c2cab926d9", - "Position": { - "x": -516.65, - "y": 7.2753315, - "z": 146.29 - }, - "Rotation": 0.08, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "ed620f47-8ec5-44a8-86cd-1f5b53b7d95b", - "Position": { - "x": 365.98, - "y": 4.369165, - "z": -8.880005 - }, - "Rotation": 295.57, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "BotZoneName": "ZoneHouse", - "CorePointId": 5 - }, - { - "Id": "ed8f87c2-bcb0-449d-b96c-10f70d98b0ab", - "Position": { - "x": -526.84, - "y": -2.522231, - "z": 216.27 - }, - "Rotation": 76.87, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 4 - }, - { - "Id": "eea8c6b2-c65a-4e73-b689-8c89c2f93b52", - "Position": { - "x": 307.94, - "y": -0.59301734, - "z": -159.809982 - }, - "Rotation": 1.62999988, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot", - "Boss" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 249.4 - } - }, - "BotZoneName": "ZoneMiniHouse", - "CorePointId": 5 - }, - { - "Id": "eeafbe43-88fa-4755-8c10-d5815528838d", - "Position": { - "x": -29.51, - "y": 23.19, - "z": -308.56 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f013fab0-d613-461b-b2af-e9bbf9cc2b9a", - "Position": { - "x": 281.7, - "y": 8.236985, - "z": -668.62 - }, - "Rotation": 238.74, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "BotZoneName": "ZoneScavBase2", - "CorePointId": 3 - }, - { - "Id": "f10701b0-ee96-4f9b-94db-8007bc90fb07", - "Position": { - "x": 234.960022, - "y": 26.92, - "z": -314.58 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f2ae3edb-47f9-402e-8e4f-de47df81c9ce", - "Position": { - "x": -329.24, - "y": 18.8058033, - "z": -141.908661 - }, - "Rotation": 38.5499954, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f3a50056-4d67-43d2-93a0-ea672b49bb5b", - "Position": { - "x": 515.24, - "y": -20.81, - "z": 261.53 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f4963cf2-9c80-4a14-b300-eac6102fd51d", - "Position": { - "x": 487.358643, - "y": -18.0551147, - "z": 328.52 - }, - "Rotation": 230.000015, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f4f8f8c1-7c55-4b68-878f-f631e769ba30", - "Position": { - "x": 444.959961, - "y": -20.52517, - "z": 362.19 - }, - "Rotation": 229.460022, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f520eec3-2fe1-4538-9e85-2997336fa667", - "Position": { - "x": -524.56, - "y": 11.3427467, - "z": 84.5 - }, - "Rotation": 130.67, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f66219ad-4eb0-48bd-a435-47f76d48c34d", - "Position": { - "x": -515.51, - "y": 12.1576281, - "z": -153.09 - }, - "Rotation": 125.579994, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f6b08d4e-8de0-4922-87b8-546d593d4454", - "Position": { - "x": -537.79, - "y": -1.20589864, - "z": 295.99 - }, - "Rotation": 83.79, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f997caf2-a40d-457c-ae98-20b17660a5aa", - "Position": { - "x": -24.242, - "y": 22.997, - "z": -309.621 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Group" - ], - "Infiltration": "Old Station", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "f9f1a61d-5b85-4259-8967-30433c54449b", - "Position": { - "x": -441.5, - "y": 0.238876343, - "z": 344.8 - }, - "Rotation": 164.48, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "BotZoneName": "ZoneRedHouse", - "CorePointId": 4 - }, - { - "Id": "fc1c9271-3fc8-403f-a730-da10e263b9b1", - "Position": { - "x": 282.68, - "y": -1.44, - "z": -60.91 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ], - "Categories": [ - "Coop", - "Opposite" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "BotZoneName": "", - "CorePointId": 0 - }, - { - "Id": "fe2752f6-3d04-496c-8092-78445e94ca04", - "Position": { - "x": -231.18, - "y": 1.145359, - "z": 400.86 - }, - "Rotation": 157.57, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 4.0, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "BotZoneName": "ZoneRoad", - "CorePointId": 7 - } - ], - "maxItemCountInLocation": [], - "AirdropParameters": [ - { - "PlaneAirdropStartMin": 300, - "PlaneAirdropStartMax": 900, - "PlaneAirdropEnd": 1200, - "PlaneAirdropChance": 0.25, - "PlaneAirdropMax": 1, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropCooldownMax": 800, - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "UnsuccessfulTryPenalty": 600 - } - ], - "MatchMakerMinPlayersByWaitTime": [ - { - "time": 60, - "minPlayers": 7 - }, - { - "time": 70, - "minPlayers": 6 - }, - { - "time": 120, - "minPlayers": 5 - }, - { - "time": 180, - "minPlayers": 4 - }, - { - "time": 250, - "minPlayers": 3 - }, - { - "time": 330, - "minPlayers": 2 - }, - { - "time": 420, - "minPlayers": 1 - } - ], - "transits": [ - { - "id": 15, - "active": false, - "name": "WOO_TRANSIT_15", - "location": "factory4_day", - "description": "WOO_TRANSIT_15_DESC", - "activateAfterSec": 420, - "target": "55f2d3fd4bdc2d5f408b4567", - "time": 30, - "conditions": "WOO_TRANSIT_15_COND" - }, - { - "id": 16, - "active": true, - "name": "WOO_TRANSIT_16", - "location": "RezervBase", - "description": "WOO_TRANSIT_16_DESC", - "activateAfterSec": 420, - "target": "5704e5fad2720bc05b8b4567", - "time": 30, - "conditions": "WOO_TRANSIT_16_COND" - }, - { - "id": 17, - "active": false, - "name": "WOO_TRANSIT_17", - "location": "Lighthouse", - "description": "WOO_TRANSIT_17_DESC", - "activateAfterSec": 420, - "target": "5704e4dad2720bb55b8b4567", - "time": 30, - "conditions": "WOO_TRANSIT_17_COND" - } - ], - "Id": "Woods", - "_Id": "5704e3c2d2720bac5b8b4567", - "Loot": [ - { - "Id": "container_woods_design_stuff_00039", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047df1", - "Items": [ - { - "_id": "66cbb779896120cfb1047df1", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ce2a9b2d-260a-4eb4-b0b1-239a10eab0cc", + "Position": { + "x": 487.358643, + "y": -18.615778, + "z": 330.75 + }, + "Rotation": 228.71, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } - } - ] - }, - { - "Id": "container_woods_design_stuff_00217", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047df3", - "Items": [ - { - "_id": "66cbb779896120cfb1047df3", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ce5410a1-422a-4e27-9fe4-aa912665f8ae", + "Position": { + "x": -540.65, + "y": 5.0159235, + "z": 188.06 + }, + "Rotation": 76.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbb779896120cfb1047df5", - "_tpl": "59e3596386f774176c10a2a2", - "parentId": "66cbb779896120cfb1047df3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneRedHouse", + "CorePointId": 4 + }, + { + "Id": "cead6c41-d92b-47e5-8f03-8365ceccee77", + "Position": { + "x": -521.16, + "y": 7.2753315, + "z": 154.3 + }, + "Rotation": 183.39, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047df7", - "_tpl": "5751496424597720a27126da", - "parentId": "66cbb779896120cfb1047df3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ceb25518-5a40-42cd-b57d-076d40d29890", + "Position": { + "x": -60.97, + "y": 9.24399948, + "z": -579.6 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047df8", - "_tpl": "624c2e8614da335f1e034d8c", - "parentId": "66cbb779896120cfb1047df3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "FireMode": { - "FireMode": "single" - } + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "cec41a3d-7939-4d43-8c64-36b1aed8818f", + "Position": { + "x": -25.361, + "y": 22.997, + "z": -310.053 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047df9", - "_tpl": "624c3074dbbd335e8e6becf3", - "parentId": "66cbb779896120cfb1047df8", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb779896120cfb1047dfc", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb779896120cfb1047df9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 2.0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "cef385ed-2de5-4337-a876-9ae52e50a1c6", + "Position": { + "x": 391.52002, + "y": 12.88, + "z": -406.429962 + }, + "Rotation": 287.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047dfa", - "_tpl": "619f4d304c58466fe1228437", - "parentId": "66cbb779896120cfb1047df8", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb779896120cfb1047dfb", - "_tpl": "619f4bffd25cbd424731fb97", - "parentId": "66cbb779896120cfb1047df8", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb779896120cfb1047dfd", - "_tpl": "65709d2d21b9f815e208ff95", - "parentId": "66cbb779896120cfb1047df3", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "cf89408b-6cca-43ff-8d07-5d0d040bc0b3", + "Position": { + "x": -414.220032, + "y": 16.6903229, + "z": -362.91 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbb779896120cfb1047dfe", - "_tpl": "657f9eb7e9433140ad0baf86", - "parentId": "66cbb779896120cfb1047dfd", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb779896120cfb1047dff", - "_tpl": "657f9ef6c6679fefb3051e1f", - "parentId": "66cbb779896120cfb1047dfd", - "slotId": "Helmet_back" - } - ] - }, - { - "Id": "container_woods_design_stuff_00038", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047e01", - "Items": [ - { - "_id": "66cbb779896120cfb1047e01", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d044ee6d-4391-4496-8d47-e541ea05e94f", + "Position": { + "x": 280.469971, + "y": -12.4933405, + "z": 312.44 + }, + "Rotation": 243.09, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e03", - "_tpl": "63a0b208f444d32d6f03ea1e", - "parentId": "66cbb779896120cfb1047e01", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d0e088c0-9d02-4227-869b-193aa464d7aa", + "Position": { + "x": 516.7999, + "y": -20.9, + "z": 264.43 + }, + "Rotation": 198.81, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e05", - "_tpl": "5bc9b355d4351e6d1509862a", - "parentId": "66cbb779896120cfb1047e01", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00231", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e07", - "Items": [ - { - "_id": "66cbb779896120cfb1047e07", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d1b20f00-8c54-4ff5-afd6-b3e1035de6d5", + "Position": { + "x": 231.13, + "y": 26.48, + "z": -317.429962 + }, + "Rotation": 287.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e09", - "_tpl": "61c18d83b00456371a66814b", - "parentId": "66cbb779896120cfb1047e07", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d290e1f7-ce87-4332-b386-c3f2441f45f7", + "Position": { + "x": -507.33, + "y": 12.1406317, + "z": -145.300018 + }, + "Rotation": 125.579994, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e0a", - "_tpl": "66b5f661af44ca0014063c05", - "parentId": "66cbb779896120cfb1047e07", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d2da7554-3689-481c-9e29-4c55f4ba50cb", + "Position": { + "x": -24.789, + "y": 22.953, + "z": -304.759 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e0b", - "_tpl": "66b61cfae98be930d701c029", - "parentId": "66cbb779896120cfb1047e0a", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb779896120cfb1047e0c", - "_tpl": "66b61ce0c5d72b027748867e", - "parentId": "66cbb779896120cfb1047e0a", - "slotId": "Helmet_back" - }, - { - "_id": "66cbb779896120cfb1047e0e", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb779896120cfb1047e07", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d4a73104-c195-476b-87cf-d158e183b980", + "Position": { + "x": -439.399963, + "y": 15.3167744, + "z": -334.679962 + }, + "Rotation": 287.409973, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbb779896120cfb1047e10", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb779896120cfb1047e07", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00252", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e12", - "Items": [ - { - "_id": "66cbb779896120cfb1047e12", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d7005efc-32b9-4c26-bf50-1e13a3c0d774", + "Position": { + "x": -229.33, + "y": 4.94, + "z": 93.59 + }, + "Rotation": 112.027237, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb779896120cfb1047e14", - "_tpl": "57347baf24597738002c6178", - "parentId": "66cbb779896120cfb1047e12", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "d708c8bc-3a1c-4dbb-985c-24ca63864d85", + "Position": { + "x": -428.98, + "y": 25.4802856, + "z": -81.73999 + }, + "Rotation": 36.98, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbb779896120cfb1047e16", - "_tpl": "57371aab2459775a77142f22", - "parentId": "66cbb779896120cfb1047e12", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 19 + "BotZoneName": "ZoneRedHouse", + "CorePointId": 11 + }, + { + "Id": "d7263462-9b04-40b2-91d6-ac77acb24167", + "Position": { + "x": -174.460022, + "y": 9.385831, + "z": -713.929932 + }, + "Rotation": 29.94, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbb779896120cfb1047e18", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbb779896120cfb1047e12", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 + }, + { + "Id": "d7a3bc55-f7df-42f9-a7b1-614b79a4269f", + "Position": { + "x": -517.32, + "y": 14.9372711, + "z": -365.990021 + }, + "Rotation": 106.22, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbb779896120cfb1047e1a", - "_tpl": "59e4d24686f7741776641ac7", - "parentId": "66cbb779896120cfb1047e12", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 38 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00166", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e1c", - "Items": [ - { - "_id": "66cbb779896120cfb1047e1c", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d81fe392-2a7e-40cb-b8f7-b690cb8d29bb", + "Position": { + "x": -507.0, + "y": 24.63865, + "z": -276.79 + }, + "Rotation": 287.409973, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 } }, - { - "_id": "66cbb779896120cfb1047e1e", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb779896120cfb1047e1c", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneClearVill", + "CorePointId": 13 + }, + { + "Id": "d837a9a9-afdc-4d44-81cc-c34cb90742a5", + "Position": { + "x": 2.75, + "y": 14.7908974, + "z": -777.28 + }, + "Rotation": 10.29, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbb779896120cfb1047e20", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb779896120cfb1047e1c", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00161", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneBrokenVill", + "CorePointId": 1 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e22", - "Items": [ - { - "_id": "66cbb779896120cfb1047e22", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "d99c47b5-844b-4e50-983d-8b745b76c499", + "Position": { + "x": -442.600037, + "y": 15.3186512, + "z": -180.740021 + }, + "Rotation": 287.409973, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 } }, - { - "_id": "66cbb779896120cfb1047e24", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb779896120cfb1047e22", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneClearVill", + "CorePointId": 13 + }, + { + "Id": "da037755-e7ae-4738-8be9-be02991b422b", + "Position": { + "x": -254.13, + "y": 27.412447, + "z": -204.87 + }, + "Rotation": 23.36, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e26", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb779896120cfb1047e22", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00122", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e28", - "Items": [ - { - "_id": "66cbb779896120cfb1047e28", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "da22cead-d753-44c4-b44e-131a3d9690b7", + "Position": { + "x": -59.6399841, + "y": 9.093999, + "z": -577.11 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e2a", - "_tpl": "5c9a07572e221644f31c4b32", - "parentId": "66cbb779896120cfb1047e28", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "da6f2732-4229-43bc-932f-5fa470859251", + "Position": { + "x": 25.57, + "y": 11.3200827, + "z": -226.610016 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 } }, - { - "_id": "66cbb779896120cfb1047e2c", - "_tpl": "64afd81707e2cf40e903a316", - "parentId": "66cbb779896120cfb1047e28", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00081", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 15 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e2e", - "Items": [ - { - "_id": "66cbb779896120cfb1047e2e", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "da89268f-c6c8-4689-a9d5-5be89a23740f", + "Position": { + "x": -92.29001, + "y": -0.6761878, + "z": 380.44 + }, + "Rotation": 224.32, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e30", - "_tpl": "5c503ad32e2216398b5aada2", - "parentId": "66cbb779896120cfb1047e2e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "dba238b9-8555-456e-974b-f06a05b59426", + "Position": { + "x": -109.97, + "y": -12.87, + "z": 240.99 + }, + "Rotation": 212.4, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 40 } }, - { - "_id": "66cbb779896120cfb1047e32", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb779896120cfb1047e2e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneRoad", + "CorePointId": 7 + }, + { + "Id": "dd6a29b3-46ab-4b43-a64d-a556342cc243", + "Position": { + "x": -25.769, + "y": 22.998, + "z": -308.583 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e34", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb779896120cfb1047e2e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 46 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00214", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e36", - "Items": [ - { - "_id": "66cbb779896120cfb1047e36", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "deaa5307-ad18-4d43-a46a-e6ef0c5aad7a", + "Position": { + "x": 283.39, + "y": -0.82, + "z": -51.36 + }, + "Rotation": 268.0896, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb779896120cfb1047e38", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66cbb779896120cfb1047e36", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "deea2fb8-334a-4327-8e1e-a520140ac51e", + "Position": { + "x": -29.681, + "y": 22.91, + "z": -302.877 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e3a", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb779896120cfb1047e36", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e02b3d1e-aa8d-4482-8188-d8680b91e274", + "Position": { + "x": 444.5885, + "y": -20.52517, + "z": 363.106354 + }, + "Rotation": 245.390015, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e3c", - "_tpl": "590c2d8786f774245b1f03f3", - "parentId": "66cbb779896120cfb1047e36", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e05ef34f-8247-44aa-95a9-fc5085998045", + "Position": { + "x": -24.698, + "y": 22.998, + "z": -308.343 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e3e", - "_tpl": "5af0454c86f7746bf20992e8", - "parentId": "66cbb779896120cfb1047e36", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e0fb7ebc-0a4c-45a3-b5a3-ba5e6b1456ba", + "Position": { + "x": 64.6600342, + "y": 9.084, + "z": -656.64 + }, + "Rotation": 284.39, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e40", - "_tpl": "56742c324bdc2d150f8b456d", - "parentId": "66cbb779896120cfb1047e36", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00077", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047e42", - "Items": [ - { - "_id": "66cbb779896120cfb1047e42", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e1986567-8367-44cd-9bfa-e5c20e9e1460", + "Position": { + "x": -253.669983, + "y": 11.57, + "z": -638.929932 + }, + "Rotation": 316.58, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e44", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "66cbb779896120cfb1047e42", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00097", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e46", - "Items": [ - { - "_id": "66cbb779896120cfb1047e46", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e19ca9a4-2469-4db9-9fd0-cbffe864e6db", + "Position": { + "x": 187.1, + "y": 3.37974882, + "z": -149.559982 + }, + "Rotation": 323.97998, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 155 } }, - { - "_id": "66cbb779896120cfb1047e48", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbb779896120cfb1047e46", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 55 + "BotZoneName": "ZoneMiniHouse", + "CorePointId": 10 + }, + { + "Id": "e23a1216-20f7-4675-88b6-8538090e3dcc", + "Position": { + "x": 283.33, + "y": -0.82, + "z": -55.13 + }, + "Rotation": 268.0896, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb779896120cfb1047e4b", - "_tpl": "64aceaecc4eda9354b0226b6", - "parentId": "66cbb779896120cfb1047e46", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e46cc7ed-cb3b-46cf-a822-ecca3fc36638", + "Position": { + "x": -28.69, + "y": 22.963, + "z": -305.98 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e4c", - "_tpl": "64b6979341772715af0f9c39", - "parentId": "66cbb779896120cfb1047e4b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00060", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047e4e", - "Items": [ - { - "_id": "66cbb779896120cfb1047e4e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e48a6b22-ef3f-4c2b-96ef-1a36803af60d", + "Position": { + "x": -21.816, + "y": 23.211, + "z": -303.139 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e50", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb779896120cfb1047e4e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00059", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047e52", - "Items": [ - { - "_id": "66cbb779896120cfb1047e52", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e4f280f7-ba13-4fa1-83ec-fac99e8f66b5", + "Position": { + "x": -26.16, + "y": 22.91, + "z": -302.47 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } - } - ] - }, - { - "Id": "container_woods_design_stuff_00058", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047e54", - "Items": [ - { - "_id": "66cbb779896120cfb1047e54", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e5198961-1e94-45b1-a09d-a8aea6b70f9a", + "Position": { + "x": 102.62, + "y": 7.21457958, + "z": -152.19 + }, + "Rotation": 114.56, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } - } - ] - }, - { - "Id": "container_woods_design_stuff_00057", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + }, + "BotZoneName": "ZoneWoodCutter", + "CorePointId": 15 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047e56", - "Items": [ - { - "_id": "66cbb779896120cfb1047e56", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e645f456-584e-47c3-934d-ea87429b9bb7", + "Position": { + "x": -416.2, + "y": 12.9368525, + "z": -468.799957 + }, + "Rotation": 236.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbb779896120cfb1047e58", - "_tpl": "591afe0186f77431bd616a11", - "parentId": "66cbb779896120cfb1047e56", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00253", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneClearVill", + "CorePointId": 2 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047e5a", - "Items": [ - { - "_id": "66cbb779896120cfb1047e5a", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e6fb5fd6-dff6-4af0-bc35-7c4d8dd198fc", + "Position": { + "x": -31.028, + "y": 22.91, + "z": -303.086 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e5c", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb779896120cfb1047e5a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e75aad00-429f-4bc7-b24a-c6e7d9f2b05b", + "Position": { + "x": -496.5, + "y": 5.55468845, + "z": 81.54 + }, + "Rotation": 93.46, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbb779896120cfb1047e5e", - "_tpl": "5addbb825acfc408fb139400", - "parentId": "66cbb779896120cfb1047e5a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00246", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneRedHouse", + "CorePointId": 4 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e60", - "Items": [ - { - "_id": "66cbb779896120cfb1047e60", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e79077ff-20e2-401f-8836-87f347497c7d", + "Position": { + "x": 515.2101, + "y": -20.88, + "z": 264.44 + }, + "Rotation": 204.02, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e62", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb779896120cfb1047e60", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "e7e7fcfc-f2c0-4f5d-9b69-d6774de59df3", + "Position": { + "x": 282.93, + "y": -1.07, + "z": -57.08 + }, + "Rotation": 268.0896, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb779896120cfb1047e64", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb779896120cfb1047e60", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e66", - "Items": [ - { - "_id": "66cbb779896120cfb1047e66", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 + { + "Id": "e94aee7d-4b61-4214-a68c-498eebdd6574", + "Position": { + "x": 279.900024, + "y": -12.0694313, + "z": 317.73 + }, + "Rotation": 237.94, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e68", - "_tpl": "5dff772da3651922b360bf91", - "parentId": "66cbb779896120cfb1047e66", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00233", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e6a", - "Items": [ - { - "_id": "66cbb779896120cfb1047e6a", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ea3fc3bc-9190-43a2-af36-7647d782f54c", + "Position": { + "x": -532.56, + "y": -0.4881611, + "z": 254.2 + }, + "Rotation": 83.36, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbb779896120cfb1047e6b", - "_tpl": "5aa7d03ae5b5b00016327db5", - "parentId": "66cbb779896120cfb1047e6a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "BotZoneName": "ZoneRedHouse", + "CorePointId": 4 + }, + { + "Id": "ea838cee-14e1-418f-a616-a5f2d39987c1", + "Position": { + "x": 388.36, + "y": 12.85, + "z": -410.250031 + }, + "Rotation": 287.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e6c", - "_tpl": "654a90aff4f81a421b0a7c86", - "parentId": "66cbb779896120cfb1047e6b", - "slotId": "helmet_top" - }, - { - "_id": "66cbb779896120cfb1047e6d", - "_tpl": "654a91068e1ce698150fd1e2", - "parentId": "66cbb779896120cfb1047e6b", - "slotId": "helmet_back" - }, - { - "_id": "66cbb779896120cfb1047e6e", - "_tpl": "654a9189bcc67a392b056c79", - "parentId": "66cbb779896120cfb1047e6b", - "slotId": "helmet_ears" - }, - { - "_id": "66cbb779896120cfb1047e6f", - "_tpl": "57f4c844245977379d5c14d1", - "parentId": "66cbb779896120cfb1047e6a", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "eaabeff9-9737-4c63-a3e2-42f64c93b7ef", + "Position": { + "x": -225.33, + "y": 4.48, + "z": 90.68 + }, + "Rotation": 112.027237, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb779896120cfb1047e70", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66cbb779896120cfb1047e6f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb779896120cfb1047e71", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbb779896120cfb1047e6f", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb779896120cfb1047e72", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb779896120cfb1047e71", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 23.0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "eb67cff0-571a-4d65-b9be-766d1a58aafc", + "Position": { + "x": -522.32, + "y": 10.8116693, + "z": 86.6199951 + }, + "Rotation": 130.67, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e74", - "_tpl": "5d6fc87386f77449db3db94e", - "parentId": "66cbb779896120cfb1047e6a", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00215", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e76", - "Items": [ - { - "_id": "66cbb779896120cfb1047e76", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "eb7ad162-909d-415b-9800-3508bc9f8664", + "Position": { + "x": 278.75, + "y": -11.9370832, + "z": 315.84 + }, + "Rotation": 223.42, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e78", - "_tpl": "572b7d8524597762b472f9d1", - "parentId": "66cbb779896120cfb1047e76", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ebf3d0de-2b43-451e-aa13-b237bd130b1e", + "Position": { + "x": -199.91, + "y": 33.53726, + "z": -193.46 + }, + "Rotation": 0.0, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbb779896120cfb1047e7a", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb779896120cfb1047e76", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneBigRocks", + "CorePointId": 7 + }, + { + "Id": "ec3445e7-00c8-43ba-9a91-69b426d0537e", + "Position": { + "x": 231.640015, + "y": -7.43194866, + "z": 201.72 + }, + "Rotation": 136.06, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e7c", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb779896120cfb1047e76", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1113 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ed269133-85c0-4307-bfe8-27c2cab926d9", + "Position": { + "x": -516.65, + "y": 7.2753315, + "z": 146.29 + }, + "Rotation": 0.08, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e7e", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbb779896120cfb1047e76", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "ed620f47-8ec5-44a8-86cd-1f5b53b7d95b", + "Position": { + "x": 365.98, + "y": 4.369165, + "z": -8.880005 + }, + "Rotation": 295.57, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 140 } }, - { - "_id": "66cbb779896120cfb1047e80", - "_tpl": "60098af40accd37ef2175f27", - "parentId": "66cbb779896120cfb1047e76", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00028", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneHouse", + "CorePointId": 5 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e82", - "Items": [ - { - "_id": "66cbb779896120cfb1047e82", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ed8f87c2-bcb0-449d-b96c-10f70d98b0ab", + "Position": { + "x": -526.84, + "y": -2.522231, + "z": 216.27 + }, + "Rotation": 76.87, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbb779896120cfb1047e84", - "_tpl": "5af0548586f7743a532b7e99", - "parentId": "66cbb779896120cfb1047e82", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneRedHouse", + "CorePointId": 4 + }, + { + "Id": "eea8c6b2-c65a-4e73-b689-8c89c2f93b52", + "Position": { + "x": 307.94, + "y": -0.59301734, + "z": -159.809982 + }, + "Rotation": 1.62999988, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot", + "Boss" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 249.4 } }, - { - "_id": "66cbb779896120cfb1047e86", - "_tpl": "5c13cd2486f774072c757944", - "parentId": "66cbb779896120cfb1047e82", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00244", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneMiniHouse", + "CorePointId": 5 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e88", - "Items": [ - { - "_id": "66cbb779896120cfb1047e88", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "eeafbe43-88fa-4755-8c10-d5815528838d", + "Position": { + "x": -29.51, + "y": 23.19, + "z": -308.56 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e8a", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb779896120cfb1047e88", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 72 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f013fab0-d613-461b-b2af-e9bbf9cc2b9a", + "Position": { + "x": 281.7, + "y": 8.236985, + "z": -668.62 + }, + "Rotation": 238.74, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 60 } }, - { - "_id": "66cbb779896120cfb1047e8c", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb779896120cfb1047e88", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneScavBase2", + "CorePointId": 3 + }, + { + "Id": "f10701b0-ee96-4f9b-94db-8007bc90fb07", + "Position": { + "x": 234.960022, + "y": 26.92, + "z": -314.58 + }, + "Rotation": 287.12, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e8e", - "_tpl": "590c2c9c86f774245b1f03f2", - "parentId": "66cbb779896120cfb1047e88", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f2ae3edb-47f9-402e-8e4f-de47df81c9ce", + "Position": { + "x": -329.24, + "y": 18.8058033, + "z": -141.908661 + }, + "Rotation": 38.5499954, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e90", - "_tpl": "5e2af02c86f7746d420957d4", - "parentId": "66cbb779896120cfb1047e88", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f3a50056-4d67-43d2-93a0-ea672b49bb5b", + "Position": { + "x": 515.24, + "y": -20.81, + "z": 261.53 + }, + "Rotation": 239.859985, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e92", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66cbb779896120cfb1047e88", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00242", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047e94", - "Items": [ - { - "_id": "66cbb779896120cfb1047e94", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 + { + "Id": "f4963cf2-9c80-4a14-b300-eac6102fd51d", + "Position": { + "x": 487.358643, + "y": -18.0551147, + "z": 328.52 + }, + "Rotation": 230.000015, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e96", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb779896120cfb1047e94", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f4f8f8c1-7c55-4b68-878f-f631e769ba30", + "Position": { + "x": 444.959961, + "y": -20.52517, + "z": 362.19 + }, + "Rotation": 229.460022, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047e97", - "_tpl": "5ac66d015acfc400180ae6e4", - "parentId": "66cbb779896120cfb1047e94", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f520eec3-2fe1-4538-9e85-2997336fa667", + "Position": { + "x": -524.56, + "y": 11.3427467, + "z": 84.5 + }, + "Rotation": 130.67, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047e98", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb779896120cfb1047e97", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb779896120cfb1047e99", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb779896120cfb1047e98", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb779896120cfb1047e9a", - "_tpl": "5ac72e725acfc400180ae701", - "parentId": "66cbb779896120cfb1047e97", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb779896120cfb1047e9b", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb779896120cfb1047e97", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb779896120cfb1047e9c", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb779896120cfb1047e97", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb779896120cfb1047e9d", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb779896120cfb1047e97", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb779896120cfb1047e9e", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb779896120cfb1047e97", - "slotId": "mod_stock" - }, - { - "_id": "66cbb779896120cfb1047e9f", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66cbb779896120cfb1047e97", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb779896120cfb1047ea0", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb779896120cfb1047e9f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 21.0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f66219ad-4eb0-48bd-a435-47f76d48c34d", + "Position": { + "x": -515.51, + "y": 12.1576281, + "z": -153.09 + }, + "Rotation": 125.579994, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047ea1", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66cbb779896120cfb1047e94", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f6b08d4e-8de0-4922-87b8-546d593d4454", + "Position": { + "x": -537.79, + "y": -1.20589864, + "z": 295.99 + }, + "Rotation": 83.79, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Player" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 } }, - { - "_id": "66cbb779896120cfb1047ea2", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66cbb779896120cfb1047ea1", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb779896120cfb1047ea3", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66cbb779896120cfb1047ea1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb779896120cfb1047ea4", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66cbb779896120cfb1047ea1", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb779896120cfb1047ea5", - "_tpl": "5736026a245977644601dc61", - "parentId": "66cbb779896120cfb1047ea4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f997caf2-a40d-457c-ae98-20b17660a5aa", + "Position": { + "x": -24.242, + "y": 22.997, + "z": -309.621 + }, + "Rotation": 353.636353, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Group" + ], + "Infiltration": "Old Station", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 70 } }, - { - "_id": "66cbb779896120cfb1047ea7", - "_tpl": "62a09dd4621468534a797ac7", - "parentId": "66cbb779896120cfb1047e94", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "", + "CorePointId": 0 + }, + { + "Id": "f9f1a61d-5b85-4259-8967-30433c54449b", + "Position": { + "x": -441.5, + "y": 0.238876343, + "z": 344.8 + }, + "Rotation": 164.48, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbb779896120cfb1047ea9", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbb779896120cfb1047e94", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "BotZoneName": "ZoneRedHouse", + "CorePointId": 4 + }, + { + "Id": "fc1c9271-3fc8-403f-a730-da10e263b9b1", + "Position": { + "x": 282.68, + "y": -1.44, + "z": -60.91 + }, + "Rotation": 268.0896, + "Sides": [ + "Pmc" + ], + "Categories": [ + "Coop", + "Opposite" + ], + "Infiltration": "House", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 100 } }, - { - "_id": "66cbb779896120cfb1047eab", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb779896120cfb1047e94", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00264", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "", + "CorePointId": 0 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047ead", - "Items": [ - { - "_id": "66cbb779896120cfb1047ead", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fe2752f6-3d04-496c-8092-78445e94ca04", + "Position": { + "x": -231.18, + "y": 1.145359, + "z": 400.86 + }, + "Rotation": 157.57, + "Sides": [ + "Savage" + ], + "Categories": [ + "Bot" + ], + "Infiltration": "", + "DelayToCanSpawnSec": 4.0, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 158.9 } }, - { - "_id": "66cbb779896120cfb1047eaf", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbb779896120cfb1047ead", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00113", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "BotZoneName": "ZoneRoad", + "CorePointId": 7 + } + ], + "maxItemCountInLocation": [], + "AirdropParameters": [ + { + "PlaneAirdropStartMin": 300, + "PlaneAirdropStartMax": 900, + "PlaneAirdropEnd": 1200, + "PlaneAirdropChance": 0.25, + "PlaneAirdropMax": 1, + "PlaneAirdropCooldownMin": 700, + "PlaneAirdropCooldownMax": 800, + "AirdropPointDeactivateDistance": 50, + "MinPlayersCountToSpawnAirdrop": 6, + "UnsuccessfulTryPenalty": 600 + } + ], + "MatchMakerMinPlayersByWaitTime": [ + { + "time": 60, + "minPlayers": 7 }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + { + "time": 70, + "minPlayers": 6 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047eb1", - "Items": [ - { - "_id": "66cbb779896120cfb1047eb1", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "time": 120, + "minPlayers": 5 + }, + { + "time": 180, + "minPlayers": 4 + }, + { + "time": 250, + "minPlayers": 3 + }, + { + "time": 330, + "minPlayers": 2 + }, + { + "time": 420, + "minPlayers": 1 + } + ], + "transits": [ + { + "id": 15, + "active": false, + "name": "WOO_TRANSIT_15", + "location": "factory4_day", + "description": "WOO_TRANSIT_15_DESC", + "activateAfterSec": 420, + "target": "55f2d3fd4bdc2d5f408b4567", + "time": 30, + "conditions": "WOO_TRANSIT_15_COND" + }, + { + "id": 16, + "active": true, + "name": "WOO_TRANSIT_16", + "location": "RezervBase", + "description": "WOO_TRANSIT_16_DESC", + "activateAfterSec": 420, + "target": "5704e5fad2720bc05b8b4567", + "time": 30, + "conditions": "WOO_TRANSIT_16_COND" + }, + { + "id": 17, + "active": false, + "name": "WOO_TRANSIT_17", + "location": "Lighthouse", + "description": "WOO_TRANSIT_17_DESC", + "activateAfterSec": 420, + "target": "5704e4dad2720bb55b8b4567", + "time": 30, + "conditions": "WOO_TRANSIT_17_COND" + } + ], + "Id": "Woods", + "_Id": "5704e3c2d2720bac5b8b4567", + "Loot": [ + { + "Id": "container_woods_design_stuff_00039", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047eb3", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66cbb779896120cfb1047eb1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047eb5", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66cbb779896120cfb1047eb1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047df1", + "Items": [ + { + "_id": "66cbb779896120cfb1047df1", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00217", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047eb7", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb779896120cfb1047eb1", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047eb9", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb779896120cfb1047eb1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047df3", + "Items": [ + { + "_id": "66cbb779896120cfb1047df3", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047ebb", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb779896120cfb1047eb1", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047df5", + "_tpl": "59e3596386f774176c10a2a2", + "parentId": "66cbb779896120cfb1047df3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047ebd", - "_tpl": "5751487e245977207e26a315", - "parentId": "66cbb779896120cfb1047eb1", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047df7", + "_tpl": "5751496424597720a27126da", + "parentId": "66cbb779896120cfb1047df3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047df8", + "_tpl": "624c2e8614da335f1e034d8c", + "parentId": "66cbb779896120cfb1047df3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb779896120cfb1047df9", + "_tpl": "624c3074dbbd335e8e6becf3", + "parentId": "66cbb779896120cfb1047df8", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb1047dfc", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb779896120cfb1047df9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 2.0 + } + }, + { + "_id": "66cbb779896120cfb1047dfa", + "_tpl": "619f4d304c58466fe1228437", + "parentId": "66cbb779896120cfb1047df8", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb779896120cfb1047dfb", + "_tpl": "619f4bffd25cbd424731fb97", + "parentId": "66cbb779896120cfb1047df8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb779896120cfb1047dfd", + "_tpl": "65709d2d21b9f815e208ff95", + "parentId": "66cbb779896120cfb1047df3", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb779896120cfb1047dfe", + "_tpl": "657f9eb7e9433140ad0baf86", + "parentId": "66cbb779896120cfb1047dfd", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb779896120cfb1047dff", + "_tpl": "657f9ef6c6679fefb3051e1f", + "parentId": "66cbb779896120cfb1047dfd", + "slotId": "Helmet_back" } - } - ] - }, - { - "Id": "container_woods_design_stuff_00065", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047ebf", - "Items": [ - { - "_id": "66cbb779896120cfb1047ebf", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00038", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ec1", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66cbb779896120cfb1047ebf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00147", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047ec3", - "Items": [ - { - "_id": "66cbb779896120cfb1047ec3", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ec6", - "_tpl": "573725b0245977612125bae2", - "parentId": "66cbb779896120cfb1047ec3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047e01", + "Items": [ + { + "_id": "66cbb779896120cfb1047e01", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e03", + "_tpl": "63a0b208f444d32d6f03ea1e", + "parentId": "66cbb779896120cfb1047e01", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047e05", + "_tpl": "5bc9b355d4351e6d1509862a", + "parentId": "66cbb779896120cfb1047e01", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00231", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ec7", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66cbb779896120cfb1047ec6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ec9", - "_tpl": "5a9fbb74a2750c0032157181", - "parentId": "66cbb779896120cfb1047ec3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e07", + "Items": [ + { + "_id": "66cbb779896120cfb1047e07", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e09", + "_tpl": "61c18d83b00456371a66814b", + "parentId": "66cbb779896120cfb1047e07", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e0a", + "_tpl": "66b5f661af44ca0014063c05", + "parentId": "66cbb779896120cfb1047e07", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb779896120cfb1047e0b", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "66cbb779896120cfb1047e0a", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb779896120cfb1047e0c", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "66cbb779896120cfb1047e0a", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb779896120cfb1047e0e", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb779896120cfb1047e07", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e10", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb779896120cfb1047e07", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00044", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047ecb", - "Items": [ - { - "_id": "66cbb779896120cfb1047ecb", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00252", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ecd", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb779896120cfb1047ecb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00096", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047ecf", - "Items": [ - { - "_id": "66cbb779896120cfb1047ecf", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ed0", - "_tpl": "5a0ec13bfcdbcb00165aa685", - "parentId": "66cbb779896120cfb1047ecf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e12", + "Items": [ + { + "_id": "66cbb779896120cfb1047e12", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e14", + "_tpl": "57347baf24597738002c6178", + "parentId": "66cbb779896120cfb1047e12", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e16", + "_tpl": "57371aab2459775a77142f22", + "parentId": "66cbb779896120cfb1047e12", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 19 + } + }, + { + "_id": "66cbb779896120cfb1047e18", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbb779896120cfb1047e12", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e1a", + "_tpl": "59e4d24686f7741776641ac7", + "parentId": "66cbb779896120cfb1047e12", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 38 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00166", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ed1", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "66cbb779896120cfb1047ed0", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb779896120cfb1047ed2", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "66cbb779896120cfb1047ed1", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb779896120cfb1047ed3", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "66cbb779896120cfb1047ed0", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb779896120cfb1047ed4", - "_tpl": "59e62cc886f77440d40b52a1", - "parentId": "66cbb779896120cfb1047ed0", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb779896120cfb1047ed5", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "66cbb779896120cfb1047ed0", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb779896120cfb1047ed6", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "66cbb779896120cfb1047ed0", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb779896120cfb1047ed7", - "_tpl": "59d6514b86f774171a068a08", - "parentId": "66cbb779896120cfb1047ed0", - "slotId": "mod_stock" - }, - { - "_id": "66cbb779896120cfb1047ed8", - "_tpl": "5a01c29586f77474660c694c", - "parentId": "66cbb779896120cfb1047ed0", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb779896120cfb1047ed9", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb779896120cfb1047ed8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 13.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047edb", - "_tpl": "560838c94bdc2d77798b4569", - "parentId": "66cbb779896120cfb1047ecf", - "slotId": "main", - "location": { - "x": 5, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e1c", + "Items": [ + { + "_id": "66cbb779896120cfb1047e1c", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047edd", - "_tpl": "5c0e2f5cd174af02a012cfc9", - "parentId": "66cbb779896120cfb1047ecf", - "slotId": "main", - "location": { - "x": 5, - "y": 1, - "r": 1 + { + "_id": "66cbb779896120cfb1047e1e", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb779896120cfb1047e1c", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047e20", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb779896120cfb1047e1c", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00161", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047edf", - "_tpl": "5b43271c5acfc432ff4dce65", - "parentId": "66cbb779896120cfb1047ecf", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ee1", - "_tpl": "57cffe0024597763b03fc60b", - "parentId": "66cbb779896120cfb1047ecf", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e22", + "Items": [ + { + "_id": "66cbb779896120cfb1047e22", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047ee3", - "_tpl": "602286df23506e50807090c6", - "parentId": "66cbb779896120cfb1047ecf", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047e24", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb779896120cfb1047e22", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e26", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb779896120cfb1047e22", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "00012", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047ee5", - "Items": [ - { - "_id": "66cbb779896120cfb1047ee5", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00122", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ee7", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb779896120cfb1047ee5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ee9", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb779896120cfb1047ee5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00090", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047eeb", - "Items": [ - { - "_id": "66cbb779896120cfb1047eeb", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e28", + "Items": [ + { + "_id": "66cbb779896120cfb1047e28", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e2a", + "_tpl": "5c9a07572e221644f31c4b32", + "parentId": "66cbb779896120cfb1047e28", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e2c", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "66cbb779896120cfb1047e28", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00089", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047eed", - "Items": [ - { - "_id": "66cbb779896120cfb1047eed", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00081", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047eef", - "_tpl": "5a0eb38b86f774153b320eb0", - "parentId": "66cbb779896120cfb1047eed", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e2e", + "Items": [ + { + "_id": "66cbb779896120cfb1047e2e", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e30", + "_tpl": "5c503ad32e2216398b5aada2", + "parentId": "66cbb779896120cfb1047e2e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e32", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb779896120cfb1047e2e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e34", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb779896120cfb1047e2e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 46 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00088", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047ef1", - "Items": [ - { - "_id": "66cbb779896120cfb1047ef1", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00214", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ef3", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb779896120cfb1047ef1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e36", + "Items": [ + { + "_id": "66cbb779896120cfb1047e36", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e38", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66cbb779896120cfb1047e36", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e3a", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb779896120cfb1047e36", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e3c", + "_tpl": "590c2d8786f774245b1f03f3", + "parentId": "66cbb779896120cfb1047e36", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e3e", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "66cbb779896120cfb1047e36", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e40", + "_tpl": "56742c324bdc2d150f8b456d", + "parentId": "66cbb779896120cfb1047e36", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00087", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047ef5", - "Items": [ - { - "_id": "66cbb779896120cfb1047ef5", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00077", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ef7", - "_tpl": "5913651986f774432f15d132", - "parentId": "66cbb779896120cfb1047ef5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047e42", + "Items": [ + { + "_id": "66cbb779896120cfb1047e42", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e44", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "66cbb779896120cfb1047e42", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00040", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047ef9", - "Items": [ - { - "_id": "66cbb779896120cfb1047ef9", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00097", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047efb", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb779896120cfb1047ef9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e46", + "Items": [ + { + "_id": "66cbb779896120cfb1047e46", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e48", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbb779896120cfb1047e46", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 55 + } + }, + { + "_id": "66cbb779896120cfb1047e4b", + "_tpl": "64aceaecc4eda9354b0226b6", + "parentId": "66cbb779896120cfb1047e46", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047e4c", + "_tpl": "64b6979341772715af0f9c39", + "parentId": "66cbb779896120cfb1047e4b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00060", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047efd", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb779896120cfb1047ef9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047e4e", + "Items": [ + { + "_id": "66cbb779896120cfb1047e4e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e50", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb779896120cfb1047e4e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00015", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047eff", - "Items": [ - { - "_id": "66cbb779896120cfb1047eff", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00059", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f01", - "_tpl": "62a08f4c4f842e1bd12d9d62", - "parentId": "66cbb779896120cfb1047eff", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047e52", + "Items": [ + { + "_id": "66cbb779896120cfb1047e52", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00239", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f03", - "Items": [ - { - "_id": "66cbb779896120cfb1047f03", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00058", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f05", - "_tpl": "590de7e986f7741b096e5f32", - "parentId": "66cbb779896120cfb1047f03", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047e54", + "Items": [ + { + "_id": "66cbb779896120cfb1047e54", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00275", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f07", - "Items": [ - { - "_id": "66cbb779896120cfb1047f07", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00057", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f0a", - "_tpl": "5c1260dc86f7746b106e8748", - "parentId": "66cbb779896120cfb1047f07", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047e56", + "Items": [ + { + "_id": "66cbb779896120cfb1047e56", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047e58", + "_tpl": "591afe0186f77431bd616a11", + "parentId": "66cbb779896120cfb1047e56", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00253", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f0b", - "_tpl": "5c0d688c86f77413ae3407b2", - "parentId": "66cbb779896120cfb1047f0a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f0e", - "_tpl": "57372db0245977685d4159b2", - "parentId": "66cbb779896120cfb1047f07", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047e5a", + "Items": [ + { + "_id": "66cbb779896120cfb1047e5a", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e5c", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb779896120cfb1047e5a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047e5e", + "_tpl": "5addbb825acfc408fb139400", + "parentId": "66cbb779896120cfb1047e5a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00246", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f0f", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb779896120cfb1047f0e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f11", - "_tpl": "5c82343a2e221644f31c0611", - "parentId": "66cbb779896120cfb1047f07", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e60", + "Items": [ + { + "_id": "66cbb779896120cfb1047e60", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e62", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb779896120cfb1047e60", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e64", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb779896120cfb1047e60", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f13", - "Items": [ - { - "_id": "66cbb779896120cfb1047f13", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f14", - "_tpl": "5aa7e4a4e5b5b000137b76f2", - "parentId": "66cbb779896120cfb1047f13", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb779896120cfb1047f15", - "_tpl": "657f925dada5fadd1f07a57a", - "parentId": "66cbb779896120cfb1047f14", - "slotId": "Helmet_top" + { + "Id": "container_woods_design_stuff_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f16", - "_tpl": "657f92acada5fadd1f07a57e", - "parentId": "66cbb779896120cfb1047f14", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f17", - "_tpl": "657f92e7f4c82973640b2354", - "parentId": "66cbb779896120cfb1047f14", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_woods_design_stuff_00020", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047f19", - "Items": [ - { - "_id": "66cbb779896120cfb1047f19", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f1b", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbb779896120cfb1047f19", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e66", + "Items": [ + { + "_id": "66cbb779896120cfb1047e66", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e68", + "_tpl": "5dff772da3651922b360bf91", + "parentId": "66cbb779896120cfb1047e66", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00259", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f1d", - "Items": [ - { - "_id": "66cbb779896120cfb1047f1d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00233", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f1f", - "_tpl": "60363c0c92ec1c31037959f5", - "parentId": "66cbb779896120cfb1047f1d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f21", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb779896120cfb1047f1d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e6a", + "Items": [ + { + "_id": "66cbb779896120cfb1047e6a", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f23", - "_tpl": "5d40407c86f774318526545a", - "parentId": "66cbb779896120cfb1047f1d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00055", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f25", - "Items": [ - { - "_id": "66cbb779896120cfb1047f25", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f27", - "_tpl": "5e54f6af86f7742199090bf3", - "parentId": "66cbb779896120cfb1047f25", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e6b", + "_tpl": "5aa7d03ae5b5b00016327db5", + "parentId": "66cbb779896120cfb1047e6a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f29", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb779896120cfb1047f25", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e6c", + "_tpl": "654a90aff4f81a421b0a7c86", + "parentId": "66cbb779896120cfb1047e6b", + "slotId": "helmet_top" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f2b", - "_tpl": "59faf98186f774067b6be103", - "parentId": "66cbb779896120cfb1047f25", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00119", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f2d", - "Items": [ - { - "_id": "66cbb779896120cfb1047f2d", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f2f", - "_tpl": "5caf17c9ae92150b30006be1", - "parentId": "66cbb779896120cfb1047f2d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e6d", + "_tpl": "654a91068e1ce698150fd1e2", + "parentId": "66cbb779896120cfb1047e6b", + "slotId": "helmet_back" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f31", - "_tpl": "5c7954d52e221600106f4cc7", - "parentId": "66cbb779896120cfb1047f2d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e6e", + "_tpl": "654a9189bcc67a392b056c79", + "parentId": "66cbb779896120cfb1047e6b", + "slotId": "helmet_ears" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f33", - "_tpl": "56e33680d2720be2748b4576", - "parentId": "66cbb779896120cfb1047f2d", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1047e6f", + "_tpl": "57f4c844245977379d5c14d1", + "parentId": "66cbb779896120cfb1047e6a", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f35", - "_tpl": "5fd20ff893a8961fc660a954", - "parentId": "66cbb779896120cfb1047f2d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e70", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66cbb779896120cfb1047e6f", + "slotId": "mod_pistol_grip" }, - "upd": { - "StackObjectsCount": 34 - } - }, - { - "_id": "66cbb779896120cfb1047f37", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb779896120cfb1047f2d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e71", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbb779896120cfb1047e6f", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f39", - "_tpl": "5a966ec8a2750c00171b3f36", - "parentId": "66cbb779896120cfb1047f2d", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00131", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047f3b", - "Items": [ - { - "_id": "66cbb779896120cfb1047f3b", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f3d", - "_tpl": "590c639286f774151567fa95", - "parentId": "66cbb779896120cfb1047f3b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e72", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb779896120cfb1047e71", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 23.0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f3f", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb779896120cfb1047f3b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047e74", + "_tpl": "5d6fc87386f77449db3db94e", + "parentId": "66cbb779896120cfb1047e6a", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00226", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f41", - "Items": [ - { - "_id": "66cbb779896120cfb1047f41", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00215", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f43", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb779896120cfb1047f41", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00200", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f45", - "Items": [ - { - "_id": "66cbb779896120cfb1047f45", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f46", - "_tpl": "5ac66d725acfc43b321d4b60", - "parentId": "66cbb779896120cfb1047f45", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e76", + "Items": [ + { + "_id": "66cbb779896120cfb1047e76", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e78", + "_tpl": "572b7d8524597762b472f9d1", + "parentId": "66cbb779896120cfb1047e76", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e7a", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb779896120cfb1047e76", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e7c", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb779896120cfb1047e76", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1113 + } + }, + { + "_id": "66cbb779896120cfb1047e7e", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbb779896120cfb1047e76", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e80", + "_tpl": "60098af40accd37ef2175f27", + "parentId": "66cbb779896120cfb1047e76", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00028", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f47", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb779896120cfb1047f46", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb779896120cfb1047f48", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb779896120cfb1047f47", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb779896120cfb1047f49", - "_tpl": "5ac72e895acfc43b321d4bd5", - "parentId": "66cbb779896120cfb1047f46", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb779896120cfb1047f4a", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb779896120cfb1047f46", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb779896120cfb1047f4b", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb779896120cfb1047f46", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb779896120cfb1047f4c", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb779896120cfb1047f46", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb779896120cfb1047f4d", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb779896120cfb1047f46", - "slotId": "mod_stock" - }, - { - "_id": "66cbb779896120cfb1047f4e", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "66cbb779896120cfb1047f46", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f4f", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb779896120cfb1047f4e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e82", + "Items": [ + { + "_id": "66cbb779896120cfb1047e82", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e84", + "_tpl": "5af0548586f7743a532b7e99", + "parentId": "66cbb779896120cfb1047e82", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e86", + "_tpl": "5c13cd2486f774072c757944", + "parentId": "66cbb779896120cfb1047e82", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00022", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047f51", - "Items": [ - { - "_id": "66cbb779896120cfb1047f51", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00244", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f53", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb779896120cfb1047f51", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f55", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb779896120cfb1047f51", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e88", + "Items": [ + { + "_id": "66cbb779896120cfb1047e88", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f57", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb779896120cfb1047f51", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e8a", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb779896120cfb1047e88", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 72 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f59", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb779896120cfb1047f51", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e8c", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb779896120cfb1047e88", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f5b", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb779896120cfb1047f51", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00023", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f5d", - "Items": [ - { - "_id": "66cbb779896120cfb1047f5d", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f5f", - "_tpl": "58272d7f2459774f6311ddfd", - "parentId": "66cbb779896120cfb1047f5d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e8e", + "_tpl": "590c2c9c86f774245b1f03f2", + "parentId": "66cbb779896120cfb1047e88", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f61", - "_tpl": "5eea217fc64c5d0dfc05712a", - "parentId": "66cbb779896120cfb1047f5d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047e90", + "_tpl": "5e2af02c86f7746d420957d4", + "parentId": "66cbb779896120cfb1047e88", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047e92", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66cbb779896120cfb1047e88", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00242", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f63", - "_tpl": "5dfa3d45dfc58d14537c20b0", - "parentId": "66cbb779896120cfb1047f5d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f65", - "_tpl": "5ef366938cef260c0642acad", - "parentId": "66cbb779896120cfb1047f5d", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00138", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f67", - "Items": [ - { - "_id": "66cbb779896120cfb1047f67", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f69", - "_tpl": "58d3db5386f77426186285a0", - "parentId": "66cbb779896120cfb1047f67", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047e94", + "Items": [ + { + "_id": "66cbb779896120cfb1047e94", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f6b", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb779896120cfb1047f67", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047e96", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb779896120cfb1047e94", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e97", + "_tpl": "5ac66d015acfc400180ae6e4", + "parentId": "66cbb779896120cfb1047e94", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbb779896120cfb1047e98", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb779896120cfb1047e97", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb779896120cfb1047e99", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb779896120cfb1047e98", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb779896120cfb1047e9a", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "66cbb779896120cfb1047e97", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb779896120cfb1047e9b", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb779896120cfb1047e97", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb779896120cfb1047e9c", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb779896120cfb1047e97", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb779896120cfb1047e9d", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb779896120cfb1047e97", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb779896120cfb1047e9e", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb779896120cfb1047e97", + "slotId": "mod_stock" + }, + { + "_id": "66cbb779896120cfb1047e9f", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66cbb779896120cfb1047e97", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb1047ea0", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb779896120cfb1047e9f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 21.0 + } + }, + { + "_id": "66cbb779896120cfb1047ea1", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66cbb779896120cfb1047e94", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbb779896120cfb1047ea2", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66cbb779896120cfb1047ea1", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb779896120cfb1047ea3", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66cbb779896120cfb1047ea1", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb779896120cfb1047ea4", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66cbb779896120cfb1047ea1", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb1047ea5", + "_tpl": "5736026a245977644601dc61", + "parentId": "66cbb779896120cfb1047ea4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } + }, + { + "_id": "66cbb779896120cfb1047ea7", + "_tpl": "62a09dd4621468534a797ac7", + "parentId": "66cbb779896120cfb1047e94", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047ea9", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbb779896120cfb1047e94", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047eab", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb779896120cfb1047e94", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00205", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f6d", - "Items": [ - { - "_id": "66cbb779896120cfb1047f6d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00264", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f6f", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb779896120cfb1047f6d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 24 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00080", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f71", - "Items": [ - { - "_id": "66cbb779896120cfb1047f71", - "_tpl": "5909d45286f77465a8136dc6", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f74", - "_tpl": "6570261dc5d7d4cb4d07858e", - "parentId": "66cbb779896120cfb1047f71", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047ead", + "Items": [ + { + "_id": "66cbb779896120cfb1047ead", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047eaf", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbb779896120cfb1047ead", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00113", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f75", - "_tpl": "57371eb62459776125652ac1", - "parentId": "66cbb779896120cfb1047f74", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f79", - "_tpl": "65702656c5d7d4cb4d078591", - "parentId": "66cbb779896120cfb1047f71", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047eb1", + "Items": [ + { + "_id": "66cbb779896120cfb1047eb1", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f7a", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66cbb779896120cfb1047f79", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "66cbb779896120cfb1047f7b", - "_tpl": "59e68f6f86f7746c9f75e846", - "parentId": "66cbb779896120cfb1047f79", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + { + "_id": "66cbb779896120cfb1047eb3", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66cbb779896120cfb1047eb1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047eb5", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66cbb779896120cfb1047eb1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047eb7", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb779896120cfb1047eb1", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047eb9", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb779896120cfb1047eb1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047ebb", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb779896120cfb1047eb1", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047ebd", + "_tpl": "5751487e245977207e26a315", + "parentId": "66cbb779896120cfb1047eb1", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f7d", - "Items": [ - { - "_id": "66cbb779896120cfb1047f7d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00065", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f7f", - "_tpl": "5b43271c5acfc432ff4dce65", - "parentId": "66cbb779896120cfb1047f7d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f81", - "_tpl": "628a664bccaab13006640e47", - "parentId": "66cbb779896120cfb1047f7d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047ebf", + "Items": [ + { + "_id": "66cbb779896120cfb1047ebf", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f83", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "66cbb779896120cfb1047f7d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047ec1", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66cbb779896120cfb1047ebf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00064", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f85", - "Items": [ - { - "_id": "66cbb779896120cfb1047f85", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00147", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f87", - "_tpl": "60363c0c92ec1c31037959f5", - "parentId": "66cbb779896120cfb1047f85", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00276", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f89", - "Items": [ - { - "_id": "66cbb779896120cfb1047f89", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f8b", - "_tpl": "573478bc24597738002c6175", - "parentId": "66cbb779896120cfb1047f89", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047ec3", + "Items": [ + { + "_id": "66cbb779896120cfb1047ec3", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f8d", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbb779896120cfb1047f89", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047ec6", + "_tpl": "573725b0245977612125bae2", + "parentId": "66cbb779896120cfb1047ec3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f8f", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb779896120cfb1047f89", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047ec7", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66cbb779896120cfb1047ec6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } + }, + { + "_id": "66cbb779896120cfb1047ec9", + "_tpl": "5a9fbb74a2750c0032157181", + "parentId": "66cbb779896120cfb1047ec3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00105", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f91", - "Items": [ - { - "_id": "66cbb779896120cfb1047f91", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00044", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f93", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb779896120cfb1047f91", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 29 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00222", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047f95", - "Items": [ - { - "_id": "66cbb779896120cfb1047f95", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f97", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb779896120cfb1047f95", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047ecb", + "Items": [ + { + "_id": "66cbb779896120cfb1047ecb", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 668 - } - }, - { - "_id": "66cbb779896120cfb1047f98", - "_tpl": "5d5e9c74a4b9364855191c40", - "parentId": "66cbb779896120cfb1047f95", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047ecd", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb779896120cfb1047ecb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00096", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f99", - "_tpl": "657f8b94f92cd718b70154ff", - "parentId": "66cbb779896120cfb1047f98", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb779896120cfb1047f9a", - "_tpl": "657f8b43f92cd718b70154fb", - "parentId": "66cbb779896120cfb1047f98", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047f9c", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb779896120cfb1047f95", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047ecf", + "Items": [ + { + "_id": "66cbb779896120cfb1047ecf", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047f9e", - "_tpl": "5fd8d28367cb5e077335170f", - "parentId": "66cbb779896120cfb1047f95", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbb779896120cfb1047ed0", + "_tpl": "5a0ec13bfcdbcb00165aa685", + "parentId": "66cbb779896120cfb1047ecf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fa0", - "_tpl": "5734773724597737fd047c14", - "parentId": "66cbb779896120cfb1047f95", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00139", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047fa2", - "Items": [ - { - "_id": "66cbb779896120cfb1047fa2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fa4", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb779896120cfb1047fa2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047ed1", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "66cbb779896120cfb1047ed0", + "slotId": "mod_gas_block" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fa6", - "_tpl": "59e35de086f7741778269d84", - "parentId": "66cbb779896120cfb1047fa2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047ed2", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "66cbb779896120cfb1047ed1", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb779896120cfb1047ed3", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "66cbb779896120cfb1047ed0", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb779896120cfb1047ed4", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "66cbb779896120cfb1047ed0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb779896120cfb1047ed5", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "66cbb779896120cfb1047ed0", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb779896120cfb1047ed6", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "66cbb779896120cfb1047ed0", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb779896120cfb1047ed7", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "66cbb779896120cfb1047ed0", + "slotId": "mod_stock" + }, + { + "_id": "66cbb779896120cfb1047ed8", + "_tpl": "5a01c29586f77474660c694c", + "parentId": "66cbb779896120cfb1047ed0", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb1047ed9", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb779896120cfb1047ed8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 13.0 + } + }, + { + "_id": "66cbb779896120cfb1047edb", + "_tpl": "560838c94bdc2d77798b4569", + "parentId": "66cbb779896120cfb1047ecf", + "slotId": "main", + "location": { + "x": 5, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047edd", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "parentId": "66cbb779896120cfb1047ecf", + "slotId": "main", + "location": { + "x": 5, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047edf", + "_tpl": "5b43271c5acfc432ff4dce65", + "parentId": "66cbb779896120cfb1047ecf", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047ee1", + "_tpl": "57cffe0024597763b03fc60b", + "parentId": "66cbb779896120cfb1047ecf", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047ee3", + "_tpl": "602286df23506e50807090c6", + "parentId": "66cbb779896120cfb1047ecf", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00247", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047fa8", - "Items": [ - { - "_id": "66cbb779896120cfb1047fa8", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fa9", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66cbb779896120cfb1047fa8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb779896120cfb1047faa", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66cbb779896120cfb1047fa9", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb779896120cfb1047fab", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66cbb779896120cfb1047fa9", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb779896120cfb1047fac", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66cbb779896120cfb1047fa9", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb779896120cfb1047fad", - "_tpl": "5736026a245977644601dc61", - "parentId": "66cbb779896120cfb1047fac", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5.0 - } + { + "Id": "00012", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047faf", - "_tpl": "6576f96220d53a5b8f3e395e", - "parentId": "66cbb779896120cfb1047fa8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 17 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fb1", - "_tpl": "5656eb674bdc2d35148b457c", - "parentId": "66cbb779896120cfb1047fa8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047ee5", + "Items": [ + { + "_id": "66cbb779896120cfb1047ee5", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fb3", - "_tpl": "5ede475339ee016e8c534742", - "parentId": "66cbb779896120cfb1047fa8", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1047ee7", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb779896120cfb1047ee5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fb5", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb779896120cfb1047fa8", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047ee9", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb779896120cfb1047ee5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00271", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047fb7", - "Items": [ - { - "_id": "66cbb779896120cfb1047fb7", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00090", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fb9", - "_tpl": "57347d8724597744596b4e76", - "parentId": "66cbb779896120cfb1047fb7", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fbb", - "_tpl": "590c5bbd86f774785762df04", - "parentId": "66cbb779896120cfb1047fb7", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047eeb", + "Items": [ + { + "_id": "66cbb779896120cfb1047eeb", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00130", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047fbd", - "Items": [ - { - "_id": "66cbb779896120cfb1047fbd", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fbf", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb779896120cfb1047fbd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00089", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fc1", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb779896120cfb1047fbd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fc3", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbb779896120cfb1047fbd", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047eed", + "Items": [ + { + "_id": "66cbb779896120cfb1047eed", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047eef", + "_tpl": "5a0eb38b86f774153b320eb0", + "parentId": "66cbb779896120cfb1047eed", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00088", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fc5", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb779896120cfb1047fbd", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fc7", - "_tpl": "6389c6463485cf0eeb260715", - "parentId": "66cbb779896120cfb1047fbd", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047ef1", + "Items": [ + { + "_id": "66cbb779896120cfb1047ef1", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047ef3", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb779896120cfb1047ef1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00087", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fc9", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb779896120cfb1047fbd", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fcb", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb779896120cfb1047fbd", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047ef5", + "Items": [ + { + "_id": "66cbb779896120cfb1047ef5", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fcd", - "_tpl": "5bc9c29cd4351e003562b8a3", - "parentId": "66cbb779896120cfb1047fbd", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047ef7", + "_tpl": "5913651986f774432f15d132", + "parentId": "66cbb779896120cfb1047ef5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00094", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047fcf", - "Items": [ - { - "_id": "66cbb779896120cfb1047fcf", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00040", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fd1", - "_tpl": "66012788c752a02bbe05e68e", - "parentId": "66cbb779896120cfb1047fcf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00212", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047fd3", - "Items": [ - { - "_id": "66cbb779896120cfb1047fd3", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fd5", - "_tpl": "5aa2a7e8e5b5b00016327c16", - "parentId": "66cbb779896120cfb1047fd3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047ef9", + "Items": [ + { + "_id": "66cbb779896120cfb1047ef9", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fd7", - "_tpl": "619256e5f8af2c1a4e1f5d92", - "parentId": "66cbb779896120cfb1047fd3", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047efb", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb779896120cfb1047ef9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fd9", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbb779896120cfb1047fd3", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047efd", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb779896120cfb1047ef9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00142", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047fdb", - "Items": [ - { - "_id": "66cbb779896120cfb1047fdb", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00015", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fdd", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb779896120cfb1047fdb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00157", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047fdf", - "Items": [ - { - "_id": "66cbb779896120cfb1047fdf", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fe1", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66cbb779896120cfb1047fdf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047eff", + "Items": [ + { + "_id": "66cbb779896120cfb1047eff", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f01", + "_tpl": "62a08f4c4f842e1bd12d9d62", + "parentId": "66cbb779896120cfb1047eff", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00239", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fe3", - "_tpl": "57347d7224597744596b4e72", - "parentId": "66cbb779896120cfb1047fdf", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fe5", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbb779896120cfb1047fdf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f03", + "Items": [ + { + "_id": "66cbb779896120cfb1047f03", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f05", + "_tpl": "590de7e986f7741b096e5f32", + "parentId": "66cbb779896120cfb1047f03", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00275", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fe7", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbb779896120cfb1047fdf", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fe9", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb779896120cfb1047fdf", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f07", + "Items": [ + { + "_id": "66cbb779896120cfb1047f07", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047feb", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb779896120cfb1047fdf", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1047f0a", + "_tpl": "5c1260dc86f7746b106e8748", + "parentId": "66cbb779896120cfb1047f07", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fed", - "_tpl": "5734773724597737fd047c14", - "parentId": "66cbb779896120cfb1047fdf", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1047f0b", + "_tpl": "5c0d688c86f77413ae3407b2", + "parentId": "66cbb779896120cfb1047f0a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047fef", - "_tpl": "60098b1705871270cd5352a1", - "parentId": "66cbb779896120cfb1047fdf", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f0e", + "_tpl": "57372db0245977685d4159b2", + "parentId": "66cbb779896120cfb1047f07", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f0f", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb779896120cfb1047f0e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "66cbb779896120cfb1047f11", + "_tpl": "5c82343a2e221644f31c0611", + "parentId": "66cbb779896120cfb1047f07", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1047ff1", - "Items": [ - { - "_id": "66cbb779896120cfb1047ff1", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ff3", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb779896120cfb1047ff1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047ff5", - "_tpl": "590c595c86f7747884343ad7", - "parentId": "66cbb779896120cfb1047ff1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f13", + "Items": [ + { + "_id": "66cbb779896120cfb1047f13", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047ff7", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb779896120cfb1047ff1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047f14", + "_tpl": "5aa7e4a4e5b5b000137b76f2", + "parentId": "66cbb779896120cfb1047f13", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047ff9", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb779896120cfb1047ff1", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1047f15", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "66cbb779896120cfb1047f14", + "slotId": "Helmet_top" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1047ffb", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb779896120cfb1047ff1", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f16", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "66cbb779896120cfb1047f14", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb779896120cfb1047f17", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "66cbb779896120cfb1047f14", + "slotId": "Helmet_ears" } - } - ] - }, - { - "Id": "container_woods_design_stuff_00056", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1047ffd", - "Items": [ - { - "_id": "66cbb779896120cfb1047ffd", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00020", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1047fff", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb779896120cfb1047ffd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048001", - "_tpl": "57347c2e24597744902c94a1", - "parentId": "66cbb779896120cfb1047ffd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047f19", + "Items": [ + { + "_id": "66cbb779896120cfb1047f19", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048003", - "_tpl": "5734779624597737e04bf329", - "parentId": "66cbb779896120cfb1047ffd", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f1b", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbb779896120cfb1047f19", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00148", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048005", - "Items": [ - { - "_id": "66cbb779896120cfb1048005", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00259", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048007", - "_tpl": "5cbdc23eae9215001136a407", - "parentId": "66cbb779896120cfb1048005", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048009", - "_tpl": "6415d33eda439c6a97048b5b", - "parentId": "66cbb779896120cfb1048005", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f1d", + "Items": [ + { + "_id": "66cbb779896120cfb1047f1d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f1f", + "_tpl": "60363c0c92ec1c31037959f5", + "parentId": "66cbb779896120cfb1047f1d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f21", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb779896120cfb1047f1d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f23", + "_tpl": "5d40407c86f774318526545a", + "parentId": "66cbb779896120cfb1047f1d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00082", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104800b", - "Items": [ - { - "_id": "66cbb779896120cfb104800b", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00055", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104800d", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "66cbb779896120cfb104800b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104800f", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb779896120cfb104800b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f25", + "Items": [ + { + "_id": "66cbb779896120cfb1047f25", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f27", + "_tpl": "5e54f6af86f7742199090bf3", + "parentId": "66cbb779896120cfb1047f25", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f29", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb779896120cfb1047f25", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f2b", + "_tpl": "59faf98186f774067b6be103", + "parentId": "66cbb779896120cfb1047f25", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00048", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048011", - "Items": [ - { - "_id": "66cbb779896120cfb1048011", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00119", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048013", - "_tpl": "59e770f986f7742cbe3164ef", - "parentId": "66cbb779896120cfb1048011", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00068", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048015", - "Items": [ - { - "_id": "66cbb779896120cfb1048015", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048017", - "_tpl": "5fd4c60f875c30179f5d04c2", - "parentId": "66cbb779896120cfb1048015", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f2d", + "Items": [ + { + "_id": "66cbb779896120cfb1047f2d", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048018", - "_tpl": "576a581d2459771e7b1bc4f1", - "parentId": "66cbb779896120cfb1048015", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 + { + "_id": "66cbb779896120cfb1047f2f", + "_tpl": "5caf17c9ae92150b30006be1", + "parentId": "66cbb779896120cfb1047f2d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f31", + "_tpl": "5c7954d52e221600106f4cc7", + "parentId": "66cbb779896120cfb1047f2d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f33", + "_tpl": "56e33680d2720be2748b4576", + "parentId": "66cbb779896120cfb1047f2d", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f35", + "_tpl": "5fd20ff893a8961fc660a954", + "parentId": "66cbb779896120cfb1047f2d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 34 + } + }, + { + "_id": "66cbb779896120cfb1047f37", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb779896120cfb1047f2d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f39", + "_tpl": "5a966ec8a2750c00171b3f36", + "parentId": "66cbb779896120cfb1047f2d", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00131", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048019", - "_tpl": "576a5ed62459771e9c2096cb", - "parentId": "66cbb779896120cfb1048018", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104801b", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb779896120cfb1048019", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047f3b", + "Items": [ + { + "_id": "66cbb779896120cfb1047f3b", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f3d", + "_tpl": "590c639286f774151567fa95", + "parentId": "66cbb779896120cfb1047f3b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f3f", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb779896120cfb1047f3b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00226", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104801a", - "_tpl": "576a63cd2459771e796e0e11", - "parentId": "66cbb779896120cfb1048018", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104801d", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb779896120cfb1048015", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f41", + "Items": [ + { + "_id": "66cbb779896120cfb1047f41", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104801f", - "_tpl": "5aa7e3abe5b5b000171d064d", - "parentId": "66cbb779896120cfb1048015", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f43", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb779896120cfb1047f41", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00277", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048021", - "Items": [ - { - "_id": "66cbb779896120cfb1048021", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00200", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048023", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbb779896120cfb1048021", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00143", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048025", - "Items": [ - { - "_id": "66cbb779896120cfb1048025", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048027", - "_tpl": "590c5bbd86f774785762df04", - "parentId": "66cbb779896120cfb1048025", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f45", + "Items": [ + { + "_id": "66cbb779896120cfb1047f45", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048029", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb779896120cfb1048025", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047f46", + "_tpl": "5ac66d725acfc43b321d4b60", + "parentId": "66cbb779896120cfb1047f45", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104802b", - "_tpl": "5c06779c86f77426e00dd782", - "parentId": "66cbb779896120cfb1048025", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f47", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb779896120cfb1047f46", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb779896120cfb1047f48", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb779896120cfb1047f47", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb779896120cfb1047f49", + "_tpl": "5ac72e895acfc43b321d4bd5", + "parentId": "66cbb779896120cfb1047f46", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb779896120cfb1047f4a", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb779896120cfb1047f46", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb779896120cfb1047f4b", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb779896120cfb1047f46", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb779896120cfb1047f4c", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb779896120cfb1047f46", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb779896120cfb1047f4d", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb779896120cfb1047f46", + "slotId": "mod_stock" + }, + { + "_id": "66cbb779896120cfb1047f4e", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "66cbb779896120cfb1047f46", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb1047f4f", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb779896120cfb1047f4e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00162", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104802d", - "Items": [ - { - "_id": "66cbb779896120cfb104802d", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00022", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104802f", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb779896120cfb104802d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048031", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb779896120cfb104802d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047f51", + "Items": [ + { + "_id": "66cbb779896120cfb1047f51", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f53", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb779896120cfb1047f51", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f55", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb779896120cfb1047f51", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f57", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb779896120cfb1047f51", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f59", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb779896120cfb1047f51", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f5b", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb779896120cfb1047f51", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00272", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048033", - "Items": [ - { - "_id": "66cbb779896120cfb1048033", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00023", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048035", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb779896120cfb1048033", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00267", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048037", - "Items": [ - { - "_id": "66cbb779896120cfb1048037", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104803a", - "_tpl": "573728f324597765e5728561", - "parentId": "66cbb779896120cfb1048037", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f5d", + "Items": [ + { + "_id": "66cbb779896120cfb1047f5d", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f5f", + "_tpl": "58272d7f2459774f6311ddfd", + "parentId": "66cbb779896120cfb1047f5d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f61", + "_tpl": "5eea217fc64c5d0dfc05712a", + "parentId": "66cbb779896120cfb1047f5d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f63", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "parentId": "66cbb779896120cfb1047f5d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f65", + "_tpl": "5ef366938cef260c0642acad", + "parentId": "66cbb779896120cfb1047f5d", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00138", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104803b", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb779896120cfb104803a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104803d", - "_tpl": "5c7951452e221644f31bfd5c", - "parentId": "66cbb779896120cfb1048037", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f67", + "Items": [ + { + "_id": "66cbb779896120cfb1047f67", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f69", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "66cbb779896120cfb1047f67", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f6b", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb779896120cfb1047f67", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00209", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104803f", - "Items": [ - { - "_id": "66cbb779896120cfb104803f", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00205", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048041", - "_tpl": "590c645c86f77412b01304d9", - "parentId": "66cbb779896120cfb104803f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048043", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbb779896120cfb104803f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f6d", + "Items": [ + { + "_id": "66cbb779896120cfb1047f6d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f6f", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb779896120cfb1047f6d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 24 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00165", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048045", - "Items": [ - { - "_id": "66cbb779896120cfb1048045", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00080", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048047", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb779896120cfb1048045", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048049", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb779896120cfb1048045", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f71", + "Items": [ + { + "_id": "66cbb779896120cfb1047f71", + "_tpl": "5909d45286f77465a8136dc6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f74", + "_tpl": "6570261dc5d7d4cb4d07858e", + "parentId": "66cbb779896120cfb1047f71", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f75", + "_tpl": "57371eb62459776125652ac1", + "parentId": "66cbb779896120cfb1047f74", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } + }, + { + "_id": "66cbb779896120cfb1047f79", + "_tpl": "65702656c5d7d4cb4d078591", + "parentId": "66cbb779896120cfb1047f71", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f7a", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66cbb779896120cfb1047f79", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb779896120cfb1047f7b", + "_tpl": "59e68f6f86f7746c9f75e846", + "parentId": "66cbb779896120cfb1047f79", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00227", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104804b", - "Items": [ - { - "_id": "66cbb779896120cfb104804b", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104804d", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbb779896120cfb104804b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104804f", - "_tpl": "59e770f986f7742cbe3164ef", - "parentId": "66cbb779896120cfb104804b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f7d", + "Items": [ + { + "_id": "66cbb779896120cfb1047f7d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f7f", + "_tpl": "5b43271c5acfc432ff4dce65", + "parentId": "66cbb779896120cfb1047f7d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f81", + "_tpl": "628a664bccaab13006640e47", + "parentId": "66cbb779896120cfb1047f7d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f83", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "66cbb779896120cfb1047f7d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00064", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048051", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb779896120cfb104804b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f85", + "Items": [ + { + "_id": "66cbb779896120cfb1047f85", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f87", + "_tpl": "60363c0c92ec1c31037959f5", + "parentId": "66cbb779896120cfb1047f85", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00031", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048053", - "Items": [ - { - "_id": "66cbb779896120cfb1048053", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00276", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048055", - "_tpl": "570fd79bd2720bc7458b4583", - "parentId": "66cbb779896120cfb1048053", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f89", + "Items": [ + { + "_id": "66cbb779896120cfb1047f89", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f8b", + "_tpl": "573478bc24597738002c6175", + "parentId": "66cbb779896120cfb1047f89", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f8d", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbb779896120cfb1047f89", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f8f", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb779896120cfb1047f89", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00105", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048057", - "_tpl": "5cf79389d7f00c10941a0c4d", - "parentId": "66cbb779896120cfb1048053", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f91", + "Items": [ + { + "_id": "66cbb779896120cfb1047f91", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f93", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb779896120cfb1047f91", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 29 + } } - }, - { - "_id": "66cbb779896120cfb1048059", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "66cbb779896120cfb1048053", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00191", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104805b", - "Items": [ - { - "_id": "66cbb779896120cfb104805b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104805d", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66cbb779896120cfb104805b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00250", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104805f", - "Items": [ - { - "_id": "66cbb779896120cfb104805f", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00222", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048061", - "_tpl": "5e023cf8186a883be655e54f", - "parentId": "66cbb779896120cfb104805f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 21 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00109", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048063", - "Items": [ - { - "_id": "66cbb779896120cfb1048063", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048065", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb779896120cfb1048063", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047f95", + "Items": [ + { + "_id": "66cbb779896120cfb1047f95", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048067", - "_tpl": "5d440b9fa4b93601354d480c", - "parentId": "66cbb779896120cfb1048063", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047f97", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb779896120cfb1047f95", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 668 + } + }, + { + "_id": "66cbb779896120cfb1047f98", + "_tpl": "5d5e9c74a4b9364855191c40", + "parentId": "66cbb779896120cfb1047f95", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb779896120cfb1047f99", + "_tpl": "657f8b94f92cd718b70154ff", + "parentId": "66cbb779896120cfb1047f98", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb779896120cfb1047f9a", + "_tpl": "657f8b43f92cd718b70154fb", + "parentId": "66cbb779896120cfb1047f98", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb779896120cfb1047f9c", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb779896120cfb1047f95", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047f9e", + "_tpl": "5fd8d28367cb5e077335170f", + "parentId": "66cbb779896120cfb1047f95", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fa0", + "_tpl": "5734773724597737fd047c14", + "parentId": "66cbb779896120cfb1047f95", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00189", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048069", - "Items": [ - { - "_id": "66cbb779896120cfb1048069", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00139", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104806b", - "_tpl": "590c5d4b86f774784e1b9c45", - "parentId": "66cbb779896120cfb1048069", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104806d", - "_tpl": "6217726288ed9f0845317459", - "parentId": "66cbb779896120cfb1048069", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047fa2", + "Items": [ + { + "_id": "66cbb779896120cfb1047fa2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fa4", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb779896120cfb1047fa2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fa6", + "_tpl": "59e35de086f7741778269d84", + "parentId": "66cbb779896120cfb1047fa2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb104806f", - "Items": [ - { - "_id": "66cbb779896120cfb104806f", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00247", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048071", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb779896120cfb104806f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048073", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb779896120cfb104806f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047fa8", + "Items": [ + { + "_id": "66cbb779896120cfb1047fa8", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048075", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb779896120cfb104806f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047fa9", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66cbb779896120cfb1047fa8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048077", - "_tpl": "56742c2e4bdc2d95058b456d", - "parentId": "66cbb779896120cfb104806f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047faa", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66cbb779896120cfb1047fa9", + "slotId": "mod_barrel" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048079", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb779896120cfb104806f", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047fab", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66cbb779896120cfb1047fa9", + "slotId": "mod_pistol_grip" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104807b", - "_tpl": "590c639286f774151567fa95", - "parentId": "66cbb779896120cfb104806f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00036", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb104807d", - "Items": [ - { - "_id": "66cbb779896120cfb104807d", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104807f", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb779896120cfb104807d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047fac", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66cbb779896120cfb1047fa9", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048081", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbb779896120cfb104807d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047fad", + "_tpl": "5736026a245977644601dc61", + "parentId": "66cbb779896120cfb1047fac", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5.0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048083", - "_tpl": "60098b1705871270cd5352a1", - "parentId": "66cbb779896120cfb104807d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047faf", + "_tpl": "6576f96220d53a5b8f3e395e", + "parentId": "66cbb779896120cfb1047fa8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 17 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048085", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbb779896120cfb104807d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047fb1", + "_tpl": "5656eb674bdc2d35148b457c", + "parentId": "66cbb779896120cfb1047fa8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fb3", + "_tpl": "5ede475339ee016e8c534742", + "parentId": "66cbb779896120cfb1047fa8", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fb5", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb779896120cfb1047fa8", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00263", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048087", - "Items": [ - { - "_id": "66cbb779896120cfb1048087", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00271", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048089", - "_tpl": "5e32f56fcb6d5863cc5e5ee4", - "parentId": "66cbb779896120cfb1048087", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104808b", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbb779896120cfb1048087", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047fb7", + "Items": [ + { + "_id": "66cbb779896120cfb1047fb7", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104808d", - "_tpl": "5e2af51086f7746d3f3c3402", - "parentId": "66cbb779896120cfb1048087", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047fb9", + "_tpl": "57347d8724597744596b4e76", + "parentId": "66cbb779896120cfb1047fb7", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fbb", + "_tpl": "590c5bbd86f774785762df04", + "parentId": "66cbb779896120cfb1047fb7", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00146", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104808f", - "Items": [ - { - "_id": "66cbb779896120cfb104808f", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00130", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048091", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66cbb779896120cfb104808f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00216", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048093", - "Items": [ - { - "_id": "66cbb779896120cfb1048093", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048095", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb779896120cfb1048093", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047fbd", + "Items": [ + { + "_id": "66cbb779896120cfb1047fbd", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048097", - "_tpl": "57347d9c245977448b40fa85", - "parentId": "66cbb779896120cfb1048093", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047fbf", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb779896120cfb1047fbd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048098", - "_tpl": "62e14904c2699c0ec93adc47", - "parentId": "66cbb779896120cfb1048093", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 1 + { + "_id": "66cbb779896120cfb1047fc1", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb779896120cfb1047fbd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fc3", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbb779896120cfb1047fbd", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fc5", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb779896120cfb1047fbd", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fc7", + "_tpl": "6389c6463485cf0eeb260715", + "parentId": "66cbb779896120cfb1047fbd", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 + { + "_id": "66cbb779896120cfb1047fc9", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb779896120cfb1047fbd", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fcb", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb779896120cfb1047fbd", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 }, - "Foldable": { - "Folded": false + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fcd", + "_tpl": "5bc9c29cd4351e003562b8a3", + "parentId": "66cbb779896120cfb1047fbd", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 }, - "FireMode": { - "FireMode": "single" + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_woods_design_stuff_00094", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048099", - "_tpl": "633a98eab8b0506e48497c1a", - "parentId": "66cbb779896120cfb1048098", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480a0", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbb779896120cfb1048099", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 - } - }, - { - "_id": "66cbb779896120cfb104809a", - "_tpl": "62e2a754b6c0ee2f230cee0f", - "parentId": "66cbb779896120cfb1048098", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb779896120cfb104809b", - "_tpl": "62e292e7b6c0ee2f230cee00", - "parentId": "66cbb779896120cfb1048098", - "slotId": "mod_stock" - }, - { - "_id": "66cbb779896120cfb104809c", - "_tpl": "62e27a7865f0b1592a49e17b", - "parentId": "66cbb779896120cfb1048098", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb779896120cfb104809d", - "_tpl": "62e15547db1a5c41971c1b5e", - "parentId": "66cbb779896120cfb1048098", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb779896120cfb104809e", - "_tpl": "62ed189fb3608410ef5a2bfc", - "parentId": "66cbb779896120cfb104809d", - "slotId": "mod_mount_001" - }, - { - "_id": "66cbb779896120cfb104809f", - "_tpl": "637b9c37b7e3bc41b21ce71a", - "parentId": "66cbb779896120cfb1048098", - "slotId": "mod_pistolgrip" - }, - { - "_id": "66cbb779896120cfb10480a2", - "_tpl": "5ac4c50d5acfc40019262e87", - "parentId": "66cbb779896120cfb1048093", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047fcf", + "Items": [ + { + "_id": "66cbb779896120cfb1047fcf", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fd1", + "_tpl": "66012788c752a02bbe05e68e", + "parentId": "66cbb779896120cfb1047fcf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00010", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10480a4", - "Items": [ - { - "_id": "66cbb779896120cfb10480a4", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00212", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480a6", - "_tpl": "5d1b39a386f774252339976f", - "parentId": "66cbb779896120cfb10480a4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00241", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10480a8", - "Items": [ - { - "_id": "66cbb779896120cfb10480a8", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480aa", - "_tpl": "5b4326435acfc433000ed01d", - "parentId": "66cbb779896120cfb10480a8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047fd3", + "Items": [ + { + "_id": "66cbb779896120cfb1047fd3", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10480ac", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb779896120cfb10480a8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1047fd5", + "_tpl": "5aa2a7e8e5b5b00016327c16", + "parentId": "66cbb779896120cfb1047fd3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10480ae", - "_tpl": "5ab8ee7786f7742d8f33f0b9", - "parentId": "66cbb779896120cfb10480a8", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047fd7", + "_tpl": "619256e5f8af2c1a4e1f5d92", + "parentId": "66cbb779896120cfb1047fd3", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fd9", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbb779896120cfb1047fd3", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00091", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10480b0", - "Items": [ - { - "_id": "66cbb779896120cfb10480b0", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00142", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480b2", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "66cbb779896120cfb10480b0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480b4", - "_tpl": "5a37cb10c4a282329a73b4e7", - "parentId": "66cbb779896120cfb10480b0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047fdb", + "Items": [ + { + "_id": "66cbb779896120cfb1047fdb", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10480b5", - "_tpl": "5c0e57ba86f7747fa141986d", - "parentId": "66cbb779896120cfb10480b0", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 1 + { + "_id": "66cbb779896120cfb1047fdd", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb779896120cfb1047fdb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb779896120cfb10480b6", - "_tpl": "65707fc348c7a887f2010432", - "parentId": "66cbb779896120cfb10480b5", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbb779896120cfb10480b7", - "_tpl": "6570800612755ae0d907acf8", - "parentId": "66cbb779896120cfb10480b5", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbb779896120cfb10480b8", - "_tpl": "65708070f65e2491bf00972c", - "parentId": "66cbb779896120cfb10480b5", - "slotId": "Soft_armor_left" - }, - { - "_id": "66cbb779896120cfb10480b9", - "_tpl": "657080a212755ae0d907ad04", - "parentId": "66cbb779896120cfb10480b5", - "slotId": "soft_armor_right" - }, - { - "_id": "66cbb779896120cfb10480ba", - "_tpl": "657080ca12755ae0d907ad5e", - "parentId": "66cbb779896120cfb10480b5", - "slotId": "Collar" - }, - { - "_id": "66cbb779896120cfb10480bb", - "_tpl": "65708122f65e2491bf009755", - "parentId": "66cbb779896120cfb10480b5", - "slotId": "Groin" - }, - { - "_id": "66cbb779896120cfb10480bc", - "_tpl": "65708165696fe382cf073255", - "parentId": "66cbb779896120cfb10480b5", - "slotId": "Groin_back" - }, - { - "_id": "66cbb779896120cfb10480bd", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "66cbb779896120cfb10480b5", - "slotId": "Front_plate" - }, - { - "_id": "66cbb779896120cfb10480be", - "_tpl": "657b22485f444d6dff0c6c2f", - "parentId": "66cbb779896120cfb10480b5", - "slotId": "Back_plate" - } - ] - }, - { - "Id": "container_woods_design_stuff_00115", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb10480c0", - "Items": [ - { - "_id": "66cbb779896120cfb10480c0", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00157", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480c2", - "_tpl": "590c31c586f774245e3141b2", - "parentId": "66cbb779896120cfb10480c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047fdf", + "Items": [ + { + "_id": "66cbb779896120cfb1047fdf", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fe1", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66cbb779896120cfb1047fdf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fe3", + "_tpl": "57347d7224597744596b4e72", + "parentId": "66cbb779896120cfb1047fdf", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047fe5", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbb779896120cfb1047fdf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fe7", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbb779896120cfb1047fdf", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fe9", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb779896120cfb1047fdf", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047feb", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb779896120cfb1047fdf", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fed", + "_tpl": "5734773724597737fd047c14", + "parentId": "66cbb779896120cfb1047fdf", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fef", + "_tpl": "60098b1705871270cd5352a1", + "parentId": "66cbb779896120cfb1047fdf", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480c4", - "_tpl": "59e35ef086f7741777737012", - "parentId": "66cbb779896120cfb10480c0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1047ff1", + "Items": [ + { + "_id": "66cbb779896120cfb1047ff1", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1047ff3", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb779896120cfb1047ff1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047ff5", + "_tpl": "590c595c86f7747884343ad7", + "parentId": "66cbb779896120cfb1047ff1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047ff7", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb779896120cfb1047ff1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047ff9", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb779896120cfb1047ff1", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047ffb", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb779896120cfb1047ff1", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00056", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480c6", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb779896120cfb10480c0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1047ffd", + "Items": [ + { + "_id": "66cbb779896120cfb1047ffd", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1047fff", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb779896120cfb1047ffd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048001", + "_tpl": "57347c2e24597744902c94a1", + "parentId": "66cbb779896120cfb1047ffd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048003", + "_tpl": "5734779624597737e04bf329", + "parentId": "66cbb779896120cfb1047ffd", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00101", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb10480c8", - "Items": [ - { - "_id": "66cbb779896120cfb10480c8", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00148", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480ca", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb779896120cfb10480c8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048005", + "Items": [ + { + "_id": "66cbb779896120cfb1048005", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048007", + "_tpl": "5cbdc23eae9215001136a407", + "parentId": "66cbb779896120cfb1048005", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048009", + "_tpl": "6415d33eda439c6a97048b5b", + "parentId": "66cbb779896120cfb1048005", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00082", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480cc", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb779896120cfb10480c8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104800b", + "Items": [ + { + "_id": "66cbb779896120cfb104800b", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb104800d", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "66cbb779896120cfb104800b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104800f", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb779896120cfb104800b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00048", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480ce", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb779896120cfb10480c8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048011", + "Items": [ + { + "_id": "66cbb779896120cfb1048011", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048013", + "_tpl": "59e770f986f7742cbe3164ef", + "parentId": "66cbb779896120cfb1048011", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00068", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480d0", - "_tpl": "590c595c86f7747884343ad7", - "parentId": "66cbb779896120cfb10480c8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00145", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10480d2", - "Items": [ - { - "_id": "66cbb779896120cfb10480d2", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480d4", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb779896120cfb10480d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048015", + "Items": [ + { + "_id": "66cbb779896120cfb1048015", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10480d6", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb779896120cfb10480d2", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048017", + "_tpl": "5fd4c60f875c30179f5d04c2", + "parentId": "66cbb779896120cfb1048015", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048018", + "_tpl": "576a581d2459771e7b1bc4f1", + "parentId": "66cbb779896120cfb1048015", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbb779896120cfb1048019", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "66cbb779896120cfb1048018", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb104801b", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb779896120cfb1048019", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } + }, + { + "_id": "66cbb779896120cfb104801a", + "_tpl": "576a63cd2459771e796e0e11", + "parentId": "66cbb779896120cfb1048018", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb779896120cfb104801d", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb779896120cfb1048015", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104801f", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "66cbb779896120cfb1048015", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10480d8", - "Items": [ - { - "_id": "66cbb779896120cfb10480d8", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00277", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480da", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb779896120cfb10480d8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00213", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10480dc", - "Items": [ - { - "_id": "66cbb779896120cfb10480dc", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480de", - "_tpl": "6033fa48ffd42c541047f728", - "parentId": "66cbb779896120cfb10480dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048021", + "Items": [ + { + "_id": "66cbb779896120cfb1048021", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048023", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbb779896120cfb1048021", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00143", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480e0", - "_tpl": "5d40419286f774318526545f", - "parentId": "66cbb779896120cfb10480dc", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480e2", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb779896120cfb10480dc", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048025", + "Items": [ + { + "_id": "66cbb779896120cfb1048025", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10480e4", - "_tpl": "5aa2b9aee5b5b00015693121", - "parentId": "66cbb779896120cfb10480dc", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048027", + "_tpl": "590c5bbd86f774785762df04", + "parentId": "66cbb779896120cfb1048025", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048029", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb779896120cfb1048025", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104802b", + "_tpl": "5c06779c86f77426e00dd782", + "parentId": "66cbb779896120cfb1048025", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00095", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10480e6", - "Items": [ - { - "_id": "66cbb779896120cfb10480e6", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00162", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480e8", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "66cbb779896120cfb10480e6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00136", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb10480ea", - "Items": [ - { - "_id": "66cbb779896120cfb10480ea", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00071", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10480ec", - "Items": [ - { - "_id": "66cbb779896120cfb10480ec", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480ee", - "_tpl": "5c12613b86f7743bbe2c3f76", - "parentId": "66cbb779896120cfb10480ec", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104802d", + "Items": [ + { + "_id": "66cbb779896120cfb104802d", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104802f", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb779896120cfb104802d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048031", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb779896120cfb104802d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00174", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10480f0", - "Items": [ - { - "_id": "66cbb779896120cfb10480f0", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00272", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480f2", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb779896120cfb10480f0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480f4", - "_tpl": "590c5bbd86f774785762df04", - "parentId": "66cbb779896120cfb10480f0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048033", + "Items": [ + { + "_id": "66cbb779896120cfb1048033", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10480f6", - "_tpl": "590c2b4386f77425357b6123", - "parentId": "66cbb779896120cfb10480f0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048035", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb779896120cfb1048033", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00021", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb10480f8", - "Items": [ - { - "_id": "66cbb779896120cfb10480f8", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00267", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480fa", - "_tpl": "590c346786f77423e50ed342", - "parentId": "66cbb779896120cfb10480f8", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10480fc", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb779896120cfb10480f8", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048037", + "Items": [ + { + "_id": "66cbb779896120cfb1048037", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10480fe", - "_tpl": "5af0561e86f7745f5f3ad6ac", - "parentId": "66cbb779896120cfb10480f8", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb104803a", + "_tpl": "573728f324597765e5728561", + "parentId": "66cbb779896120cfb1048037", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104803b", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb779896120cfb104803a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb104803d", + "_tpl": "5c7951452e221644f31bfd5c", + "parentId": "66cbb779896120cfb1048037", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00209", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048100", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb779896120cfb10480f8", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104803f", + "Items": [ + { + "_id": "66cbb779896120cfb104803f", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048041", + "_tpl": "590c645c86f77412b01304d9", + "parentId": "66cbb779896120cfb104803f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048043", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbb779896120cfb104803f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00165", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048102", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb779896120cfb10480f8", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048045", + "Items": [ + { + "_id": "66cbb779896120cfb1048045", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048047", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb779896120cfb1048045", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048049", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb779896120cfb1048045", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00221", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048104", - "Items": [ - { - "_id": "66cbb779896120cfb1048104", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00227", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048106", - "_tpl": "5f994730c91ed922dd355de3", - "parentId": "66cbb779896120cfb1048104", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104804b", + "Items": [ + { + "_id": "66cbb779896120cfb104804b", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104804d", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbb779896120cfb104804b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104804f", + "_tpl": "59e770f986f7742cbe3164ef", + "parentId": "66cbb779896120cfb104804b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048051", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb779896120cfb104804b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00031", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048108", - "_tpl": "5f99418230835532b445e954", - "parentId": "66cbb779896120cfb1048104", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00004", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb104810a", - "Items": [ - { - "_id": "66cbb779896120cfb104810a", - "_tpl": "578f8782245977354405a1e3", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00184", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb104810c", - "Items": [ - { - "_id": "66cbb779896120cfb104810c", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00183", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb104810e", - "Items": [ - { - "_id": "66cbb779896120cfb104810e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00182", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1048110", - "Items": [ - { - "_id": "66cbb779896120cfb1048110", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00181", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1048112", - "Items": [ - { - "_id": "66cbb779896120cfb1048112", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048114", - "_tpl": "569668774bdc2da2298b4568", - "parentId": "66cbb779896120cfb1048112", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 51 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00121", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048116", - "Items": [ - { - "_id": "66cbb779896120cfb1048116", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048118", - "_tpl": "5b3a16655acfc40016387a2a", - "parentId": "66cbb779896120cfb1048116", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048053", + "Items": [ + { + "_id": "66cbb779896120cfb1048053", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104811a", - "_tpl": "5cadd954ae921500103bb3c2", - "parentId": "66cbb779896120cfb1048116", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1048055", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "66cbb779896120cfb1048053", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104811c", - "_tpl": "59d6272486f77466146386ff", - "parentId": "66cbb779896120cfb1048116", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1048057", + "_tpl": "5cf79389d7f00c10941a0c4d", + "parentId": "66cbb779896120cfb1048053", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048059", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "66cbb779896120cfb1048053", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00191", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104811e", - "_tpl": "5d2c76ed48f03532f2136169", - "parentId": "66cbb779896120cfb1048116", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048120", - "_tpl": "570fd79bd2720bc7458b4583", - "parentId": "66cbb779896120cfb1048116", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104805b", + "Items": [ + { + "_id": "66cbb779896120cfb104805b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104805d", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66cbb779896120cfb104805b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00052", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048122", - "Items": [ - { - "_id": "66cbb779896120cfb1048122", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00250", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048124", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "66cbb779896120cfb1048122", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048126", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "parentId": "66cbb779896120cfb1048122", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104805f", + "Items": [ + { + "_id": "66cbb779896120cfb104805f", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048128", - "_tpl": "5d1b3a5d86f774252167ba22", - "parentId": "66cbb779896120cfb1048122", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048061", + "_tpl": "5e023cf8186a883be655e54f", + "parentId": "66cbb779896120cfb104805f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 21 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00238", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104812a", - "Items": [ - { - "_id": "66cbb779896120cfb104812a", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00109", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104812e", - "_tpl": "66b6295a8ca68c6461709efa", - "parentId": "66cbb779896120cfb104812a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048063", + "Items": [ + { + "_id": "66cbb779896120cfb1048063", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048065", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb779896120cfb1048063", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048067", + "_tpl": "5d440b9fa4b93601354d480c", + "parentId": "66cbb779896120cfb1048063", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00189", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104812f", - "_tpl": "656fa53d94b480b8a500c0e4", - "parentId": "66cbb779896120cfb104812e", - "slotId": "Front_plate" - }, - { - "_id": "66cbb779896120cfb1048130", - "_tpl": "656fa53d94b480b8a500c0e4", - "parentId": "66cbb779896120cfb104812e", - "slotId": "Back_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048132", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb779896120cfb104812a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048069", + "Items": [ + { + "_id": "66cbb779896120cfb1048069", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104806b", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "66cbb779896120cfb1048069", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104806d", + "_tpl": "6217726288ed9f0845317459", + "parentId": "66cbb779896120cfb1048069", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00051", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048134", - "Items": [ - { - "_id": "66cbb779896120cfb1048134", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048136", - "_tpl": "609a63b6e2ff132951242d09", - "parentId": "66cbb779896120cfb1048134", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048138", - "_tpl": "5f60c85b58eff926626a60f7", - "parentId": "66cbb779896120cfb1048134", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb104806f", + "Items": [ + { + "_id": "66cbb779896120cfb104806f", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048071", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb779896120cfb104806f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048073", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb779896120cfb104806f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048075", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb779896120cfb104806f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048077", + "_tpl": "56742c2e4bdc2d95058b456d", + "parentId": "66cbb779896120cfb104806f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048079", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb779896120cfb104806f", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104807b", + "_tpl": "590c639286f774151567fa95", + "parentId": "66cbb779896120cfb104806f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00102", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb104813a", - "Items": [ - { - "_id": "66cbb779896120cfb104813a", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00036", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104813c", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb779896120cfb104813a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00236", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104813e", - "Items": [ - { - "_id": "66cbb779896120cfb104813e", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048140", - "_tpl": "5d6fc87386f77449db3db94e", - "parentId": "66cbb779896120cfb104813e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb104807d", + "Items": [ + { + "_id": "66cbb779896120cfb104807d", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048142", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb779896120cfb104813e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb104807f", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb779896120cfb104807d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048143", - "_tpl": "5648a7494bdc2d9d488b4583", - "parentId": "66cbb779896120cfb104813e", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1048081", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbb779896120cfb104807d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048083", + "_tpl": "60098b1705871270cd5352a1", + "parentId": "66cbb779896120cfb104807d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048085", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbb779896120cfb104807d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00263", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048144", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "66cbb779896120cfb1048143", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbb779896120cfb1048145", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "66cbb779896120cfb1048143", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbb779896120cfb1048146", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "66cbb779896120cfb1048143", - "slotId": "Soft_armor_left" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048147", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "66cbb779896120cfb1048143", - "slotId": "soft_armor_right" - } - ] - }, - { - "Id": "container_woods_design_stuff_00245", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048149", - "Items": [ - { - "_id": "66cbb779896120cfb1048149", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104814b", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbb779896120cfb1048149", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048087", + "Items": [ + { + "_id": "66cbb779896120cfb1048087", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104814d", - "_tpl": "5d1b309586f77425227d1676", - "parentId": "66cbb779896120cfb1048149", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00098", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104814f", - "Items": [ - { - "_id": "66cbb779896120cfb104814f", - "_tpl": "5909d36d86f774660f0bb900", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048151", - "_tpl": "617aa4dd8166f034d57de9c5", - "parentId": "66cbb779896120cfb104814f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1048089", + "_tpl": "5e32f56fcb6d5863cc5e5ee4", + "parentId": "66cbb779896120cfb1048087", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048153", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb779896120cfb104814f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb104808b", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbb779896120cfb1048087", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048155", - "_tpl": "5a2a57cfc4a2826c6e06d44a", - "parentId": "66cbb779896120cfb104814f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb104808d", + "_tpl": "5e2af51086f7746d3f3c3402", + "parentId": "66cbb779896120cfb1048087", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00111", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1048157", - "Items": [ - { - "_id": "66cbb779896120cfb1048157", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00146", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048159", - "_tpl": "6567e7681265c8a131069b0f", - "parentId": "66cbb779896120cfb1048157", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104815b", - "_tpl": "5c1bc4812e22164bef5cfde7", - "parentId": "66cbb779896120cfb1048157", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104808f", + "Items": [ + { + "_id": "66cbb779896120cfb104808f", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048091", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66cbb779896120cfb104808f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00208", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104815d", - "Items": [ - { - "_id": "66cbb779896120cfb104815d", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00216", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104815f", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb779896120cfb104815d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048161", - "_tpl": "590a358486f77429692b2790", - "parentId": "66cbb779896120cfb104815d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048093", + "Items": [ + { + "_id": "66cbb779896120cfb1048093", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048162", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "66cbb779896120cfb104815d", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 1 - } - }, - { - "_id": "66cbb779896120cfb1048163", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "66cbb779896120cfb1048162", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb779896120cfb1048164", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "66cbb779896120cfb1048162", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb779896120cfb1048165", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "66cbb779896120cfb1048164", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb779896120cfb1048166", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "66cbb779896120cfb1048164", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb779896120cfb1048167", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "66cbb779896120cfb1048162", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb779896120cfb1048168", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb779896120cfb1048167", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16.0 - } - }, - { - "_id": "66cbb779896120cfb1048169", - "_tpl": "5a7ae0c351dfba0017554310", - "parentId": "66cbb779896120cfb104815d", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1048095", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb779896120cfb1048093", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048097", + "_tpl": "57347d9c245977448b40fa85", + "parentId": "66cbb779896120cfb1048093", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048098", + "_tpl": "62e14904c2699c0ec93adc47", + "parentId": "66cbb779896120cfb1048093", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 1 + }, + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb779896120cfb1048099", + "_tpl": "633a98eab8b0506e48497c1a", + "parentId": "66cbb779896120cfb1048098", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb10480a0", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbb779896120cfb1048099", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } + }, + { + "_id": "66cbb779896120cfb104809a", + "_tpl": "62e2a754b6c0ee2f230cee0f", + "parentId": "66cbb779896120cfb1048098", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb779896120cfb104809b", + "_tpl": "62e292e7b6c0ee2f230cee00", + "parentId": "66cbb779896120cfb1048098", + "slotId": "mod_stock" + }, + { + "_id": "66cbb779896120cfb104809c", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "66cbb779896120cfb1048098", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb779896120cfb104809d", + "_tpl": "62e15547db1a5c41971c1b5e", + "parentId": "66cbb779896120cfb1048098", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb779896120cfb104809e", + "_tpl": "62ed189fb3608410ef5a2bfc", + "parentId": "66cbb779896120cfb104809d", + "slotId": "mod_mount_001" + }, + { + "_id": "66cbb779896120cfb104809f", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "parentId": "66cbb779896120cfb1048098", + "slotId": "mod_pistolgrip" + }, + { + "_id": "66cbb779896120cfb10480a2", + "_tpl": "5ac4c50d5acfc40019262e87", + "parentId": "66cbb779896120cfb1048093", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00010", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104816a", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "66cbb779896120cfb1048169", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb779896120cfb104816b", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "66cbb779896120cfb1048169", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb779896120cfb104816c", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "66cbb779896120cfb104816b", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb779896120cfb104816d", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "66cbb779896120cfb104816b", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb779896120cfb104816e", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "66cbb779896120cfb1048169", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb779896120cfb104816f", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb779896120cfb104816e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048171", - "_tpl": "575146b724597720a27126d5", - "parentId": "66cbb779896120cfb104815d", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10480a4", + "Items": [ + { + "_id": "66cbb779896120cfb10480a4", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480a6", + "_tpl": "5d1b39a386f774252339976f", + "parentId": "66cbb779896120cfb10480a4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00150", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048173", - "Items": [ - { - "_id": "66cbb779896120cfb1048173", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00241", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048175", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb779896120cfb1048173", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048177", - "_tpl": "5d02797c86f774203f38e30a", - "parentId": "66cbb779896120cfb1048173", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10480a8", + "Items": [ + { + "_id": "66cbb779896120cfb10480a8", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048179", - "_tpl": "590a3b0486f7743954552bdb", - "parentId": "66cbb779896120cfb1048173", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10480aa", + "_tpl": "5b4326435acfc433000ed01d", + "parentId": "66cbb779896120cfb10480a8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480ac", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb779896120cfb10480a8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480ae", + "_tpl": "5ab8ee7786f7742d8f33f0b9", + "parentId": "66cbb779896120cfb10480a8", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00092", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104817b", - "Items": [ - { - "_id": "66cbb779896120cfb104817b", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00091", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104817d", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb779896120cfb104817b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 37 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104817f", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbb779896120cfb104817b", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10480b0", + "Items": [ + { + "_id": "66cbb779896120cfb10480b0", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 33 - } - }, - { - "_id": "66cbb779896120cfb1048181", - "_tpl": "5bae13ded4351e44f824bf38", - "parentId": "66cbb779896120cfb104817b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb10480b2", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "66cbb779896120cfb10480b0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048183", - "_tpl": "57ffa9f4245977728561e844", - "parentId": "66cbb779896120cfb104817b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb10480b4", + "_tpl": "5a37cb10c4a282329a73b4e7", + "parentId": "66cbb779896120cfb10480b0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048185", - "_tpl": "6269220d70b6c02e665f2635", - "parentId": "66cbb779896120cfb104817b", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb10480b5", + "_tpl": "5c0e57ba86f7747fa141986d", + "parentId": "66cbb779896120cfb10480b0", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048187", - "_tpl": "615d8f5dd92c473c770212ef", - "parentId": "66cbb779896120cfb104817b", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb10480b6", + "_tpl": "65707fc348c7a887f2010432", + "parentId": "66cbb779896120cfb10480b5", + "slotId": "Soft_armor_front" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048189", - "_tpl": "628120fd5631d45211793c9f", - "parentId": "66cbb779896120cfb104817b", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb10480b7", + "_tpl": "6570800612755ae0d907acf8", + "parentId": "66cbb779896120cfb10480b5", + "slotId": "Soft_armor_back" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104818b", - "_tpl": "55d6190f4bdc2d87028b4567", - "parentId": "66cbb779896120cfb104817b", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10480b8", + "_tpl": "65708070f65e2491bf00972c", + "parentId": "66cbb779896120cfb10480b5", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbb779896120cfb10480b9", + "_tpl": "657080a212755ae0d907ad04", + "parentId": "66cbb779896120cfb10480b5", + "slotId": "soft_armor_right" + }, + { + "_id": "66cbb779896120cfb10480ba", + "_tpl": "657080ca12755ae0d907ad5e", + "parentId": "66cbb779896120cfb10480b5", + "slotId": "Collar" + }, + { + "_id": "66cbb779896120cfb10480bb", + "_tpl": "65708122f65e2491bf009755", + "parentId": "66cbb779896120cfb10480b5", + "slotId": "Groin" + }, + { + "_id": "66cbb779896120cfb10480bc", + "_tpl": "65708165696fe382cf073255", + "parentId": "66cbb779896120cfb10480b5", + "slotId": "Groin_back" + }, + { + "_id": "66cbb779896120cfb10480bd", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "66cbb779896120cfb10480b5", + "slotId": "Front_plate" + }, + { + "_id": "66cbb779896120cfb10480be", + "_tpl": "657b22485f444d6dff0c6c2f", + "parentId": "66cbb779896120cfb10480b5", + "slotId": "Back_plate" } - } - ] - }, - { - "Id": "container_woods_design_stuff_00124", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104818d", - "Items": [ - { - "_id": "66cbb779896120cfb104818d", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00115", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104818f", - "_tpl": "61bf7b6302b3924be92fa8c3", - "parentId": "66cbb779896120cfb104818d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00225", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048191", - "Items": [ - { - "_id": "66cbb779896120cfb1048191", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048193", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb779896120cfb1048191", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb10480c0", + "Items": [ + { + "_id": "66cbb779896120cfb10480c0", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480c2", + "_tpl": "590c31c586f774245e3141b2", + "parentId": "66cbb779896120cfb10480c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480c4", + "_tpl": "59e35ef086f7741777737012", + "parentId": "66cbb779896120cfb10480c0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10480c6", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb779896120cfb10480c0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00101", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048194", - "_tpl": "5ac66d015acfc400180ae6e4", - "parentId": "66cbb779896120cfb1048191", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048195", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "66cbb779896120cfb1048194", - "slotId": "mod_gas_block" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb10480c8", + "Items": [ + { + "_id": "66cbb779896120cfb10480c8", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480ca", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb779896120cfb10480c8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480cc", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb779896120cfb10480c8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480ce", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb779896120cfb10480c8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480d0", + "_tpl": "590c595c86f7747884343ad7", + "parentId": "66cbb779896120cfb10480c8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_woods_design_stuff_00145", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048196", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb779896120cfb1048195", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048197", - "_tpl": "5ac72e725acfc400180ae701", - "parentId": "66cbb779896120cfb1048194", - "slotId": "mod_muzzle" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10480d2", + "Items": [ + { + "_id": "66cbb779896120cfb10480d2", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480d4", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb779896120cfb10480d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480d6", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb779896120cfb10480d2", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "Lootable_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048198", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "66cbb779896120cfb1048194", - "slotId": "mod_pistol_grip" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048199", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "66cbb779896120cfb1048194", - "slotId": "mod_reciever" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10480d8", + "Items": [ + { + "_id": "66cbb779896120cfb10480d8", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480da", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb779896120cfb10480d8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_woods_design_stuff_00213", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104819a", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "66cbb779896120cfb1048194", - "slotId": "mod_sight_rear" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104819b", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "66cbb779896120cfb1048194", - "slotId": "mod_stock" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10480dc", + "Items": [ + { + "_id": "66cbb779896120cfb10480dc", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480de", + "_tpl": "6033fa48ffd42c541047f728", + "parentId": "66cbb779896120cfb10480dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480e0", + "_tpl": "5d40419286f774318526545f", + "parentId": "66cbb779896120cfb10480dc", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480e2", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb779896120cfb10480dc", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480e4", + "_tpl": "5aa2b9aee5b5b00015693121", + "parentId": "66cbb779896120cfb10480dc", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_woods_design_stuff_00095", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104819c", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "66cbb779896120cfb1048194", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104819d", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb779896120cfb104819c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10480e6", + "Items": [ + { + "_id": "66cbb779896120cfb10480e6", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480e8", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "66cbb779896120cfb10480e6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00204", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104819f", - "Items": [ - { - "_id": "66cbb779896120cfb104819f", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00136", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481a0", - "_tpl": "5df8a58286f77412631087ed", - "parentId": "66cbb779896120cfb104819f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb10480ea", + "Items": [ + { + "_id": "66cbb779896120cfb10480ea", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00071", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481a1", - "_tpl": "657ba096e57570b7f80a17fb", - "parentId": "66cbb779896120cfb10481a0", - "slotId": "Helmet_top" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481a2", - "_tpl": "657ba145e57570b7f80a17ff", - "parentId": "66cbb779896120cfb10481a0", - "slotId": "Helmet_back" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10480ec", + "Items": [ + { + "_id": "66cbb779896120cfb10480ec", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480ee", + "_tpl": "5c12613b86f7743bbe2c3f76", + "parentId": "66cbb779896120cfb10480ec", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_woods_design_stuff_00174", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481a3", - "_tpl": "657ba18923918923cb0df568", - "parentId": "66cbb779896120cfb10481a0", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481a5", - "_tpl": "628a6678ccaab13006640e49", - "parentId": "66cbb779896120cfb104819f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10480f0", + "Items": [ + { + "_id": "66cbb779896120cfb10480f0", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480f2", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb779896120cfb10480f0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480f4", + "_tpl": "590c5bbd86f774785762df04", + "parentId": "66cbb779896120cfb10480f0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10480f6", + "_tpl": "590c2b4386f77425357b6123", + "parentId": "66cbb779896120cfb10480f0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00021", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481a7", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb779896120cfb104819f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 56 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb10480f8", + "Items": [ + { + "_id": "66cbb779896120cfb10480f8", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480fa", + "_tpl": "590c346786f77423e50ed342", + "parentId": "66cbb779896120cfb10480f8", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480fc", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb779896120cfb10480f8", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10480fe", + "_tpl": "5af0561e86f7745f5f3ad6ac", + "parentId": "66cbb779896120cfb10480f8", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048100", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb779896120cfb10480f8", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048102", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb779896120cfb10480f8", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00024", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10481a9", - "Items": [ - { - "_id": "66cbb779896120cfb10481a9", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00221", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481ab", - "_tpl": "5947f92f86f77427344a76b1", - "parentId": "66cbb779896120cfb10481a9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048104", + "Items": [ + { + "_id": "66cbb779896120cfb1048104", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048106", + "_tpl": "5f994730c91ed922dd355de3", + "parentId": "66cbb779896120cfb1048104", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048108", + "_tpl": "5f99418230835532b445e954", + "parentId": "66cbb779896120cfb1048104", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00004", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481ad", - "_tpl": "59c0ec5b86f77435b128bfca", - "parentId": "66cbb779896120cfb10481a9", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb104810a", + "Items": [ + { + "_id": "66cbb779896120cfb104810a", + "_tpl": "578f8782245977354405a1e3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00035", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10481af", - "Items": [ - { - "_id": "66cbb779896120cfb10481af", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00184", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481b1", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb779896120cfb10481af", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481b3", - "_tpl": "57347c77245977448d35f6e2", - "parentId": "66cbb779896120cfb10481af", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb104810c", + "Items": [ + { + "_id": "66cbb779896120cfb104810c", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00261", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10481b5", - "Items": [ - { - "_id": "66cbb779896120cfb10481b5", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00183", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481b7", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb779896120cfb10481b5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481b9", - "_tpl": "5bc9be8fd4351e00334cae6e", - "parentId": "66cbb779896120cfb10481b5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb104810e", + "Items": [ + { + "_id": "66cbb779896120cfb104810e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00001", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10481bb", - "Items": [ - { - "_id": "66cbb779896120cfb10481bb", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00182", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481bd", - "_tpl": "5b432b2f5acfc4771e1c6622", - "parentId": "66cbb779896120cfb10481bb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00251", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10481bf", - "Items": [ - { - "_id": "66cbb779896120cfb10481bf", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481c1", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb779896120cfb10481bf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1048110", + "Items": [ + { + "_id": "66cbb779896120cfb1048110", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00280", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10481c3", - "Items": [ - { - "_id": "66cbb779896120cfb10481c3", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10481c4", - "_tpl": "59984ab886f7743e98271174", - "parentId": "66cbb779896120cfb10481c3", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb779896120cfb10481c5", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb779896120cfb10481c4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb779896120cfb10481c6", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb779896120cfb10481c4", - "slotId": "mod_stock" + { + "Id": "container_woods_design_stuff_00181", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481c7", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "66cbb779896120cfb10481c4", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481cd", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb779896120cfb10481c7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 11.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1048112", + "Items": [ + { + "_id": "66cbb779896120cfb1048112", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048114", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "66cbb779896120cfb1048112", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 51 + } } - }, - { - "_id": "66cbb779896120cfb10481c8", - "_tpl": "5998597786f77414ea6da093", - "parentId": "66cbb779896120cfb10481c4", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb779896120cfb10481c9", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb779896120cfb10481c4", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb779896120cfb10481ca", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb779896120cfb10481c4", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb779896120cfb10481cb", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb779896120cfb10481c4", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb779896120cfb10481cc", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb779896120cfb10481cb", - "slotId": "mod_handguard" - } - ] - }, - { - "Id": "Lootable_00063", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10481cf", - "Items": [ - { - "_id": "66cbb779896120cfb10481cf", - "_tpl": "5d07b91b86f7745a077a9432", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00121", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481d1", - "_tpl": "5a37cb10c4a282329a73b4e7", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481d3", - "_tpl": "590c37d286f77443be3d7827", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048116", + "Items": [ + { + "_id": "66cbb779896120cfb1048116", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10481d5", - "_tpl": "617151c1d92c473c770214ab", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1048118", + "_tpl": "5b3a16655acfc40016387a2a", + "parentId": "66cbb779896120cfb1048116", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10481d7", - "_tpl": "5d6e68a8a4b9360b6c0d54e2", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb104811a", + "_tpl": "5cadd954ae921500103bb3c2", + "parentId": "66cbb779896120cfb1048116", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10481d9", - "_tpl": "618ba27d9008e4636a67f61d", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb104811c", + "_tpl": "59d6272486f77466146386ff", + "parentId": "66cbb779896120cfb1048116", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10481db", - "_tpl": "5b2388675acfc4771e1be0be", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb104811e", + "_tpl": "5d2c76ed48f03532f2136169", + "parentId": "66cbb779896120cfb1048116", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10481dc", - "_tpl": "5abccb7dd8ce87001773e277", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbb779896120cfb1048120", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "66cbb779896120cfb1048116", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00052", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481dd", - "_tpl": "5a17fb03fcdbcbcae668728f", - "parentId": "66cbb779896120cfb10481dc", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481e3", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb779896120cfb10481dd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048122", + "Items": [ + { + "_id": "66cbb779896120cfb1048122", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048124", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "66cbb779896120cfb1048122", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048126", + "_tpl": "59faf7ca86f7740dbe19f6c2", + "parentId": "66cbb779896120cfb1048122", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048128", + "_tpl": "5d1b3a5d86f774252167ba22", + "parentId": "66cbb779896120cfb1048122", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00238", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481de", - "_tpl": "5a17fb9dfcdbcbcae6687291", - "parentId": "66cbb779896120cfb10481dc", - "slotId": "mod_stock" - }, - { - "_id": "66cbb779896120cfb10481df", - "_tpl": "5a17fc70fcdbcb0176308b3d", - "parentId": "66cbb779896120cfb10481dc", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb779896120cfb10481e0", - "_tpl": "5aba62f8d8ce87001943946b", - "parentId": "66cbb779896120cfb10481dc", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb779896120cfb10481e1", - "_tpl": "5aba639ed8ce8700182ece67", - "parentId": "66cbb779896120cfb10481dc", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb779896120cfb10481e2", - "_tpl": "5abcc328d8ce8700194394f3", - "parentId": "66cbb779896120cfb10481dc", - "slotId": "mod_muzzle" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481e5", - "_tpl": "5b3b6e495acfc4330140bd88", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 4, - "y": 2, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104812a", + "Items": [ + { + "_id": "66cbb779896120cfb104812a", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10481e7", - "_tpl": "544a3a774bdc2d3a388b4567", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 0, - "y": 3, - "r": 0 + { + "_id": "66cbb779896120cfb104812e", + "_tpl": "66b6295a8ca68c6461709efa", + "parentId": "66cbb779896120cfb104812a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10481e9", - "_tpl": "5e023d34e8a400319a28ed44", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 2, - "y": 3, - "r": 0 + { + "_id": "66cbb779896120cfb104812f", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "66cbb779896120cfb104812e", + "slotId": "Front_plate" }, - "upd": { - "StackObjectsCount": 19 - } - }, - { - "_id": "66cbb779896120cfb10481ec", - "_tpl": "5c11279ad174af029d64592b", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 3, - "y": 3, - "r": 0 + { + "_id": "66cbb779896120cfb1048130", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "66cbb779896120cfb104812e", + "slotId": "Back_plate" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048132", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb779896120cfb104812a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00051", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481ed", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb779896120cfb10481ec", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481ef", - "_tpl": "5696686a4bdc2da3298b456a", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 0, - "y": 4, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048134", + "Items": [ + { + "_id": "66cbb779896120cfb1048134", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 54 - } - }, - { - "_id": "66cbb779896120cfb10481f1", - "_tpl": "591afe0186f77431bd616a11", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 1, - "y": 4, - "r": 0 + { + "_id": "66cbb779896120cfb1048136", + "_tpl": "609a63b6e2ff132951242d09", + "parentId": "66cbb779896120cfb1048134", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10481f3", - "_tpl": "5c0d688c86f77413ae3407b2", - "parentId": "66cbb779896120cfb10481cf", - "slotId": "main", - "location": { - "x": 2, - "y": 4, - "r": 0 - }, - "upd": { - "StackObjectsCount": 20 + { + "_id": "66cbb779896120cfb1048138", + "_tpl": "5f60c85b58eff926626a60f7", + "parentId": "66cbb779896120cfb1048134", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00076", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10481f5", - "Items": [ - { - "_id": "66cbb779896120cfb10481f5", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00102", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481f7", - "_tpl": "584924ec24597768f12ae244", - "parentId": "66cbb779896120cfb10481f5", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481f9", - "_tpl": "57c9a89124597704ee6faec1", - "parentId": "66cbb779896120cfb10481f5", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb104813a", + "Items": [ + { + "_id": "66cbb779896120cfb104813a", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb10481fb", - "_tpl": "57fd23e32459772d0805bcf1", - "parentId": "66cbb779896120cfb10481f5", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb104813c", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb779896120cfb104813a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00072", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb10481fd", - "Items": [ - { - "_id": "66cbb779896120cfb10481fd", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00236", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb10481ff", - "_tpl": "656df4fec921ad01000481a2", - "parentId": "66cbb779896120cfb10481fd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048201", - "_tpl": "62a0a098de7ac8199358053b", - "parentId": "66cbb779896120cfb10481fd", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00018", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1048203", - "Items": [ - { - "_id": "66cbb779896120cfb1048203", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00230", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048205", - "Items": [ - { - "_id": "66cbb779896120cfb1048205", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048207", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb779896120cfb1048205", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104813e", + "Items": [ + { + "_id": "66cbb779896120cfb104813e", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048209", - "_tpl": "57347c5b245977448d35f6e1", - "parentId": "66cbb779896120cfb1048205", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1048140", + "_tpl": "5d6fc87386f77449db3db94e", + "parentId": "66cbb779896120cfb104813e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104820b", - "_tpl": "56e33680d2720be2748b4576", - "parentId": "66cbb779896120cfb1048205", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1048142", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb779896120cfb104813e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104820d", - "_tpl": "59e36c6f86f774176c10a2a7", - "parentId": "66cbb779896120cfb1048205", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1048143", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "66cbb779896120cfb104813e", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104820f", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb779896120cfb1048205", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048144", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "66cbb779896120cfb1048143", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbb779896120cfb1048145", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "66cbb779896120cfb1048143", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbb779896120cfb1048146", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "66cbb779896120cfb1048143", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbb779896120cfb1048147", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "66cbb779896120cfb1048143", + "slotId": "soft_armor_right" } - } - ] - }, - { - "Id": "container_woods_design_stuff_00026", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048211", - "Items": [ - { - "_id": "66cbb779896120cfb1048211", - "_tpl": "5909d24f86f77466f56e6855", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00245", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048213", - "_tpl": "590c661e86f7741e566b646a", - "parentId": "66cbb779896120cfb1048211", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048215", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb779896120cfb1048211", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048149", + "Items": [ + { + "_id": "66cbb779896120cfb1048149", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048217", - "_tpl": "619cc01e0a7c3a1a2731940c", - "parentId": "66cbb779896120cfb1048211", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb104814b", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbb779896120cfb1048149", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104814d", + "_tpl": "5d1b309586f77425227d1676", + "parentId": "66cbb779896120cfb1048149", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00016", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048219", - "Items": [ - { - "_id": "66cbb779896120cfb1048219", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00098", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104821b", - "_tpl": "57513fcc24597720a31c09a6", - "parentId": "66cbb779896120cfb1048219", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104821d", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb779896120cfb1048219", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104814f", + "Items": [ + { + "_id": "66cbb779896120cfb104814f", + "_tpl": "5909d36d86f774660f0bb900", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048151", + "_tpl": "617aa4dd8166f034d57de9c5", + "parentId": "66cbb779896120cfb104814f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048153", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb779896120cfb104814f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048155", + "_tpl": "5a2a57cfc4a2826c6e06d44a", + "parentId": "66cbb779896120cfb104814f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00195", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104821f", - "Items": [ - { - "_id": "66cbb779896120cfb104821f", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00111", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048221", - "_tpl": "58272d7f2459774f6311ddfd", - "parentId": "66cbb779896120cfb104821f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048223", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "66cbb779896120cfb104821f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1048157", + "Items": [ + { + "_id": "66cbb779896120cfb1048157", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048225", - "_tpl": "5947db3f86f77447880cf76f", - "parentId": "66cbb779896120cfb104821f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048159", + "_tpl": "6567e7681265c8a131069b0f", + "parentId": "66cbb779896120cfb1048157", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104815b", + "_tpl": "5c1bc4812e22164bef5cfde7", + "parentId": "66cbb779896120cfb1048157", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00158", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb779896120cfb1048227", - "Items": [ - { - "_id": "66cbb779896120cfb1048227", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00208", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048229", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb779896120cfb1048227", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104822b", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb779896120cfb1048227", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104815d", + "Items": [ + { + "_id": "66cbb779896120cfb104815d", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb104822d", - "_tpl": "590c5c9f86f77477c91c36e7", - "parentId": "66cbb779896120cfb1048227", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb104815f", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb779896120cfb104815d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048161", + "_tpl": "590a358486f77429692b2790", + "parentId": "66cbb779896120cfb104815d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048162", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "66cbb779896120cfb104815d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbb779896120cfb1048163", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "66cbb779896120cfb1048162", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb779896120cfb1048164", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "66cbb779896120cfb1048162", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb779896120cfb1048165", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "66cbb779896120cfb1048164", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb779896120cfb1048166", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "66cbb779896120cfb1048164", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb779896120cfb1048167", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "66cbb779896120cfb1048162", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb1048168", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb779896120cfb1048167", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16.0 + } + }, + { + "_id": "66cbb779896120cfb1048169", + "_tpl": "5a7ae0c351dfba0017554310", + "parentId": "66cbb779896120cfb104815d", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb779896120cfb104816a", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "66cbb779896120cfb1048169", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb779896120cfb104816b", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "66cbb779896120cfb1048169", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb779896120cfb104816c", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "66cbb779896120cfb104816b", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb779896120cfb104816d", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "66cbb779896120cfb104816b", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb779896120cfb104816e", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "66cbb779896120cfb1048169", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb104816f", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb779896120cfb104816e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbb779896120cfb1048171", + "_tpl": "575146b724597720a27126d5", + "parentId": "66cbb779896120cfb104815d", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00220", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104822f", - "Items": [ - { - "_id": "66cbb779896120cfb104822f", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00150", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048231", - "_tpl": "59e35cbb86f7741778269d83", - "parentId": "66cbb779896120cfb104822f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048233", - "_tpl": "590a3c0a86f774385a33c450", - "parentId": "66cbb779896120cfb104822f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048173", + "Items": [ + { + "_id": "66cbb779896120cfb1048173", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048235", - "_tpl": "544fb3364bdc2d34748b456a", - "parentId": "66cbb779896120cfb104822f", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1048175", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb779896120cfb1048173", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048237", - "_tpl": "5449016a4bdc2d6f028b456f", - "parentId": "66cbb779896120cfb104822f", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1048177", + "_tpl": "5d02797c86f774203f38e30a", + "parentId": "66cbb779896120cfb1048173", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1072 - } - }, - { - "_id": "66cbb779896120cfb1048239", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66cbb779896120cfb104822f", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048179", + "_tpl": "590a3b0486f7743954552bdb", + "parentId": "66cbb779896120cfb1048173", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00211", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104823b", - "Items": [ - { - "_id": "66cbb779896120cfb104823b", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00092", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104823d", - "_tpl": "5c06782b86f77426df5407d2", - "parentId": "66cbb779896120cfb104823b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00133", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104823f", - "Items": [ - { - "_id": "66cbb779896120cfb104823f", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048241", - "_tpl": "60363c0c92ec1c31037959f5", - "parentId": "66cbb779896120cfb104823f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104817b", + "Items": [ + { + "_id": "66cbb779896120cfb104817b", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048243", - "_tpl": "56ea7293d2720b8d4b8b45ba", - "parentId": "66cbb779896120cfb104823f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00175", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048245", - "Items": [ - { - "_id": "66cbb779896120cfb1048245", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048247", - "_tpl": "5733279d245977289b77ec24", - "parentId": "66cbb779896120cfb1048245", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb104817d", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb779896120cfb104817b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 37 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048249", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbb779896120cfb1048245", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb104817f", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbb779896120cfb104817b", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 33 + } + }, + { + "_id": "66cbb779896120cfb1048181", + "_tpl": "5bae13ded4351e44f824bf38", + "parentId": "66cbb779896120cfb104817b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048183", + "_tpl": "57ffa9f4245977728561e844", + "parentId": "66cbb779896120cfb104817b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048185", + "_tpl": "6269220d70b6c02e665f2635", + "parentId": "66cbb779896120cfb104817b", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048187", + "_tpl": "615d8f5dd92c473c770212ef", + "parentId": "66cbb779896120cfb104817b", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048189", + "_tpl": "628120fd5631d45211793c9f", + "parentId": "66cbb779896120cfb104817b", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104818b", + "_tpl": "55d6190f4bdc2d87028b4567", + "parentId": "66cbb779896120cfb104817b", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00073", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104824b", - "Items": [ - { - "_id": "66cbb779896120cfb104824b", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00124", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104824d", - "_tpl": "660ea4453786cc0af808a1be", - "parentId": "66cbb779896120cfb104824b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104824f", - "_tpl": "5addcce35acfc4001a5fc635", - "parentId": "66cbb779896120cfb104824b", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104818d", + "Items": [ + { + "_id": "66cbb779896120cfb104818d", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb104818f", + "_tpl": "61bf7b6302b3924be92fa8c3", + "parentId": "66cbb779896120cfb104818d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00225", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048251", - "_tpl": "5aa2a7e8e5b5b00016327c16", - "parentId": "66cbb779896120cfb104824b", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048253", - "_tpl": "62850c28da09541f43158cca", - "parentId": "66cbb779896120cfb104824b", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048191", + "Items": [ + { + "_id": "66cbb779896120cfb1048191", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048255", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb779896120cfb104824b", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbb779896120cfb1048193", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb779896120cfb1048191", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048257", - "_tpl": "5d2dc3e548f035404a1a4798", - "parentId": "66cbb779896120cfb104824b", - "slotId": "main", - "location": { - "x": 1, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048194", + "_tpl": "5ac66d015acfc400180ae6e4", + "parentId": "66cbb779896120cfb1048191", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbb779896120cfb1048195", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "66cbb779896120cfb1048194", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb779896120cfb1048196", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb779896120cfb1048195", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb779896120cfb1048197", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "66cbb779896120cfb1048194", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb779896120cfb1048198", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "66cbb779896120cfb1048194", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb779896120cfb1048199", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "66cbb779896120cfb1048194", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb779896120cfb104819a", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "66cbb779896120cfb1048194", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb779896120cfb104819b", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "66cbb779896120cfb1048194", + "slotId": "mod_stock" + }, + { + "_id": "66cbb779896120cfb104819c", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "66cbb779896120cfb1048194", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb104819d", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb779896120cfb104819c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17.0 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00043", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb1048259", - "Items": [ - { - "_id": "66cbb779896120cfb1048259", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00204", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb104825b", - "_tpl": "57ffaea724597779f52b3a4d", - "parentId": "66cbb779896120cfb1048259", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00254", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb779896120cfb104825d", - "Items": [ - { - "_id": "66cbb779896120cfb104825d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb779896120cfb1048260", - "_tpl": "5649ed104bdc2d3d1c8b458b", - "parentId": "66cbb779896120cfb104825d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104819f", + "Items": [ + { + "_id": "66cbb779896120cfb104819f", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb779896120cfb1048261", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb779896120cfb1048260", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + { + "_id": "66cbb779896120cfb10481a0", + "_tpl": "5df8a58286f77412631087ed", + "parentId": "66cbb779896120cfb104819f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb779896120cfb10481a1", + "_tpl": "657ba096e57570b7f80a17fb", + "parentId": "66cbb779896120cfb10481a0", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb779896120cfb10481a2", + "_tpl": "657ba145e57570b7f80a17ff", + "parentId": "66cbb779896120cfb10481a0", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb779896120cfb10481a3", + "_tpl": "657ba18923918923cb0df568", + "parentId": "66cbb779896120cfb10481a0", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbb779896120cfb10481a5", + "_tpl": "628a6678ccaab13006640e49", + "parentId": "66cbb779896120cfb104819f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481a7", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb779896120cfb104819f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 56 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00117", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb1048263", - "Items": [ - { - "_id": "66cbb77a896120cfb1048263", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00024", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048265", - "_tpl": "5672cb304bdc2dc2088b456a", - "parentId": "66cbb77a896120cfb1048263", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048267", - "_tpl": "590c35a486f774273531c822", - "parentId": "66cbb77a896120cfb1048263", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10481a9", + "Items": [ + { + "_id": "66cbb779896120cfb10481a9", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048269", - "_tpl": "5e2af22086f7746d3f3c33fa", - "parentId": "66cbb77a896120cfb1048263", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb10481ab", + "_tpl": "5947f92f86f77427344a76b1", + "parentId": "66cbb779896120cfb10481a9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb104826b", - "_tpl": "590a3cd386f77436f20848cb", - "parentId": "66cbb77a896120cfb1048263", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10481ad", + "_tpl": "59c0ec5b86f77435b128bfca", + "parentId": "66cbb779896120cfb10481a9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00185", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104826d", - "Items": [ - { - "_id": "66cbb77a896120cfb104826d", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00035", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104826f", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbb77a896120cfb104826d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10481af", + "Items": [ + { + "_id": "66cbb779896120cfb10481af", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481b1", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb779896120cfb10481af", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10481b3", + "_tpl": "57347c77245977448d35f6e2", + "parentId": "66cbb779896120cfb10481af", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00261", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048271", - "_tpl": "572b7adb24597762ae139821", - "parentId": "66cbb77a896120cfb104826d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10481b5", + "Items": [ + { + "_id": "66cbb779896120cfb10481b5", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481b7", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb779896120cfb10481b5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10481b9", + "_tpl": "5bc9be8fd4351e00334cae6e", + "parentId": "66cbb779896120cfb10481b5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00001", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048273", - "_tpl": "5d1b385e86f774252167b98a", - "parentId": "66cbb77a896120cfb104826d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10481bb", + "Items": [ + { + "_id": "66cbb779896120cfb10481bb", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481bd", + "_tpl": "5b432b2f5acfc4771e1c6622", + "parentId": "66cbb779896120cfb10481bb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00218", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048275", - "Items": [ - { - "_id": "66cbb77a896120cfb1048275", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00251", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048277", - "_tpl": "544fb62a4bdc2dfb738b4568", - "parentId": "66cbb77a896120cfb1048275", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10481bf", + "Items": [ + { + "_id": "66cbb779896120cfb10481bf", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10481c1", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb779896120cfb10481bf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00280", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048278", - "_tpl": "571a12c42459771f627b58a0", - "parentId": "66cbb77a896120cfb1048275", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb77a896120cfb1048279", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "66cbb77a896120cfb1048278", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb77a896120cfb104827a", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "66cbb77a896120cfb1048278", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb77a896120cfb104827b", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "66cbb77a896120cfb1048278", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb77a896120cfb104827c", - "_tpl": "5736026a245977644601dc61", - "parentId": "66cbb77a896120cfb104827b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 3.0 - } - }, - { - "_id": "66cbb77a896120cfb104827e", - "_tpl": "5448ff904bdc2d6f028b456e", - "parentId": "66cbb77a896120cfb1048275", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00114", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb1048280", - "Items": [ - { - "_id": "66cbb77a896120cfb1048280", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00100", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb1048282", - "Items": [ - { - "_id": "66cbb77a896120cfb1048282", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00232", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048284", - "Items": [ - { - "_id": "66cbb77a896120cfb1048284", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048286", - "_tpl": "5aa7e3abe5b5b000171d064d", - "parentId": "66cbb77a896120cfb1048284", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10481c3", + "Items": [ + { + "_id": "66cbb779896120cfb10481c3", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048287", - "_tpl": "56d59856d2720bd8418b456a", - "parentId": "66cbb77a896120cfb1048284", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb77a896120cfb1048288", - "_tpl": "56d5a1f7d2720bb3418b456a", - "parentId": "66cbb77a896120cfb1048287", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb77a896120cfb1048289", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "66cbb77a896120cfb1048287", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb77a896120cfb104828a", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "66cbb77a896120cfb1048287", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb77a896120cfb104828b", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "66cbb77a896120cfb104828a", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb77a896120cfb104828c", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "66cbb77a896120cfb104828a", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb77a896120cfb104828d", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "66cbb77a896120cfb1048287", - "slotId": "mod_magazine" - }, - { - "_id": "66cbb77a896120cfb104828e", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb77a896120cfb104828d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8.0 - } - }, - { - "_id": "66cbb77a896120cfb1048290", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb77a896120cfb1048284", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb10481c4", + "_tpl": "59984ab886f7743e98271174", + "parentId": "66cbb779896120cfb10481c3", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048292", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb77a896120cfb1048284", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb10481c5", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb779896120cfb10481c4", + "slotId": "mod_pistol_grip" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048294", - "_tpl": "57513f9324597720a7128161", - "parentId": "66cbb77a896120cfb1048284", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00155", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048296", - "Items": [ - { - "_id": "66cbb77a896120cfb1048296", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048298", - "_tpl": "5b4335ba86f7744d2837a264", - "parentId": "66cbb77a896120cfb1048296", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb10481c6", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb779896120cfb10481c4", + "slotId": "mod_stock" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb104829a", - "_tpl": "57347b8b24597737dd42e192", - "parentId": "66cbb77a896120cfb1048296", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00279", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb104829c", - "Items": [ - { - "_id": "66cbb77a896120cfb104829c", - "_tpl": "5909d89086f77472591234a0", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00144", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104829e", - "Items": [ - { - "_id": "66cbb77a896120cfb104829e", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482a0", - "_tpl": "5d40425986f7743185265461", - "parentId": "66cbb77a896120cfb104829e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00017", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb10482a2", - "Items": [ - { - "_id": "66cbb77a896120cfb10482a2", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00257", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482a4", - "Items": [ - { - "_id": "66cbb77a896120cfb10482a4", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482a6", - "_tpl": "5cf79389d7f00c10941a0c4d", - "parentId": "66cbb77a896120cfb10482a4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb10481c7", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "66cbb779896120cfb10481c4", + "slotId": "mod_magazine" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482a8", - "_tpl": "5afd7ded5acfc40017541f5e", - "parentId": "66cbb77a896120cfb10482a4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb10481cd", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb779896120cfb10481c7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 11.0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482aa", - "_tpl": "570fd79bd2720bc7458b4583", - "parentId": "66cbb77a896120cfb10482a4", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00019", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb10482ac", - "Items": [ - { - "_id": "66cbb77a896120cfb10482ac", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00132", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482ae", - "Items": [ - { - "_id": "66cbb77a896120cfb10482ae", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482b0", - "_tpl": "59e655cb86f77411dc52a77b", - "parentId": "66cbb77a896120cfb10482ae", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb10481c8", + "_tpl": "5998597786f77414ea6da093", + "parentId": "66cbb779896120cfb10481c4", + "slotId": "mod_muzzle" }, - "upd": { - "StackObjectsCount": 41 - } - }, - { - "_id": "66cbb77a896120cfb10482b2", - "_tpl": "66b5f69ea7f72d197e70bcdb", - "parentId": "66cbb77a896120cfb10482ae", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb10481c9", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb779896120cfb10481c4", + "slotId": "mod_reciever" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482b4", - "_tpl": "5a957c3fa2750c00137fa5f7", - "parentId": "66cbb77a896120cfb10482ae", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 1 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00228", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482b6", - "Items": [ - { - "_id": "66cbb77a896120cfb10482b6", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482b8", - "_tpl": "5e9db13186f7742f845ee9d3", - "parentId": "66cbb77a896120cfb10482b6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb10481ca", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb779896120cfb10481c4", + "slotId": "mod_sight_rear" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482ba", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb77a896120cfb10482b6", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb10481cb", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb779896120cfb10481c4", + "slotId": "mod_gas_block" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482bc", - "_tpl": "5af0484c86f7740f02001f7f", - "parentId": "66cbb77a896120cfb10482b6", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00110", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb10482be", - "Items": [ - { - "_id": "66cbb77a896120cfb10482be", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10481cc", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb779896120cfb10481cb", + "slotId": "mod_handguard" } - } - ] - }, - { - "Id": "Lootable_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482c0", - "Items": [ - { - "_id": "66cbb77a896120cfb10482c0", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00063", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482c2", - "_tpl": "5bc9bdb8d4351e003562b8a1", - "parentId": "66cbb77a896120cfb10482c0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00176", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482c4", - "Items": [ - { - "_id": "66cbb77a896120cfb10482c4", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482c6", - "_tpl": "5672cb124bdc2d1a0f8b4568", - "parentId": "66cbb77a896120cfb10482c4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10481cf", + "Items": [ + { + "_id": "66cbb779896120cfb10481cf", + "_tpl": "5d07b91b86f7745a077a9432", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482c8", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb77a896120cfb10482c4", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10481d1", + "_tpl": "5a37cb10c4a282329a73b4e7", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481d3", + "_tpl": "590c37d286f77443be3d7827", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481d5", + "_tpl": "617151c1d92c473c770214ab", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481d7", + "_tpl": "5d6e68a8a4b9360b6c0d54e2", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481d9", + "_tpl": "618ba27d9008e4636a67f61d", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481db", + "_tpl": "5b2388675acfc4771e1be0be", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481dc", + "_tpl": "5abccb7dd8ce87001773e277", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + } + }, + { + "_id": "66cbb779896120cfb10481dd", + "_tpl": "5a17fb03fcdbcbcae668728f", + "parentId": "66cbb779896120cfb10481dc", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb779896120cfb10481e3", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb779896120cfb10481dd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18.0 + } + }, + { + "_id": "66cbb779896120cfb10481de", + "_tpl": "5a17fb9dfcdbcbcae6687291", + "parentId": "66cbb779896120cfb10481dc", + "slotId": "mod_stock" + }, + { + "_id": "66cbb779896120cfb10481df", + "_tpl": "5a17fc70fcdbcb0176308b3d", + "parentId": "66cbb779896120cfb10481dc", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb779896120cfb10481e0", + "_tpl": "5aba62f8d8ce87001943946b", + "parentId": "66cbb779896120cfb10481dc", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb779896120cfb10481e1", + "_tpl": "5aba639ed8ce8700182ece67", + "parentId": "66cbb779896120cfb10481dc", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb779896120cfb10481e2", + "_tpl": "5abcc328d8ce8700194394f3", + "parentId": "66cbb779896120cfb10481dc", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb779896120cfb10481e5", + "_tpl": "5b3b6e495acfc4330140bd88", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 4, + "y": 2, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481e7", + "_tpl": "544a3a774bdc2d3a388b4567", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 0, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481e9", + "_tpl": "5e023d34e8a400319a28ed44", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 2, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 19 + } + }, + { + "_id": "66cbb779896120cfb10481ec", + "_tpl": "5c11279ad174af029d64592b", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 3, + "y": 3, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481ed", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb779896120cfb10481ec", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb779896120cfb10481ef", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 0, + "y": 4, + "r": 0 + }, + "upd": { + "StackObjectsCount": 54 + } + }, + { + "_id": "66cbb779896120cfb10481f1", + "_tpl": "591afe0186f77431bd616a11", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 1, + "y": 4, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481f3", + "_tpl": "5c0d688c86f77413ae3407b2", + "parentId": "66cbb779896120cfb10481cf", + "slotId": "main", + "location": { + "x": 2, + "y": 4, + "r": 0 + }, + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00201", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482ca", - "Items": [ - { - "_id": "66cbb77a896120cfb10482ca", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00076", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482cc", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb77a896120cfb10482ca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 32 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482ce", - "_tpl": "56dff338d2720bbd668b4569", - "parentId": "66cbb77a896120cfb10482ca", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10481f5", + "Items": [ + { + "_id": "66cbb779896120cfb10481f5", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 48 - } - }, - { - "_id": "66cbb77a896120cfb10482d0", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbb77a896120cfb10482ca", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 21 + { + "_id": "66cbb779896120cfb10481f7", + "_tpl": "584924ec24597768f12ae244", + "parentId": "66cbb779896120cfb10481f5", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481f9", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "66cbb779896120cfb10481f5", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb10481fb", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "66cbb779896120cfb10481f5", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00262", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482d2", - "Items": [ - { - "_id": "66cbb77a896120cfb10482d2", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00072", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482d4", - "_tpl": "573475fb24597737fb1379e1", - "parentId": "66cbb77a896120cfb10482d2", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00013", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482d6", - "Items": [ - { - "_id": "66cbb77a896120cfb10482d6", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482d8", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "66cbb77a896120cfb10482d6", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb10481fd", + "Items": [ + { + "_id": "66cbb779896120cfb10481fd", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482da", - "_tpl": "5bc5a351d4351e003477a414", - "parentId": "66cbb77a896120cfb10482d6", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb10481ff", + "_tpl": "656df4fec921ad01000481a2", + "parentId": "66cbb779896120cfb10481fd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048201", + "_tpl": "62a0a098de7ac8199358053b", + "parentId": "66cbb779896120cfb10481fd", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00070", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482dc", - "Items": [ - { - "_id": "66cbb77a896120cfb10482dc", - "_tpl": "578f8778245977358849a9b5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00018", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482de", - "_tpl": "62a5c41e8ec41a51b34739c3", - "parentId": "66cbb77a896120cfb10482dc", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1048203", + "Items": [ + { + "_id": "66cbb779896120cfb1048203", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00237", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482e0", - "Items": [ - { - "_id": "66cbb77a896120cfb10482e0", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00230", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482e2", - "_tpl": "59e3556c86f7741776641ac2", - "parentId": "66cbb77a896120cfb10482e0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482e4", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbb77a896120cfb10482e0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048205", + "Items": [ + { + "_id": "66cbb779896120cfb1048205", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10482e5", - "_tpl": "628cd624459354321c4b7fa2", - "parentId": "66cbb77a896120cfb10482e0", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + { + "_id": "66cbb779896120cfb1048207", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb779896120cfb1048205", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048209", + "_tpl": "57347c5b245977448d35f6e1", + "parentId": "66cbb779896120cfb1048205", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104820b", + "_tpl": "56e33680d2720be2748b4576", + "parentId": "66cbb779896120cfb1048205", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104820d", + "_tpl": "59e36c6f86f774176c10a2a7", + "parentId": "66cbb779896120cfb1048205", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104820f", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb779896120cfb1048205", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00026", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482e6", - "_tpl": "64afdcb83efdfea28601d041", - "parentId": "66cbb77a896120cfb10482e5", - "slotId": "Front_plate" - }, - { - "_id": "66cbb77a896120cfb10482e7", - "_tpl": "64afdcb83efdfea28601d041", - "parentId": "66cbb77a896120cfb10482e5", - "slotId": "Back_plate" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482e9", - "_tpl": "5734773724597737fd047c14", - "parentId": "66cbb77a896120cfb10482e0", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048211", + "Items": [ + { + "_id": "66cbb779896120cfb1048211", + "_tpl": "5909d24f86f77466f56e6855", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048213", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "66cbb779896120cfb1048211", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048215", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb779896120cfb1048211", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048217", + "_tpl": "619cc01e0a7c3a1a2731940c", + "parentId": "66cbb779896120cfb1048211", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00172", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482eb", - "Items": [ - { - "_id": "66cbb77a896120cfb10482eb", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00016", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482ed", - "_tpl": "5d1b313086f77425227d1678", - "parentId": "66cbb77a896120cfb10482eb", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482ef", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "66cbb77a896120cfb10482eb", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048219", + "Items": [ + { + "_id": "66cbb779896120cfb1048219", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104821b", + "_tpl": "57513fcc24597720a31c09a6", + "parentId": "66cbb779896120cfb1048219", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104821d", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb779896120cfb1048219", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00177", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482f1", - "Items": [ - { - "_id": "66cbb77a896120cfb10482f1", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00195", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482f3", - "_tpl": "590a3efd86f77437d351a25b", - "parentId": "66cbb77a896120cfb10482f1", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482f5", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbb77a896120cfb10482f1", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104821f", + "Items": [ + { + "_id": "66cbb779896120cfb104821f", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048221", + "_tpl": "58272d7f2459774f6311ddfd", + "parentId": "66cbb779896120cfb104821f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048223", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "66cbb779896120cfb104821f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048225", + "_tpl": "5947db3f86f77447880cf76f", + "parentId": "66cbb779896120cfb104821f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00158", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482f7", - "_tpl": "5734795124597738002c6176", - "parentId": "66cbb77a896120cfb10482f1", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb779896120cfb1048227", + "Items": [ + { + "_id": "66cbb779896120cfb1048227", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048229", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb779896120cfb1048227", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104822b", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb779896120cfb1048227", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104822d", + "_tpl": "590c5c9f86f77477c91c36e7", + "parentId": "66cbb779896120cfb1048227", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00178", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482f9", - "Items": [ - { - "_id": "66cbb77a896120cfb10482f9", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00220", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482fb", - "_tpl": "590c2e1186f77425357b6124", - "parentId": "66cbb77a896120cfb10482f9", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104822f", + "Items": [ + { + "_id": "66cbb779896120cfb104822f", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048231", + "_tpl": "59e35cbb86f7741778269d83", + "parentId": "66cbb779896120cfb104822f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048233", + "_tpl": "590a3c0a86f774385a33c450", + "parentId": "66cbb779896120cfb104822f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048235", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "66cbb779896120cfb104822f", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048237", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "66cbb779896120cfb104822f", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1072 + } + }, + { + "_id": "66cbb779896120cfb1048239", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66cbb779896120cfb104822f", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00243", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10482fd", - "Items": [ - { - "_id": "66cbb77a896120cfb10482fd", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00211", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10482ff", - "_tpl": "5ab8ee7786f7742d8f33f0b9", - "parentId": "66cbb77a896120cfb10482fd", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048301", - "_tpl": "56742c284bdc2d98058b456d", - "parentId": "66cbb77a896120cfb10482fd", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104823b", + "Items": [ + { + "_id": "66cbb779896120cfb104823b", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104823d", + "_tpl": "5c06782b86f77426df5407d2", + "parentId": "66cbb779896120cfb104823b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00219", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048303", - "Items": [ - { - "_id": "66cbb77a896120cfb1048303", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048304", - "_tpl": "5aa7e454e5b5b0214e506fa2", - "parentId": "66cbb77a896120cfb1048303", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } - }, - { - "_id": "66cbb77a896120cfb1048305", - "_tpl": "657f925dada5fadd1f07a57a", - "parentId": "66cbb77a896120cfb1048304", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb77a896120cfb1048306", - "_tpl": "657f92acada5fadd1f07a57e", - "parentId": "66cbb77a896120cfb1048304", - "slotId": "Helmet_back" + { + "Id": "container_woods_design_stuff_00133", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048307", - "_tpl": "657f92e7f4c82973640b2354", - "parentId": "66cbb77a896120cfb1048304", - "slotId": "Helmet_ears" - } - ] - }, - { - "Id": "container_woods_design_stuff_00198", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048309", - "Items": [ - { - "_id": "66cbb77a896120cfb1048309", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104830b", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbb77a896120cfb1048309", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104823f", + "Items": [ + { + "_id": "66cbb779896120cfb104823f", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 10 - } - }, - { - "_id": "66cbb77a896120cfb104830d", - "_tpl": "5734781f24597737e04bf32a", - "parentId": "66cbb77a896120cfb1048309", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb779896120cfb1048241", + "_tpl": "60363c0c92ec1c31037959f5", + "parentId": "66cbb779896120cfb104823f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048243", + "_tpl": "56ea7293d2720b8d4b8b45ba", + "parentId": "66cbb779896120cfb104823f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00175", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104830f", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbb77a896120cfb1048309", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 48 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048311", - "_tpl": "5cc80f8fe4a949033b0224a2", - "parentId": "66cbb77a896120cfb1048309", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048245", + "Items": [ + { + "_id": "66cbb779896120cfb1048245", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 8 - } - }, - { - "_id": "66cbb77a896120cfb1048313", - "_tpl": "5d4041f086f7743cac3f22a7", - "parentId": "66cbb77a896120cfb1048309", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048247", + "_tpl": "5733279d245977289b77ec24", + "parentId": "66cbb779896120cfb1048245", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048249", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbb779896120cfb1048245", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00123", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048315", - "Items": [ - { - "_id": "66cbb77a896120cfb1048315", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00073", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048317", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbb77a896120cfb1048315", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048319", - "_tpl": "61bf83814088ec1a363d7097", - "parentId": "66cbb77a896120cfb1048315", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104824b", + "Items": [ + { + "_id": "66cbb779896120cfb104824b", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104824d", + "_tpl": "660ea4453786cc0af808a1be", + "parentId": "66cbb779896120cfb104824b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104824f", + "_tpl": "5addcce35acfc4001a5fc635", + "parentId": "66cbb779896120cfb104824b", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048251", + "_tpl": "5aa2a7e8e5b5b00016327c16", + "parentId": "66cbb779896120cfb104824b", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048253", + "_tpl": "62850c28da09541f43158cca", + "parentId": "66cbb779896120cfb104824b", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048255", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb779896120cfb104824b", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048257", + "_tpl": "5d2dc3e548f035404a1a4798", + "parentId": "66cbb779896120cfb104824b", + "slotId": "main", + "location": { + "x": 1, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00266", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104831b", - "Items": [ - { - "_id": "66cbb77a896120cfb104831b", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00043", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104831d", - "_tpl": "56e05b06d2720bb2668b4586", - "parentId": "66cbb77a896120cfb104831b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00229", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104831f", - "Items": [ - { - "_id": "66cbb77a896120cfb104831f", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048320", - "_tpl": "5a154d5cfcdbcb001a3b00da", - "parentId": "66cbb77a896120cfb104831f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb1048259", + "Items": [ + { + "_id": "66cbb779896120cfb1048259", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb104825b", + "_tpl": "57ffaea724597779f52b3a4d", + "parentId": "66cbb779896120cfb1048259", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00254", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048321", - "_tpl": "657f8ec5f4c82973640b234c", - "parentId": "66cbb77a896120cfb1048320", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb77a896120cfb1048322", - "_tpl": "657f8f10f4c82973640b2350", - "parentId": "66cbb77a896120cfb1048320", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048324", - "_tpl": "572b7f1624597762ae139822", - "parentId": "66cbb77a896120cfb104831f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb779896120cfb104825d", + "Items": [ + { + "_id": "66cbb779896120cfb104825d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb779896120cfb1048260", + "_tpl": "5649ed104bdc2d3d1c8b458b", + "parentId": "66cbb779896120cfb104825d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb779896120cfb1048261", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb779896120cfb1048260", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00117", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048326", - "_tpl": "5d1b392c86f77425243e98fe", - "parentId": "66cbb77a896120cfb104831f", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb1048263", + "Items": [ + { + "_id": "66cbb77a896120cfb1048263", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048265", + "_tpl": "5672cb304bdc2dc2088b456a", + "parentId": "66cbb77a896120cfb1048263", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048267", + "_tpl": "590c35a486f774273531c822", + "parentId": "66cbb77a896120cfb1048263", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048269", + "_tpl": "5e2af22086f7746d3f3c33fa", + "parentId": "66cbb77a896120cfb1048263", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb104826b", + "_tpl": "590a3cd386f77436f20848cb", + "parentId": "66cbb77a896120cfb1048263", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00185", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048327", - "_tpl": "5c0d2727d174af02a012cf58", - "parentId": "66cbb77a896120cfb104831f", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048328", - "_tpl": "657ba6c3c6f689d3a205b857", - "parentId": "66cbb77a896120cfb1048327", - "slotId": "Helmet_top" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104826d", + "Items": [ + { + "_id": "66cbb77a896120cfb104826d", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104826f", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbb77a896120cfb104826d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048271", + "_tpl": "572b7adb24597762ae139821", + "parentId": "66cbb77a896120cfb104826d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048273", + "_tpl": "5d1b385e86f774252167b98a", + "parentId": "66cbb77a896120cfb104826d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_woods_design_stuff_00218", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048329", - "_tpl": "657ba737b7e9ca9a02045bf6", - "parentId": "66cbb77a896120cfb1048327", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104832a", - "_tpl": "658188edf026a90c1708c827", - "parentId": "66cbb77a896120cfb1048327", - "slotId": "helmet_eyes" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048275", + "Items": [ + { + "_id": "66cbb77a896120cfb1048275", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048277", + "_tpl": "544fb62a4bdc2dfb738b4568", + "parentId": "66cbb77a896120cfb1048275", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048278", + "_tpl": "571a12c42459771f627b58a0", + "parentId": "66cbb77a896120cfb1048275", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb77a896120cfb1048279", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "66cbb77a896120cfb1048278", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb77a896120cfb104827a", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "66cbb77a896120cfb1048278", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb77a896120cfb104827b", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "66cbb77a896120cfb1048278", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb77a896120cfb104827c", + "_tpl": "5736026a245977644601dc61", + "parentId": "66cbb77a896120cfb104827b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 3.0 + } + }, + { + "_id": "66cbb77a896120cfb104827e", + "_tpl": "5448ff904bdc2d6f028b456e", + "parentId": "66cbb77a896120cfb1048275", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_woods_design_stuff_00114", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104832b", - "_tpl": "657ba75e23918923cb0df573", - "parentId": "66cbb77a896120cfb1048327", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104832d", - "_tpl": "656fb0bd7c2d57afe200c0dc", - "parentId": "66cbb77a896120cfb104831f", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb1048280", + "Items": [ + { + "_id": "66cbb77a896120cfb1048280", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00258", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104832f", - "Items": [ - { - "_id": "66cbb77a896120cfb104832f", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00100", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048331", - "_tpl": "5c61a40d2e2216001403158d", - "parentId": "66cbb77a896120cfb104832f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb1048282", + "Items": [ + { + "_id": "66cbb77a896120cfb1048282", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00135", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb1048333", - "Items": [ - { - "_id": "66cbb77a896120cfb1048333", - "_tpl": "5909d76c86f77471e53d2adf", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00232", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048335", - "_tpl": "5d0a3a58d7ad1a669c15ca14", - "parentId": "66cbb77a896120cfb1048333", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048337", - "_tpl": "5de8eac42a78646d96665d91", - "parentId": "66cbb77a896120cfb1048333", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048284", + "Items": [ + { + "_id": "66cbb77a896120cfb1048284", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048339", - "_tpl": "57d1519e24597714373db79d", - "parentId": "66cbb77a896120cfb1048333", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb77a896120cfb1048286", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "66cbb77a896120cfb1048284", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb104833b", - "_tpl": "588b56d02459771481110ae2", - "parentId": "66cbb77a896120cfb1048333", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + { + "_id": "66cbb77a896120cfb1048287", + "_tpl": "56d59856d2720bd8418b456a", + "parentId": "66cbb77a896120cfb1048284", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb104833d", - "_tpl": "59db3a1d86f77429e05b4e92", - "parentId": "66cbb77a896120cfb1048333", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + { + "_id": "66cbb77a896120cfb1048288", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "66cbb77a896120cfb1048287", + "slotId": "mod_barrel" }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb104833f", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "66cbb77a896120cfb1048333", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00206", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048341", - "Items": [ - { - "_id": "66cbb77a896120cfb1048341", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048342", - "_tpl": "5d2f0d8048f0356c925bc3b0", - "parentId": "66cbb77a896120cfb1048341", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + { + "_id": "66cbb77a896120cfb1048289", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "66cbb77a896120cfb1048287", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb77a896120cfb104828a", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "66cbb77a896120cfb1048287", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb77a896120cfb104828b", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "66cbb77a896120cfb104828a", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb77a896120cfb104828c", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "66cbb77a896120cfb104828a", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb77a896120cfb104828d", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "66cbb77a896120cfb1048287", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb77a896120cfb104828e", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb77a896120cfb104828d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8.0 + } + }, + { + "_id": "66cbb77a896120cfb1048290", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb77a896120cfb1048284", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb77a896120cfb1048292", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb77a896120cfb1048284", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048294", + "_tpl": "57513f9324597720a7128161", + "parentId": "66cbb77a896120cfb1048284", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_woods_design_stuff_00155", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048343", - "_tpl": "5d2f213448f0355009199284", - "parentId": "66cbb77a896120cfb1048342", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048349", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb77a896120cfb1048343", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048296", + "Items": [ + { + "_id": "66cbb77a896120cfb1048296", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048298", + "_tpl": "5b4335ba86f7744d2837a264", + "parentId": "66cbb77a896120cfb1048296", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104829a", + "_tpl": "57347b8b24597737dd42e192", + "parentId": "66cbb77a896120cfb1048296", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00279", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048344", - "_tpl": "5d2f261548f03576f500e7b7", - "parentId": "66cbb77a896120cfb1048342", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb77a896120cfb1048345", - "_tpl": "5d2f259b48f0355a844acd74", - "parentId": "66cbb77a896120cfb1048344", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb77a896120cfb1048346", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "66cbb77a896120cfb1048344", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb77a896120cfb1048347", - "_tpl": "5d2f25bc48f03502573e5d85", - "parentId": "66cbb77a896120cfb1048344", - "slotId": "mod_stock" - }, - { - "_id": "66cbb77a896120cfb1048348", - "_tpl": "5d2f2d5748f03572ec0c0139", - "parentId": "66cbb77a896120cfb1048342", - "slotId": "mod_charge" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104834b", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb77a896120cfb1048341", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb104829c", + "Items": [ + { + "_id": "66cbb77a896120cfb104829c", + "_tpl": "5909d89086f77472591234a0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00032", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104834d", - "Items": [ - { - "_id": "66cbb77a896120cfb104834d", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00144", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104834f", - "_tpl": "57486e672459770abd687134", - "parentId": "66cbb77a896120cfb104834d", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048351", - "_tpl": "5c4eecc32e221602b412b440", - "parentId": "66cbb77a896120cfb104834d", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104829e", + "Items": [ + { + "_id": "66cbb77a896120cfb104829e", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048353", - "_tpl": "5caf187cae92157c28402e43", - "parentId": "66cbb77a896120cfb104834d", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb10482a0", + "_tpl": "5d40425986f7743185265461", + "parentId": "66cbb77a896120cfb104829e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00099", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb1048355", - "Items": [ - { - "_id": "66cbb77a896120cfb1048355", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00017", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048357", - "_tpl": "57347d3d245977448f7b7f61", - "parentId": "66cbb77a896120cfb1048355", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048359", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbb77a896120cfb1048355", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb10482a2", + "Items": [ + { + "_id": "66cbb77a896120cfb10482a2", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_Test_for_export_00002", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104835b", - "Items": [ - { - "_id": "66cbb77a896120cfb104835b", - "_tpl": "5909d7cf86f77470ee57d75a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00257", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104835d", - "_tpl": "5b4325355acfc40019478126", - "parentId": "66cbb77a896120cfb104835b", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00127", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104835f", - "Items": [ - { - "_id": "66cbb77a896120cfb104835f", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048361", - "_tpl": "57347c1124597737fb1379e3", - "parentId": "66cbb77a896120cfb104835f", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482a4", + "Items": [ + { + "_id": "66cbb77a896120cfb10482a4", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048363", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb77a896120cfb104835f", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + { + "_id": "66cbb77a896120cfb10482a6", + "_tpl": "5cf79389d7f00c10941a0c4d", + "parentId": "66cbb77a896120cfb10482a4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048365", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb77a896120cfb104835f", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb10482a8", + "_tpl": "5afd7ded5acfc40017541f5e", + "parentId": "66cbb77a896120cfb10482a4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482aa", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "66cbb77a896120cfb10482a4", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00249", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048367", - "Items": [ - { - "_id": "66cbb77a896120cfb1048367", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048368", - "_tpl": "5aa7d03ae5b5b00016327db5", - "parentId": "66cbb77a896120cfb1048367", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - } + { + "Id": "container_woods_design_stuff_00019", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048369", - "_tpl": "654a90aff4f81a421b0a7c86", - "parentId": "66cbb77a896120cfb1048368", - "slotId": "helmet_top" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104836a", - "_tpl": "654a91068e1ce698150fd1e2", - "parentId": "66cbb77a896120cfb1048368", - "slotId": "helmet_back" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb10482ac", + "Items": [ + { + "_id": "66cbb77a896120cfb10482ac", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_woods_design_stuff_00132", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104836b", - "_tpl": "654a9189bcc67a392b056c79", - "parentId": "66cbb77a896120cfb1048368", - "slotId": "helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104836c", - "_tpl": "5b432d215acfc4771e1c6624", - "parentId": "66cbb77a896120cfb1048367", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482ae", + "Items": [ + { + "_id": "66cbb77a896120cfb10482ae", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482b0", + "_tpl": "59e655cb86f77411dc52a77b", + "parentId": "66cbb77a896120cfb10482ae", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 41 + } + }, + { + "_id": "66cbb77a896120cfb10482b2", + "_tpl": "66b5f69ea7f72d197e70bcdb", + "parentId": "66cbb77a896120cfb10482ae", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482b4", + "_tpl": "5a957c3fa2750c00137fa5f7", + "parentId": "66cbb77a896120cfb10482ae", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 1 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00228", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104836d", - "_tpl": "657bb92fa1c61ee0c303631f", - "parentId": "66cbb77a896120cfb104836c", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb77a896120cfb104836e", - "_tpl": "657bb99db30eca976305117f", - "parentId": "66cbb77a896120cfb104836c", - "slotId": "Helmet_back" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048370", - "_tpl": "5b432b965acfc47a8774094e", - "parentId": "66cbb77a896120cfb1048367", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482b6", + "Items": [ + { + "_id": "66cbb77a896120cfb10482b6", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048372", - "_tpl": "57347da92459774491567cf5", - "parentId": "66cbb77a896120cfb1048367", - "slotId": "main", - "location": { - "x": 2, - "y": 2, - "r": 0 + { + "_id": "66cbb77a896120cfb10482b8", + "_tpl": "5e9db13186f7742f845ee9d3", + "parentId": "66cbb77a896120cfb10482b6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb1048374", - "_tpl": "5751a25924597722c463c472", - "parentId": "66cbb77a896120cfb1048367", - "slotId": "main", - "location": { - "x": 3, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb1048376", - "Items": [ - { - "_id": "66cbb77a896120cfb1048376", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Lootable_00006", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb1048378", - "Items": [ - { - "_id": "66cbb77a896120cfb1048378", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb10482ba", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb77a896120cfb10482b6", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482bc", + "_tpl": "5af0484c86f7740f02001f7f", + "parentId": "66cbb77a896120cfb10482b6", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00007", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb104837a", - "Items": [ - { - "_id": "66cbb77a896120cfb104837a", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00110", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104837c", - "_tpl": "573476d324597737da2adc13", - "parentId": "66cbb77a896120cfb104837a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb10482be", + "Items": [ + { + "_id": "66cbb77a896120cfb10482be", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Lootable_00008", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb104837e", - "Items": [ - { - "_id": "66cbb77a896120cfb104837e", - "_tpl": "578f87b7245977356274f2cd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Lootable_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482c0", + "Items": [ + { + "_id": "66cbb77a896120cfb10482c0", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482c2", + "_tpl": "5bc9bdb8d4351e003562b8a1", + "parentId": "66cbb77a896120cfb10482c0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00190", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048380", - "Items": [ - { - "_id": "66cbb77a896120cfb1048380", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00176", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048382", - "_tpl": "5755356824597772cb798962", - "parentId": "66cbb77a896120cfb1048380", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482c4", + "Items": [ + { + "_id": "66cbb77a896120cfb10482c4", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482c6", + "_tpl": "5672cb124bdc2d1a0f8b4568", + "parentId": "66cbb77a896120cfb10482c4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb10482c8", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb77a896120cfb10482c4", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00201", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048383", - "_tpl": "54491c4f4bdc2db1078b4568", - "parentId": "66cbb77a896120cfb1048380", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482ca", + "Items": [ + { + "_id": "66cbb77a896120cfb10482ca", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482cc", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb77a896120cfb10482ca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 32 + } + }, + { + "_id": "66cbb77a896120cfb10482ce", + "_tpl": "56dff338d2720bbd668b4569", + "parentId": "66cbb77a896120cfb10482ca", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 48 + } + }, + { + "_id": "66cbb77a896120cfb10482d0", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbb77a896120cfb10482ca", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 21 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00262", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048384", - "_tpl": "55d4491a4bdc2d882f8b456e", - "parentId": "66cbb77a896120cfb1048383", - "slotId": "mod_barrel" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048385", - "_tpl": "55d45d3f4bdc2d972f8b456c", - "parentId": "66cbb77a896120cfb1048383", - "slotId": "mod_handguard" + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482d2", + "Items": [ + { + "_id": "66cbb77a896120cfb10482d2", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482d4", + "_tpl": "573475fb24597737fb1379e1", + "parentId": "66cbb77a896120cfb10482d2", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + } + ] + }, + { + "Id": "container_woods_design_stuff_00013", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048386", - "_tpl": "55d484b44bdc2d1d4e8b456d", - "parentId": "66cbb77a896120cfb1048383", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048388", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "66cbb77a896120cfb1048386", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 6.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482d6", + "Items": [ + { + "_id": "66cbb77a896120cfb10482d6", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482d8", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "66cbb77a896120cfb10482d6", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482da", + "_tpl": "5bc5a351d4351e003477a414", + "parentId": "66cbb77a896120cfb10482d6", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - }, - { - "_id": "66cbb77a896120cfb1048387", - "_tpl": "56083cba4bdc2de22e8b456f", - "parentId": "66cbb77a896120cfb1048383", - "slotId": "mod_stock" - } - ] - }, - { - "Id": "container_woods_design_stuff_00192", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104838a", - "Items": [ - { - "_id": "66cbb77a896120cfb104838a", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00070", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104838c", - "_tpl": "57371e4124597760ff7b25f1", - "parentId": "66cbb77a896120cfb104838a", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482dc", + "Items": [ + { + "_id": "66cbb77a896120cfb10482dc", + "_tpl": "578f8778245977358849a9b5", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 22 + { + "_id": "66cbb77a896120cfb10482de", + "_tpl": "62a5c41e8ec41a51b34739c3", + "parentId": "66cbb77a896120cfb10482dc", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00237", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104838e", - "_tpl": "5caf187cae92157c28402e43", - "parentId": "66cbb77a896120cfb104838a", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482e0", + "Items": [ + { + "_id": "66cbb77a896120cfb10482e0", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482e2", + "_tpl": "59e3556c86f7741776641ac2", + "parentId": "66cbb77a896120cfb10482e0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482e4", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbb77a896120cfb10482e0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482e5", + "_tpl": "628cd624459354321c4b7fa2", + "parentId": "66cbb77a896120cfb10482e0", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb77a896120cfb10482e6", + "_tpl": "64afdcb83efdfea28601d041", + "parentId": "66cbb77a896120cfb10482e5", + "slotId": "Front_plate" + }, + { + "_id": "66cbb77a896120cfb10482e7", + "_tpl": "64afdcb83efdfea28601d041", + "parentId": "66cbb77a896120cfb10482e5", + "slotId": "Back_plate" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb10482e9", + "_tpl": "5734773724597737fd047c14", + "parentId": "66cbb77a896120cfb10482e0", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00172", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048390", - "_tpl": "60391b0fb847c71012789415", - "parentId": "66cbb77a896120cfb104838a", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482eb", + "Items": [ + { + "_id": "66cbb77a896120cfb10482eb", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482ed", + "_tpl": "5d1b313086f77425227d1678", + "parentId": "66cbb77a896120cfb10482eb", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482ef", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "66cbb77a896120cfb10482eb", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00103", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb1048392", - "Items": [ - { - "_id": "66cbb77a896120cfb1048392", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 + { + "Id": "container_woods_design_stuff_00177", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482f1", + "Items": [ + { + "_id": "66cbb77a896120cfb10482f1", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482f3", + "_tpl": "590a3efd86f77437d351a25b", + "parentId": "66cbb77a896120cfb10482f1", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482f5", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbb77a896120cfb10482f1", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482f7", + "_tpl": "5734795124597738002c6176", + "parentId": "66cbb77a896120cfb10482f1", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00041", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb1048394", - "Items": [ - { - "_id": "66cbb77a896120cfb1048394", - "_tpl": "5d6fe50986f77449d97f7463", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00178", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048396", - "_tpl": "5c13cef886f774072e618e82", - "parentId": "66cbb77a896120cfb1048394", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482f9", + "Items": [ + { + "_id": "66cbb77a896120cfb10482f9", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10482fb", + "_tpl": "590c2e1186f77425357b6124", + "parentId": "66cbb77a896120cfb10482f9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00005", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048398", - "Items": [ - { - "_id": "66cbb77a896120cfb1048398", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00243", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104839a", - "_tpl": "5cf508bfd7f00c056e24104e", - "parentId": "66cbb77a896120cfb1048398", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10482fd", + "Items": [ + { + "_id": "66cbb77a896120cfb10482fd", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb10482ff", + "_tpl": "5ab8ee7786f7742d8f33f0b9", + "parentId": "66cbb77a896120cfb10482fd", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048301", + "_tpl": "56742c284bdc2d98058b456d", + "parentId": "66cbb77a896120cfb10482fd", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00219", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104839c", - "_tpl": "5e023d48186a883be655e551", - "parentId": "66cbb77a896120cfb1048398", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 10 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048303", + "Items": [ + { + "_id": "66cbb77a896120cfb1048303", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048304", + "_tpl": "5aa7e454e5b5b0214e506fa2", + "parentId": "66cbb77a896120cfb1048303", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb77a896120cfb1048305", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "66cbb77a896120cfb1048304", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb77a896120cfb1048306", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "66cbb77a896120cfb1048304", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb77a896120cfb1048307", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "66cbb77a896120cfb1048304", + "slotId": "Helmet_ears" } - } - ] - }, - { - "Id": "container_woods_design_stuff_00037", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb104839e", - "Items": [ - { - "_id": "66cbb77a896120cfb104839e", - "_tpl": "5d6fd13186f77424ad2a8c69", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00198", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483a0", - "_tpl": "6389c6463485cf0eeb260715", - "parentId": "66cbb77a896120cfb104839e", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048309", + "Items": [ + { + "_id": "66cbb77a896120cfb1048309", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104830b", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbb77a896120cfb1048309", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 10 + } + }, + { + "_id": "66cbb77a896120cfb104830d", + "_tpl": "5734781f24597737e04bf32a", + "parentId": "66cbb77a896120cfb1048309", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104830f", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbb77a896120cfb1048309", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 48 + } + }, + { + "_id": "66cbb77a896120cfb1048311", + "_tpl": "5cc80f8fe4a949033b0224a2", + "parentId": "66cbb77a896120cfb1048309", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 8 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb1048313", + "_tpl": "5d4041f086f7743cac3f22a7", + "parentId": "66cbb77a896120cfb1048309", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00123", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483a2", - "_tpl": "57347d5f245977448b40fa81", - "parentId": "66cbb77a896120cfb104839e", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048315", + "Items": [ + { + "_id": "66cbb77a896120cfb1048315", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048317", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbb77a896120cfb1048315", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb1048319", + "_tpl": "61bf83814088ec1a363d7097", + "parentId": "66cbb77a896120cfb1048315", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00266", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483a4", - "_tpl": "573476f124597737e04bf328", - "parentId": "66cbb77a896120cfb104839e", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104831b", + "Items": [ + { + "_id": "66cbb77a896120cfb104831b", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb104831d", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "66cbb77a896120cfb104831b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00229", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483a6", - "_tpl": "5bc9c29cd4351e003562b8a3", - "parentId": "66cbb77a896120cfb104839e", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104831f", + "Items": [ + { + "_id": "66cbb77a896120cfb104831f", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048320", + "_tpl": "5a154d5cfcdbcb001a3b00da", + "parentId": "66cbb77a896120cfb104831f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb77a896120cfb1048321", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "66cbb77a896120cfb1048320", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb77a896120cfb1048322", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "66cbb77a896120cfb1048320", + "slotId": "Helmet_back" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb1048324", + "_tpl": "572b7f1624597762ae139822", + "parentId": "66cbb77a896120cfb104831f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048326", + "_tpl": "5d1b392c86f77425243e98fe", + "parentId": "66cbb77a896120cfb104831f", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048327", + "_tpl": "5c0d2727d174af02a012cf58", + "parentId": "66cbb77a896120cfb104831f", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb77a896120cfb1048328", + "_tpl": "657ba6c3c6f689d3a205b857", + "parentId": "66cbb77a896120cfb1048327", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb77a896120cfb1048329", + "_tpl": "657ba737b7e9ca9a02045bf6", + "parentId": "66cbb77a896120cfb1048327", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb77a896120cfb104832a", + "_tpl": "658188edf026a90c1708c827", + "parentId": "66cbb77a896120cfb1048327", + "slotId": "helmet_eyes" + }, + { + "_id": "66cbb77a896120cfb104832b", + "_tpl": "657ba75e23918923cb0df573", + "parentId": "66cbb77a896120cfb1048327", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbb77a896120cfb104832d", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "66cbb77a896120cfb104831f", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00258", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483a8", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb77a896120cfb104839e", - "slotId": "main", - "location": { - "x": 4, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104832f", + "Items": [ + { + "_id": "66cbb77a896120cfb104832f", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb1048331", + "_tpl": "5c61a40d2e2216001403158d", + "parentId": "66cbb77a896120cfb104832f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00135", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483aa", - "_tpl": "62a09ee4cf4a99369e262453", - "parentId": "66cbb77a896120cfb104839e", - "slotId": "main", - "location": { - "x": 1, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb1048333", + "Items": [ + { + "_id": "66cbb77a896120cfb1048333", + "_tpl": "5909d76c86f77471e53d2adf", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048335", + "_tpl": "5d0a3a58d7ad1a669c15ca14", + "parentId": "66cbb77a896120cfb1048333", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048337", + "_tpl": "5de8eac42a78646d96665d91", + "parentId": "66cbb77a896120cfb1048333", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048339", + "_tpl": "57d1519e24597714373db79d", + "parentId": "66cbb77a896120cfb1048333", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104833b", + "_tpl": "588b56d02459771481110ae2", + "parentId": "66cbb77a896120cfb1048333", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104833d", + "_tpl": "59db3a1d86f77429e05b4e92", + "parentId": "66cbb77a896120cfb1048333", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb104833f", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "66cbb77a896120cfb1048333", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00206", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483ac", - "_tpl": "57347d692459774491567cf1", - "parentId": "66cbb77a896120cfb104839e", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048341", + "Items": [ + { + "_id": "66cbb77a896120cfb1048341", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048342", + "_tpl": "5d2f0d8048f0356c925bc3b0", + "parentId": "66cbb77a896120cfb1048341", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb77a896120cfb1048343", + "_tpl": "5d2f213448f0355009199284", + "parentId": "66cbb77a896120cfb1048342", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb77a896120cfb1048349", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb77a896120cfb1048343", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10.0 + } + }, + { + "_id": "66cbb77a896120cfb1048344", + "_tpl": "5d2f261548f03576f500e7b7", + "parentId": "66cbb77a896120cfb1048342", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb77a896120cfb1048345", + "_tpl": "5d2f259b48f0355a844acd74", + "parentId": "66cbb77a896120cfb1048344", + "slotId": "mod_handguard" }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb1048346", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "66cbb77a896120cfb1048344", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb77a896120cfb1048347", + "_tpl": "5d2f25bc48f03502573e5d85", + "parentId": "66cbb77a896120cfb1048344", + "slotId": "mod_stock" + }, + { + "_id": "66cbb77a896120cfb1048348", + "_tpl": "5d2f2d5748f03572ec0c0139", + "parentId": "66cbb77a896120cfb1048342", + "slotId": "mod_charge" + }, + { + "_id": "66cbb77a896120cfb104834b", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb77a896120cfb1048341", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_woods_design_stuff_00032", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483ae", - "_tpl": "5734770f24597738025ee254", - "parentId": "66cbb77a896120cfb104839e", - "slotId": "main", - "location": { - "x": 3, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104834d", + "Items": [ + { + "_id": "66cbb77a896120cfb104834d", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104834f", + "_tpl": "57486e672459770abd687134", + "parentId": "66cbb77a896120cfb104834d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048351", + "_tpl": "5c4eecc32e221602b412b440", + "parentId": "66cbb77a896120cfb104834d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048353", + "_tpl": "5caf187cae92157c28402e43", + "parentId": "66cbb77a896120cfb104834d", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00248", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483b0", - "Items": [ - { - "_id": "66cbb77a896120cfb10483b0", - "_tpl": "5909e4b686f7747f5b744fa4", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00099", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483b2", - "_tpl": "5d6e68d1a4b93622fe60e845", - "parentId": "66cbb77a896120cfb10483b0", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 10 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483b4", - "_tpl": "590de7e986f7741b096e5f32", - "parentId": "66cbb77a896120cfb10483b0", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb1048355", + "Items": [ + { + "_id": "66cbb77a896120cfb1048355", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10483b6", - "_tpl": "590c5a7286f7747884343aea", - "parentId": "66cbb77a896120cfb10483b0", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 + { + "_id": "66cbb77a896120cfb1048357", + "_tpl": "57347d3d245977448f7b7f61", + "parentId": "66cbb77a896120cfb1048355", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10483b7", - "_tpl": "5c06c6a80db834001b735491", - "parentId": "66cbb77a896120cfb10483b0", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 + { + "_id": "66cbb77a896120cfb1048359", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbb77a896120cfb1048355", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "container_Test_for_export_00002", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483b8", - "_tpl": "6571199565daf6aa960c9b10", - "parentId": "66cbb77a896120cfb10483b7", - "slotId": "Helmet_top" - }, - { - "_id": "66cbb77a896120cfb10483b9", - "_tpl": "657119d49eb8c145180dbb95", - "parentId": "66cbb77a896120cfb10483b7", - "slotId": "Helmet_back" - }, - { - "_id": "66cbb77a896120cfb10483ba", - "_tpl": "657119fea330b8c9060f7afc", - "parentId": "66cbb77a896120cfb10483b7", - "slotId": "Helmet_ears" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483bc", - "_tpl": "57347cd0245977445a2d6ff1", - "parentId": "66cbb77a896120cfb10483b0", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104835b", + "Items": [ + { + "_id": "66cbb77a896120cfb104835b", + "_tpl": "5909d7cf86f77470ee57d75a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104835d", + "_tpl": "5b4325355acfc40019478126", + "parentId": "66cbb77a896120cfb104835b", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00134", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483be", - "Items": [ - { - "_id": "66cbb77a896120cfb10483be", - "_tpl": "5909d5ef86f77467974efbd8", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00127", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483bf", - "_tpl": "5e870397991fd70db46995c8", - "parentId": "66cbb77a896120cfb10483be", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104835f", + "Items": [ + { + "_id": "66cbb77a896120cfb104835f", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048361", + "_tpl": "57347c1124597737fb1379e3", + "parentId": "66cbb77a896120cfb104835f", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048363", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb77a896120cfb104835f", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "FireMode": { - "FireMode": "single" + { + "_id": "66cbb77a896120cfb1048365", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb77a896120cfb104835f", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 } } + ] + }, + { + "Id": "container_woods_design_stuff_00249", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483c0", - "_tpl": "5e87071478f43e51ca2de5e1", - "parentId": "66cbb77a896120cfb10483bf", - "slotId": "mod_barrel" - }, - { - "_id": "66cbb77a896120cfb10483c1", - "_tpl": "5e8708d4ae379e67d22e0102", - "parentId": "66cbb77a896120cfb10483c0", - "slotId": "mod_sight_front" - }, - { - "_id": "66cbb77a896120cfb10483c2", - "_tpl": "5e87076ce2db31558c75a11d", - "parentId": "66cbb77a896120cfb10483bf", - "slotId": "mod_handguard" - }, - { - "_id": "66cbb77a896120cfb10483c3", - "_tpl": "5e87080c81c4ed43e83cefda", - "parentId": "66cbb77a896120cfb10483bf", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483c6", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "66cbb77a896120cfb10483c3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 4.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048367", + "Items": [ + { + "_id": "66cbb77a896120cfb1048367", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048368", + "_tpl": "5aa7d03ae5b5b00016327db5", + "parentId": "66cbb77a896120cfb1048367", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb77a896120cfb1048369", + "_tpl": "654a90aff4f81a421b0a7c86", + "parentId": "66cbb77a896120cfb1048368", + "slotId": "helmet_top" + }, + { + "_id": "66cbb77a896120cfb104836a", + "_tpl": "654a91068e1ce698150fd1e2", + "parentId": "66cbb77a896120cfb1048368", + "slotId": "helmet_back" + }, + { + "_id": "66cbb77a896120cfb104836b", + "_tpl": "654a9189bcc67a392b056c79", + "parentId": "66cbb77a896120cfb1048368", + "slotId": "helmet_ears" + }, + { + "_id": "66cbb77a896120cfb104836c", + "_tpl": "5b432d215acfc4771e1c6624", + "parentId": "66cbb77a896120cfb1048367", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + } + }, + { + "_id": "66cbb77a896120cfb104836d", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "66cbb77a896120cfb104836c", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb77a896120cfb104836e", + "_tpl": "657bb99db30eca976305117f", + "parentId": "66cbb77a896120cfb104836c", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb77a896120cfb1048370", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "66cbb77a896120cfb1048367", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048372", + "_tpl": "57347da92459774491567cf5", + "parentId": "66cbb77a896120cfb1048367", + "slotId": "main", + "location": { + "x": 2, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048374", + "_tpl": "5751a25924597722c463c472", + "parentId": "66cbb77a896120cfb1048367", + "slotId": "main", + "location": { + "x": 3, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483c4", - "_tpl": "5e87116b81c4ed43e83cefdd", - "parentId": "66cbb77a896120cfb10483bf", - "slotId": "mod_stock" - }, - { - "_id": "66cbb77a896120cfb10483c5", - "_tpl": "5e87114fe2db31558c75a120", - "parentId": "66cbb77a896120cfb10483bf", - "slotId": "mod_mount" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483c8", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "parentId": "66cbb77a896120cfb10483be", - "slotId": "main", - "location": { - "x": 0, - "y": 1, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb1048376", + "Items": [ + { + "_id": "66cbb77a896120cfb1048376", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00235", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483ca", - "Items": [ - { - "_id": "66cbb77a896120cfb10483ca", - "_tpl": "5d6d2b5486f774785c2ba8ea", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "Lootable_00006", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483cc", - "_tpl": "57513f07245977207e26a311", - "parentId": "66cbb77a896120cfb10483ca", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483cd", - "_tpl": "59f9cabd86f7743a10721f46", - "parentId": "66cbb77a896120cfb10483ca", - "slotId": "main", - "location": { - "x": 1, - "y": 0, - "r": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb1048378", + "Items": [ + { + "_id": "66cbb77a896120cfb1048378", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00007", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483ce", - "_tpl": "5998517986f7746017232f7e", - "parentId": "66cbb77a896120cfb10483cd", - "slotId": "mod_pistol_grip" - }, - { - "_id": "66cbb77a896120cfb10483cf", - "_tpl": "599851db86f77467372f0a18", - "parentId": "66cbb77a896120cfb10483cd", - "slotId": "mod_stock" - }, - { - "_id": "66cbb77a896120cfb10483d0", - "_tpl": "5998529a86f774647f44f421", - "parentId": "66cbb77a896120cfb10483cd", - "slotId": "mod_magazine" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483d6", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb77a896120cfb10483d0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 9.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb104837a", + "Items": [ + { + "_id": "66cbb77a896120cfb104837a", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104837c", + "_tpl": "573476d324597737da2adc13", + "parentId": "66cbb77a896120cfb104837a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "Lootable_00008", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483d1", - "_tpl": "5998598e86f7740b3f498a86", - "parentId": "66cbb77a896120cfb10483cd", - "slotId": "mod_muzzle" - }, - { - "_id": "66cbb77a896120cfb10483d2", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "66cbb77a896120cfb10483cd", - "slotId": "mod_reciever" - }, - { - "_id": "66cbb77a896120cfb10483d3", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "66cbb77a896120cfb10483cd", - "slotId": "mod_sight_rear" - }, - { - "_id": "66cbb77a896120cfb10483d4", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "66cbb77a896120cfb10483cd", - "slotId": "mod_gas_block" - }, - { - "_id": "66cbb77a896120cfb10483d5", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "66cbb77a896120cfb10483d4", - "slotId": "mod_handguard" + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483d8", - "_tpl": "59e3577886f774176a362503", - "parentId": "66cbb77a896120cfb10483ca", - "slotId": "main", - "location": { - "x": 3, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb104837e", + "Items": [ + { + "_id": "66cbb77a896120cfb104837e", + "_tpl": "578f87b7245977356274f2cd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00223", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483da", - "Items": [ - { - "_id": "66cbb77a896120cfb10483da", - "_tpl": "5d6d2bb386f774785b07a77a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00190", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483dc", - "_tpl": "66b5f693acff495a294927e3", - "parentId": "66cbb77a896120cfb10483da", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483de", - "_tpl": "590c311186f77424d1667482", - "parentId": "66cbb77a896120cfb10483da", - "slotId": "main", - "location": { - "x": 2, - "y": 0, - "r": 0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048380", + "Items": [ + { + "_id": "66cbb77a896120cfb1048380", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10483e0", - "_tpl": "575062b524597720a31c09a1", - "parentId": "66cbb77a896120cfb10483da", - "slotId": "main", - "location": { - "x": 2, - "y": 1, - "r": 0 + { + "_id": "66cbb77a896120cfb1048382", + "_tpl": "5755356824597772cb798962", + "parentId": "66cbb77a896120cfb1048380", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } }, - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb10483e2", - "_tpl": "590a391c86f774385a33c404", - "parentId": "66cbb77a896120cfb10483da", - "slotId": "main", - "location": { - "x": 0, - "y": 2, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + { + "_id": "66cbb77a896120cfb1048383", + "_tpl": "54491c4f4bdc2db1078b4568", + "parentId": "66cbb77a896120cfb1048380", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + } + }, + { + "_id": "66cbb77a896120cfb1048384", + "_tpl": "55d4491a4bdc2d882f8b456e", + "parentId": "66cbb77a896120cfb1048383", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb77a896120cfb1048385", + "_tpl": "55d45d3f4bdc2d972f8b456c", + "parentId": "66cbb77a896120cfb1048383", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb77a896120cfb1048386", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "66cbb77a896120cfb1048383", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb77a896120cfb1048388", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "66cbb77a896120cfb1048386", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 6.0 + } + }, + { + "_id": "66cbb77a896120cfb1048387", + "_tpl": "56083cba4bdc2de22e8b456f", + "parentId": "66cbb77a896120cfb1048383", + "slotId": "mod_stock" } - } - ] - }, - { - "Id": "container_Test_for_export_00000", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483e4", - "Items": [ - { - "_id": "66cbb77a896120cfb10483e4", - "_tpl": "578f87a3245977356274f2cb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00192", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483e6", - "_tpl": "544fb25a4bdc2dfb738b4567", - "parentId": "66cbb77a896120cfb10483e4", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00116", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": true, - "Root": "66cbb77a896120cfb10483e8", - "Items": [ - { - "_id": "66cbb77a896120cfb10483e8", - "_tpl": "5d6fd45b86f774317075ed43", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "container_woods_design_stuff_00269", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483ea", - "Items": [ - { - "_id": "66cbb77a896120cfb10483ea", - "_tpl": "578f87ad245977356274f2cc", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483ec", - "_tpl": "606f263a8900dc2d9a55b68d", - "parentId": "66cbb77a896120cfb10483ea", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104838a", + "Items": [ + { + "_id": "66cbb77a896120cfb104838a", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104838c", + "_tpl": "57371e4124597760ff7b25f1", + "parentId": "66cbb77a896120cfb104838a", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 22 + } + }, + { + "_id": "66cbb77a896120cfb104838e", + "_tpl": "5caf187cae92157c28402e43", + "parentId": "66cbb77a896120cfb104838a", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048390", + "_tpl": "60391b0fb847c71012789415", + "parentId": "66cbb77a896120cfb104838a", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "container_woods_design_stuff_00009", - "IsContainer": true, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483ee", - "Items": [ - { - "_id": "66cbb77a896120cfb10483ee", - "_tpl": "5909d50c86f774659e6aaebe", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00103", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483f0", - "_tpl": "5d1b32c186f774252167a530", - "parentId": "66cbb77a896120cfb10483ee", - "slotId": "main", - "location": { - "x": 0, - "y": 0, - "r": 0 - }, - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "ammo_mix_stuff (100) [40b451fb-82ae-4665-8bc5-83e5d35a72a7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 101.588013, - "y": 17.831, - "z": -850.107056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483f3", - "Items": [ - { - "_id": "66cbb77a896120cfb10483f3", - "_tpl": "65702639bfc87b3a3409325c", - "upd": { - "StackObjectsCount": 1 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483f4", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb77a896120cfb10483f3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb1048392", + "Items": [ + { + "_id": "66cbb77a896120cfb1048392", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (102) [c8244cdb-1a02-4f48-82fa-1044bac226fb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 241.094, - "y": -1.38, - "z": -80.88098 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483f7", - "Items": [ - { - "_id": "66cbb77a896120cfb10483f7", - "_tpl": "657023a9126cc4a57d0e17a6", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00041", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483f8", - "_tpl": "64b8725c4b75259c590fa899", - "parentId": "66cbb77a896120cfb10483f7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb1048394", + "Items": [ + { + "_id": "66cbb77a896120cfb1048394", + "_tpl": "5d6fe50986f77449d97f7463", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048396", + "_tpl": "5c13cef886f774072e618e82", + "parentId": "66cbb77a896120cfb1048394", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (11) [08f0c87d-c564-49e4-a931-c51a09916dd6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -173.961975, - "y": 13.649, - "z": -692.118042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483fb", - "Items": [ - { - "_id": "66cbb77a896120cfb10483fb", - "_tpl": "64aceafcb5bf5e95f50a4c20", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00005", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10483fc", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "66cbb77a896120cfb10483fb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048398", + "Items": [ + { + "_id": "66cbb77a896120cfb1048398", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104839a", + "_tpl": "5cf508bfd7f00c056e24104e", + "parentId": "66cbb77a896120cfb1048398", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104839c", + "_tpl": "5e023d48186a883be655e551", + "parentId": "66cbb77a896120cfb1048398", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (21) [3be2cc54-8f17-4c49-a80d-887ced192b32]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -209.263, - "y": 2.949, - "z": 229.52002 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10483ff", - "Items": [ - { - "_id": "66cbb77a896120cfb10483ff", - "_tpl": "6570253acfc010a0f5006a1c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00037", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048400", - "_tpl": "573602322459776445391df1", - "parentId": "66cbb77a896120cfb10483ff", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb104839e", + "Items": [ + { + "_id": "66cbb77a896120cfb104839e", + "_tpl": "5d6fd13186f77424ad2a8c69", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483a0", + "_tpl": "6389c6463485cf0eeb260715", + "parentId": "66cbb77a896120cfb104839e", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483a2", + "_tpl": "57347d5f245977448b40fa81", + "parentId": "66cbb77a896120cfb104839e", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483a4", + "_tpl": "573476f124597737e04bf328", + "parentId": "66cbb77a896120cfb104839e", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483a6", + "_tpl": "5bc9c29cd4351e003562b8a3", + "parentId": "66cbb77a896120cfb104839e", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483a8", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb77a896120cfb104839e", + "slotId": "main", + "location": { + "x": 4, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483aa", + "_tpl": "62a09ee4cf4a99369e262453", + "parentId": "66cbb77a896120cfb104839e", + "slotId": "main", + "location": { + "x": 1, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483ac", + "_tpl": "57347d692459774491567cf1", + "parentId": "66cbb77a896120cfb104839e", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483ae", + "_tpl": "5734770f24597738025ee254", + "parentId": "66cbb77a896120cfb104839e", + "slotId": "main", + "location": { + "x": 3, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (24) [6d134ebd-9ecd-49a7-ae9f-42b6bc638851]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -191.419, - "y": -0.944, - "z": 253.68103 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048403", - "Items": [ - { - "_id": "66cbb77a896120cfb1048403", - "_tpl": "6570253acfc010a0f5006a1c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00248", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048404", - "_tpl": "573602322459776445391df1", - "parentId": "66cbb77a896120cfb1048403", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483b0", + "Items": [ + { + "_id": "66cbb77a896120cfb10483b0", + "_tpl": "5909e4b686f7747f5b744fa4", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483b2", + "_tpl": "5d6e68d1a4b93622fe60e845", + "parentId": "66cbb77a896120cfb10483b0", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 10 + } + }, + { + "_id": "66cbb77a896120cfb10483b4", + "_tpl": "590de7e986f7741b096e5f32", + "parentId": "66cbb77a896120cfb10483b0", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483b6", + "_tpl": "590c5a7286f7747884343aea", + "parentId": "66cbb77a896120cfb10483b0", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483b7", + "_tpl": "5c06c6a80db834001b735491", + "parentId": "66cbb77a896120cfb10483b0", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + } + }, + { + "_id": "66cbb77a896120cfb10483b8", + "_tpl": "6571199565daf6aa960c9b10", + "parentId": "66cbb77a896120cfb10483b7", + "slotId": "Helmet_top" + }, + { + "_id": "66cbb77a896120cfb10483b9", + "_tpl": "657119d49eb8c145180dbb95", + "parentId": "66cbb77a896120cfb10483b7", + "slotId": "Helmet_back" + }, + { + "_id": "66cbb77a896120cfb10483ba", + "_tpl": "657119fea330b8c9060f7afc", + "parentId": "66cbb77a896120cfb10483b7", + "slotId": "Helmet_ears" + }, + { + "_id": "66cbb77a896120cfb10483bc", + "_tpl": "57347cd0245977445a2d6ff1", + "parentId": "66cbb77a896120cfb10483b0", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (27) [ec21fde9-2c37-4ea3-bd97-cff59c526258]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -190.211975, - "y": -0.582, - "z": 251.900024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048407", - "Items": [ - { - "_id": "66cbb77a896120cfb1048407", - "_tpl": "5739d41224597779c3645501", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00134", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048408", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb77a896120cfb1048407", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483be", + "Items": [ + { + "_id": "66cbb77a896120cfb10483be", + "_tpl": "5909d5ef86f77467974efbd8", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483bf", + "_tpl": "5e870397991fd70db46995c8", + "parentId": "66cbb77a896120cfb10483be", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66cbb77a896120cfb10483c0", + "_tpl": "5e87071478f43e51ca2de5e1", + "parentId": "66cbb77a896120cfb10483bf", + "slotId": "mod_barrel" + }, + { + "_id": "66cbb77a896120cfb10483c1", + "_tpl": "5e8708d4ae379e67d22e0102", + "parentId": "66cbb77a896120cfb10483c0", + "slotId": "mod_sight_front" + }, + { + "_id": "66cbb77a896120cfb10483c2", + "_tpl": "5e87076ce2db31558c75a11d", + "parentId": "66cbb77a896120cfb10483bf", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb77a896120cfb10483c3", + "_tpl": "5e87080c81c4ed43e83cefda", + "parentId": "66cbb77a896120cfb10483bf", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb77a896120cfb10483c6", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "66cbb77a896120cfb10483c3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 4.0 + } + }, + { + "_id": "66cbb77a896120cfb10483c4", + "_tpl": "5e87116b81c4ed43e83cefdd", + "parentId": "66cbb77a896120cfb10483bf", + "slotId": "mod_stock" + }, + { + "_id": "66cbb77a896120cfb10483c5", + "_tpl": "5e87114fe2db31558c75a120", + "parentId": "66cbb77a896120cfb10483bf", + "slotId": "mod_mount" + }, + { + "_id": "66cbb77a896120cfb10483c8", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "66cbb77a896120cfb10483be", + "slotId": "main", + "location": { + "x": 0, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (32) [6539aba8-2a4b-4963-ba6f-5c4074da5daf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -180.471985, - "y": 0.871, - "z": 216.22998 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104840b", - "Items": [ - { - "_id": "66cbb77a896120cfb104840b", - "_tpl": "65702546cfc010a0f5006a1f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00235", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104840c", - "_tpl": "573603562459776430731618", - "parentId": "66cbb77a896120cfb104840b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483ca", + "Items": [ + { + "_id": "66cbb77a896120cfb10483ca", + "_tpl": "5d6d2b5486f774785c2ba8ea", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483cc", + "_tpl": "57513f07245977207e26a311", + "parentId": "66cbb77a896120cfb10483ca", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483cd", + "_tpl": "59f9cabd86f7743a10721f46", + "parentId": "66cbb77a896120cfb10483ca", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483ce", + "_tpl": "5998517986f7746017232f7e", + "parentId": "66cbb77a896120cfb10483cd", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66cbb77a896120cfb10483cf", + "_tpl": "599851db86f77467372f0a18", + "parentId": "66cbb77a896120cfb10483cd", + "slotId": "mod_stock" + }, + { + "_id": "66cbb77a896120cfb10483d0", + "_tpl": "5998529a86f774647f44f421", + "parentId": "66cbb77a896120cfb10483cd", + "slotId": "mod_magazine" + }, + { + "_id": "66cbb77a896120cfb10483d6", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb77a896120cfb10483d0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 9.0 + } + }, + { + "_id": "66cbb77a896120cfb10483d1", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "66cbb77a896120cfb10483cd", + "slotId": "mod_muzzle" + }, + { + "_id": "66cbb77a896120cfb10483d2", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "66cbb77a896120cfb10483cd", + "slotId": "mod_reciever" + }, + { + "_id": "66cbb77a896120cfb10483d3", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "66cbb77a896120cfb10483cd", + "slotId": "mod_sight_rear" + }, + { + "_id": "66cbb77a896120cfb10483d4", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "66cbb77a896120cfb10483cd", + "slotId": "mod_gas_block" + }, + { + "_id": "66cbb77a896120cfb10483d5", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "66cbb77a896120cfb10483d4", + "slotId": "mod_handguard" + }, + { + "_id": "66cbb77a896120cfb10483d8", + "_tpl": "59e3577886f774176a362503", + "parentId": "66cbb77a896120cfb10483ca", + "slotId": "main", + "location": { + "x": 3, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (37) [916cb7df-39c8-453f-8912-9cdcc1c61f55]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -206.88, - "y": 1.117, - "z": 203.651 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104840f", - "Items": [ - { - "_id": "66cbb77a896120cfb104840f", - "_tpl": "657024d8c5d7d4cb4d078567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00223", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048410", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "66cbb77a896120cfb104840f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483da", + "Items": [ + { + "_id": "66cbb77a896120cfb10483da", + "_tpl": "5d6d2bb386f774785b07a77a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483dc", + "_tpl": "66b5f693acff495a294927e3", + "parentId": "66cbb77a896120cfb10483da", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483de", + "_tpl": "590c311186f77424d1667482", + "parentId": "66cbb77a896120cfb10483da", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483e0", + "_tpl": "575062b524597720a31c09a1", + "parentId": "66cbb77a896120cfb10483da", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483e2", + "_tpl": "590a391c86f774385a33c404", + "parentId": "66cbb77a896120cfb10483da", + "slotId": "main", + "location": { + "x": 0, + "y": 2, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (38) [772b4fe4-16ab-4d72-a407-f4c48d8d8c3a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -185.143, - "y": 1.328, - "z": 198.966 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048413", - "Items": [ - { - "_id": "66cbb77a896120cfb1048413", - "_tpl": "573728f324597765e5728561", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_Test_for_export_00000", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048414", - "_tpl": "5737218f245977612125ba51", - "parentId": "66cbb77a896120cfb1048413", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483e4", + "Items": [ + { + "_id": "66cbb77a896120cfb10483e4", + "_tpl": "578f87a3245977356274f2cb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483e6", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "66cbb77a896120cfb10483e4", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (39) [05944d03-4209-4927-be74-d581535abb33]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -184.453, - "y": 0.909, - "z": 198.890991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048418", - "Items": [ - { - "_id": "66cbb77a896120cfb1048418", - "_tpl": "57372fc52459776998772ca1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00116", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048419", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb77a896120cfb1048418", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104841a", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb77a896120cfb1048418", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": true, + "Root": "66cbb77a896120cfb10483e8", + "Items": [ + { + "_id": "66cbb77a896120cfb10483e8", + "_tpl": "5d6fd45b86f774317075ed43", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (40) [411966ad-2ce3-48fe-9c4f-e0b303f81248]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -135.302979, - "y": 11.478, - "z": -690.909058 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104841d", - "Items": [ - { - "_id": "66cbb77a896120cfb104841d", - "_tpl": "5737300424597769942d5a01", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00269", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104841e", - "_tpl": "56dff4ecd2720b5f5a8b4568", - "parentId": "66cbb77a896120cfb104841d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483ea", + "Items": [ + { + "_id": "66cbb77a896120cfb10483ea", + "_tpl": "578f87ad245977356274f2cc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483ec", + "_tpl": "606f263a8900dc2d9a55b68d", + "parentId": "66cbb77a896120cfb10483ea", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (41) [cb290d75-40a7-4848-813e-12f943943dd3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -135.729, - "y": 11.478, - "z": -690.556 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048421", - "Items": [ - { - "_id": "66cbb77a896120cfb1048421", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "container_woods_design_stuff_00009", + "IsContainer": true, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048422", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66cbb77a896120cfb1048421", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483ee", + "Items": [ + { + "_id": "66cbb77a896120cfb10483ee", + "_tpl": "5909d50c86f774659e6aaebe", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483f0", + "_tpl": "5d1b32c186f774252167a530", + "parentId": "66cbb77a896120cfb10483ee", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0 + }, + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (42) [9ff2abd6-0cba-4b7b-bb97-44182fd19ca6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -135.002991, - "y": 11.543, - "z": -690.078 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048425", - "Items": [ - { - "_id": "66cbb77a896120cfb1048425", - "_tpl": "657024d2bfc87b3a34093235", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (100) [40b451fb-82ae-4665-8bc5-83e5d35a72a7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 101.588013, + "y": 17.831, + "z": -850.107056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048426", - "_tpl": "5ba26844d4351e00334c9475", - "parentId": "66cbb77a896120cfb1048425", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483f3", + "Items": [ + { + "_id": "66cbb77a896120cfb10483f3", + "_tpl": "65702639bfc87b3a3409325c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483f4", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb77a896120cfb10483f3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (43) [dd50ce45-c889-410f-9168-50d45cd6d16c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -129.044983, - "y": 11.631, - "z": -684.057 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048429", - "Items": [ - { - "_id": "66cbb77a896120cfb1048429", - "_tpl": "6570240a1419851aef03e6f7", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (102) [c8244cdb-1a02-4f48-82fa-1044bac226fb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 241.094, + "y": -1.38, + "z": -80.88098 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104842a", - "_tpl": "5efb0d4f4bc50b58e81710f3", - "parentId": "66cbb77a896120cfb1048429", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483f7", + "Items": [ + { + "_id": "66cbb77a896120cfb10483f7", + "_tpl": "657023a9126cc4a57d0e17a6", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483f8", + "_tpl": "64b8725c4b75259c590fa899", + "parentId": "66cbb77a896120cfb10483f7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (46) [9d24a37b-19cb-433b-9d91-7a3b42588f43]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 226.675049, - "y": 24.512, - "z": -694.99 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104842d", - "Items": [ - { - "_id": "66cbb77a896120cfb104842d", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (11) [08f0c87d-c564-49e4-a931-c51a09916dd6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -173.961975, + "y": 13.649, + "z": -692.118042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104842e", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbb77a896120cfb104842d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483fb", + "Items": [ + { + "_id": "66cbb77a896120cfb10483fb", + "_tpl": "64aceafcb5bf5e95f50a4c20", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10483fc", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "66cbb77a896120cfb10483fb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (48) [a0309e4d-c78e-45ae-a0e9-29085d2cd65b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 226.31897, - "y": 25.134, - "z": -696.457031 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048431", - "Items": [ - { - "_id": "66cbb77a896120cfb1048431", - "_tpl": "6570260c1419851aef03e727", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (21) [3be2cc54-8f17-4c49-a80d-887ced192b32]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -209.263, + "y": 2.949, + "z": 229.52002 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048432", - "_tpl": "573719762459775a626ccbc1", - "parentId": "66cbb77a896120cfb1048431", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10483ff", + "Items": [ + { + "_id": "66cbb77a896120cfb10483ff", + "_tpl": "6570253acfc010a0f5006a1c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048400", + "_tpl": "573602322459776445391df1", + "parentId": "66cbb77a896120cfb10483ff", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (49) [98cf59a0-6555-4ea2-a5bc-d02f88ffee6c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 226.448975, - "y": 25.134, - "z": -696.121 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048435", - "Items": [ - { - "_id": "66cbb77a896120cfb1048435", - "_tpl": "657023f1bfc87b3a34093210", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (24) [6d134ebd-9ecd-49a7-ae9f-42b6bc638851]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -191.419, + "y": -0.944, + "z": 253.68103 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048436", - "_tpl": "59e6542b86f77411dc52a77a", - "parentId": "66cbb77a896120cfb1048435", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048403", + "Items": [ + { + "_id": "66cbb77a896120cfb1048403", + "_tpl": "6570253acfc010a0f5006a1c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048404", + "_tpl": "573602322459776445391df1", + "parentId": "66cbb77a896120cfb1048403", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (55) [fb17d7aa-56ac-48ff-9859-872ddff3ef9d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.624023, - "y": 50.831, - "z": -230.833008 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048439", - "Items": [ - { - "_id": "66cbb77a896120cfb1048439", - "_tpl": "657025421419851aef03e71e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (27) [ec21fde9-2c37-4ea3-bd97-cff59c526258]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -190.211975, + "y": -0.582, + "z": 251.900024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104843a", - "_tpl": "5736026a245977644601dc61", - "parentId": "66cbb77a896120cfb1048439", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048407", + "Items": [ + { + "_id": "66cbb77a896120cfb1048407", + "_tpl": "5739d41224597779c3645501", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048408", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb77a896120cfb1048407", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (57) [5762ecf1-702d-4b5a-a344-3ce758270834]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -164.901, - "y": 51.076, - "z": -231.385986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104843d", - "Items": [ - { - "_id": "66cbb77a896120cfb104843d", - "_tpl": "5649ed104bdc2d3d1c8b458b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (32) [6539aba8-2a4b-4963-ba6f-5c4074da5daf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -180.471985, + "y": 0.871, + "z": 216.22998 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104843e", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "66cbb77a896120cfb104843d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104840b", + "Items": [ + { + "_id": "66cbb77a896120cfb104840b", + "_tpl": "65702546cfc010a0f5006a1f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104840c", + "_tpl": "573603562459776430731618", + "parentId": "66cbb77a896120cfb104840b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (61) [6f8b0215-16af-4f03-9264-197e89344778]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -461.293, - "y": 15.319, - "z": -345.166016 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048441", - "Items": [ - { - "_id": "66cbb77a896120cfb1048441", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (37) [916cb7df-39c8-453f-8912-9cdcc1c61f55]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -206.88, + "y": 1.117, + "z": 203.651 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048442", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb77a896120cfb1048441", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104840f", + "Items": [ + { + "_id": "66cbb77a896120cfb104840f", + "_tpl": "657024d8c5d7d4cb4d078567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048410", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "66cbb77a896120cfb104840f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (62) [15fbc822-5bbe-42e5-8b77-37c443e8e51c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -460.786, - "y": 15.319, - "z": -345.381958 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048446", - "Items": [ - { - "_id": "66cbb77a896120cfb1048446", - "_tpl": "6570249f1419851aef03e709", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (38) [772b4fe4-16ab-4d72-a407-f4c48d8d8c3a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -185.143, + "y": 1.328, + "z": 198.966 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048447", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbb77a896120cfb1048446", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048413", + "Items": [ + { + "_id": "66cbb77a896120cfb1048413", + "_tpl": "573728f324597765e5728561", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048414", + "_tpl": "5737218f245977612125ba51", + "parentId": "66cbb77a896120cfb1048413", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } + ] + }, + { + "Id": "ammo_mix_stuff (39) [05944d03-4209-4927-be74-d581535abb33]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -184.453, + "y": 0.909, + "z": 198.890991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048448", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbb77a896120cfb1048446", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048418", + "Items": [ + { + "_id": "66cbb77a896120cfb1048418", + "_tpl": "57372fc52459776998772ca1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048419", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb77a896120cfb1048418", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb77a896120cfb104841a", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb77a896120cfb1048418", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (65) [f59a4c26-91d4-4824-9c90-d7317fda03a4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -210.328, - "y": 77.45, - "z": -269.232056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104844c", - "Items": [ - { - "_id": "66cbb77a896120cfb104844c", - "_tpl": "6570244ec5d7d4cb4d078558", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (40) [411966ad-2ce3-48fe-9c4f-e0b303f81248]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -135.302979, + "y": 11.478, + "z": -690.909058 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104844d", - "_tpl": "5d6e6869a4b9361c140bcfde", - "parentId": "66cbb77a896120cfb104844c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104841d", + "Items": [ + { + "_id": "66cbb77a896120cfb104841d", + "_tpl": "5737300424597769942d5a01", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104841e", + "_tpl": "56dff4ecd2720b5f5a8b4568", + "parentId": "66cbb77a896120cfb104841d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "ammo_mix_stuff (41) [cb290d75-40a7-4848-813e-12f943943dd3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -135.729, + "y": 11.478, + "z": -690.556 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104844e", - "_tpl": "5d6e6869a4b9361c140bcfde", - "parentId": "66cbb77a896120cfb104844c", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048421", + "Items": [ + { + "_id": "66cbb77a896120cfb1048421", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048422", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66cbb77a896120cfb1048421", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (69) [ea97c049-771d-4f84-ab97-7dc4a257a51e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -159.05603, - "y": 52.032, - "z": -275.170044 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048451", - "Items": [ - { - "_id": "66cbb77a896120cfb1048451", - "_tpl": "6570253ec5d7d4cb4d078573", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_mix_stuff (42) [9ff2abd6-0cba-4b7b-bb97-44182fd19ca6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -135.002991, + "y": 11.543, + "z": -690.078 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048425", + "Items": [ + { + "_id": "66cbb77a896120cfb1048425", + "_tpl": "657024d2bfc87b3a34093235", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048426", + "_tpl": "5ba26844d4351e00334c9475", + "parentId": "66cbb77a896120cfb1048425", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } + ] + }, + { + "Id": "ammo_mix_stuff (43) [dd50ce45-c889-410f-9168-50d45cd6d16c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -129.044983, + "y": 11.631, + "z": -684.057 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048452", - "_tpl": "5735fdcd2459776445391d61", - "parentId": "66cbb77a896120cfb1048451", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048429", + "Items": [ + { + "_id": "66cbb77a896120cfb1048429", + "_tpl": "6570240a1419851aef03e6f7", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104842a", + "_tpl": "5efb0d4f4bc50b58e81710f3", + "parentId": "66cbb77a896120cfb1048429", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (7) [4f0e4390-0346-4a4f-ab57-21c470420896]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 143.098022, - "y": 24.546, - "z": -728.313 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048455", - "Items": [ - { - "_id": "66cbb77a896120cfb1048455", - "_tpl": "6570251ccfc010a0f5006a13", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (46) [9d24a37b-19cb-433b-9d91-7a3b42588f43]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 226.675049, + "y": 24.512, + "z": -694.99 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048456", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbb77a896120cfb1048455", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104842d", + "Items": [ + { + "_id": "66cbb77a896120cfb104842d", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104842e", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbb77a896120cfb104842d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (72) [cef08e8d-d425-45cf-beb7-53c35c4adac6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -463.068, - "y": 18.785, - "z": -360.751953 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048459", - "Items": [ - { - "_id": "66cbb77a896120cfb1048459", - "_tpl": "65702629cfc010a0f5006a47", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (48) [a0309e4d-c78e-45ae-a0e9-29085d2cd65b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 226.31897, + "y": 25.134, + "z": -696.457031 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104845a", - "_tpl": "57371f8d24597761006c6a81", - "parentId": "66cbb77a896120cfb1048459", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048431", + "Items": [ + { + "_id": "66cbb77a896120cfb1048431", + "_tpl": "6570260c1419851aef03e727", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048432", + "_tpl": "573719762459775a626ccbc1", + "parentId": "66cbb77a896120cfb1048431", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (75) [b017838b-0ff7-4cec-81a5-c67fd943dabd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -530.875, - "y": 10.355, - "z": -462.724976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104845d", - "Items": [ - { - "_id": "66cbb77a896120cfb104845d", - "_tpl": "657026341419851aef03e730", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (49) [98cf59a0-6555-4ea2-a5bc-d02f88ffee6c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 226.448975, + "y": 25.134, + "z": -696.121 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104845e", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb77a896120cfb104845d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048435", + "Items": [ + { + "_id": "66cbb77a896120cfb1048435", + "_tpl": "657023f1bfc87b3a34093210", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048436", + "_tpl": "59e6542b86f77411dc52a77a", + "parentId": "66cbb77a896120cfb1048435", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (77) [fb2093f0-5890-4eb6-a5ae-e43d8416842f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -531.351, - "y": 10.355, - "z": -464.787964 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048461", - "Items": [ - { - "_id": "66cbb77a896120cfb1048461", - "_tpl": "5737287724597765e1625ae2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (55) [fb17d7aa-56ac-48ff-9859-872ddff3ef9d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.624023, + "y": 50.831, + "z": -230.833008 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048462", - "_tpl": "573720e02459776143012541", - "parentId": "66cbb77a896120cfb1048461", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048439", + "Items": [ + { + "_id": "66cbb77a896120cfb1048439", + "_tpl": "657025421419851aef03e71e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104843a", + "_tpl": "5736026a245977644601dc61", + "parentId": "66cbb77a896120cfb1048439", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (8) [8b5a244f-9e9b-4938-800a-b1460a9050f6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -170.601013, - "y": 12.788, - "z": -686.609 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048465", - "Items": [ - { - "_id": "66cbb77a896120cfb1048465", - "_tpl": "57372f5c24597769917c0131", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (57) [5762ecf1-702d-4b5a-a344-3ce758270834]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -164.901, + "y": 51.076, + "z": -231.385986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048466", - "_tpl": "56dff4a2d2720bbd668b456a", - "parentId": "66cbb77a896120cfb1048465", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104843d", + "Items": [ + { + "_id": "66cbb77a896120cfb104843d", + "_tpl": "5649ed104bdc2d3d1c8b458b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104843e", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "66cbb77a896120cfb104843d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (80) [09bbc58d-729b-4b2a-8c34-2e7358200538]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 258.261, - "y": 29.991, - "z": -433.406 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104846a", - "Items": [ - { - "_id": "66cbb77a896120cfb104846a", - "_tpl": "6570249f1419851aef03e709", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (61) [6f8b0215-16af-4f03-9264-197e89344778]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -461.293, + "y": 15.319, + "z": -345.166016 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104846b", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbb77a896120cfb104846a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048441", + "Items": [ + { + "_id": "66cbb77a896120cfb1048441", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048442", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb77a896120cfb1048441", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "ammo_mix_stuff (62) [15fbc822-5bbe-42e5-8b77-37c443e8e51c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -460.786, + "y": 15.319, + "z": -345.381958 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104846c", - "_tpl": "5d6e6a05a4b93618084f58d0", - "parentId": "66cbb77a896120cfb104846a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048446", + "Items": [ + { + "_id": "66cbb77a896120cfb1048446", + "_tpl": "6570249f1419851aef03e709", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048447", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbb77a896120cfb1048446", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb77a896120cfb1048448", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbb77a896120cfb1048446", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (82) [baa359f0-d462-4ffb-8727-cc5cb4ab866d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 257.667969, - "y": 29.991, - "z": -433.475952 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104846f", - "Items": [ - { - "_id": "66cbb77a896120cfb104846f", - "_tpl": "657025961419851aef03e721", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (65) [f59a4c26-91d4-4824-9c90-d7317fda03a4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -210.328, + "y": 77.45, + "z": -269.232056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048470", - "_tpl": "5c3df7d588a4501f290594e5", - "parentId": "66cbb77a896120cfb104846f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104844c", + "Items": [ + { + "_id": "66cbb77a896120cfb104844c", + "_tpl": "6570244ec5d7d4cb4d078558", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104844d", + "_tpl": "5d6e6869a4b9361c140bcfde", + "parentId": "66cbb77a896120cfb104844c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb77a896120cfb104844e", + "_tpl": "5d6e6869a4b9361c140bcfde", + "parentId": "66cbb77a896120cfb104844c", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (85) [1b8586f3-fbe5-4c5e-bc7a-4e1712a2c99c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -25.71698, - "y": 10.271, - "z": -740.78 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048473", - "Items": [ - { - "_id": "66cbb77a896120cfb1048473", - "_tpl": "657023eccfc010a0f50069ef", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (69) [ea97c049-771d-4f84-ab97-7dc4a257a51e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -159.05603, + "y": 52.032, + "z": -275.170044 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048474", - "_tpl": "62330c40bdd19b369e1e53d1", - "parentId": "66cbb77a896120cfb1048473", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 25 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048451", + "Items": [ + { + "_id": "66cbb77a896120cfb1048451", + "_tpl": "6570253ec5d7d4cb4d078573", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048452", + "_tpl": "5735fdcd2459776445391d61", + "parentId": "66cbb77a896120cfb1048451", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (87) [e028d798-6e85-4bd9-bc9c-2d8bc939559b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 190.391968, - "y": 10.973, - "z": -581.376953 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048477", - "Items": [ - { - "_id": "66cbb77a896120cfb1048477", - "_tpl": "657025a81419851aef03e724", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (7) [4f0e4390-0346-4a4f-ab57-21c470420896]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 143.098022, + "y": 24.546, + "z": -728.313 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048478", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb77a896120cfb1048477", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048455", + "Items": [ + { + "_id": "66cbb77a896120cfb1048455", + "_tpl": "6570251ccfc010a0f5006a13", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048456", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbb77a896120cfb1048455", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (88) [b5d628c1-12b8-4ea0-8b5d-76e351574be4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 194.495, - "y": 11.695, - "z": -582.154053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104847b", - "Items": [ - { - "_id": "66cbb77a896120cfb104847b", - "_tpl": "657026341419851aef03e730", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (72) [cef08e8d-d425-45cf-beb7-53c35c4adac6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -463.068, + "y": 18.785, + "z": -360.751953 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104847c", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb77a896120cfb104847b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048459", + "Items": [ + { + "_id": "66cbb77a896120cfb1048459", + "_tpl": "65702629cfc010a0f5006a47", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104845a", + "_tpl": "57371f8d24597761006c6a81", + "parentId": "66cbb77a896120cfb1048459", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (91) [637dc7a8-4bda-4c99-8a68-27b17fc1bb29]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -501.344, - "y": 17.228, - "z": -411.64 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104847f", - "Items": [ - { - "_id": "66cbb77a896120cfb104847f", - "_tpl": "573726d824597765d96be361", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (75) [b017838b-0ff7-4cec-81a5-c67fd943dabd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -530.875, + "y": 10.355, + "z": -462.724976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048480", - "_tpl": "57371f2b24597761224311f1", - "parentId": "66cbb77a896120cfb104847f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104845d", + "Items": [ + { + "_id": "66cbb77a896120cfb104845d", + "_tpl": "657026341419851aef03e730", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104845e", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb77a896120cfb104845d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (94) [91694f6b-c9d1-42d0-892b-8b4e4fd3be2c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -468.77, - "y": 16.453, - "z": -459.01 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048483", - "Items": [ - { - "_id": "66cbb77a896120cfb1048483", - "_tpl": "57372bd3245977670b7cd243", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (77) [fb2093f0-5890-4eb6-a5ae-e43d8416842f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -531.351, + "y": 10.355, + "z": -464.787964 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048484", - "_tpl": "56dff026d2720bb8668b4567", - "parentId": "66cbb77a896120cfb1048483", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048461", + "Items": [ + { + "_id": "66cbb77a896120cfb1048461", + "_tpl": "5737287724597765e1625ae2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048462", + "_tpl": "573720e02459776143012541", + "parentId": "66cbb77a896120cfb1048461", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (95) [e624d378-200f-43e0-992d-a5905c310226]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -469.42, - "y": 16.453, - "z": -459.655029 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048487", - "Items": [ - { - "_id": "66cbb77a896120cfb1048487", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (8) [8b5a244f-9e9b-4938-800a-b1460a9050f6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -170.601013, + "y": 12.788, + "z": -686.609 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048488", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbb77a896120cfb1048487", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048465", + "Items": [ + { + "_id": "66cbb77a896120cfb1048465", + "_tpl": "57372f5c24597769917c0131", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048466", + "_tpl": "56dff4a2d2720bbd668b456a", + "parentId": "66cbb77a896120cfb1048465", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "ammo_mix_stuff (97) [487c2a84-ed79-48a6-a27f-10582ad3eaad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -258.922974, - "y": 18.54, - "z": -655.785034 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104848b", - "Items": [ - { - "_id": "66cbb77a896120cfb104848b", - "_tpl": "64acea2c03378853630da53e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (80) [09bbc58d-729b-4b2a-8c34-2e7358200538]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 258.261, + "y": 29.991, + "z": -433.406 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104848c", - "_tpl": "59e4d3d286f774176a36250a", - "parentId": "66cbb77a896120cfb104848b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104846a", + "Items": [ + { + "_id": "66cbb77a896120cfb104846a", + "_tpl": "6570249f1419851aef03e709", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104846b", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbb77a896120cfb104846a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb77a896120cfb104846c", + "_tpl": "5d6e6a05a4b93618084f58d0", + "parentId": "66cbb77a896120cfb104846a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (11) [2c98619a-7bfc-4482-b1b1-37cca463dfba]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 276.029053, - "y": 23.654, - "z": -511.608032 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104848f", - "Items": [ - { - "_id": "66cbb77a896120cfb104848f", - "_tpl": "648986bbc827d4637f01791e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_mix_stuff (82) [baa359f0-d462-4ffb-8727-cc5cb4ab866d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 257.667969, + "y": 29.991, + "z": -433.475952 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104846f", + "Items": [ + { + "_id": "66cbb77a896120cfb104846f", + "_tpl": "657025961419851aef03e721", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048470", + "_tpl": "5c3df7d588a4501f290594e5", + "parentId": "66cbb77a896120cfb104846f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "ammo_mix_stuff (85) [1b8586f3-fbe5-4c5e-bc7a-4e1712a2c99c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -25.71698, + "y": 10.271, + "z": -740.78 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048490", - "_tpl": "5cc80f38e4a949001152b560", - "parentId": "66cbb77a896120cfb104848f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048473", + "Items": [ + { + "_id": "66cbb77a896120cfb1048473", + "_tpl": "657023eccfc010a0f50069ef", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048474", + "_tpl": "62330c40bdd19b369e1e53d1", + "parentId": "66cbb77a896120cfb1048473", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 25 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (12) [b516d8da-fc73-4b02-998f-970963d02e81]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 275.952026, - "y": 23.654, - "z": -510.896973 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048493", - "Items": [ - { - "_id": "66cbb77a896120cfb1048493", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (87) [e028d798-6e85-4bd9-bc9c-2d8bc939559b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 190.391968, + "y": 10.973, + "z": -581.376953 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048494", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb77a896120cfb1048493", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048477", + "Items": [ + { + "_id": "66cbb77a896120cfb1048477", + "_tpl": "657025a81419851aef03e724", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048478", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb77a896120cfb1048477", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (13) [d536aee7-49fb-4153-a904-a7494ad75535]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 275.469, - "y": 23.654, - "z": -510.953979 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048497", - "Items": [ - { - "_id": "66cbb77a896120cfb1048497", - "_tpl": "6570240a1419851aef03e6f7", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (88) [b5d628c1-12b8-4ea0-8b5d-76e351574be4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 194.495, + "y": 11.695, + "z": -582.154053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048498", - "_tpl": "5efb0d4f4bc50b58e81710f3", - "parentId": "66cbb77a896120cfb1048497", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104847b", + "Items": [ + { + "_id": "66cbb77a896120cfb104847b", + "_tpl": "657026341419851aef03e730", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104847c", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb77a896120cfb104847b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (14) [44f326d6-443b-45bf-84c0-362aa599681d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 276.394043, - "y": 23.654, - "z": -511.333984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104849b", - "Items": [ - { - "_id": "66cbb77a896120cfb104849b", - "_tpl": "64898583d5b4df6140000a1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (91) [637dc7a8-4bda-4c99-8a68-27b17fc1bb29]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -501.344, + "y": 17.228, + "z": -411.64 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104849c", - "_tpl": "601949593ae8f707c4608daa", - "parentId": "66cbb77a896120cfb104849b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104847f", + "Items": [ + { + "_id": "66cbb77a896120cfb104847f", + "_tpl": "573726d824597765d96be361", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048480", + "_tpl": "57371f2b24597761224311f1", + "parentId": "66cbb77a896120cfb104847f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (18) [06123133-1449-424a-b3c0-4648b50b3294]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 292.266968, - "y": 24.129, - "z": -506.422974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104849f", - "Items": [ - { - "_id": "66cbb77a896120cfb104849f", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (94) [91694f6b-c9d1-42d0-892b-8b4e4fd3be2c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -468.77, + "y": 16.453, + "z": -459.01 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484a0", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbb77a896120cfb104849f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048483", + "Items": [ + { + "_id": "66cbb77a896120cfb1048483", + "_tpl": "57372bd3245977670b7cd243", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048484", + "_tpl": "56dff026d2720bb8668b4567", + "parentId": "66cbb77a896120cfb1048483", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (19) [4f2d920a-d220-48e4-938b-50ebb2af0526]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 292.209961, - "y": 24.531, - "z": -506.92395 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484a3", - "Items": [ - { - "_id": "66cbb77a896120cfb10484a3", - "_tpl": "65702591c5d7d4cb4d07857c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (95) [e624d378-200f-43e0-992d-a5905c310226]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -469.42, + "y": 16.453, + "z": -459.655029 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484a4", - "_tpl": "5c925fa22e221601da359b7b", - "parentId": "66cbb77a896120cfb10484a3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048487", + "Items": [ + { + "_id": "66cbb77a896120cfb1048487", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048488", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbb77a896120cfb1048487", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (22) [e159fcde-cd85-405d-8f19-ff74052db2fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 291.170044, - "y": 24.075, - "z": -506.134033 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484a8", - "Items": [ - { - "_id": "66cbb77a896120cfb10484a8", - "_tpl": "6570249bcfc010a0f5006a07", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_mix_stuff (97) [487c2a84-ed79-48a6-a27f-10582ad3eaad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -258.922974, + "y": 18.54, + "z": -655.785034 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484a9", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbb77a896120cfb10484a8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104848b", + "Items": [ + { + "_id": "66cbb77a896120cfb104848b", + "_tpl": "64acea2c03378853630da53e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104848c", + "_tpl": "59e4d3d286f774176a36250a", + "parentId": "66cbb77a896120cfb104848b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "ammo_nato_mix_stuff (11) [2c98619a-7bfc-4482-b1b1-37cca463dfba]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 276.029053, + "y": 23.654, + "z": -511.608032 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484aa", - "_tpl": "5d6e6a5fa4b93614ec501745", - "parentId": "66cbb77a896120cfb10484a8", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104848f", + "Items": [ + { + "_id": "66cbb77a896120cfb104848f", + "_tpl": "648986bbc827d4637f01791e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048490", + "_tpl": "5cc80f38e4a949001152b560", + "parentId": "66cbb77a896120cfb104848f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (23) [49cd3ef9-05f9-49f4-9b5c-7197a39a9d11]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 266.223022, - "y": 23.102, - "z": -520.605 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484ad", - "Items": [ - { - "_id": "66cbb77a896120cfb10484ad", - "_tpl": "657023bebfc87b3a34093207", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (12) [b516d8da-fc73-4b02-998f-970963d02e81]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 275.952026, + "y": 23.654, + "z": -510.896973 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484ae", - "_tpl": "5fbe3ffdf8b6a877a729ea82", - "parentId": "66cbb77a896120cfb10484ad", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048493", + "Items": [ + { + "_id": "66cbb77a896120cfb1048493", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048494", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb77a896120cfb1048493", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (24) [1ca464bb-7d5d-4248-9aa1-0bfb98579f58]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 265.996948, - "y": 23.102, - "z": -520.089 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484b1", - "Items": [ - { - "_id": "66cbb77a896120cfb10484b1", - "_tpl": "657023bebfc87b3a34093207", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (13) [d536aee7-49fb-4153-a904-a7494ad75535]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 275.469, + "y": 23.654, + "z": -510.953979 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484b2", - "_tpl": "5fbe3ffdf8b6a877a729ea82", - "parentId": "66cbb77a896120cfb10484b1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048497", + "Items": [ + { + "_id": "66cbb77a896120cfb1048497", + "_tpl": "6570240a1419851aef03e6f7", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048498", + "_tpl": "5efb0d4f4bc50b58e81710f3", + "parentId": "66cbb77a896120cfb1048497", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (25) [58f1e793-5536-4ce8-acdd-f82d702506b9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 266.531, - "y": 23.102, - "z": -520.108032 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484b5", - "Items": [ - { - "_id": "66cbb77a896120cfb10484b5", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (14) [44f326d6-443b-45bf-84c0-362aa599681d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 276.394043, + "y": 23.654, + "z": -511.333984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484b6", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb77a896120cfb10484b5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104849b", + "Items": [ + { + "_id": "66cbb77a896120cfb104849b", + "_tpl": "64898583d5b4df6140000a1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104849c", + "_tpl": "601949593ae8f707c4608daa", + "parentId": "66cbb77a896120cfb104849b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (26) [896a399d-57c2-4fbe-adc7-0494a59f807e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 266.734, - "y": 23.102, - "z": -519.634033 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484b9", - "Items": [ - { - "_id": "66cbb77a896120cfb10484b9", - "_tpl": "65702406bfc87b3a34093216", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (18) [06123133-1449-424a-b3c0-4648b50b3294]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 292.266968, + "y": 24.129, + "z": -506.422974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484ba", - "_tpl": "5efb0fc6aeb21837e749c801", - "parentId": "66cbb77a896120cfb10484b9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104849f", + "Items": [ + { + "_id": "66cbb77a896120cfb104849f", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484a0", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbb77a896120cfb104849f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (27) [41a46b0d-ff68-400c-bc39-42c98f2dfdd1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 290.574951, - "y": 23.859, - "z": -502.222046 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484bd", - "Items": [ - { - "_id": "66cbb77a896120cfb10484bd", - "_tpl": "657024c81419851aef03e712", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (19) [4f2d920a-d220-48e4-938b-50ebb2af0526]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 292.209961, + "y": 24.531, + "z": -506.92395 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484be", - "_tpl": "5ba26812d4351e003201fef1", - "parentId": "66cbb77a896120cfb10484bd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484a3", + "Items": [ + { + "_id": "66cbb77a896120cfb10484a3", + "_tpl": "65702591c5d7d4cb4d07857c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484a4", + "_tpl": "5c925fa22e221601da359b7b", + "parentId": "66cbb77a896120cfb10484a3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (28) [c6dec5ae-19eb-4923-b743-fbeb80992385]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 308.948, - "y": 23.169, - "z": -460.475952 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484c1", - "Items": [ - { - "_id": "66cbb77a896120cfb10484c1", - "_tpl": "6570255dbfc87b3a3409324a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (22) [e159fcde-cd85-405d-8f19-ff74052db2fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 291.170044, + "y": 24.075, + "z": -506.134033 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484c2", - "_tpl": "5e023e88277cce2b522ff2b1", - "parentId": "66cbb77a896120cfb10484c1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484a8", + "Items": [ + { + "_id": "66cbb77a896120cfb10484a8", + "_tpl": "6570249bcfc010a0f5006a07", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484a9", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbb77a896120cfb10484a8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb77a896120cfb10484aa", + "_tpl": "5d6e6a5fa4b93614ec501745", + "parentId": "66cbb77a896120cfb10484a8", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (29) [2949ec9b-635c-44b4-b971-05df070b0b58]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 308.738037, - "y": 23.169, - "z": -460.743042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484c5", - "Items": [ - { - "_id": "66cbb77a896120cfb10484c5", - "_tpl": "657024cecfc010a0f5006a0a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (23) [49cd3ef9-05f9-49f4-9b5c-7197a39a9d11]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 266.223022, + "y": 23.102, + "z": -520.605 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484c6", - "_tpl": "5ba2678ad4351e44f824b344", - "parentId": "66cbb77a896120cfb10484c5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484ad", + "Items": [ + { + "_id": "66cbb77a896120cfb10484ad", + "_tpl": "657023bebfc87b3a34093207", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484ae", + "_tpl": "5fbe3ffdf8b6a877a729ea82", + "parentId": "66cbb77a896120cfb10484ad", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (3) [a18c739e-38b3-4e8d-bd3f-a7f32ae0e462]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -485.351, - "y": 15.175, - "z": -156.695984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484c9", - "Items": [ - { - "_id": "66cbb77a896120cfb10484c9", - "_tpl": "6570241bcfc010a0f50069f5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (24) [1ca464bb-7d5d-4248-9aa1-0bfb98579f58]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 265.996948, + "y": 23.102, + "z": -520.089 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484ca", - "_tpl": "5cadf6ddae9215051e1c23b2", - "parentId": "66cbb77a896120cfb10484c9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484b1", + "Items": [ + { + "_id": "66cbb77a896120cfb10484b1", + "_tpl": "657023bebfc87b3a34093207", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484b2", + "_tpl": "5fbe3ffdf8b6a877a729ea82", + "parentId": "66cbb77a896120cfb10484b1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (31) [8a010c60-09b7-4d20-9a9b-5f1fea9ca674]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 295.980957, - "y": 23.883, - "z": -441.550049 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484cd", - "Items": [ - { - "_id": "66cbb77a896120cfb10484cd", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato_mix_stuff (25) [58f1e793-5536-4ce8-acdd-f82d702506b9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 266.531, + "y": 23.102, + "z": -520.108032 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484b5", + "Items": [ + { + "_id": "66cbb77a896120cfb10484b5", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484b6", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb77a896120cfb10484b5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "ammo_nato_mix_stuff (26) [896a399d-57c2-4fbe-adc7-0494a59f807e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 266.734, + "y": 23.102, + "z": -519.634033 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484ce", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbb77a896120cfb10484cd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484b9", + "Items": [ + { + "_id": "66cbb77a896120cfb10484b9", + "_tpl": "65702406bfc87b3a34093216", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484ba", + "_tpl": "5efb0fc6aeb21837e749c801", + "parentId": "66cbb77a896120cfb10484b9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (33) [51816870-c3a5-4cb9-8923-8d7d717a86bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 295.614, - "y": 23.883, - "z": -440.590942 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484d1", - "Items": [ - { - "_id": "66cbb77a896120cfb10484d1", - "_tpl": "65702406bfc87b3a34093216", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (27) [41a46b0d-ff68-400c-bc39-42c98f2dfdd1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 290.574951, + "y": 23.859, + "z": -502.222046 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484d2", - "_tpl": "5efb0fc6aeb21837e749c801", - "parentId": "66cbb77a896120cfb10484d1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484bd", + "Items": [ + { + "_id": "66cbb77a896120cfb10484bd", + "_tpl": "657024c81419851aef03e712", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484be", + "_tpl": "5ba26812d4351e003201fef1", + "parentId": "66cbb77a896120cfb10484bd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (35) [b59a0d94-02c2-4fbe-86d3-77f8bce47fa1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 282.18396, - "y": 23.636, - "z": -437.203 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484d5", - "Items": [ - { - "_id": "66cbb77a896120cfb10484d5", - "_tpl": "657023bebfc87b3a34093207", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (28) [c6dec5ae-19eb-4923-b743-fbeb80992385]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 308.948, + "y": 23.169, + "z": -460.475952 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484d6", - "_tpl": "5fbe3ffdf8b6a877a729ea82", - "parentId": "66cbb77a896120cfb10484d5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484c1", + "Items": [ + { + "_id": "66cbb77a896120cfb10484c1", + "_tpl": "6570255dbfc87b3a3409324a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484c2", + "_tpl": "5e023e88277cce2b522ff2b1", + "parentId": "66cbb77a896120cfb10484c1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (36) [7c5167c9-8a73-4b57-8682-d208ae55fee8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 281.906982, - "y": 24.097, - "z": -436.917 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484d9", - "Items": [ - { - "_id": "66cbb77a896120cfb10484d9", - "_tpl": "657024ecc5d7d4cb4d07856d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (29) [2949ec9b-635c-44b4-b971-05df070b0b58]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 308.738037, + "y": 23.169, + "z": -460.743042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484da", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbb77a896120cfb10484d9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484c5", + "Items": [ + { + "_id": "66cbb77a896120cfb10484c5", + "_tpl": "657024cecfc010a0f5006a0a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484c6", + "_tpl": "5ba2678ad4351e44f824b344", + "parentId": "66cbb77a896120cfb10484c5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (38) [8253e9a3-9c73-4a98-8afc-77dcb37d554e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 277.880981, - "y": 23.987, - "z": -432.287 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484dd", - "Items": [ - { - "_id": "66cbb77a896120cfb10484dd", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (3) [a18c739e-38b3-4e8d-bd3f-a7f32ae0e462]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -485.351, + "y": 15.175, + "z": -156.695984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484de", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbb77a896120cfb10484dd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484c9", + "Items": [ + { + "_id": "66cbb77a896120cfb10484c9", + "_tpl": "6570241bcfc010a0f50069f5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484ca", + "_tpl": "5cadf6ddae9215051e1c23b2", + "parentId": "66cbb77a896120cfb10484c9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (39) [4aace90c-9a3a-49d4-9a99-8c7a43816545]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 277.453, - "y": 23.987, - "z": -431.824951 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484e1", - "Items": [ - { - "_id": "66cbb77a896120cfb10484e1", - "_tpl": "5447ac644bdc2d6c208b4567", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (31) [8a010c60-09b7-4d20-9a9b-5f1fea9ca674]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 295.980957, + "y": 23.883, + "z": -441.550049 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484e2", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "66cbb77a896120cfb10484e1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484cd", + "Items": [ + { + "_id": "66cbb77a896120cfb10484cd", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484ce", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbb77a896120cfb10484cd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (40) [15ee8395-8519-4a33-983d-bd8175772811]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 277.19104, - "y": 23.987, - "z": -432.022949 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484e5", - "Items": [ - { - "_id": "66cbb77a896120cfb10484e5", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (33) [51816870-c3a5-4cb9-8923-8d7d717a86bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 295.614, + "y": 23.883, + "z": -440.590942 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484e6", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb77a896120cfb10484e5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484d1", + "Items": [ + { + "_id": "66cbb77a896120cfb10484d1", + "_tpl": "65702406bfc87b3a34093216", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484d2", + "_tpl": "5efb0fc6aeb21837e749c801", + "parentId": "66cbb77a896120cfb10484d1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (41) [bdec8ab2-8b56-4c0b-862f-6bca288e8d12]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 276.930054, - "y": 23.987, - "z": -432.69104 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484e9", - "Items": [ - { - "_id": "66cbb77a896120cfb10484e9", - "_tpl": "64898583d5b4df6140000a1d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (35) [b59a0d94-02c2-4fbe-86d3-77f8bce47fa1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 282.18396, + "y": 23.636, + "z": -437.203 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484ea", - "_tpl": "601949593ae8f707c4608daa", - "parentId": "66cbb77a896120cfb10484e9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484d5", + "Items": [ + { + "_id": "66cbb77a896120cfb10484d5", + "_tpl": "657023bebfc87b3a34093207", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484d6", + "_tpl": "5fbe3ffdf8b6a877a729ea82", + "parentId": "66cbb77a896120cfb10484d5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (43) [7221d7b0-ad74-4d12-a26f-3f44e593ece1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -536.815, - "y": 21.783, - "z": -238.587036 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484ee", - "Items": [ - { - "_id": "66cbb77a896120cfb10484ee", - "_tpl": "65702449bfc87b3a34093223", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (36) [7c5167c9-8a73-4b57-8682-d208ae55fee8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 281.906982, + "y": 24.097, + "z": -436.917 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484ef", - "_tpl": "5d6e68e6a4b9361c140bcfe0", - "parentId": "66cbb77a896120cfb10484ee", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484d9", + "Items": [ + { + "_id": "66cbb77a896120cfb10484d9", + "_tpl": "657024ecc5d7d4cb4d07856d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484da", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbb77a896120cfb10484d9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "ammo_nato_mix_stuff (38) [8253e9a3-9c73-4a98-8afc-77dcb37d554e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 277.880981, + "y": 23.987, + "z": -432.287 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484f0", - "_tpl": "5d6e68e6a4b9361c140bcfe0", - "parentId": "66cbb77a896120cfb10484ee", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484dd", + "Items": [ + { + "_id": "66cbb77a896120cfb10484dd", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484de", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbb77a896120cfb10484dd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_nato_mix_stuff (49) [eb070fb3-e41d-4309-9008-4fa11cc9a03d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -537.51, - "y": 21.783, - "z": -242.51001 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484f3", - "Items": [ - { - "_id": "66cbb77a896120cfb10484f3", - "_tpl": "6570251ccfc010a0f5006a13", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (39) [4aace90c-9a3a-49d4-9a99-8c7a43816545]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 277.453, + "y": 23.987, + "z": -431.824951 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484f4", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbb77a896120cfb10484f3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484e1", + "Items": [ + { + "_id": "66cbb77a896120cfb10484e1", + "_tpl": "5447ac644bdc2d6c208b4567", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484e2", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "66cbb77a896120cfb10484e1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "ammo_var (7) [0912e82e-ad59-49a8-bc91-e6bbcb74e1a0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -187.348022, - "y": -0.884, - "z": 201.752014 - }, - "Rotation": { - "x": 0.0, - "y": 102.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484f7", - "Items": [ - { - "_id": "66cbb77a896120cfb10484f7", - "_tpl": "6489848173c462723909a14b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "ammo_nato_mix_stuff (40) [15ee8395-8519-4a33-983d-bd8175772811]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 277.19104, + "y": 23.987, + "z": -432.022949 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10484f8", - "_tpl": "5fc382a9d724d907e2077dab", - "parentId": "66cbb77a896120cfb10484f7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - } - ] - }, - { - "Id": "Arena_headphones (3) [623b8bba-9ef7-4444-be26-cfd4451eb624]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -510.837158, - "y": 16.8620033, - "z": -392.366241 - }, - "Rotation": { - "x": 359.840729, - "y": 182.5437, - "z": 354.968445 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484fa", - "Items": [ - { - "_id": "66cbb77a896120cfb10484fa", - "_tpl": "628e4e576d783146b124c64d", - "upd": { - "StackObjectsCount": 1 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484e5", + "Items": [ + { + "_id": "66cbb77a896120cfb10484e5", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484e6", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb77a896120cfb10484e5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Arena_jewerly (4) [b0c5701c-a75a-410a-8daf-1276f82d6f79]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -511.517975, - "y": 17.3580036, - "z": -389.674042 - }, - "Rotation": { - "x": 270.0, - "y": 197.454987, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484fc", - "Items": [ - { - "_id": "66cbb77a896120cfb10484fc", - "_tpl": "59faf7ca86f7740dbe19f6c2", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_siliencer (1) [0ffa7661-9ab7-4b46-8ab5-76d5812b777c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -513.302856, - "y": 16.1910038, - "z": -391.810028 - }, - "Rotation": { - "x": 5.122642e-6, - "y": 232.522675, - "z": 270.000031 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10484fe", - "Items": [ - { - "_id": "66cbb77a896120cfb10484fe", - "_tpl": "57dbb57e2459774673234890", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_siliencer (2) [0c1058fe-77e6-46bf-9dcd-e7bc15708575]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -513.7588, - "y": 16.1650028, - "z": -391.251984 - }, - "Rotation": { - "x": 5.122642e-6, - "y": 140.867935, - "z": 270.000061 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048500", - "Items": [ - { - "_id": "66cbb77a896120cfb1048500", - "_tpl": "65144ff50e00edc79406836f", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_siliencer (3) [efecfba3-278f-476a-a3be-eb05f5f64a64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -513.586853, - "y": 16.1450024, - "z": -391.6463 - }, - "Rotation": { - "x": -7.683963e-6, - "y": 13.9048452, - "z": 270.000031 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048502", - "Items": [ - { - "_id": "66cbb77a896120cfb1048502", - "_tpl": "58aeac1b86f77457c419f475", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_siliencer (4) [1c1b0cdb-8895-402d-8f84-0d1a80308d59]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -513.301147, - "y": 16.3600025, - "z": -392.278076 - }, - "Rotation": { - "x": -3.41509462e-6, - "y": 287.455017, - "z": 270.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048504", - "Items": [ - { - "_id": "66cbb77a896120cfb1048504", - "_tpl": "5c079ed60db834001a66b372", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_siliencer (5) [fb399542-5eb9-4b5e-874c-d39f5e1652f7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -511.05838, - "y": 16.8060036, - "z": -393.7999 - }, - "Rotation": { - "x": -3.41509462e-6, - "y": 287.455017, - "z": 270.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048506", - "Items": [ - { - "_id": "66cbb77a896120cfb1048506", - "_tpl": "5ba26ae8d4351e00367f9bdb", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_siliencer (6) [93f0e99f-4dbc-4d9d-81a4-fe05bc9114ce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -510.99, - "y": 16.8060036, - "z": -393.5824 - }, - "Rotation": { - "x": -3.41509462e-6, - "y": 287.455017, - "z": 270.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048508", - "Items": [ - { - "_id": "66cbb77a896120cfb1048508", - "_tpl": "5dfa3d2b0dee1b22f862eade", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_siliencer (7) [fe08ecfe-ba1d-4a13-9f56-cc80d466c426]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -511.26474, - "y": 16.8060036, - "z": -393.496 - }, - "Rotation": { - "x": -3.41509462e-6, - "y": 287.455017, - "z": 270.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104850a", - "Items": [ - { - "_id": "66cbb77a896120cfb104850a", - "_tpl": "57dbb57e2459774673234890", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_siliencer (9) [a2532619-db9a-43b9-a446-07b30a08efc8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -511.200867, - "y": 16.8060036, - "z": -388.835571 - }, - "Rotation": { - "x": -3.41509462e-6, - "y": 287.455017, - "z": 270.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104850c", - "Items": [ - { - "_id": "66cbb77a896120cfb104850c", - "_tpl": "626bb8532c923541184624b4", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Arena_siliencer [058f1750-49e2-4697-821f-db64cc5ff75d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -514.0111, - "y": 16.2860031, - "z": -392.524384 - }, - "Rotation": { - "x": -3.58584948e-5, - "y": 107.481995, - "z": 270.000031 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104850e", - "Items": [ - { - "_id": "66cbb77a896120cfb104850e", - "_tpl": "65144ff50e00edc79406836f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato_mix_stuff (41) [bdec8ab2-8b56-4c0b-862f-6bca288e8d12]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 276.930054, + "y": 23.987, + "z": -432.69104 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484e9", + "Items": [ + { + "_id": "66cbb77a896120cfb10484e9", + "_tpl": "64898583d5b4df6140000a1d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484ea", + "_tpl": "601949593ae8f707c4608daa", + "parentId": "66cbb77a896120cfb10484e9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "armor_Tarbank (3) [500d36e0-c63a-4d58-abeb-dc07cbaf56a9]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -511.097717, - "y": 18.3159122, - "z": -391.698029 - }, - "Rotation": { - "x": 270.0, - "y": 90.0519, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104850f", - "Items": [ - { - "_id": "66cbb77a896120cfb104850f", - "_tpl": "59e7635f86f7742cbf2c1095" - }, - { - "_id": "66cbb77a896120cfb1048510", - "_tpl": "65702f87722744627e05cdb8", - "parentId": "66cbb77a896120cfb104850f", - "slotId": "Soft_armor_front" - }, - { - "_id": "66cbb77a896120cfb1048511", - "_tpl": "65702fe593b7ea9c330f4ce8", - "parentId": "66cbb77a896120cfb104850f", - "slotId": "Soft_armor_back" - }, - { - "_id": "66cbb77a896120cfb1048512", - "_tpl": "6570305d93b7ea9c330f4ced", - "parentId": "66cbb77a896120cfb104850f", - "slotId": "Soft_armor_left" + { + "Id": "ammo_nato_mix_stuff (43) [7221d7b0-ad74-4d12-a26f-3f44e593ece1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -536.815, + "y": 21.783, + "z": -238.587036 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048513", - "_tpl": "65703472c9030b928a0a8a78", - "parentId": "66cbb77a896120cfb104850f", - "slotId": "soft_armor_right" - } - ] - }, - { - "Id": "blood_probe [cb318548-005b-4894-9185-54c8192fe4b7]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -94.25195, - "y": -15.702, - "z": 219.0307 - }, - "Rotation": { - "x": 274.426941, - "y": 180.0, - "z": 180.0 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048515", - "Items": [ - { - "_id": "66cbb77a896120cfb1048515", - "_tpl": "5a687e7886f7740c4a5133fb", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "Building_materials (10) [83864224-f2bf-4f0d-a7f0-5462c502af16]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 432.193, - "y": -4.581, - "z": -23.7990112 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484ee", + "Items": [ + { + "_id": "66cbb77a896120cfb10484ee", + "_tpl": "65702449bfc87b3a34093223", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484ef", + "_tpl": "5d6e68e6a4b9361c140bcfe0", + "parentId": "66cbb77a896120cfb10484ee", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb77a896120cfb10484f0", + "_tpl": "5d6e68e6a4b9361c140bcfe0", + "parentId": "66cbb77a896120cfb10484ee", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } + } + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048517", - "Items": [ - { - "_id": "66cbb77a896120cfb1048517", - "_tpl": "59e35ef086f7741777737012", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_nato_mix_stuff (49) [eb070fb3-e41d-4309-9008-4fa11cc9a03d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -537.51, + "y": 21.783, + "z": -242.51001 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484f3", + "Items": [ + { + "_id": "66cbb77a896120cfb10484f3", + "_tpl": "6570251ccfc010a0f5006a13", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484f4", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbb77a896120cfb10484f3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "Building_materials (11) [b9fca9aa-0c4a-427c-b0ae-98a34ce6be0a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 431.723022, - "y": -4.612, - "z": -24.763 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048519", - "Items": [ - { - "_id": "66cbb77a896120cfb1048519", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "ammo_var (7) [0912e82e-ad59-49a8-bc91-e6bbcb74e1a0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -187.348022, + "y": -0.884, + "z": 201.752014 + }, + "Rotation": { + "x": 0.0, + "y": 102.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484f7", + "Items": [ + { + "_id": "66cbb77a896120cfb10484f7", + "_tpl": "6489848173c462723909a14b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10484f8", + "_tpl": "5fc382a9d724d907e2077dab", + "parentId": "66cbb77a896120cfb10484f7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "Building_materials (4) [ca06682a-7c1d-46f9-8b9d-46022287ff71]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -479.01, - "y": 22.022, - "z": -228.48999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104851b", - "Items": [ - { - "_id": "66cbb77a896120cfb104851b", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_headphones (3) [623b8bba-9ef7-4444-be26-cfd4451eb624]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -510.837158, + "y": 16.8620033, + "z": -392.366241 + }, + "Rotation": { + "x": 359.840729, + "y": 182.5437, + "z": 354.968445 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484fa", + "Items": [ + { + "_id": "66cbb77a896120cfb10484fa", + "_tpl": "628e4e576d783146b124c64d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Building_materials (5) [f3b09a92-1c3d-4fd4-8815-477733e65c03]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -480.524, - "y": 22.066, - "z": -229.272949 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104851d", - "Items": [ - { - "_id": "66cbb77a896120cfb104851d", - "_tpl": "590c346786f77423e50ed342", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_jewerly (4) [b0c5701c-a75a-410a-8daf-1276f82d6f79]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -511.517975, + "y": 17.3580036, + "z": -389.674042 + }, + "Rotation": { + "x": 270.0, + "y": 197.454987, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484fc", + "Items": [ + { + "_id": "66cbb77a896120cfb10484fc", + "_tpl": "59faf7ca86f7740dbe19f6c2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Building_materials (8) [74a1e130-e07a-4707-8cb8-03584ba93f25]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 423.865967, - "y": -4.272, - "z": -24.0390015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104851f", - "Items": [ - { - "_id": "66cbb77a896120cfb104851f", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_siliencer (1) [0ffa7661-9ab7-4b46-8ab5-76d5812b777c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -513.302856, + "y": 16.1910038, + "z": -391.810028 + }, + "Rotation": { + "x": 5.122642e-6, + "y": 232.522675, + "z": 270.000031 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10484fe", + "Items": [ + { + "_id": "66cbb77a896120cfb10484fe", + "_tpl": "57dbb57e2459774673234890", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "building1 (1) [6a6639d0-1098-480b-a35f-8bc457cd55bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -505.311, - "y": 15.597, - "z": -368.609 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048521", - "Items": [ - { - "_id": "66cbb77a896120cfb1048521", - "_tpl": "59e35cbb86f7741778269d83", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_siliencer (2) [0c1058fe-77e6-46bf-9dcd-e7bc15708575]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -513.7588, + "y": 16.1650028, + "z": -391.251984 + }, + "Rotation": { + "x": 5.122642e-6, + "y": 140.867935, + "z": 270.000061 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048500", + "Items": [ + { + "_id": "66cbb77a896120cfb1048500", + "_tpl": "65144ff50e00edc79406836f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "building1 (2) [2b9136b3-9792-424e-b58d-d53d7d806a84]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -505.803, - "y": 15.597, - "z": -368.62 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048523", - "Items": [ - { - "_id": "66cbb77a896120cfb1048523", - "_tpl": "57347c1124597737fb1379e3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_siliencer (3) [efecfba3-278f-476a-a3be-eb05f5f64a64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -513.586853, + "y": 16.1450024, + "z": -391.6463 + }, + "Rotation": { + "x": -7.683963e-6, + "y": 13.9048452, + "z": 270.000031 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048502", + "Items": [ + { + "_id": "66cbb77a896120cfb1048502", + "_tpl": "58aeac1b86f77457c419f475", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "building1 (31) [27740b12-d4b0-4d56-90b6-e67783799ecf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -517.404, - "y": 15.367, - "z": -374.209961 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048525", - "Items": [ - { - "_id": "66cbb77a896120cfb1048525", - "_tpl": "59e366c186f7741778269d85", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_siliencer (4) [1c1b0cdb-8895-402d-8f84-0d1a80308d59]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -513.301147, + "y": 16.3600025, + "z": -392.278076 + }, + "Rotation": { + "x": -3.41509462e-6, + "y": 287.455017, + "z": 270.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048504", + "Items": [ + { + "_id": "66cbb77a896120cfb1048504", + "_tpl": "5c079ed60db834001a66b372", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "building1 (4) [838e9ff8-efb9-4b09-b8a3-4705f7f17555]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -512.261963, - "y": 16.201, - "z": -368.729 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048527", - "Items": [ - { - "_id": "66cbb77a896120cfb1048527", - "_tpl": "5e2af29386f7746d4159f077", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_siliencer (5) [fb399542-5eb9-4b5e-874c-d39f5e1652f7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -511.05838, + "y": 16.8060036, + "z": -393.7999 + }, + "Rotation": { + "x": -3.41509462e-6, + "y": 287.455017, + "z": 270.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048506", + "Items": [ + { + "_id": "66cbb77a896120cfb1048506", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "controller_wood_car3 [ae68953e-65d3-4abc-9185-7c7b717491f7]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 233.843018, - "y": -1.235, - "z": -71.10199 - }, - "Rotation": { - "x": 1.05227029, - "y": 246.741547, - "z": 89.4343262 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048529", - "Items": [ - { - "_id": "66cbb77a896120cfb1048529", - "_tpl": "5af04c0b86f774138708f78e", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "Arena_siliencer (6) [93f0e99f-4dbc-4d9d-81a4-fe05bc9114ce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -510.99, + "y": 16.8060036, + "z": -393.5824 + }, + "Rotation": { + "x": -3.41509462e-6, + "y": 287.455017, + "z": 270.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048508", + "Items": [ + { + "_id": "66cbb77a896120cfb1048508", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "drink_only (12) [35cb3f73-f670-4804-8470-07d40d582d08]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 276.900024, - "y": 23.068, - "z": -513.751 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104852b", - "Items": [ - { - "_id": "66cbb77a896120cfb104852b", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_siliencer (7) [fe08ecfe-ba1d-4a13-9f56-cc80d466c426]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -511.26474, + "y": 16.8060036, + "z": -393.496 + }, + "Rotation": { + "x": -3.41509462e-6, + "y": 287.455017, + "z": 270.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104850a", + "Items": [ + { + "_id": "66cbb77a896120cfb104850a", + "_tpl": "57dbb57e2459774673234890", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "drink_only (13) [e71eb01e-728c-41e3-83de-589e0228fe65]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 307.753052, - "y": 23.135, - "z": -456.771 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104852d", - "Items": [ - { - "_id": "66cbb77a896120cfb104852d", - "_tpl": "65815f0e647e3d7246384e14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_siliencer (9) [a2532619-db9a-43b9-a446-07b30a08efc8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -511.200867, + "y": 16.8060036, + "z": -388.835571 + }, + "Rotation": { + "x": -3.41509462e-6, + "y": 287.455017, + "z": 270.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104850c", + "Items": [ + { + "_id": "66cbb77a896120cfb104850c", + "_tpl": "626bb8532c923541184624b4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_only (4) [d82b428f-6661-4bf0-985f-87c57f0b3ce9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -183.039978, - "y": -0.855, - "z": 259.279 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104852f", - "Items": [ - { - "_id": "66cbb77a896120cfb104852f", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Arena_siliencer [058f1750-49e2-4697-821f-db64cc5ff75d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -514.0111, + "y": 16.2860031, + "z": -392.524384 + }, + "Rotation": { + "x": -3.58584948e-5, + "y": 107.481995, + "z": 270.000031 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104850e", + "Items": [ + { + "_id": "66cbb77a896120cfb104850e", + "_tpl": "65144ff50e00edc79406836f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (11) [0e87def1-435f-4b90-b3ca-7abd6a1cfb20]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -565.806, - "y": 21.518, - "z": -216.174988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048531", - "Items": [ - { - "_id": "66cbb77a896120cfb1048531", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "armor_Tarbank (3) [500d36e0-c63a-4d58-abeb-dc07cbaf56a9]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -511.097717, + "y": 18.3159122, + "z": -391.698029 + }, + "Rotation": { + "x": 270.0, + "y": 90.0519, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104850f", + "Items": [ + { + "_id": "66cbb77a896120cfb104850f", + "_tpl": "59e7635f86f7742cbf2c1095" + }, + { + "_id": "66cbb77a896120cfb1048510", + "_tpl": "65702f87722744627e05cdb8", + "parentId": "66cbb77a896120cfb104850f", + "slotId": "Soft_armor_front" + }, + { + "_id": "66cbb77a896120cfb1048511", + "_tpl": "65702fe593b7ea9c330f4ce8", + "parentId": "66cbb77a896120cfb104850f", + "slotId": "Soft_armor_back" + }, + { + "_id": "66cbb77a896120cfb1048512", + "_tpl": "6570305d93b7ea9c330f4ced", + "parentId": "66cbb77a896120cfb104850f", + "slotId": "Soft_armor_left" + }, + { + "_id": "66cbb77a896120cfb1048513", + "_tpl": "65703472c9030b928a0a8a78", + "parentId": "66cbb77a896120cfb104850f", + "slotId": "soft_armor_right" } - } - ] - }, - { - "Id": "food_varios_mix (12) [b78223fd-e940-4936-90e4-8b37fb357236]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -134.198975, - "y": 10.7, - "z": -682.357056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048533", - "Items": [ - { - "_id": "66cbb77a896120cfb1048533", - "_tpl": "60098b1705871270cd5352a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "blood_probe [cb318548-005b-4894-9185-54c8192fe4b7]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -94.25195, + "y": -15.702, + "z": 219.0307 + }, + "Rotation": { + "x": 274.426941, + "y": 180.0, + "z": 180.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048515", + "Items": [ + { + "_id": "66cbb77a896120cfb1048515", + "_tpl": "5a687e7886f7740c4a5133fb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (13) [31704ed9-3349-422c-98f6-00ae07c4c176]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -133.776, - "y": 10.7, - "z": -682.465942 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048535", - "Items": [ - { - "_id": "66cbb77a896120cfb1048535", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Building_materials (10) [83864224-f2bf-4f0d-a7f0-5462c502af16]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 432.193, + "y": -4.581, + "z": -23.7990112 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048517", + "Items": [ + { + "_id": "66cbb77a896120cfb1048517", + "_tpl": "59e35ef086f7741777737012", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (14) [058cad99-8c1a-45ab-aa32-0260f27ea001]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -95.80298, - "y": 8.236, - "z": -616.692 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048537", - "Items": [ - { - "_id": "66cbb77a896120cfb1048537", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Building_materials (11) [b9fca9aa-0c4a-427c-b0ae-98a34ce6be0a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 431.723022, + "y": -4.612, + "z": -24.763 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048519", + "Items": [ + { + "_id": "66cbb77a896120cfb1048519", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (22) [c5b10ebc-35a1-4a5a-aed1-046e11879da7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 131.500977, - "y": 25.49, - "z": -732.564941 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048539", - "Items": [ - { - "_id": "66cbb77a896120cfb1048539", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Building_materials (4) [ca06682a-7c1d-46f9-8b9d-46022287ff71]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -479.01, + "y": 22.022, + "z": -228.48999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104851b", + "Items": [ + { + "_id": "66cbb77a896120cfb104851b", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (23) [1f000ba5-b854-4f76-9d55-44d9a5369edf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 140.400024, - "y": 28.181, - "z": -725.761963 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104853b", - "Items": [ - { - "_id": "66cbb77a896120cfb104853b", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Building_materials (5) [f3b09a92-1c3d-4fd4-8815-477733e65c03]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -480.524, + "y": 22.066, + "z": -229.272949 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104851d", + "Items": [ + { + "_id": "66cbb77a896120cfb104851d", + "_tpl": "590c346786f77423e50ed342", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (24) [dbe49da5-6510-4776-939c-9104a80c41f9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 139.71106, - "y": 28.238, - "z": -725.858032 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104853d", - "Items": [ - { - "_id": "66cbb77a896120cfb104853d", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Building_materials (8) [74a1e130-e07a-4707-8cb8-03584ba93f25]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 423.865967, + "y": -4.272, + "z": -24.0390015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104851f", + "Items": [ + { + "_id": "66cbb77a896120cfb104851f", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (26) [999ad079-ad4f-47f7-a916-0262ffb27451]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 137.85498, - "y": 27.827, - "z": -728.881958 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104853f", - "Items": [ - { - "_id": "66cbb77a896120cfb104853f", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "building1 (1) [6a6639d0-1098-480b-a35f-8bc457cd55bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -505.311, + "y": 15.597, + "z": -368.609 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048521", + "Items": [ + { + "_id": "66cbb77a896120cfb1048521", + "_tpl": "59e35cbb86f7741778269d83", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (3) [8fc2474c-3441-4c76-bacf-2a2c827f229d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -203.799988, - "y": 0.987, - "z": 209.896 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048542", - "Items": [ - { - "_id": "66cbb77a896120cfb1048542", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 + { + "Id": "building1 (2) [2b9136b3-9792-424e-b58d-d53d7d806a84]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -505.803, + "y": 15.597, + "z": -368.62 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048523", + "Items": [ + { + "_id": "66cbb77a896120cfb1048523", + "_tpl": "57347c1124597737fb1379e3", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "building1 (31) [27740b12-d4b0-4d56-90b6-e67783799ecf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -517.404, + "y": 15.367, + "z": -374.209961 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048543", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb77a896120cfb1048542", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048525", + "Items": [ + { + "_id": "66cbb77a896120cfb1048525", + "_tpl": "59e366c186f7741778269d85", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (30) [58ee9c39-7332-419b-8e05-1f1a03dbca08]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 221.28894, - "y": 21.033, - "z": -704.027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048545", - "Items": [ - { - "_id": "66cbb77a896120cfb1048545", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "building1 (4) [838e9ff8-efb9-4b09-b8a3-4705f7f17555]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -512.261963, + "y": 16.201, + "z": -368.729 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048527", + "Items": [ + { + "_id": "66cbb77a896120cfb1048527", + "_tpl": "5e2af29386f7746d4159f077", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (31) [19062a95-6dc9-4d53-b099-4cd644a80b31]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 220.604, - "y": 21.047, - "z": -704.850952 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048547", - "Items": [ - { - "_id": "66cbb77a896120cfb1048547", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "controller_wood_car3 [ae68953e-65d3-4abc-9185-7c7b717491f7]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 233.843018, + "y": -1.235, + "z": -71.10199 + }, + "Rotation": { + "x": 1.05227029, + "y": 246.741547, + "z": 89.4343262 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048529", + "Items": [ + { + "_id": "66cbb77a896120cfb1048529", + "_tpl": "5af04c0b86f774138708f78e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (32) [74339fa6-0bc1-4472-9080-ce991bd6852a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 221.133057, - "y": 21.047, - "z": -704.79895 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048549", - "Items": [ - { - "_id": "66cbb77a896120cfb1048549", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "drink_only (12) [35cb3f73-f670-4804-8470-07d40d582d08]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 276.900024, + "y": 23.068, + "z": -513.751 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104852b", + "Items": [ + { + "_id": "66cbb77a896120cfb104852b", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (36) [65cb9f6f-213a-46a3-99dc-04b92c2ac088]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -506.541, - "y": 16.575, - "z": -393.902954 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104854b", - "Items": [ - { - "_id": "66cbb77a896120cfb104854b", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "drink_only (13) [e71eb01e-728c-41e3-83de-589e0228fe65]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 307.753052, + "y": 23.135, + "z": -456.771 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104852d", + "Items": [ + { + "_id": "66cbb77a896120cfb104852d", + "_tpl": "65815f0e647e3d7246384e14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (38) [37b51e41-ee1b-4ff4-9bf9-11b9fa896254]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -506.892, - "y": 16.575, - "z": -394.313 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104854d", - "Items": [ - { - "_id": "66cbb77a896120cfb104854d", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_only (4) [d82b428f-6661-4bf0-985f-87c57f0b3ce9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -183.039978, + "y": -0.855, + "z": 259.279 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104852f", + "Items": [ + { + "_id": "66cbb77a896120cfb104852f", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (4) [8fc6e9b9-802a-4652-9aa4-c72d7383b751]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -565.822, - "y": 22.354, - "z": -216.765991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104854f", - "Items": [ - { - "_id": "66cbb77a896120cfb104854f", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (11) [0e87def1-435f-4b90-b3ca-7abd6a1cfb20]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -565.806, + "y": 21.518, + "z": -216.174988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048531", + "Items": [ + { + "_id": "66cbb77a896120cfb1048531", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (41) [8db35602-513f-4c22-b5d8-65edbf0a4122]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -508.302, - "y": 16.5, - "z": -392.104 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048551", - "Items": [ - { - "_id": "66cbb77a896120cfb1048551", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (12) [b78223fd-e940-4936-90e4-8b37fb357236]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -134.198975, + "y": 10.7, + "z": -682.357056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048533", + "Items": [ + { + "_id": "66cbb77a896120cfb1048533", + "_tpl": "60098b1705871270cd5352a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (42) [96994f91-a0b7-4f13-b6e6-79df5c21a88e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -508.501, - "y": 16.5, - "z": -390.142944 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048553", - "Items": [ - { - "_id": "66cbb77a896120cfb1048553", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (13) [31704ed9-3349-422c-98f6-00ae07c4c176]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -133.776, + "y": 10.7, + "z": -682.465942 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048535", + "Items": [ + { + "_id": "66cbb77a896120cfb1048535", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (46) [a993f985-3a85-45de-baf2-d9547f725efe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -462.689, - "y": 16.444, - "z": -362.957031 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048555", - "Items": [ - { - "_id": "66cbb77a896120cfb1048555", - "_tpl": "635a758bfefc88a93f021b8a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (14) [058cad99-8c1a-45ab-aa32-0260f27ea001]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -95.80298, + "y": 8.236, + "z": -616.692 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048537", + "Items": [ + { + "_id": "66cbb77a896120cfb1048537", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (5) [cef8f6f9-1660-4248-b1cf-6d452b5872ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -166.72998, - "y": -1.62, - "z": 254.109009 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048557", - "Items": [ - { - "_id": "66cbb77a896120cfb1048557", - "_tpl": "60098b1705871270cd5352a1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (22) [c5b10ebc-35a1-4a5a-aed1-046e11879da7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 131.500977, + "y": 25.49, + "z": -732.564941 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048539", + "Items": [ + { + "_id": "66cbb77a896120cfb1048539", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (51) [610dd94b-c4e1-47a6-b711-21617a6b38cb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -452.211, - "y": 16.423, - "z": -397.868042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048559", - "Items": [ - { - "_id": "66cbb77a896120cfb1048559", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (23) [1f000ba5-b854-4f76-9d55-44d9a5369edf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 140.400024, + "y": 28.181, + "z": -725.761963 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104853b", + "Items": [ + { + "_id": "66cbb77a896120cfb104853b", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (53) [0a68507b-d1c8-4d8f-b110-fc80618ddffd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -451.669, - "y": 16.423, - "z": -397.80603 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104855b", - "Items": [ - { - "_id": "66cbb77a896120cfb104855b", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (24) [dbe49da5-6510-4776-939c-9104a80c41f9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 139.71106, + "y": 28.238, + "z": -725.858032 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104853d", + "Items": [ + { + "_id": "66cbb77a896120cfb104853d", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (55) [8fb97146-f011-49be-8bfd-8a5f53a05226]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -453.837, - "y": 16.382, - "z": -395.400024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104855d", - "Items": [ - { - "_id": "66cbb77a896120cfb104855d", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (26) [999ad079-ad4f-47f7-a916-0262ffb27451]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 137.85498, + "y": 27.827, + "z": -728.881958 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104853f", + "Items": [ + { + "_id": "66cbb77a896120cfb104853f", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (56) [9f759c6f-9c26-4b74-b002-009401ef59ea]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -456.434, - "y": 16.317, - "z": -399.859 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104855f", - "Items": [ - { - "_id": "66cbb77a896120cfb104855f", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (3) [8fc2474c-3441-4c76-bacf-2a2c827f229d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -203.799988, + "y": 0.987, + "z": 209.896 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048542", + "Items": [ + { + "_id": "66cbb77a896120cfb1048542", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048543", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb77a896120cfb1048542", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "food_varios_mix (58) [b1fe8167-7bc4-4a26-a375-2b7e3f9cf714]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 286.063, - "y": 23.832, - "z": -517.404053 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048561", - "Items": [ - { - "_id": "66cbb77a896120cfb1048561", - "_tpl": "590c5f0d86f77413997acfab", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (30) [58ee9c39-7332-419b-8e05-1f1a03dbca08]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 221.28894, + "y": 21.033, + "z": -704.027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048545", + "Items": [ + { + "_id": "66cbb77a896120cfb1048545", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (59) [d21e526a-adaa-49e0-8cce-d7db4a70edd6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 286.042969, - "y": 23.832, - "z": -517.852051 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048563", - "Items": [ - { - "_id": "66cbb77a896120cfb1048563", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (31) [19062a95-6dc9-4d53-b099-4cd644a80b31]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 220.604, + "y": 21.047, + "z": -704.850952 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048547", + "Items": [ + { + "_id": "66cbb77a896120cfb1048547", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (6) [c7a3ef83-5538-4437-a9fe-ccdfa12f781a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -174.698, - "y": -0.889, - "z": 265.419 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048565", - "Items": [ - { - "_id": "66cbb77a896120cfb1048565", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (32) [74339fa6-0bc1-4472-9080-ce991bd6852a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 221.133057, + "y": 21.047, + "z": -704.79895 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048549", + "Items": [ + { + "_id": "66cbb77a896120cfb1048549", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (60) [b0cd4947-20ca-4fd3-a78f-8e2b0e6f8b3a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 285.766, - "y": 23.76, - "z": -517.667969 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048567", - "Items": [ - { - "_id": "66cbb77a896120cfb1048567", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (36) [65cb9f6f-213a-46a3-99dc-04b92c2ac088]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -506.541, + "y": 16.575, + "z": -393.902954 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104854b", + "Items": [ + { + "_id": "66cbb77a896120cfb104854b", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (61) [01996a2c-ebdf-457d-ad3a-0bc809d79cc4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 286.100952, - "y": 24.175, - "z": -436.438965 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048569", - "Items": [ - { - "_id": "66cbb77a896120cfb1048569", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (38) [37b51e41-ee1b-4ff4-9bf9-11b9fa896254]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -506.892, + "y": 16.575, + "z": -394.313 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104854d", + "Items": [ + { + "_id": "66cbb77a896120cfb104854d", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (64) [91f48a44-ed5b-4eef-831e-9f55c9123da1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 286.439941, - "y": 24.175, - "z": -436.019043 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104856b", - "Items": [ - { - "_id": "66cbb77a896120cfb104856b", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (4) [8fc6e9b9-802a-4652-9aa4-c72d7383b751]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -565.822, + "y": 22.354, + "z": -216.765991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104854f", + "Items": [ + { + "_id": "66cbb77a896120cfb104854f", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (66) [184044f1-ef68-4323-87c4-db8dc833fb6e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 226.373047, - "y": -1.28800058, - "z": -75.37805 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104856d", - "Items": [ - { - "_id": "66cbb77a896120cfb104856d", - "_tpl": "5d40407c86f774318526545a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (41) [8db35602-513f-4c22-b5d8-65edbf0a4122]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -508.302, + "y": 16.5, + "z": -392.104 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048551", + "Items": [ + { + "_id": "66cbb77a896120cfb1048551", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (67) [4be0c002-f5a3-45b8-9828-c2c725366932]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 361.93103, - "y": -13.47, - "z": 202.653015 - }, - "Rotation": { - "x": 0.0, - "y": 310.169464, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104856f", - "Items": [ - { - "_id": "66cbb77a896120cfb104856f", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (42) [96994f91-a0b7-4f13-b6e6-79df5c21a88e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -508.501, + "y": 16.5, + "z": -390.142944 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048553", + "Items": [ + { + "_id": "66cbb77a896120cfb1048553", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "food_varios_mix (69) [397f1fbc-18be-43b9-93dc-280a033fe2f7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 360.625, - "y": -13.446, - "z": 202.745972 - }, - "Rotation": { - "x": 0.0, - "y": 310.169464, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048571", - "Items": [ - { - "_id": "66cbb77a896120cfb1048571", - "_tpl": "5bc9b156d4351e00367fbce9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (46) [a993f985-3a85-45de-baf2-d9547f725efe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -462.689, + "y": 16.444, + "z": -362.957031 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048555", + "Items": [ + { + "_id": "66cbb77a896120cfb1048555", + "_tpl": "635a758bfefc88a93f021b8a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fuel_stuff1 (8) [e591a0d8-afdb-44b3-8412-a53a0fbb676f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -570.421, - "y": 15.29, - "z": -186.236023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048573", - "Items": [ - { - "_id": "66cbb77a896120cfb1048573", - "_tpl": "5b43575a86f77424f443fe62", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (5) [cef8f6f9-1660-4248-b1cf-6d452b5872ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -166.72998, + "y": -1.62, + "z": 254.109009 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048557", + "Items": [ + { + "_id": "66cbb77a896120cfb1048557", + "_tpl": "60098b1705871270cd5352a1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "fuel_stuff1 [0830b631-27ec-4dae-9277-93453071690d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -40.01001, - "y": 6.098, - "z": -10.0880127 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048575", - "Items": [ - { - "_id": "66cbb77a896120cfb1048575", - "_tpl": "5d1b36a186f7742523398433", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (51) [610dd94b-c4e1-47a6-b711-21617a6b38cb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -452.211, + "y": 16.423, + "z": -397.868042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048559", + "Items": [ + { + "_id": "66cbb77a896120cfb1048559", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "giroscope2 [edefa9c0-eef4-45f0-b72f-d8305164a1d6]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 56.7209473, - "y": -1.791, - "z": -50.2489929 - }, - "Rotation": { - "x": 272.717346, - "y": 297.500916, - "z": 62.4726944 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048577", - "Items": [ - { - "_id": "66cbb77a896120cfb1048577", - "_tpl": "5af04e0a86f7743a532b79e2", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "food_varios_mix (53) [0a68507b-d1c8-4d8f-b110-fc80618ddffd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -451.669, + "y": 16.423, + "z": -397.80603 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104855b", + "Items": [ + { + "_id": "66cbb77a896120cfb104855b", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "huntsman_001_message [e16cc2d1-7132-47c5-915d-c66a1c52524d]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -257.1476, - "y": 8.518, - "z": 7.9998 - }, - "Rotation": { - "x": 358.7371, - "y": 260.537354, - "z": 180.210419 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048579", - "Items": [ - { - "_id": "66cbb77a896120cfb1048579", - "_tpl": "5d3ec50586f774183a607442", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "food_varios_mix (55) [8fb97146-f011-49be-8bfd-8a5f53a05226]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -453.837, + "y": 16.382, + "z": -395.400024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104855d", + "Items": [ + { + "_id": "66cbb77a896120cfb104855d", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (1) [6dcd5238-c6a1-4f08-b75c-7ee130ed2dc2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -201.224, - "y": 44.756, - "z": -230.547974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104857b", - "Items": [ - { - "_id": "66cbb77a896120cfb104857b", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (56) [9f759c6f-9c26-4b74-b002-009401ef59ea]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -456.434, + "y": 16.317, + "z": -399.859 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104855f", + "Items": [ + { + "_id": "66cbb77a896120cfb104855f", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (11) [14a440a5-b241-4215-9c24-fd1168c8c217]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -63.6890259, - "y": 12.293, - "z": -726.081055 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104857d", - "Items": [ - { - "_id": "66cbb77a896120cfb104857d", - "_tpl": "66572b8d80b1cd4b6a67847f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (58) [b1fe8167-7bc4-4a26-a375-2b7e3f9cf714]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 286.063, + "y": 23.832, + "z": -517.404053 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048561", + "Items": [ + { + "_id": "66cbb77a896120cfb1048561", + "_tpl": "590c5f0d86f77413997acfab", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (13) [791e5be2-f151-4714-9bba-3c1fc8132cd8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -57.8939819, - "y": 11.09, - "z": -739.147949 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104857f", - "Items": [ - { - "_id": "66cbb77a896120cfb104857f", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (59) [d21e526a-adaa-49e0-8cce-d7db4a70edd6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 286.042969, + "y": 23.832, + "z": -517.852051 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048563", + "Items": [ + { + "_id": "66cbb77a896120cfb1048563", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (2) [abd41668-f472-496f-9a6d-f53d9df4dd33]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -202.106018, - "y": 44.916, - "z": -231.099976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048581", - "Items": [ - { - "_id": "66cbb77a896120cfb1048581", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (6) [c7a3ef83-5538-4437-a9fe-ccdfa12f781a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -174.698, + "y": -0.889, + "z": 265.419 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048565", + "Items": [ + { + "_id": "66cbb77a896120cfb1048565", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (22) [62af2aa0-a07e-4aad-b74e-7d85f9a2f644]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -160.487976, - "y": 46.305, - "z": -234.052979 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048583", - "Items": [ - { - "_id": "66cbb77a896120cfb1048583", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (60) [b0cd4947-20ca-4fd3-a78f-8e2b0e6f8b3a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 285.766, + "y": 23.76, + "z": -517.667969 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048567", + "Items": [ + { + "_id": "66cbb77a896120cfb1048567", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (25) [81ec8f02-029f-4503-9d01-a45a2fe96abb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -459.792, - "y": 18.792, - "z": -366.182 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048585", - "Items": [ - { - "_id": "66cbb77a896120cfb1048585", - "_tpl": "573478bc24597738002c6175", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (61) [01996a2c-ebdf-457d-ad3a-0bc809d79cc4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 286.100952, + "y": 24.175, + "z": -436.438965 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048569", + "Items": [ + { + "_id": "66cbb77a896120cfb1048569", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (36) [40362b4d-080c-49e7-9ee2-ec96c8c0e084]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -90.58899, - "y": 13.226, - "z": -718.881958 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048587", - "Items": [ - { - "_id": "66cbb77a896120cfb1048587", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (64) [91f48a44-ed5b-4eef-831e-9f55c9123da1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 286.439941, + "y": 24.175, + "z": -436.019043 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104856b", + "Items": [ + { + "_id": "66cbb77a896120cfb104856b", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (4) [b5d6d7b6-dfcb-426c-a80b-4cc9814cbb54]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -135.732971, - "y": 10.769, - "z": -685.599 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048589", - "Items": [ - { - "_id": "66cbb77a896120cfb1048589", - "_tpl": "655c67ab0d37ca5135388f4b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (66) [184044f1-ef68-4323-87c4-db8dc833fb6e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 226.373047, + "y": -1.28800058, + "z": -75.37805 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104856d", + "Items": [ + { + "_id": "66cbb77a896120cfb104856d", + "_tpl": "5d40407c86f774318526545a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (49) [c02f9dfb-0d6d-42ef-af0e-4ab42d0a8340]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 311.357056, - "y": 23.201, - "z": -464.218018 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104858b", - "Items": [ - { - "_id": "66cbb77a896120cfb104858b", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (67) [4be0c002-f5a3-45b8-9828-c2c725366932]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 361.93103, + "y": -13.47, + "z": 202.653015 + }, + "Rotation": { + "x": 0.0, + "y": 310.169464, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104856f", + "Items": [ + { + "_id": "66cbb77a896120cfb104856f", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (51) [1b78c4ea-3f0c-45c8-9aa3-ff0b138c8fb7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 310.814941, - "y": 23.201, - "z": -464.293945 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104858d", - "Items": [ - { - "_id": "66cbb77a896120cfb104858d", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "food_varios_mix (69) [397f1fbc-18be-43b9-93dc-280a033fe2f7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 360.625, + "y": -13.446, + "z": 202.745972 + }, + "Rotation": { + "x": 0.0, + "y": 310.169464, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048571", + "Items": [ + { + "_id": "66cbb77a896120cfb1048571", + "_tpl": "5bc9b156d4351e00367fbce9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (54) [3cc4bcd4-fab3-40eb-8bcf-5a1dd16de0fa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 271.487061, - "y": 22.992, - "z": -436.704956 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104858f", - "Items": [ - { - "_id": "66cbb77a896120cfb104858f", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fuel_stuff1 (8) [e591a0d8-afdb-44b3-8412-a53a0fbb676f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -570.421, + "y": 15.29, + "z": -186.236023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048573", + "Items": [ + { + "_id": "66cbb77a896120cfb1048573", + "_tpl": "5b43575a86f77424f443fe62", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (56) [c5a57ea6-1ebd-4ad0-b85d-32306215ab17]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -202.189026, - "y": 44.756, - "z": -230.944946 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048591", - "Items": [ - { - "_id": "66cbb77a896120cfb1048591", - "_tpl": "5c1267ee86f77416ec610f72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "fuel_stuff1 [0830b631-27ec-4dae-9277-93453071690d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -40.01001, + "y": 6.098, + "z": -10.0880127 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048575", + "Items": [ + { + "_id": "66cbb77a896120cfb1048575", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (57) [d7895c65-89df-4321-8c5f-628fe9003745]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -29.7349854, - "y": 10.346, - "z": -739.974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048593", - "Items": [ - { - "_id": "66cbb77a896120cfb1048593", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "giroscope2 [edefa9c0-eef4-45f0-b72f-d8305164a1d6]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 56.7209473, + "y": -1.791, + "z": -50.2489929 + }, + "Rotation": { + "x": 272.717346, + "y": 297.500916, + "z": 62.4726944 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048577", + "Items": [ + { + "_id": "66cbb77a896120cfb1048577", + "_tpl": "5af04e0a86f7743a532b79e2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (65) [0c8c292a-24c0-4eef-aacf-a9001b5b6406]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 132.187988, - "y": 24.64, - "z": -760.42395 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048595", - "Items": [ - { - "_id": "66cbb77a896120cfb1048595", - "_tpl": "5734758f24597738025ee253", - "upd": { - "StackObjectsCount": 1 + { + "Id": "huntsman_001_message [e16cc2d1-7132-47c5-915d-c66a1c52524d]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -257.1476, + "y": 8.518, + "z": 7.9998 + }, + "Rotation": { + "x": 358.7371, + "y": 260.537354, + "z": 180.210419 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048579", + "Items": [ + { + "_id": "66cbb77a896120cfb1048579", + "_tpl": "5d3ec50586f774183a607442", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (69) [462ba612-bac9-4a2f-a7a6-878c91de6963]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 225.255, - "y": 20.415, - "z": -704.790039 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048597", - "Items": [ - { - "_id": "66cbb77a896120cfb1048597", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (1) [6dcd5238-c6a1-4f08-b75c-7ee130ed2dc2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -201.224, + "y": 44.756, + "z": -230.547974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104857b", + "Items": [ + { + "_id": "66cbb77a896120cfb104857b", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Jeverly (73) [ee93c460-025d-4547-aadf-175f8be977ef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -47.1950073, - "y": 9.134, - "z": -600.766968 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048599", - "Items": [ - { - "_id": "66cbb77a896120cfb1048599", - "_tpl": "59e3658a86f7741776641ac4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (11) [14a440a5-b241-4215-9c24-fd1168c8c217]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -63.6890259, + "y": 12.293, + "z": -726.081055 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104857d", + "Items": [ + { + "_id": "66cbb77a896120cfb104857d", + "_tpl": "66572b8d80b1cd4b6a67847f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_case_0052 [dc46f1d0-7cb2-4de2-8565-c1234da42894]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -3.322, - "y": -1.4843, - "z": -81.1259 - }, - "Rotation": { - "x": 270.0, - "y": 14.9999752, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104859b", - "Items": [ - { - "_id": "66cbb77a896120cfb104859b", - "_tpl": "5938878586f7741b797c562f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (13) [791e5be2-f151-4714-9bba-3c1fc8132cd8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -57.8939819, + "y": 11.09, + "z": -739.147949 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104857f", + "Items": [ + { + "_id": "66cbb77a896120cfb104857f", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_electr (13) [89ebe0e5-2c9b-48f0-8e08-b145a9891ff5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -511.002, - "y": 15.596, - "z": -391.126953 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104859d", - "Items": [ - { - "_id": "66cbb77a896120cfb104859d", - "_tpl": "5d0378d486f77420421a5ff4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (2) [abd41668-f472-496f-9a6d-f53d9df4dd33]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -202.106018, + "y": 44.916, + "z": -231.099976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048581", + "Items": [ + { + "_id": "66cbb77a896120cfb1048581", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_mr133 (1) [947cb16a-0abb-4b18-98d9-880bc6ed3d04]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -0.862091064, - "y": -0.888799667, - "z": -62.4547958 - }, - "Rotation": { - "x": 0.9561283, - "y": 216.503189, - "z": 354.858337 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104859f", - "Items": [ - { - "_id": "66cbb77a896120cfb104859f", - "_tpl": "560d5e524bdc2d25448b4571", - "upd": { - "StackObjectsCount": 4 + ] + }, + { + "Id": "Jeverly (22) [62af2aa0-a07e-4aad-b74e-7d85f9a2f644]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -160.487976, + "y": 46.305, + "z": -234.052979 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048583", + "Items": [ + { + "_id": "66cbb77a896120cfb1048583", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "Loot_mr133 (3) [1c3995ee-94d4-4f9e-9dc4-cbd022c6f541]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": -0.730285645, - "y": -0.8696995, - "z": -62.4561 - }, - "Rotation": { - "x": 7.95382, - "y": 215.755447, - "z": 345.2718 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485a1", - "Items": [ - { - "_id": "66cbb77a896120cfb10485a1", - "_tpl": "560d5e524bdc2d25448b4571", - "upd": { - "StackObjectsCount": 6 + ] + }, + { + "Id": "Jeverly (25) [81ec8f02-029f-4503-9d01-a45a2fe96abb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -459.792, + "y": 18.792, + "z": -366.182 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048585", + "Items": [ + { + "_id": "66cbb77a896120cfb1048585", + "_tpl": "573478bc24597738002c6175", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (14) [94760b9f-baa2-4146-af0e-d5c498824418]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -386.9142, - "y": 3.52167583, - "z": 21.8089943 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485a3", - "Items": [ - { - "_id": "66cbb77a896120cfb10485a3", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (36) [40362b4d-080c-49e7-9ee2-ec96c8c0e084]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -90.58899, + "y": 13.226, + "z": -718.881958 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048587", + "Items": [ + { + "_id": "66cbb77a896120cfb1048587", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (15) [f3471be7-7a63-4036-bd55-751a2a898f1e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -389.1812, - "y": 3.5036757, - "z": 24.2049942 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485a5", - "Items": [ - { - "_id": "66cbb77a896120cfb10485a5", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (4) [b5d6d7b6-dfcb-426c-a80b-4cc9814cbb54]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -135.732971, + "y": 10.769, + "z": -685.599 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048589", + "Items": [ + { + "_id": "66cbb77a896120cfb1048589", + "_tpl": "655c67ab0d37ca5135388f4b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (16) [6cdf877b-1bab-4e8c-a88e-e854d5510712]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -391.032227, - "y": 3.5036757, - "z": 23.885994 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485a7", - "Items": [ - { - "_id": "66cbb77a896120cfb10485a7", - "_tpl": "5d1b36a186f7742523398433", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (49) [c02f9dfb-0d6d-42ef-af0e-4ab42d0a8340]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 311.357056, + "y": 23.201, + "z": -464.218018 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104858b", + "Items": [ + { + "_id": "66cbb77a896120cfb104858b", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (5) [ce88ba9c-4c04-4885-b6aa-8143f03aaa54]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 444.889771, - "y": -13.0323238, - "z": 63.16899 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485a9", - "Items": [ - { - "_id": "66cbb77a896120cfb10485a9", - "_tpl": "5d1b2fa286f77425227d1674", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (51) [1b78c4ea-3f0c-45c8-9aa3-ff0b138c8fb7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 310.814941, + "y": 23.201, + "z": -464.293945 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104858d", + "Items": [ + { + "_id": "66cbb77a896120cfb104858d", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (8) [99fe04e8-eb0f-431e-a1c6-a378c67e5fdd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 444.327759, - "y": -13.8453236, - "z": 71.65199 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485ab", - "Items": [ - { - "_id": "66cbb77a896120cfb10485ab", - "_tpl": "5d1b385e86f774252167b98a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (54) [3cc4bcd4-fab3-40eb-8bcf-5a1dd16de0fa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 271.487061, + "y": 22.992, + "z": -436.704956 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104858f", + "Items": [ + { + "_id": "66cbb77a896120cfb104858f", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_building_items (9) [edeae370-d614-45e6-afff-7a9c9ea113fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 444.352783, - "y": -14.0153236, - "z": 70.9959946 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485ad", - "Items": [ - { - "_id": "66cbb77a896120cfb10485ad", - "_tpl": "5d1b39a386f774252339976f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (56) [c5a57ea6-1ebd-4ad0-b85d-32306215ab17]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -202.189026, + "y": 44.756, + "z": -230.944946 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048591", + "Items": [ + { + "_id": "66cbb77a896120cfb1048591", + "_tpl": "5c1267ee86f77416ec610f72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (27) [81b3f1c6-02f5-4366-b279-020651a8cc8c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 411.050049, - "y": 12.62, - "z": -610.52 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485af", - "Items": [ - { - "_id": "66cbb77a896120cfb10485af", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (57) [d7895c65-89df-4321-8c5f-628fe9003745]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -29.7349854, + "y": 10.346, + "z": -739.974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048593", + "Items": [ + { + "_id": "66cbb77a896120cfb1048593", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (35) [733c4a31-8d2e-4505-8194-9cae74c04e06]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -97.78302, - "y": 12.819, - "z": -543.276 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485b1", - "Items": [ - { - "_id": "66cbb77a896120cfb10485b1", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (65) [0c8c292a-24c0-4eef-aacf-a9001b5b6406]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 132.187988, + "y": 24.64, + "z": -760.42395 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048595", + "Items": [ + { + "_id": "66cbb77a896120cfb1048595", + "_tpl": "5734758f24597738025ee253", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (46) [f6e6405c-34cb-4a90-9f7c-69b6f2c0e50f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -230.085022, - "y": 68.075, - "z": -229.312988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485b3", - "Items": [ - { - "_id": "66cbb77a896120cfb10485b3", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (69) [462ba612-bac9-4a2f-a7a6-878c91de6963]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 225.255, + "y": 20.415, + "z": -704.790039 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048597", + "Items": [ + { + "_id": "66cbb77a896120cfb1048597", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (54) [c8906160-c13e-493b-8574-566279d588d0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -441.934, - "y": 15.71, - "z": -412.139038 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485b5", - "Items": [ - { - "_id": "66cbb77a896120cfb10485b5", - "_tpl": "5d1c774f86f7746d6620f8db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Jeverly (73) [ee93c460-025d-4547-aadf-175f8be977ef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -47.1950073, + "y": 9.134, + "z": -600.766968 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048599", + "Items": [ + { + "_id": "66cbb77a896120cfb1048599", + "_tpl": "59e3658a86f7741776641ac4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_shelter_electr (60) [0d3fba67-db32-484e-88fd-360f9770da96]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -550.515, - "y": 16.263, - "z": -206.249023 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485b7", - "Items": [ - { - "_id": "66cbb77a896120cfb10485b7", - "_tpl": "5d1b313086f77425227d1678", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_case_0052 [dc46f1d0-7cb2-4de2-8565-c1234da42894]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -3.322, + "y": -1.4843, + "z": -81.1259 + }, + "Rotation": { + "x": 270.0, + "y": 14.9999752, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104859b", + "Items": [ + { + "_id": "66cbb77a896120cfb104859b", + "_tpl": "5938878586f7741b797c562f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (144) [39abc229-0bb1-436a-ba6e-95c7ca61cef0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -172.104, - "y": -1.607, - "z": 255.577026 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485b9", - "Items": [ - { - "_id": "66cbb77a896120cfb10485b9", - "_tpl": "5c13cef886f774072e618e82", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_electr (13) [89ebe0e5-2c9b-48f0-8e08-b145a9891ff5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -511.002, + "y": 15.596, + "z": -391.126953 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104859d", + "Items": [ + { + "_id": "66cbb77a896120cfb104859d", + "_tpl": "5d0378d486f77420421a5ff4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "loot_toospaste_stuff (146) [470eff23-939b-407d-b5f1-2044c4b108cc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -168.242981, - "y": -1.64, - "z": 257.583984 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485bb", - "Items": [ - { - "_id": "66cbb77a896120cfb10485bb", - "_tpl": "5c13cd2486f774072c757944", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mr133 (1) [947cb16a-0abb-4b18-98d9-880bc6ed3d04]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -0.862091064, + "y": -0.888799667, + "z": -62.4547958 + }, + "Rotation": { + "x": 0.9561283, + "y": 216.503189, + "z": 354.858337 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104859f", + "Items": [ + { + "_id": "66cbb77a896120cfb104859f", + "_tpl": "560d5e524bdc2d25448b4571", + "upd": { + "StackObjectsCount": 4 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes (12) [73d88431-e676-44b1-8b89-fcaf76ce7ff9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 239.2, - "y": -1.591999, - "z": -71.496 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485be", - "Items": [ - { - "_id": "66cbb77a896120cfb10485be", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "Loot_mr133 (3) [1c3995ee-94d4-4f9e-9dc4-cbd022c6f541]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": -0.730285645, + "y": -0.8696995, + "z": -62.4561 + }, + "Rotation": { + "x": 7.95382, + "y": 215.755447, + "z": 345.2718 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485a1", + "Items": [ + { + "_id": "66cbb77a896120cfb10485a1", + "_tpl": "560d5e524bdc2d25448b4571", + "upd": { + "StackObjectsCount": 6 + } } + ] + }, + { + "Id": "loot_shelter_building_items (14) [94760b9f-baa2-4146-af0e-d5c498824418]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -386.9142, + "y": 3.52167583, + "z": 21.8089943 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10485bf", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb77a896120cfb10485be", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485a3", + "Items": [ + { + "_id": "66cbb77a896120cfb10485a3", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes (13) [55ebb90e-3bd8-4084-8cec-d0c8624d3d87]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 239.074, - "y": -1.591999, - "z": -71.752 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485c3", - "Items": [ - { - "_id": "66cbb77a896120cfb10485c3", - "_tpl": "57372c21245977670937c6c2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (15) [f3471be7-7a63-4036-bd55-751a2a898f1e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -389.1812, + "y": 3.5036757, + "z": 24.2049942 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485a5", + "Items": [ + { + "_id": "66cbb77a896120cfb10485a5", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_shelter_building_items (16) [6cdf877b-1bab-4e8c-a88e-e854d5510712]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -391.032227, + "y": 3.5036757, + "z": 23.885994 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10485c4", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb77a896120cfb10485c3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485a7", + "Items": [ + { + "_id": "66cbb77a896120cfb10485a7", + "_tpl": "5d1b36a186f7742523398433", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_shelter_building_items (5) [ce88ba9c-4c04-4885-b6aa-8143f03aaa54]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 444.889771, + "y": -13.0323238, + "z": 63.16899 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10485c5", - "_tpl": "56dff061d2720bb5668b4567", - "parentId": "66cbb77a896120cfb10485c3", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485a9", + "Items": [ + { + "_id": "66cbb77a896120cfb10485a9", + "_tpl": "5d1b2fa286f77425227d1674", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes (14) [ebd5890c-9c6b-4eff-894b-e6591ec4bc8c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 239.365, - "y": -1.591999, - "z": -71.71 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485c8", - "Items": [ - { - "_id": "66cbb77a896120cfb10485c8", - "_tpl": "57372ac324597767001bc261", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_building_items (8) [99fe04e8-eb0f-431e-a1c6-a378c67e5fdd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 444.327759, + "y": -13.8453236, + "z": 71.65199 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485ab", + "Items": [ + { + "_id": "66cbb77a896120cfb10485ab", + "_tpl": "5d1b385e86f774252167b98a", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_shelter_building_items (9) [edeae370-d614-45e6-afff-7a9c9ea113fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 444.352783, + "y": -14.0153236, + "z": 70.9959946 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10485c9", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb77a896120cfb10485c8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485ad", + "Items": [ + { + "_id": "66cbb77a896120cfb10485ad", + "_tpl": "5d1b39a386f774252339976f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootAmmoBoxes (3) [c282658d-1558-47a3-a6df-2e6fc3745f01]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -204.371, - "y": 30.73, - "z": -210.510986 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485cc", - "Items": [ - { - "_id": "66cbb77a896120cfb10485cc", - "_tpl": "5739d41224597779c3645501", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (27) [81b3f1c6-02f5-4366-b279-020651a8cc8c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 411.050049, + "y": 12.62, + "z": -610.52 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485af", + "Items": [ + { + "_id": "66cbb77a896120cfb10485af", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_shelter_electr (35) [733c4a31-8d2e-4505-8194-9cae74c04e06]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -97.78302, + "y": 12.819, + "z": -543.276 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10485cd", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "66cbb77a896120cfb10485cc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485b1", + "Items": [ + { + "_id": "66cbb77a896120cfb10485b1", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootAmmoBoxesAR (2) [60a2065b-c3a7-48a9-99cc-25a797d37ba9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 246.486, - "y": -8.109, - "z": 129.61 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485d0", - "Items": [ - { - "_id": "66cbb77a896120cfb10485d0", - "_tpl": "657025dfcfc010a0f5006a3b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (46) [f6e6405c-34cb-4a90-9f7c-69b6f2c0e50f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -230.085022, + "y": 68.075, + "z": -229.312988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485b3", + "Items": [ + { + "_id": "66cbb77a896120cfb10485b3", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_shelter_electr (54) [c8906160-c13e-493b-8574-566279d588d0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -441.934, + "y": 15.71, + "z": -412.139038 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10485d1", - "_tpl": "5c0d668f86f7747ccb7f13b2", - "parentId": "66cbb77a896120cfb10485d0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485b5", + "Items": [ + { + "_id": "66cbb77a896120cfb10485b5", + "_tpl": "5d1c774f86f7746d6620f8db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootAmmoBoxesAR (5) [1ed954cd-9682-499b-962b-0c07c0ea5756]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 246.825, - "y": -8.109, - "z": 129.61 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485d4", - "Items": [ - { - "_id": "66cbb77a896120cfb10485d4", - "_tpl": "65702619bfc87b3a34093259", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_shelter_electr (60) [0d3fba67-db32-484e-88fd-360f9770da96]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -550.515, + "y": 16.263, + "z": -206.249023 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485b7", + "Items": [ + { + "_id": "66cbb77a896120cfb10485b7", + "_tpl": "5d1b313086f77425227d1678", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "loot_toospaste_stuff (144) [39abc229-0bb1-436a-ba6e-95c7ca61cef0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -172.104, + "y": -1.607, + "z": 255.577026 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10485d5", - "_tpl": "57371b192459775a9f58a5e0", - "parentId": "66cbb77a896120cfb10485d4", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485b9", + "Items": [ + { + "_id": "66cbb77a896120cfb10485b9", + "_tpl": "5c13cef886f774072e618e82", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootCamping (1) [30938e41-2d47-4ea0-a666-db96994cdfe8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 130.556, - "y": -3.12300014, - "z": 100.928 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485d7", - "Items": [ - { - "_id": "66cbb77a896120cfb10485d7", - "_tpl": "5e8488fa988a8701445df1e4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "loot_toospaste_stuff (146) [470eff23-939b-407d-b5f1-2044c4b108cc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -168.242981, + "y": -1.64, + "z": 257.583984 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485bb", + "Items": [ + { + "_id": "66cbb77a896120cfb10485bb", + "_tpl": "5c13cd2486f774072c757944", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootCamping (11) [0071fc84-a7e2-4a0e-8342-eac154904b63]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -220.27298, - "y": 24.6340027, - "z": -116.970009 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485d9", - "Items": [ - { - "_id": "66cbb77a896120cfb10485d9", - "_tpl": "5751435d24597720a27126d1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootAmmoBoxes (12) [73d88431-e676-44b1-8b89-fcaf76ce7ff9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 239.2, + "y": -1.591999, + "z": -71.496 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485be", + "Items": [ + { + "_id": "66cbb77a896120cfb10485be", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10485bf", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb77a896120cfb10485be", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "LootCamping (16) [ad62f78b-9251-4f04-a531-2c862d80b442]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -218.001, - "y": 24.647, - "z": -114.094 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485db", - "Items": [ - { - "_id": "66cbb77a896120cfb10485db", - "_tpl": "5bc9c29cd4351e003562b8a3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootAmmoBoxes (13) [55ebb90e-3bd8-4084-8cec-d0c8624d3d87]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 239.074, + "y": -1.591999, + "z": -71.752 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485c3", + "Items": [ + { + "_id": "66cbb77a896120cfb10485c3", + "_tpl": "57372c21245977670937c6c2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10485c4", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb77a896120cfb10485c3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb77a896120cfb10485c5", + "_tpl": "56dff061d2720bb5668b4567", + "parentId": "66cbb77a896120cfb10485c3", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } - } - ] - }, - { - "Id": "LootCamping (17) [5954e88f-36e8-424d-81bb-3c5ab8461da4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -301.11, - "y": 11.56, - "z": -80.86 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485dd", - "Items": [ - { - "_id": "66cbb77a896120cfb10485dd", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootAmmoBoxes (14) [ebd5890c-9c6b-4eff-894b-e6591ec4bc8c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 239.365, + "y": -1.591999, + "z": -71.71 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485c8", + "Items": [ + { + "_id": "66cbb77a896120cfb10485c8", + "_tpl": "57372ac324597767001bc261", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10485c9", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb77a896120cfb10485c8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "LootCamping (18) [d00d24d2-7f0b-4cbf-87f8-90d0794a966a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -298.52, - "y": 11.56, - "z": -78.57 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485df", - "Items": [ - { - "_id": "66cbb77a896120cfb10485df", - "_tpl": "590de7e986f7741b096e5f32", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootAmmoBoxes (3) [c282658d-1558-47a3-a6df-2e6fc3745f01]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -204.371, + "y": 30.73, + "z": -210.510986 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485cc", + "Items": [ + { + "_id": "66cbb77a896120cfb10485cc", + "_tpl": "5739d41224597779c3645501", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10485cd", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "66cbb77a896120cfb10485cc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "LootCamping (20) [06c15181-e606-4d88-82ca-ef7c461c7936]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -296.82, - "y": 11.56, - "z": -73.63 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485e1", - "Items": [ - { - "_id": "66cbb77a896120cfb10485e1", - "_tpl": "5af0454c86f7746bf20992e8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootAmmoBoxesAR (2) [60a2065b-c3a7-48a9-99cc-25a797d37ba9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 246.486, + "y": -8.109, + "z": 129.61 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485d0", + "Items": [ + { + "_id": "66cbb77a896120cfb10485d0", + "_tpl": "657025dfcfc010a0f5006a3b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10485d1", + "_tpl": "5c0d668f86f7747ccb7f13b2", + "parentId": "66cbb77a896120cfb10485d0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "LootCamping (21) [1050f071-97df-4aee-9d8e-a2df5a76848e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -290.06, - "y": 11.97, - "z": -54.09 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485e3", - "Items": [ - { - "_id": "66cbb77a896120cfb10485e3", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootAmmoBoxesAR (5) [1ed954cd-9682-499b-962b-0c07c0ea5756]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 246.825, + "y": -8.109, + "z": 129.61 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485d4", + "Items": [ + { + "_id": "66cbb77a896120cfb10485d4", + "_tpl": "65702619bfc87b3a34093259", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10485d5", + "_tpl": "57371b192459775a9f58a5e0", + "parentId": "66cbb77a896120cfb10485d4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "LootCamping (22) [885d7d1f-a557-4e11-8548-7e281a5673ef]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -284.152, - "y": 11.97, - "z": -54.044 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485e5", - "Items": [ - { - "_id": "66cbb77a896120cfb10485e5", - "_tpl": "5af0454c86f7746bf20992e8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (1) [30938e41-2d47-4ea0-a666-db96994cdfe8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 130.556, + "y": -3.12300014, + "z": 100.928 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485d7", + "Items": [ + { + "_id": "66cbb77a896120cfb10485d7", + "_tpl": "5e8488fa988a8701445df1e4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootCamping (24) [d8b7c01b-cf9e-40cd-8cc8-bfa8b95fc6e1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -262.311, - "y": 10.4, - "z": -39.424 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485e7", - "Items": [ - { - "_id": "66cbb77a896120cfb10485e7", - "_tpl": "5c0fa877d174af02a012e1cf", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (11) [0071fc84-a7e2-4a0e-8342-eac154904b63]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -220.27298, + "y": 24.6340027, + "z": -116.970009 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485d9", + "Items": [ + { + "_id": "66cbb77a896120cfb10485d9", + "_tpl": "5751435d24597720a27126d1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootCamping (3) [4d1170bb-e9cc-46a5-a5ef-aad2b8ba7854]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 134.558014, - "y": -3.34399986, - "z": 101.931 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485e9", - "Items": [ - { - "_id": "66cbb77a896120cfb10485e9", - "_tpl": "544fb37f4bdc2dee738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (16) [ad62f78b-9251-4f04-a531-2c862d80b442]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -218.001, + "y": 24.647, + "z": -114.094 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485db", + "Items": [ + { + "_id": "66cbb77a896120cfb10485db", + "_tpl": "5bc9c29cd4351e003562b8a3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootCamping (30) [65057019-0cf2-449f-86e5-c630c1ccc3c7]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 92.82, - "y": 17.443, - "z": -847.12 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485eb", - "Items": [ - { - "_id": "66cbb77a896120cfb10485eb", - "_tpl": "635a758bfefc88a93f021b8a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (17) [5954e88f-36e8-424d-81bb-3c5ab8461da4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -301.11, + "y": 11.56, + "z": -80.86 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485dd", + "Items": [ + { + "_id": "66cbb77a896120cfb10485dd", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootCamping (5) [394f8e72-49d8-4ab5-8ac7-e5bc64e4c215]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 133.043, - "y": -3.34399986, - "z": 100.447 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485ed", - "Items": [ - { - "_id": "66cbb77a896120cfb10485ed", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (18) [d00d24d2-7f0b-4cbf-87f8-90d0794a966a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -298.52, + "y": 11.56, + "z": -78.57 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485df", + "Items": [ + { + "_id": "66cbb77a896120cfb10485df", + "_tpl": "590de7e986f7741b096e5f32", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood (14) [d84cadf1-d98a-4637-be69-ae925c05e0f6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -4.7789917, - "y": -0.4260006, - "z": -75.721 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485ef", - "Items": [ - { - "_id": "66cbb77a896120cfb10485ef", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (20) [06c15181-e606-4d88-82ca-ef7c461c7936]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -296.82, + "y": 11.56, + "z": -73.63 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485e1", + "Items": [ + { + "_id": "66cbb77a896120cfb10485e1", + "_tpl": "5af0454c86f7746bf20992e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood (17) [eacf7572-a6a0-4bf6-bce9-60e26b9f1ef9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -4.82000732, - "y": -1.03100014, - "z": -75.649 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485f1", - "Items": [ - { - "_id": "66cbb77a896120cfb10485f1", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (21) [1050f071-97df-4aee-9d8e-a2df5a76848e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -290.06, + "y": 11.97, + "z": -54.09 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485e3", + "Items": [ + { + "_id": "66cbb77a896120cfb10485e3", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood (2) [9393f34a-7618-4b02-b657-e37bddb35844]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -96.9590149, - "y": -15.321, - "z": 219.249 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485f3", - "Items": [ - { - "_id": "66cbb77a896120cfb10485f3", - "_tpl": "59e3577886f774176a362503", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (22) [885d7d1f-a557-4e11-8548-7e281a5673ef]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -284.152, + "y": 11.97, + "z": -54.044 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485e5", + "Items": [ + { + "_id": "66cbb77a896120cfb10485e5", + "_tpl": "5af0454c86f7746bf20992e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood (20) [3c5633e7-f0e3-4257-bb60-af53a01fc9ff]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -1.73901367, - "y": -0.475000381, - "z": -75.379 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485f5", - "Items": [ - { - "_id": "66cbb77a896120cfb10485f5", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (24) [d8b7c01b-cf9e-40cd-8cc8-bfa8b95fc6e1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -262.311, + "y": 10.4, + "z": -39.424 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485e7", + "Items": [ + { + "_id": "66cbb77a896120cfb10485e7", + "_tpl": "5c0fa877d174af02a012e1cf", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood (21) [a3ed5b61-27ec-4607-bfcd-c63d7b88f718]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -1.83200073, - "y": -0.475000381, - "z": -81.717 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485f7", - "Items": [ - { - "_id": "66cbb77a896120cfb10485f7", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (3) [4d1170bb-e9cc-46a5-a5ef-aad2b8ba7854]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 134.558014, + "y": -3.34399986, + "z": 101.931 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485e9", + "Items": [ + { + "_id": "66cbb77a896120cfb10485e9", + "_tpl": "544fb37f4bdc2dee738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood (24) [4bee5913-7a53-4ae6-b1fe-230f5dd9ae00]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -1.04699707, - "y": 0.165000916, - "z": -81.5170059 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485f9", - "Items": [ - { - "_id": "66cbb77a896120cfb10485f9", - "_tpl": "57505f6224597709a92585a9", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (30) [65057019-0cf2-449f-86e5-c630c1ccc3c7]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 92.82, + "y": 17.443, + "z": -847.12 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485eb", + "Items": [ + { + "_id": "66cbb77a896120cfb10485eb", + "_tpl": "635a758bfefc88a93f021b8a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood (28) [db08c78b-47f2-44dc-add3-b07424b745e9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -25.9660034, - "y": -2.658, - "z": 47.758 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485fb", - "Items": [ - { - "_id": "66cbb77a896120cfb10485fb", - "_tpl": "60b0f93284c20f0feb453da7", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootCamping (5) [394f8e72-49d8-4ab5-8ac7-e5bc64e4c215]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 133.043, + "y": -3.34399986, + "z": 100.447 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485ed", + "Items": [ + { + "_id": "66cbb77a896120cfb10485ed", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood (33) [3d0871d9-fcd0-477e-a682-acf877bb956c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 245.533, - "y": -7.42300034, - "z": 123.485 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485fd", - "Items": [ - { - "_id": "66cbb77a896120cfb10485fd", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood (14) [d84cadf1-d98a-4637-be69-ae925c05e0f6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -4.7789917, + "y": -0.4260006, + "z": -75.721 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485ef", + "Items": [ + { + "_id": "66cbb77a896120cfb10485ef", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood (6) [629dc379-2525-471b-849f-d63c1b780223]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -96.2909851, - "y": -15.321, - "z": 220.014 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10485ff", - "Items": [ - { - "_id": "66cbb77a896120cfb10485ff", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood (17) [eacf7572-a6a0-4bf6-bce9-60e26b9f1ef9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -4.82000732, + "y": -1.03100014, + "z": -75.649 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485f1", + "Items": [ + { + "_id": "66cbb77a896120cfb10485f1", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood (7) [3f25cbf6-3b13-4c9a-a0eb-ca82f1aa86fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -96.20798, - "y": -15.321, - "z": 219.432 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048601", - "Items": [ - { - "_id": "66cbb77a896120cfb1048601", - "_tpl": "57347d3d245977448f7b7f61", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood (2) [9393f34a-7618-4b02-b657-e37bddb35844]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -96.9590149, + "y": -15.321, + "z": 219.249 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485f3", + "Items": [ + { + "_id": "66cbb77a896120cfb10485f3", + "_tpl": "59e3577886f774176a362503", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootFood [21e56c3a-d8f0-4fbe-b6b5-41e45f0455ce]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -137.649017, - "y": -0.962999344, - "z": 414.743 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048603", - "Items": [ - { - "_id": "66cbb77a896120cfb1048603", - "_tpl": "590c5f0d86f77413997acfab", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood (20) [3c5633e7-f0e3-4257-bb60-af53a01fc9ff]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -1.73901367, + "y": -0.475000381, + "z": -75.379 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485f5", + "Items": [ + { + "_id": "66cbb77a896120cfb10485f5", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (11) [ba696fe7-2abb-4a6f-8dfb-4546a6c8700c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -246.669037, - "y": 1.77199936, - "z": 388.753 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048605", - "Items": [ - { - "_id": "66cbb77a896120cfb1048605", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood (21) [a3ed5b61-27ec-4607-bfcd-c63d7b88f718]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -1.83200073, + "y": -0.475000381, + "z": -81.717 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485f7", + "Items": [ + { + "_id": "66cbb77a896120cfb10485f7", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (13) [a76100f0-2f26-443e-98b4-7f1c8c89c975]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 5.855011, - "y": -3.22000027, - "z": 46.458 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048607", - "Items": [ - { - "_id": "66cbb77a896120cfb1048607", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood (24) [4bee5913-7a53-4ae6-b1fe-230f5dd9ae00]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -1.04699707, + "y": 0.165000916, + "z": -81.5170059 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485f9", + "Items": [ + { + "_id": "66cbb77a896120cfb10485f9", + "_tpl": "57505f6224597709a92585a9", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (17) [79637b18-f1fc-4d23-91a0-0b48606d29a3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 5.0369873, - "y": -3.22000027, - "z": 44.641 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048609", - "Items": [ - { - "_id": "66cbb77a896120cfb1048609", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood (28) [db08c78b-47f2-44dc-add3-b07424b745e9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -25.9660034, + "y": -2.658, + "z": 47.758 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485fb", + "Items": [ + { + "_id": "66cbb77a896120cfb10485fb", + "_tpl": "60b0f93284c20f0feb453da7", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (19) [72f56d15-8591-450c-965e-552545e04f70]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 4.369995, - "y": -3.10000038, - "z": 49.24 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104860b", - "Items": [ - { - "_id": "66cbb77a896120cfb104860b", - "_tpl": "590c311186f77424d1667482", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood (33) [3d0871d9-fcd0-477e-a682-acf877bb956c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 245.533, + "y": -7.42300034, + "z": 123.485 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485fd", + "Items": [ + { + "_id": "66cbb77a896120cfb10485fd", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (24) [793501ad-78f4-4ae9-8215-c892e5c94487]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 414.096, - "y": -13.278, - "z": 242.232 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104860d", - "Items": [ - { - "_id": "66cbb77a896120cfb104860d", - "_tpl": "5734770f24597738025ee254", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood (6) [629dc379-2525-471b-849f-d63c1b780223]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -96.2909851, + "y": -15.321, + "z": 220.014 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10485ff", + "Items": [ + { + "_id": "66cbb77a896120cfb10485ff", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (26) [831b3f1c-3318-44c8-9d47-59ec88449400]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 412.552, - "y": -12.969, - "z": 240.966 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104860f", - "Items": [ - { - "_id": "66cbb77a896120cfb104860f", - "_tpl": "573475fb24597737fb1379e1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootFood (7) [3f25cbf6-3b13-4c9a-a0eb-ca82f1aa86fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -96.20798, + "y": -15.321, + "z": 219.432 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048601", + "Items": [ + { + "_id": "66cbb77a896120cfb1048601", + "_tpl": "57347d3d245977448f7b7f61", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (30) [ace0bfb7-d183-494c-9831-d2842fd9a9d9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -180.223969, - "y": 0.552000046, - "z": 382.857 - }, - "Rotation": { - "x": 53.8408165, - "y": 333.162018, - "z": 40.6831741 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048611", - "Items": [ - { - "_id": "66cbb77a896120cfb1048611", - "_tpl": "57347d692459774491567cf1", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootFood [21e56c3a-d8f0-4fbe-b6b5-41e45f0455ce]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -137.649017, + "y": -0.962999344, + "z": 414.743 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048603", + "Items": [ + { + "_id": "66cbb77a896120cfb1048603", + "_tpl": "590c5f0d86f77413997acfab", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (32) [7e493696-e3ec-4d54-91d8-33b55ffcd8d2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 415.336, - "y": -12.446, - "z": 238.224 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048613", - "Items": [ - { - "_id": "66cbb77a896120cfb1048613", - "_tpl": "57347d7224597744596b4e72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (11) [ba696fe7-2abb-4a6f-8dfb-4546a6c8700c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -246.669037, + "y": 1.77199936, + "z": 388.753 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048605", + "Items": [ + { + "_id": "66cbb77a896120cfb1048605", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (33) [1cf0b1b1-1803-4015-b80a-ffd0c647bdfa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 414.572, - "y": -12.446, - "z": 238.115021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048615", - "Items": [ - { - "_id": "66cbb77a896120cfb1048615", - "_tpl": "62a09f32621468534a797acb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (13) [a76100f0-2f26-443e-98b4-7f1c8c89c975]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 5.855011, + "y": -3.22000027, + "z": 46.458 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048607", + "Items": [ + { + "_id": "66cbb77a896120cfb1048607", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage (9) [85f9892b-53dc-4f5d-8a5a-f4c3f1872dd0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -246.447968, - "y": 1.77199936, - "z": 389.012 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048617", - "Items": [ - { - "_id": "66cbb77a896120cfb1048617", - "_tpl": "5d63d33b86f7746ea9275524", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (17) [79637b18-f1fc-4d23-91a0-0b48606d29a3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 5.0369873, + "y": -3.22000027, + "z": 44.641 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048609", + "Items": [ + { + "_id": "66cbb77a896120cfb1048609", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootGarbage [01b77245-99f0-46bb-8f4b-cb5ff954369d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -407.303, - "y": -0.673000336, - "z": 311.367 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048619", - "Items": [ - { - "_id": "66cbb77a896120cfb1048619", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (19) [72f56d15-8591-450c-965e-552545e04f70]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 4.369995, + "y": -3.10000038, + "z": 49.24 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104860b", + "Items": [ + { + "_id": "66cbb77a896120cfb104860b", + "_tpl": "590c311186f77424d1667482", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds (1) [8214ddb9-3a46-4559-b4ad-6056c38b36f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 194.42395, - "y": 11.422, - "z": -600.3611 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104861b", - "Items": [ - { - "_id": "66cbb77a896120cfb104861b", - "_tpl": "544fb25a4bdc2dfb738b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (24) [793501ad-78f4-4ae9-8215-c892e5c94487]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 414.096, + "y": -13.278, + "z": 242.232 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104860d", + "Items": [ + { + "_id": "66cbb77a896120cfb104860d", + "_tpl": "5734770f24597738025ee254", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds (13) [e98d7de4-f546-4424-bb32-4fc3c042f88c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 443.903, - "y": -14.014, - "z": 61.796 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104861d", - "Items": [ - { - "_id": "66cbb77a896120cfb104861d", - "_tpl": "5d02778e86f774203e7dedbe", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (26) [831b3f1c-3318-44c8-9d47-59ec88449400]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 412.552, + "y": -12.969, + "z": 240.966 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104860f", + "Items": [ + { + "_id": "66cbb77a896120cfb104860f", + "_tpl": "573475fb24597737fb1379e1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds (8) [ab4fb12c-5bc3-48cd-893d-919478fc3d55]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 193.939941, - "y": 11.422, - "z": -599.679932 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104861f", - "Items": [ - { - "_id": "66cbb77a896120cfb104861f", - "_tpl": "544fb45d4bdc2dee738b4568", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (30) [ace0bfb7-d183-494c-9831-d2842fd9a9d9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -180.223969, + "y": 0.552000046, + "z": 382.857 + }, + "Rotation": { + "x": 53.8408165, + "y": 333.162018, + "z": 40.6831741 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048611", + "Items": [ + { + "_id": "66cbb77a896120cfb1048611", + "_tpl": "57347d692459774491567cf1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMeds (9) [f90d62b9-c596-4cf6-abb7-0b1cf0bfd3cd]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 443.926, - "y": -13.567, - "z": 61.828 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048621", - "Items": [ - { - "_id": "66cbb77a896120cfb1048621", - "_tpl": "5af0454c86f7746bf20992e8", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (32) [7e493696-e3ec-4d54-91d8-33b55ffcd8d2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 415.336, + "y": -12.446, + "z": 238.224 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048613", + "Items": [ + { + "_id": "66cbb77a896120cfb1048613", + "_tpl": "57347d7224597744596b4e72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMedsGlassesKnifeTool (10) [e5efaff7-8ca8-4991-8732-cd89a9a5a5aa]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 70.426, - "y": -1.37, - "z": -38.485 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048623", - "Items": [ - { - "_id": "66cbb77a896120cfb1048623", - "_tpl": "5ac78a9b86f7741cca0bbd8d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (33) [1cf0b1b1-1803-4015-b80a-ffd0c647bdfa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 414.572, + "y": -12.446, + "z": 238.115021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048615", + "Items": [ + { + "_id": "66cbb77a896120cfb1048615", + "_tpl": "62a09f32621468534a797acb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMedsGlassesKnifeTool (3) [01d4cc8b-279f-44f3-9979-9583d2158814]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 80.89902, - "y": -1.09000015, - "z": -38.114 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048625", - "Items": [ - { - "_id": "66cbb77a896120cfb1048625", - "_tpl": "5f4f9eb969cdc30ff33f09db", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage (9) [85f9892b-53dc-4f5d-8a5a-f4c3f1872dd0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -246.447968, + "y": 1.77199936, + "z": 389.012 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048617", + "Items": [ + { + "_id": "66cbb77a896120cfb1048617", + "_tpl": "5d63d33b86f7746ea9275524", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMedsGlassesKnifeTool (4) [47744918-b57a-410f-a5dd-b83c830d0959]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 81.733, - "y": -1.09000015, - "z": -38.223 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048627", - "Items": [ - { - "_id": "66cbb77a896120cfb1048627", - "_tpl": "544fb3364bdc2d34748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootGarbage [01b77245-99f0-46bb-8f4b-cb5ff954369d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -407.303, + "y": -0.673000336, + "z": 311.367 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048619", + "Items": [ + { + "_id": "66cbb77a896120cfb1048619", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMedsGlassesKnifeTool (5) [f7cdab6c-b416-4410-afd9-ec75290b24bb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 81.733, - "y": -0.51199913, - "z": -38.223 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048629", - "Items": [ - { - "_id": "66cbb77a896120cfb1048629", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds (1) [8214ddb9-3a46-4559-b4ad-6056c38b36f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 194.42395, + "y": 11.422, + "z": -600.3611 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104861b", + "Items": [ + { + "_id": "66cbb77a896120cfb104861b", + "_tpl": "544fb25a4bdc2dfb738b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMod (1) [c93f36ac-f13c-411c-8ba6-64e0d72f20f4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 52.597, - "y": -2.246, - "z": -8.9 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104862b", - "Items": [ - { - "_id": "66cbb77a896120cfb104862b", - "_tpl": "668031ffe3e7eb26e8004cdd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds (13) [e98d7de4-f546-4424-bb32-4fc3c042f88c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 443.903, + "y": -14.014, + "z": 61.796 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104861d", + "Items": [ + { + "_id": "66cbb77a896120cfb104861d", + "_tpl": "5d02778e86f774203e7dedbe", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "LootMeds (8) [ab4fb12c-5bc3-48cd-893d-919478fc3d55]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 193.939941, + "y": 11.422, + "z": -599.679932 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104862c", - "_tpl": "5efb0e16aeb21837e749c7ff", - "parentId": "66cbb77a896120cfb104862b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104861f", + "Items": [ + { + "_id": "66cbb77a896120cfb104861f", + "_tpl": "544fb45d4bdc2dee738b4568", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMod (2) [0658f84a-18cf-4b4e-bb8a-e86f4946f508]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 52.377, - "y": -2.246, - "z": -8.2 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104862e", - "Items": [ - { - "_id": "66cbb77a896120cfb104862e", - "_tpl": "616442e4faa1272e43152193", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMeds (9) [f90d62b9-c596-4cf6-abb7-0b1cf0bfd3cd]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 443.926, + "y": -13.567, + "z": 61.828 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048621", + "Items": [ + { + "_id": "66cbb77a896120cfb1048621", + "_tpl": "5af0454c86f7746bf20992e8", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMod (6) [eea61061-90ff-4e51-850d-7257b0202c82]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -536.483, - "y": 18.964, - "z": -204.028 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048630", - "Items": [ - { - "_id": "66cbb77a896120cfb1048630", - "_tpl": "5a9d6d13a2750c00164f6b03", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMedsGlassesKnifeTool (10) [e5efaff7-8ca8-4991-8732-cd89a9a5a5aa]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 70.426, + "y": -1.37, + "z": -38.485 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048623", + "Items": [ + { + "_id": "66cbb77a896120cfb1048623", + "_tpl": "5ac78a9b86f7741cca0bbd8d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootMod (7) [72a3a973-8ba1-4533-8b44-8fe11cf0d4e5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -536.011, - "y": 18.964, - "z": -203.804 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048632", - "Items": [ - { - "_id": "66cbb77a896120cfb1048632", - "_tpl": "6642f63667f5cb56a00662eb", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMedsGlassesKnifeTool (3) [01d4cc8b-279f-44f3-9979-9583d2158814]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 80.89902, + "y": -1.09000015, + "z": -38.114 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048625", + "Items": [ + { + "_id": "66cbb77a896120cfb1048625", + "_tpl": "5f4f9eb969cdc30ff33f09db", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTool 1 [9fc29e46-a398-43ce-80dd-033bd5f9366f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 68.0249939, - "y": -0.6189995, - "z": -38.17 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048634", - "Items": [ - { - "_id": "66cbb77a896120cfb1048634", - "_tpl": "590c311186f77424d1667482", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMedsGlassesKnifeTool (4) [47744918-b57a-410f-a5dd-b83c830d0959]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 81.733, + "y": -1.09000015, + "z": -38.223 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048627", + "Items": [ + { + "_id": "66cbb77a896120cfb1048627", + "_tpl": "544fb3364bdc2d34748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTool 3 (10) [45396d63-d7c1-4a49-9589-63049e5d0907]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 194.064, - "y": -14.446, - "z": 260.348 - }, - "Rotation": { - "x": 348.692017, - "y": 313.650665, - "z": 27.7440834 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048636", - "Items": [ - { - "_id": "66cbb77a896120cfb1048636", - "_tpl": "5d1b31ce86f7742523398394", - "upd": { - "StackObjectsCount": 1 + ] + }, + { + "Id": "LootMedsGlassesKnifeTool (5) [f7cdab6c-b416-4410-afd9-ec75290b24bb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 81.733, + "y": -0.51199913, + "z": -38.223 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048629", + "Items": [ + { + "_id": "66cbb77a896120cfb1048629", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootTool 3 (2) [5dac28f9-7684-4795-925f-b63041d8a020]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 71.612, - "y": -1.02899933, - "z": -37.711998 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048638", - "Items": [ - { - "_id": "66cbb77a896120cfb1048638", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMod (1) [c93f36ac-f13c-411c-8ba6-64e0d72f20f4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 52.597, + "y": -2.246, + "z": -8.9 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104862b", + "Items": [ + { + "_id": "66cbb77a896120cfb104862b", + "_tpl": "668031ffe3e7eb26e8004cdd", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104862c", + "_tpl": "5efb0e16aeb21837e749c7ff", + "parentId": "66cbb77a896120cfb104862b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } } - } - ] - }, - { - "Id": "LootTool 3 (6) [10d779b3-a941-47d1-8480-6fd82f2fc49a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -4.128998, - "y": -0.7250004, - "z": -63.652 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104863a", - "Items": [ - { - "_id": "66cbb77a896120cfb104863a", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMod (2) [0658f84a-18cf-4b4e-bb8a-e86f4946f508]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 52.377, + "y": -2.246, + "z": -8.2 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104862e", + "Items": [ + { + "_id": "66cbb77a896120cfb104862e", + "_tpl": "616442e4faa1272e43152193", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootWeaponMod (1) [a33f92f2-a179-4487-9a11-929e3751c482]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 242.598, - "y": -7.561, - "z": 122.104 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104863c", - "Items": [ - { - "_id": "66cbb77a896120cfb104863c", - "_tpl": "560d657b4bdc2da74d8b4572", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMod (6) [eea61061-90ff-4e51-850d-7257b0202c82]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -536.483, + "y": 18.964, + "z": -204.028 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048630", + "Items": [ + { + "_id": "66cbb77a896120cfb1048630", + "_tpl": "5a9d6d13a2750c00164f6b03", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootWeaponMod (5) [e99a8489-b6f8-4089-8357-88ac0b13b7eb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 58.322998, - "y": -1.93000031, - "z": -49.247 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104863e", - "Items": [ - { - "_id": "66cbb77a896120cfb104863e", - "_tpl": "593d489686f7745c6255d58a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootMod (7) [72a3a973-8ba1-4533-8b44-8fe11cf0d4e5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -536.011, + "y": 18.964, + "z": -203.804 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048632", + "Items": [ + { + "_id": "66cbb77a896120cfb1048632", + "_tpl": "6642f63667f5cb56a00662eb", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootWeaponMod (8) [48313a94-1496-4683-a06c-b34e7cd06c79]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 54.8500061, - "y": -1.93000031, - "z": -48.1149979 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048640", - "Items": [ - { - "_id": "66cbb77a896120cfb1048640", - "_tpl": "665d5d9e338229cfd6078da1", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTool 1 [9fc29e46-a398-43ce-80dd-033bd5f9366f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 68.0249939, + "y": -0.6189995, + "z": -38.17 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048634", + "Items": [ + { + "_id": "66cbb77a896120cfb1048634", + "_tpl": "590c311186f77424d1667482", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootWeaponMod (9) [062c469e-3933-4c45-adf0-7e8e395d7a53]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 55.875, - "y": -1.93000031, - "z": -46.9959946 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048642", - "Items": [ - { - "_id": "66cbb77a896120cfb1048642", - "_tpl": "6165ac8c290d254f5e6b2f6c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTool 3 (10) [45396d63-d7c1-4a49-9589-63049e5d0907]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 194.064, + "y": -14.446, + "z": 260.348 + }, + "Rotation": { + "x": 348.692017, + "y": 313.650665, + "z": 27.7440834 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048636", + "Items": [ + { + "_id": "66cbb77a896120cfb1048636", + "_tpl": "5d1b31ce86f7742523398394", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "LootWeaponMod [b9c33eba-870a-43a5-9cb3-5f56e4481d4a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 242.594, - "y": -7.561, - "z": 122.41 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048644", - "Items": [ - { - "_id": "66cbb77a896120cfb1048644", - "_tpl": "619d36da53b4d42ee724fae4", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTool 3 (2) [5dac28f9-7684-4795-925f-b63041d8a020]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 71.612, + "y": -1.02899933, + "z": -37.711998 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048638", + "Items": [ + { + "_id": "66cbb77a896120cfb1048638", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff (24) [e8b8784c-1f37-4ae8-ac3f-3765cf20b072]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -206.85498, - "y": -0.728, - "z": 207.213013 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048646", - "Items": [ - { - "_id": "66cbb77a896120cfb1048646", - "_tpl": "590c695186f7741e566b64a2", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootTool 3 (6) [10d779b3-a941-47d1-8480-6fd82f2fc49a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -4.128998, + "y": -0.7250004, + "z": -63.652 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104863a", + "Items": [ + { + "_id": "66cbb77a896120cfb104863a", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff (39) [b73425ea-58da-4fd5-9888-490de3c2bd6d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -207.189026, - "y": -0.91, - "z": 211.911987 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048648", - "Items": [ - { - "_id": "66cbb77a896120cfb1048648", - "_tpl": "544fb3f34bdc2d03748b456a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootWeaponMod (1) [a33f92f2-a179-4487-9a11-929e3751c482]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 242.598, + "y": -7.561, + "z": 122.104 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104863c", + "Items": [ + { + "_id": "66cbb77a896120cfb104863c", + "_tpl": "560d657b4bdc2da74d8b4572", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff (44) [a38b0a71-48fd-4247-b2f5-c45f63ac3b68]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -203.429016, - "y": -0.728, - "z": 237.799988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104864a", - "Items": [ - { - "_id": "66cbb77a896120cfb104864a", - "_tpl": "5ed5166ad380ab312177c100", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootWeaponMod (5) [e99a8489-b6f8-4089-8357-88ac0b13b7eb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 58.322998, + "y": -1.93000031, + "z": -49.247 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104863e", + "Items": [ + { + "_id": "66cbb77a896120cfb104863e", + "_tpl": "593d489686f7745c6255d58a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff (45) [693fe825-a3c5-42c2-a7f5-e2b2bb3a2cdf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -203.494019, - "y": -1.231, - "z": 203.674988 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104864c", - "Items": [ - { - "_id": "66cbb77a896120cfb104864c", - "_tpl": "5755383e24597772cb798966", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootWeaponMod (8) [48313a94-1496-4683-a06c-b34e7cd06c79]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 54.8500061, + "y": -1.93000031, + "z": -48.1149979 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048640", + "Items": [ + { + "_id": "66cbb77a896120cfb1048640", + "_tpl": "665d5d9e338229cfd6078da1", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff (46) [cc61f116-add6-4838-97ba-12b1e31f8b04]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -204.177979, - "y": -1.231, - "z": 203.711975 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104864e", - "Items": [ - { - "_id": "66cbb77a896120cfb104864e", - "_tpl": "5755356824597772cb798962", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootWeaponMod (9) [062c469e-3933-4c45-adf0-7e8e395d7a53]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 55.875, + "y": -1.93000031, + "z": -46.9959946 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048642", + "Items": [ + { + "_id": "66cbb77a896120cfb1048642", + "_tpl": "6165ac8c290d254f5e6b2f6c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff (47) [24c1d99e-2700-4f80-b56d-93f4304e524a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -205.237976, - "y": -1.231, - "z": 203.794983 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048650", - "Items": [ - { - "_id": "66cbb77a896120cfb1048650", - "_tpl": "5755383e24597772cb798966", - "upd": { - "StackObjectsCount": 1 + { + "Id": "LootWeaponMod [b9c33eba-870a-43a5-9cb3-5f56e4481d4a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 242.594, + "y": -7.561, + "z": 122.41 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048644", + "Items": [ + { + "_id": "66cbb77a896120cfb1048644", + "_tpl": "619d36da53b4d42ee724fae4", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff (48) [0abff713-95b0-407d-a5db-62801ab21e1e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -204.95697, - "y": -0.898, - "z": 203.797974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048652", - "Items": [ - { - "_id": "66cbb77a896120cfb1048652", - "_tpl": "60098ad7c2240c0fe85c570a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "MED_stuff (24) [e8b8784c-1f37-4ae8-ac3f-3765cf20b072]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -206.85498, + "y": -0.728, + "z": 207.213013 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048646", + "Items": [ + { + "_id": "66cbb77a896120cfb1048646", + "_tpl": "590c695186f7741e566b64a2", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff (50) [63bbc149-edef-4b09-a40d-241824e99e64]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -98.62201, - "y": 8.487, - "z": -616.762939 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048654", - "Items": [ - { - "_id": "66cbb77a896120cfb1048654", - "_tpl": "619cc01e0a7c3a1a2731940c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "MED_stuff (39) [b73425ea-58da-4fd5-9888-490de3c2bd6d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -207.189026, + "y": -0.91, + "z": 211.911987 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048648", + "Items": [ + { + "_id": "66cbb77a896120cfb1048648", + "_tpl": "544fb3f34bdc2d03748b456a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff_rare (10) [44b48543-76bd-4efe-96d4-99388412a5ac]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -179.549011, - "y": -0.846, - "z": 260.452026 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048656", - "Items": [ - { - "_id": "66cbb77a896120cfb1048656", - "_tpl": "5d1b3a5d86f774252167ba22", - "upd": { - "StackObjectsCount": 1 + { + "Id": "MED_stuff (44) [a38b0a71-48fd-4247-b2f5-c45f63ac3b68]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -203.429016, + "y": -0.728, + "z": 237.799988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104864a", + "Items": [ + { + "_id": "66cbb77a896120cfb104864a", + "_tpl": "5ed5166ad380ab312177c100", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff_rare (11) [28d6baac-b308-4b05-b603-ac7d81963f16]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -179.336, - "y": -1.299, - "z": 260.338 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048658", - "Items": [ - { - "_id": "66cbb77a896120cfb1048658", - "_tpl": "5b4335ba86f7744d2837a264", - "upd": { - "StackObjectsCount": 1 + { + "Id": "MED_stuff (45) [693fe825-a3c5-42c2-a7f5-e2b2bb3a2cdf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -203.494019, + "y": -1.231, + "z": 203.674988 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104864c", + "Items": [ + { + "_id": "66cbb77a896120cfb104864c", + "_tpl": "5755383e24597772cb798966", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff_rare (2) [568613fe-2d69-46b0-8444-e73e23c506dc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 284.036, - "y": 23.875, - "z": -517.121948 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104865a", - "Items": [ - { - "_id": "66cbb77a896120cfb104865a", - "_tpl": "62a0a043cf4a99369e2624a5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "MED_stuff (46) [cc61f116-add6-4838-97ba-12b1e31f8b04]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -204.177979, + "y": -1.231, + "z": 203.711975 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104864e", + "Items": [ + { + "_id": "66cbb77a896120cfb104864e", + "_tpl": "5755356824597772cb798962", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff_rare (7) [7de51308-a7e8-4589-928a-58031816a7c6]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 284.040039, - "y": 23.172, - "z": -517.409058 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104865c", - "Items": [ - { - "_id": "66cbb77a896120cfb104865c", - "_tpl": "5751a89d24597722aa0e8db0", - "upd": { - "StackObjectsCount": 1 + { + "Id": "MED_stuff (47) [24c1d99e-2700-4f80-b56d-93f4304e524a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -205.237976, + "y": -1.231, + "z": 203.794983 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048650", + "Items": [ + { + "_id": "66cbb77a896120cfb1048650", + "_tpl": "5755383e24597772cb798966", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "MED_stuff_rare (8) [78dba1da-a371-4bb3-a8f5-980c621f95bf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -180.771, - "y": -0.889, - "z": 263.115 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104865e", - "Items": [ - { - "_id": "66cbb77a896120cfb104865e", - "_tpl": "5b4335ba86f7744d2837a264", - "upd": { - "StackObjectsCount": 1 + { + "Id": "MED_stuff (48) [0abff713-95b0-407d-a5db-62801ab21e1e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -204.95697, + "y": -0.898, + "z": 203.797974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048652", + "Items": [ + { + "_id": "66cbb77a896120cfb1048652", + "_tpl": "60098ad7c2240c0fe85c570a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (103) [3a5137cb-a277-4c88-8064-cd7edb478dad]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -444.534, - "y": 16.7, - "z": -407.365967 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048661", - "Items": [ - { - "_id": "66cbb77a896120cfb1048661", - "_tpl": "657024b31419851aef03e70f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "MED_stuff (50) [63bbc149-edef-4b09-a40d-241824e99e64]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -98.62201, + "y": 8.487, + "z": -616.762939 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048654", + "Items": [ + { + "_id": "66cbb77a896120cfb1048654", + "_tpl": "619cc01e0a7c3a1a2731940c", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "MED_stuff_rare (10) [44b48543-76bd-4efe-96d4-99388412a5ac]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -179.549011, + "y": -0.846, + "z": 260.452026 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048662", - "_tpl": "5f647f31b6238e5dd066e196", - "parentId": "66cbb77a896120cfb1048661", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048656", + "Items": [ + { + "_id": "66cbb77a896120cfb1048656", + "_tpl": "5d1b3a5d86f774252167ba22", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (104) [5de482be-bba2-4753-8a88-a958d79c3393]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -445.101, - "y": 16.627, - "z": -406.141 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048665", - "Items": [ - { - "_id": "66cbb77a896120cfb1048665", - "_tpl": "5737250c2459776125652acc", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "MED_stuff_rare (11) [28d6baac-b308-4b05-b603-ac7d81963f16]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -179.336, + "y": -1.299, + "z": 260.338 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048666", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb77a896120cfb1048665", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048658", + "Items": [ + { + "_id": "66cbb77a896120cfb1048658", + "_tpl": "5b4335ba86f7744d2837a264", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (105) [b3c5d4e6-1900-45a0-a64e-55f5fc83e6b8]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -22.7719727, - "y": 11.143, - "z": -739.332031 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048668", - "Items": [ - { - "_id": "66cbb77a896120cfb1048668", - "_tpl": "5448fee04bdc2dbc018b4567", - "upd": { - "StackObjectsCount": 1 + { + "Id": "MED_stuff_rare (2) [568613fe-2d69-46b0-8444-e73e23c506dc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 284.036, + "y": 23.875, + "z": -517.121948 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104865a", + "Items": [ + { + "_id": "66cbb77a896120cfb104865a", + "_tpl": "62a0a043cf4a99369e2624a5", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (106) [fe2fdac3-9755-4350-b4f4-243c3a91d2f2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.3099976, - "y": 11.143, - "z": -741.23 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104866b", - "Items": [ - { - "_id": "66cbb77a896120cfb104866b", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "MED_stuff_rare (7) [7de51308-a7e8-4589-928a-58031816a7c6]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 284.040039, + "y": 23.172, + "z": -517.409058 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104866c", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbb77a896120cfb104866b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104865c", + "Items": [ + { + "_id": "66cbb77a896120cfb104865c", + "_tpl": "5751a89d24597722aa0e8db0", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (107) [16fba538-a2d5-44bc-8b93-af375011b391]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -23.11499, - "y": 11.143, - "z": -740.646 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104866f", - "Items": [ - { - "_id": "66cbb77a896120cfb104866f", - "_tpl": "573728cc24597765cc785b5d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "MED_stuff_rare (8) [78dba1da-a371-4bb3-a8f5-980c621f95bf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -180.771, + "y": -0.889, + "z": 263.115 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048670", - "_tpl": "57372140245977611f70ee91", - "parentId": "66cbb77a896120cfb104866f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104865e", + "Items": [ + { + "_id": "66cbb77a896120cfb104865e", + "_tpl": "5b4335ba86f7744d2837a264", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (108) [7bb679c8-1842-4891-96dc-ddb501318359]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -22.9320068, - "y": 11.143, - "z": -739.73 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048673", - "Items": [ - { - "_id": "66cbb77a896120cfb1048673", - "_tpl": "657023b1cfc010a0f50069e5", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (103) [3a5137cb-a277-4c88-8064-cd7edb478dad]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -444.534, + "y": 16.7, + "z": -407.365967 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048674", - "_tpl": "619636be6db0f2477964e710", - "parentId": "66cbb77a896120cfb1048673", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048661", + "Items": [ + { + "_id": "66cbb77a896120cfb1048661", + "_tpl": "657024b31419851aef03e70f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048662", + "_tpl": "5f647f31b6238e5dd066e196", + "parentId": "66cbb77a896120cfb1048661", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_stuff (109) [e110b86a-f9bd-4c45-a54f-17fd26992459]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 133.932, - "y": 24.83, - "z": -760.579 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048676", - "Items": [ - { - "_id": "66cbb77a896120cfb1048676", - "_tpl": "635a758bfefc88a93f021b8a", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_stuff (104) [5de482be-bba2-4753-8a88-a958d79c3393]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -445.101, + "y": 16.627, + "z": -406.141 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048665", + "Items": [ + { + "_id": "66cbb77a896120cfb1048665", + "_tpl": "5737250c2459776125652acc", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048666", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb77a896120cfb1048665", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_stuff (111) [b495c185-f62f-4704-9a40-bbb9e50927fc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 134.281, - "y": 24.741, - "z": -759.855 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048678", - "Items": [ - { - "_id": "66cbb77a896120cfb1048678", - "_tpl": "5af0484c86f7740f02001f7f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_stuff (105) [b3c5d4e6-1900-45a0-a64e-55f5fc83e6b8]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -22.7719727, + "y": 11.143, + "z": -739.332031 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048668", + "Items": [ + { + "_id": "66cbb77a896120cfb1048668", + "_tpl": "5448fee04bdc2dbc018b4567", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (112) [d2ecea36-d252-4a04-a3e2-6fa807f471e3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -546.235, - "y": 14.561, - "z": -379.389038 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104867b", - "Items": [ - { - "_id": "66cbb77a896120cfb104867b", - "_tpl": "6570254fcfc010a0f5006a22", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (106) [fe2fdac3-9755-4350-b4f4-243c3a91d2f2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.3099976, + "y": 11.143, + "z": -741.23 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104867c", - "_tpl": "5a6086ea4f39f99cd479502f", - "parentId": "66cbb77a896120cfb104867b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104866b", + "Items": [ + { + "_id": "66cbb77a896120cfb104866b", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104866c", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbb77a896120cfb104866b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (113) [71f97f8f-33f3-4a0b-8f42-2288b60ee97b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -545.756958, - "y": 14.561, - "z": -379.396 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104867f", - "Items": [ - { - "_id": "66cbb77a896120cfb104867f", - "_tpl": "648983d6b5a2df1c815a04ec", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (107) [16fba538-a2d5-44bc-8b93-af375011b391]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -23.11499, + "y": 11.143, + "z": -740.646 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048680", - "_tpl": "5cadf6eeae921500134b2799", - "parentId": "66cbb77a896120cfb104867f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104866f", + "Items": [ + { + "_id": "66cbb77a896120cfb104866f", + "_tpl": "573728cc24597765cc785b5d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048670", + "_tpl": "57372140245977611f70ee91", + "parentId": "66cbb77a896120cfb104866f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_stuff (116) [6b404e64-eebb-44ce-a75a-89fc37f4ab1d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 119.737, - "y": 7.919, - "z": -604.866943 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048683", - "Items": [ - { - "_id": "66cbb77a896120cfb1048683", - "_tpl": "6570251ccfc010a0f5006a13", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (108) [7bb679c8-1842-4891-96dc-ddb501318359]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -22.9320068, + "y": 11.143, + "z": -739.73 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048684", - "_tpl": "5cc86832d7f00c000d3a6e6c", - "parentId": "66cbb77a896120cfb1048683", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048673", + "Items": [ + { + "_id": "66cbb77a896120cfb1048673", + "_tpl": "657023b1cfc010a0f50069e5", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048674", + "_tpl": "619636be6db0f2477964e710", + "parentId": "66cbb77a896120cfb1048673", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_stuff (117) [7cd9835a-35c7-487e-83b4-b3e0c42a6c88]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 120.161987, - "y": 7.919, - "z": -605.605957 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048687", - "Items": [ - { - "_id": "66cbb77a896120cfb1048687", - "_tpl": "57372db0245977685d4159b2", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (109) [e110b86a-f9bd-4c45-a54f-17fd26992459]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 133.932, + "y": 24.83, + "z": -760.579 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048688", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb77a896120cfb1048687", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048676", + "Items": [ + { + "_id": "66cbb77a896120cfb1048676", + "_tpl": "635a758bfefc88a93f021b8a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (118) [846933df-138e-4ed8-9d6d-f41b0d95ce8c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 120.583008, - "y": 7.919, - "z": -604.912 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104868b", - "Items": [ - { - "_id": "66cbb77a896120cfb104868b", - "_tpl": "64ace9f9c4eda9354b0226aa", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (111) [b495c185-f62f-4704-9a40-bbb9e50927fc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 134.281, + "y": 24.741, + "z": -759.855 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104868c", - "_tpl": "64b7af434b75259c590fa893", - "parentId": "66cbb77a896120cfb104868b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048678", + "Items": [ + { + "_id": "66cbb77a896120cfb1048678", + "_tpl": "5af0484c86f7740f02001f7f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (20) [bbdf39eb-50f1-451d-a18e-6b1a1682dc91]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -191.924011, - "y": -1.278, - "z": 198.19 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104868f", - "Items": [ - { - "_id": "66cbb77a896120cfb104868f", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (112) [d2ecea36-d252-4a04-a3e2-6fa807f471e3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -546.235, + "y": 14.561, + "z": -379.389038 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048690", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbb77a896120cfb104868f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104867b", + "Items": [ + { + "_id": "66cbb77a896120cfb104867b", + "_tpl": "6570254fcfc010a0f5006a22", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104867c", + "_tpl": "5a6086ea4f39f99cd479502f", + "parentId": "66cbb77a896120cfb104867b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (23) [b8e04fdf-4df1-40db-9e4e-800400a06823]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -201.650024, - "y": -1.638, - "z": 223.60498 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048693", - "Items": [ - { - "_id": "66cbb77a896120cfb1048693", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (113) [71f97f8f-33f3-4a0b-8f42-2288b60ee97b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -545.756958, + "y": 14.561, + "z": -379.396 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048694", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbb77a896120cfb1048693", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104867f", + "Items": [ + { + "_id": "66cbb77a896120cfb104867f", + "_tpl": "648983d6b5a2df1c815a04ec", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048680", + "_tpl": "5cadf6eeae921500134b2799", + "parentId": "66cbb77a896120cfb104867f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } } - } - ] - }, - { - "Id": "mix_stuff (26) [a7e882e7-0d9b-4811-98b2-1107a0c20f73]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -195.307983, - "y": -0.984, - "z": 221.984985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048696", - "Items": [ - { - "_id": "66cbb77a896120cfb1048696", - "_tpl": "5734773724597737fd047c14", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_stuff (116) [6b404e64-eebb-44ce-a75a-89fc37f4ab1d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 119.737, + "y": 7.919, + "z": -604.866943 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048683", + "Items": [ + { + "_id": "66cbb77a896120cfb1048683", + "_tpl": "6570251ccfc010a0f5006a13", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048684", + "_tpl": "5cc86832d7f00c000d3a6e6c", + "parentId": "66cbb77a896120cfb1048683", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_stuff (28) [42da535e-6307-4c0e-9da2-b40863a551e0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -193.620972, - "y": -0.596, - "z": 220.172974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104869a", - "Items": [ - { - "_id": "66cbb77a896120cfb104869a", - "_tpl": "65702479c5d7d4cb4d07855e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (117) [7cd9835a-35c7-487e-83b4-b3e0c42a6c88]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 120.161987, + "y": 7.919, + "z": -605.605957 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104869b", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66cbb77a896120cfb104869a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048687", + "Items": [ + { + "_id": "66cbb77a896120cfb1048687", + "_tpl": "57372db0245977685d4159b2", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048688", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb77a896120cfb1048687", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } + ] + }, + { + "Id": "mix_stuff (118) [846933df-138e-4ed8-9d6d-f41b0d95ce8c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 120.583008, + "y": 7.919, + "z": -604.912 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104869c", - "_tpl": "5d6e68b3a4b9361bca7e50b5", - "parentId": "66cbb77a896120cfb104869a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104868b", + "Items": [ + { + "_id": "66cbb77a896120cfb104868b", + "_tpl": "64ace9f9c4eda9354b0226aa", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104868c", + "_tpl": "64b7af434b75259c590fa893", + "parentId": "66cbb77a896120cfb104868b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (29) [0e18953b-02f0-442b-8719-de9ec6dd1604]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -193.737, - "y": -0.671, - "z": 220.297974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486a0", - "Items": [ - { - "_id": "66cbb77a896120cfb10486a0", - "_tpl": "6570265bcfc010a0f5006a56", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (20) [bbdf39eb-50f1-451d-a18e-6b1a1682dc91]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -191.924011, + "y": -1.278, + "z": 198.19 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486a1", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbb77a896120cfb10486a0", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104868f", + "Items": [ + { + "_id": "66cbb77a896120cfb104868f", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048690", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbb77a896120cfb104868f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "mix_stuff (23) [b8e04fdf-4df1-40db-9e4e-800400a06823]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -201.650024, + "y": -1.638, + "z": 223.60498 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486a2", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbb77a896120cfb10486a0", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048693", + "Items": [ + { + "_id": "66cbb77a896120cfb1048693", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048694", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbb77a896120cfb1048693", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (30) [849c4468-0379-428d-a9eb-638182cbd1e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -182.659, - "y": -0.36, - "z": 242.598022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486a5", - "Items": [ - { - "_id": "66cbb77a896120cfb10486a5", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (26) [a7e882e7-0d9b-4811-98b2-1107a0c20f73]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -195.307983, + "y": -0.984, + "z": 221.984985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486a6", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbb77a896120cfb10486a5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048696", + "Items": [ + { + "_id": "66cbb77a896120cfb1048696", + "_tpl": "5734773724597737fd047c14", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (32) [140a1f36-7f00-4726-8ba6-25d7f5e613d4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -188.026, - "y": -1.42, - "z": 264.671021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486a9", - "Items": [ - { - "_id": "66cbb77a896120cfb10486a9", - "_tpl": "5c1127d0d174af29be75cf68", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (28) [42da535e-6307-4c0e-9da2-b40863a551e0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -193.620972, + "y": -0.596, + "z": 220.172974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486aa", - "_tpl": "5c0d591486f7744c505b416f", - "parentId": "66cbb77a896120cfb10486a9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104869a", + "Items": [ + { + "_id": "66cbb77a896120cfb104869a", + "_tpl": "65702479c5d7d4cb4d07855e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104869b", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66cbb77a896120cfb104869a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb77a896120cfb104869c", + "_tpl": "5d6e68b3a4b9361bca7e50b5", + "parentId": "66cbb77a896120cfb104869a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_stuff (33) [41ec6b19-6ae1-40ee-85e7-cca9de4cec6d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -188.224976, - "y": -1.42, - "z": 263.840027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486ad", - "Items": [ - { - "_id": "66cbb77a896120cfb10486ad", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (29) [0e18953b-02f0-442b-8719-de9ec6dd1604]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -193.737, + "y": -0.671, + "z": 220.297974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486ae", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb77a896120cfb10486ad", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486a0", + "Items": [ + { + "_id": "66cbb77a896120cfb10486a0", + "_tpl": "6570265bcfc010a0f5006a56", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486a1", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbb77a896120cfb10486a0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb77a896120cfb10486a2", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbb77a896120cfb10486a0", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_stuff (34) [6ba465ac-68fe-4760-baa3-b49a55d4b444]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -188.617981, - "y": -1.42, - "z": 264.76 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486b1", - "Items": [ - { - "_id": "66cbb77a896120cfb10486b1", - "_tpl": "657025dabfc87b3a34093256", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (30) [849c4468-0379-428d-a9eb-638182cbd1e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -182.659, + "y": -0.36, + "z": 242.598022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486b2", - "_tpl": "57a0e5022459774d1673f889", - "parentId": "66cbb77a896120cfb10486b1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486a5", + "Items": [ + { + "_id": "66cbb77a896120cfb10486a5", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486a6", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbb77a896120cfb10486a5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (35) [5dc8419f-0329-4e4f-b5f2-4e49c4ba38c3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -187.771, - "y": -0.586, - "z": 218.547 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486b4", - "Items": [ - { - "_id": "66cbb77a896120cfb10486b4", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 95 + { + "Id": "mix_stuff (32) [140a1f36-7f00-4726-8ba6-25d7f5e613d4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -188.026, + "y": -1.42, + "z": 264.671021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486a9", + "Items": [ + { + "_id": "66cbb77a896120cfb10486a9", + "_tpl": "5c1127d0d174af29be75cf68", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486aa", + "_tpl": "5c0d591486f7744c505b416f", + "parentId": "66cbb77a896120cfb10486a9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_stuff (36) [73c2439b-766d-426a-9fd6-8cbfbddf3ff9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -187.708008, - "y": -0.586, - "z": 219.120972 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486b8", - "Items": [ - { - "_id": "66cbb77a896120cfb10486b8", - "_tpl": "57372d4c245977685a3da2a1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (33) [41ec6b19-6ae1-40ee-85e7-cca9de4cec6d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -188.224976, + "y": -1.42, + "z": 263.840027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486b9", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb77a896120cfb10486b8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486ad", + "Items": [ + { + "_id": "66cbb77a896120cfb10486ad", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486ae", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb77a896120cfb10486ad", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + }, + { + "Id": "mix_stuff (34) [6ba465ac-68fe-4760-baa3-b49a55d4b444]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -188.617981, + "y": -1.42, + "z": 264.76 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486ba", - "_tpl": "56dff2ced2720bb4668b4567", - "parentId": "66cbb77a896120cfb10486b8", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486b1", + "Items": [ + { + "_id": "66cbb77a896120cfb10486b1", + "_tpl": "657025dabfc87b3a34093256", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486b2", + "_tpl": "57a0e5022459774d1673f889", + "parentId": "66cbb77a896120cfb10486b1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (38) [b364ad8d-a09f-40b8-835d-59db6d0eb652]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -210.461975, - "y": -0.663, - "z": 215.419983 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486bd", - "Items": [ - { - "_id": "66cbb77a896120cfb10486bd", - "_tpl": "657025cfbfc87b3a34093253", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (35) [5dc8419f-0329-4e4f-b5f2-4e49c4ba38c3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -187.771, + "y": -0.586, + "z": 218.547 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486be", - "_tpl": "61962d879bb3d20b0946d385", - "parentId": "66cbb77a896120cfb10486bd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486b4", + "Items": [ + { + "_id": "66cbb77a896120cfb10486b4", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 95 + } } - } - ] - }, - { - "Id": "mix_stuff (44) [a8ae0224-a98e-4109-8913-5846ec9d0e9d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -561.681, - "y": 21.707, - "z": -217.484985 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486c2", - "Items": [ - { - "_id": "66cbb77a896120cfb10486c2", - "_tpl": "65702432bfc87b3a3409321c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (36) [73c2439b-766d-426a-9fd6-8cbfbddf3ff9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -187.708008, + "y": -0.586, + "z": 219.120972 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486c3", - "_tpl": "5d6e67fba4b9361bc73bc779", - "parentId": "66cbb77a896120cfb10486c2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486b8", + "Items": [ + { + "_id": "66cbb77a896120cfb10486b8", + "_tpl": "57372d4c245977685a3da2a1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486b9", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb77a896120cfb10486b8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb77a896120cfb10486ba", + "_tpl": "56dff2ced2720bb4668b4567", + "parentId": "66cbb77a896120cfb10486b8", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "mix_stuff (38) [b364ad8d-a09f-40b8-835d-59db6d0eb652]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -210.461975, + "y": -0.663, + "z": 215.419983 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486c4", - "_tpl": "5d6e67fba4b9361bc73bc779", - "parentId": "66cbb77a896120cfb10486c2", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486bd", + "Items": [ + { + "_id": "66cbb77a896120cfb10486bd", + "_tpl": "657025cfbfc87b3a34093253", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486be", + "_tpl": "61962d879bb3d20b0946d385", + "parentId": "66cbb77a896120cfb10486bd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (45) [3399dc71-52d1-4d2e-a46f-7dfb5559707e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -202.812988, - "y": 45.021, - "z": -228.854 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486c7", - "Items": [ - { - "_id": "66cbb77a896120cfb10486c7", - "_tpl": "657025c4c5d7d4cb4d078582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (44) [a8ae0224-a98e-4109-8913-5846ec9d0e9d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -561.681, + "y": 21.707, + "z": -217.484985 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486c8", - "_tpl": "5a269f97c4a282000b151807", - "parentId": "66cbb77a896120cfb10486c7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486c2", + "Items": [ + { + "_id": "66cbb77a896120cfb10486c2", + "_tpl": "65702432bfc87b3a3409321c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486c3", + "_tpl": "5d6e67fba4b9361bc73bc779", + "parentId": "66cbb77a896120cfb10486c2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb77a896120cfb10486c4", + "_tpl": "5d6e67fba4b9361bc73bc779", + "parentId": "66cbb77a896120cfb10486c2", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_stuff (46) [a7c7b74e-b111-4d0e-aaf0-ba97abb4a8ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -202.453, - "y": 44.916, - "z": -229.047974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486cb", - "Items": [ - { - "_id": "66cbb77a896120cfb10486cb", - "_tpl": "657024f9bfc87b3a3409323b", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (45) [3399dc71-52d1-4d2e-a46f-7dfb5559707e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -202.812988, + "y": 45.021, + "z": -228.854 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486cc", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb77a896120cfb10486cb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486c7", + "Items": [ + { + "_id": "66cbb77a896120cfb10486c7", + "_tpl": "657025c4c5d7d4cb4d078582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486c8", + "_tpl": "5a269f97c4a282000b151807", + "parentId": "66cbb77a896120cfb10486c7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_stuff (47) [f280a9c4-b38a-4733-9686-28caad84168b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -202.211975, - "y": 45.011, - "z": -229.651 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486cf", - "Items": [ - { - "_id": "66cbb77a896120cfb10486cf", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (46) [a7c7b74e-b111-4d0e-aaf0-ba97abb4a8ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -202.453, + "y": 44.916, + "z": -229.047974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486d0", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbb77a896120cfb10486cf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486cb", + "Items": [ + { + "_id": "66cbb77a896120cfb10486cb", + "_tpl": "657024f9bfc87b3a3409323b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486cc", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb77a896120cfb10486cb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_stuff (48) [e64982f3-14cd-4b29-9b16-18942e021ef0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -515.157, - "y": 15.589, - "z": -210.890991 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486d3", - "Items": [ - { - "_id": "66cbb77a896120cfb10486d3", - "_tpl": "57372ebf2459776862260582", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (47) [f280a9c4-b38a-4733-9686-28caad84168b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -202.211975, + "y": 45.011, + "z": -229.651 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486d4", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "66cbb77a896120cfb10486d3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486cf", + "Items": [ + { + "_id": "66cbb77a896120cfb10486cf", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486d0", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbb77a896120cfb10486cf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_stuff (49) [3583aad8-57c8-4d23-b3d2-368e0edb116d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -515.084961, - "y": 15.548, - "z": -210.762024 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486d6", - "Items": [ - { - "_id": "66cbb77a896120cfb10486d6", - "_tpl": "5af0548586f7743a532b7e99", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_stuff (48) [e64982f3-14cd-4b29-9b16-18942e021ef0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -515.157, + "y": 15.589, + "z": -210.890991 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486d3", + "Items": [ + { + "_id": "66cbb77a896120cfb10486d3", + "_tpl": "57372ebf2459776862260582", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486d4", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "66cbb77a896120cfb10486d3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_stuff (51) [e0f7390d-abc2-4a02-a60f-851fa9fcbd1c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -128.762024, - "y": 10.727, - "z": -689.442 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486d9", - "Items": [ - { - "_id": "66cbb77a896120cfb10486d9", - "_tpl": "657024b31419851aef03e70f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (49) [3583aad8-57c8-4d23-b3d2-368e0edb116d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -515.084961, + "y": 15.548, + "z": -210.762024 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486da", - "_tpl": "5f647f31b6238e5dd066e196", - "parentId": "66cbb77a896120cfb10486d9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486d6", + "Items": [ + { + "_id": "66cbb77a896120cfb10486d6", + "_tpl": "5af0548586f7743a532b7e99", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (53) [28220e74-434d-4060-a5af-1aa6cf5a3452]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -134.500977, - "y": 10.959, - "z": -687.152 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486dc", - "Items": [ - { - "_id": "66cbb77a896120cfb10486dc", - "_tpl": "590a373286f774287540368b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_stuff (51) [e0f7390d-abc2-4a02-a60f-851fa9fcbd1c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -128.762024, + "y": 10.727, + "z": -689.442 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486d9", + "Items": [ + { + "_id": "66cbb77a896120cfb10486d9", + "_tpl": "657024b31419851aef03e70f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486da", + "_tpl": "5f647f31b6238e5dd066e196", + "parentId": "66cbb77a896120cfb10486d9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_stuff (55) [684df33f-4ddb-4648-8f1b-5e85d4cb57b2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -102.526978, - "y": 9.01, - "z": -667.848 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486df", - "Items": [ - { - "_id": "66cbb77a896120cfb10486df", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (53) [28220e74-434d-4060-a5af-1aa6cf5a3452]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -134.500977, + "y": 10.959, + "z": -687.152 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486e0", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbb77a896120cfb10486df", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486dc", + "Items": [ + { + "_id": "66cbb77a896120cfb10486dc", + "_tpl": "590a373286f774287540368b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (57) [3040408e-52f4-4626-9537-4fcca3b92340]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -116.323975, - "y": 22.549, - "z": -462.642944 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486e3", - "Items": [ - { - "_id": "66cbb77a896120cfb10486e3", - "_tpl": "5737273924597765dd374461", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (55) [684df33f-4ddb-4648-8f1b-5e85d4cb57b2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -102.526978, + "y": 9.01, + "z": -667.848 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486e4", - "_tpl": "57371f8d24597761006c6a81", - "parentId": "66cbb77a896120cfb10486e3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486df", + "Items": [ + { + "_id": "66cbb77a896120cfb10486df", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486e0", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbb77a896120cfb10486df", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (59) [d4346839-8683-4bba-9040-f946c5d3d9b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -449.494, - "y": 15.558, - "z": -331.494019 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486e7", - "Items": [ - { - "_id": "66cbb77a896120cfb10486e7", - "_tpl": "5737280e24597765cc785b5c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (57) [3040408e-52f4-4626-9537-4fcca3b92340]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -116.323975, + "y": 22.549, + "z": -462.642944 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486e8", - "_tpl": "5737207f24597760ff7b25f2", - "parentId": "66cbb77a896120cfb10486e7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 16 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486e3", + "Items": [ + { + "_id": "66cbb77a896120cfb10486e3", + "_tpl": "5737273924597765dd374461", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486e4", + "_tpl": "57371f8d24597761006c6a81", + "parentId": "66cbb77a896120cfb10486e3", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_stuff (61) [125dcca8-a17b-42d4-8af1-e46e353b57ca]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -455.837, - "y": 16.381, - "z": -366.677 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486eb", - "Items": [ - { - "_id": "66cbb77a896120cfb10486eb", - "_tpl": "657024b8bfc87b3a34093232", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (59) [d4346839-8683-4bba-9040-f946c5d3d9b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -449.494, + "y": 15.558, + "z": -331.494019 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486ec", - "_tpl": "5e85aa1a988a8701445df1f5", - "parentId": "66cbb77a896120cfb10486eb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486e7", + "Items": [ + { + "_id": "66cbb77a896120cfb10486e7", + "_tpl": "5737280e24597765cc785b5c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486e8", + "_tpl": "5737207f24597760ff7b25f2", + "parentId": "66cbb77a896120cfb10486e7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 16 + } } - } - ] - }, - { - "Id": "mix_stuff (62) [a292f73b-ac95-4c0d-ba7e-685619837be4]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -455.894, - "y": 16.381, - "z": -366.243042 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486ef", - "Items": [ - { - "_id": "66cbb77a896120cfb10486ef", - "_tpl": "65702520bfc87b3a3409323e", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (61) [125dcca8-a17b-42d4-8af1-e46e353b57ca]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -455.837, + "y": 16.381, + "z": -366.677 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486f0", - "_tpl": "5cc86840d7f00c002412c56c", - "parentId": "66cbb77a896120cfb10486ef", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486eb", + "Items": [ + { + "_id": "66cbb77a896120cfb10486eb", + "_tpl": "657024b8bfc87b3a34093232", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486ec", + "_tpl": "5e85aa1a988a8701445df1f5", + "parentId": "66cbb77a896120cfb10486eb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_stuff (64) [cd1a9615-012b-4e59-a672-192771747782]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -464.644, - "y": 16.436, - "z": -360.322021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486f2", - "Items": [ - { - "_id": "66cbb77a896120cfb10486f2", - "_tpl": "5e8f3423fd7471236e6e3b64", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_stuff (62) [a292f73b-ac95-4c0d-ba7e-685619837be4]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -455.894, + "y": 16.381, + "z": -366.243042 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486ef", + "Items": [ + { + "_id": "66cbb77a896120cfb10486ef", + "_tpl": "65702520bfc87b3a3409323e", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486f0", + "_tpl": "5cc86840d7f00c002412c56c", + "parentId": "66cbb77a896120cfb10486ef", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_stuff (65) [6c14ed22-50fb-4a73-96f3-92a0f168f7cf]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -452.722, - "y": 16.027, - "z": -392.217041 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486f5", - "Items": [ - { - "_id": "66cbb77a896120cfb10486f5", - "_tpl": "65702554bfc87b3a34093247", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (64) [cd1a9615-012b-4e59-a672-192771747782]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -464.644, + "y": 16.436, + "z": -360.322021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486f6", - "_tpl": "5a608bf24f39f98ffc77720e", - "parentId": "66cbb77a896120cfb10486f5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486f2", + "Items": [ + { + "_id": "66cbb77a896120cfb10486f2", + "_tpl": "5e8f3423fd7471236e6e3b64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (68) [bd77e001-8348-4a9a-9458-e3e0e438b54f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -456.899, - "y": 15.912, - "z": -392.944946 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486f9", - "Items": [ - { - "_id": "66cbb77a896120cfb10486f9", - "_tpl": "657024e3c5d7d4cb4d07856a", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (65) [6c14ed22-50fb-4a73-96f3-92a0f168f7cf]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -452.722, + "y": 16.027, + "z": -392.217041 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb10486fa", - "_tpl": "54527ac44bdc2d36668b4567", - "parentId": "66cbb77a896120cfb10486f9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486f5", + "Items": [ + { + "_id": "66cbb77a896120cfb10486f5", + "_tpl": "65702554bfc87b3a34093247", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486f6", + "_tpl": "5a608bf24f39f98ffc77720e", + "parentId": "66cbb77a896120cfb10486f5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (70) [81f7595d-7601-4bda-9530-13d366eb34e2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -465.005, - "y": 15.188, - "z": -396.406982 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486fc", - "Items": [ - { - "_id": "66cbb77a896120cfb10486fc", - "_tpl": "544fb6cc4bdc2d34748b456e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_stuff (68) [bd77e001-8348-4a9a-9458-e3e0e438b54f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -456.899, + "y": 15.912, + "z": -392.944946 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486f9", + "Items": [ + { + "_id": "66cbb77a896120cfb10486f9", + "_tpl": "657024e3c5d7d4cb4d07856a", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb10486fa", + "_tpl": "54527ac44bdc2d36668b4567", + "parentId": "66cbb77a896120cfb10486f9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_stuff (71) [27b67663-06bb-4eed-b2ed-5abab893762f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -463.622, - "y": 15.461, - "z": -434.843018 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb10486fe", - "Items": [ - { - "_id": "66cbb77a896120cfb10486fe", - "_tpl": "5d235b4d86f7742e017bc88a", - "upd": { - "StackObjectsCount": 2 + { + "Id": "mix_stuff (70) [81f7595d-7601-4bda-9530-13d366eb34e2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -465.005, + "y": 15.188, + "z": -396.406982 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486fc", + "Items": [ + { + "_id": "66cbb77a896120cfb10486fc", + "_tpl": "544fb6cc4bdc2d34748b456e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (76) [0d0fa9e9-afa9-4fe4-8d89-64547bd17879]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -515.339966, - "y": 11.602, - "z": -475.406 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048701", - "Items": [ - { - "_id": "66cbb77a896120cfb1048701", - "_tpl": "657024aebfc87b3a3409322f", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (71) [27b67663-06bb-4eed-b2ed-5abab893762f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -463.622, + "y": 15.461, + "z": -434.843018 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048702", - "_tpl": "5e85a9a6eacf8c039e4e2ac1", - "parentId": "66cbb77a896120cfb1048701", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb10486fe", + "Items": [ + { + "_id": "66cbb77a896120cfb10486fe", + "_tpl": "5d235b4d86f7742e017bc88a", + "upd": { + "StackObjectsCount": 2 + } } - } - ] - }, - { - "Id": "mix_stuff (78) [a13192d2-faaf-400d-bcae-9696d2cad52e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -530.579, - "y": 15.425, - "z": -373.607056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048706", - "Items": [ - { - "_id": "66cbb77a896120cfb1048706", - "_tpl": "6570243fcfc010a0f50069fb", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (76) [0d0fa9e9-afa9-4fe4-8d89-64547bd17879]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -515.339966, + "y": 11.602, + "z": -475.406 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048707", - "_tpl": "5d6e68dea4b9361bcc29e659", - "parentId": "66cbb77a896120cfb1048706", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048701", + "Items": [ + { + "_id": "66cbb77a896120cfb1048701", + "_tpl": "657024aebfc87b3a3409322f", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048702", + "_tpl": "5e85a9a6eacf8c039e4e2ac1", + "parentId": "66cbb77a896120cfb1048701", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 5 + } } + ] + }, + { + "Id": "mix_stuff (78) [a13192d2-faaf-400d-bcae-9696d2cad52e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -530.579, + "y": 15.425, + "z": -373.607056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048708", - "_tpl": "5d6e68dea4b9361bcc29e659", - "parentId": "66cbb77a896120cfb1048706", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 5 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048706", + "Items": [ + { + "_id": "66cbb77a896120cfb1048706", + "_tpl": "6570243fcfc010a0f50069fb", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048707", + "_tpl": "5d6e68dea4b9361bcc29e659", + "parentId": "66cbb77a896120cfb1048706", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, + { + "_id": "66cbb77a896120cfb1048708", + "_tpl": "5d6e68dea4b9361bcc29e659", + "parentId": "66cbb77a896120cfb1048706", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 5 + } } - } - ] - }, - { - "Id": "mix_stuff (82) [02155400-be5a-48a0-a672-aee563b86081]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -500.608, - "y": 16.272, - "z": -401.918945 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104870b", - "Items": [ - { - "_id": "66cbb77a896120cfb104870b", - "_tpl": "657023f81419851aef03e6f1", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (82) [02155400-be5a-48a0-a672-aee563b86081]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -500.608, + "y": 16.272, + "z": -401.918945 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104870c", - "_tpl": "5f0596629e22f464da6bbdd9", - "parentId": "66cbb77a896120cfb104870b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104870b", + "Items": [ + { + "_id": "66cbb77a896120cfb104870b", + "_tpl": "657023f81419851aef03e6f1", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104870c", + "_tpl": "5f0596629e22f464da6bbdd9", + "parentId": "66cbb77a896120cfb104870b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (83) [05c583e1-c068-4417-a2e6-aeb0f64c5557]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -500.121, - "y": 16.272, - "z": -402.478027 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104870e", - "Items": [ - { - "_id": "66cbb77a896120cfb104870e", - "_tpl": "590c5d4b86f774784e1b9c45", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mix_stuff (83) [05c583e1-c068-4417-a2e6-aeb0f64c5557]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -500.121, + "y": 16.272, + "z": -402.478027 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104870e", + "Items": [ + { + "_id": "66cbb77a896120cfb104870e", + "_tpl": "590c5d4b86f774784e1b9c45", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (84) [f3c4740b-8c48-4ec3-a551-a842cd413e9f]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -500.084, - "y": 16.272, - "z": -401.982056 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048711", - "Items": [ - { - "_id": "66cbb77a896120cfb1048711", - "_tpl": "6570257cc5d7d4cb4d078579", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (84) [f3c4740b-8c48-4ec3-a551-a842cd413e9f]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -500.084, + "y": 16.272, + "z": -401.982056 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048712", - "_tpl": "59e77a2386f7742ee578960a", - "parentId": "66cbb77a896120cfb1048711", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048711", + "Items": [ + { + "_id": "66cbb77a896120cfb1048711", + "_tpl": "6570257cc5d7d4cb4d078579", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048712", + "_tpl": "59e77a2386f7742ee578960a", + "parentId": "66cbb77a896120cfb1048711", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (86) [8a98f1a3-1d72-4602-b3c7-aa3c07e641ee]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 278.735, - "y": 24.048, - "z": -508.435059 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048715", - "Items": [ - { - "_id": "66cbb77a896120cfb1048715", - "_tpl": "573733c72459776b0b7b51b0", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (86) [8a98f1a3-1d72-4602-b3c7-aa3c07e641ee]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 278.735, + "y": 24.048, + "z": -508.435059 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048716", - "_tpl": "56dff421d2720b5f5a8b4567", - "parentId": "66cbb77a896120cfb1048715", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048715", + "Items": [ + { + "_id": "66cbb77a896120cfb1048715", + "_tpl": "573733c72459776b0b7b51b0", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048716", + "_tpl": "56dff421d2720b5f5a8b4567", + "parentId": "66cbb77a896120cfb1048715", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_stuff (88) [6d5eb44b-2814-40c1-805e-4a4f594fd56c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 305.968018, - "y": 24.047, - "z": -460.448 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048719", - "Items": [ - { - "_id": "66cbb77a896120cfb1048719", - "_tpl": "657023dabfc87b3a3409320d", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (88) [6d5eb44b-2814-40c1-805e-4a4f594fd56c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 305.968018, + "y": 24.047, + "z": -460.448 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104871a", - "_tpl": "5fc382c1016cce60e8341b20", - "parentId": "66cbb77a896120cfb1048719", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048719", + "Items": [ + { + "_id": "66cbb77a896120cfb1048719", + "_tpl": "657023dabfc87b3a3409320d", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104871a", + "_tpl": "5fc382c1016cce60e8341b20", + "parentId": "66cbb77a896120cfb1048719", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } - } - ] - }, - { - "Id": "mix_stuff (89) [db3677c2-86a1-4e86-82c7-f678eb4de0b0]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 304.453, - "y": 24.033, - "z": -461.197021 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104871e", - "Items": [ - { - "_id": "66cbb77a896120cfb104871e", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (89) [db3677c2-86a1-4e86-82c7-f678eb4de0b0]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 304.453, + "y": 24.033, + "z": -461.197021 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104871f", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb77a896120cfb104871e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104871e", + "Items": [ + { + "_id": "66cbb77a896120cfb104871e", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104871f", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb77a896120cfb104871e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb77a896120cfb1048720", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb77a896120cfb104871e", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "mix_stuff (91) [1b3547aa-68f2-4a30-b6c0-4abae35b31da]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 304.738037, + "y": 24.062, + "z": -462.037 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048720", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb77a896120cfb104871e", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048723", + "Items": [ + { + "_id": "66cbb77a896120cfb1048723", + "_tpl": "64898602f09d032aa9399d56", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048724", + "_tpl": "61962b617c6c7b169525f168", + "parentId": "66cbb77a896120cfb1048723", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "mix_stuff (91) [1b3547aa-68f2-4a30-b6c0-4abae35b31da]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 304.738037, - "y": 24.062, - "z": -462.037 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048723", - "Items": [ - { - "_id": "66cbb77a896120cfb1048723", - "_tpl": "64898602f09d032aa9399d56", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (92) [65f3e11e-0918-449a-bf9d-daf73cf6145e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 305.568, + "y": 24.122, + "z": -455.376953 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048724", - "_tpl": "61962b617c6c7b169525f168", - "parentId": "66cbb77a896120cfb1048723", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048728", + "Items": [ + { + "_id": "66cbb77a896120cfb1048728", + "_tpl": "6570266bc5d7d4cb4d078594", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048729", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb77a896120cfb1048728", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb77a896120cfb104872a", + "_tpl": "60194943740c5d77f6705eea", + "parentId": "66cbb77a896120cfb1048728", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "mix_stuff (92) [65f3e11e-0918-449a-bf9d-daf73cf6145e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 305.568, - "y": 24.122, - "z": -455.376953 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048728", - "Items": [ - { - "_id": "66cbb77a896120cfb1048728", - "_tpl": "6570266bc5d7d4cb4d078594", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (95) [e1656049-2992-4f4b-90c0-2bc20422457b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": 282.959961, + "y": 24.113, + "z": -441.307983 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048729", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb77a896120cfb1048728", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104872d", + "Items": [ + { + "_id": "66cbb77a896120cfb104872d", + "_tpl": "657025a4bfc87b3a34093250", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104872e", + "_tpl": "58864a4f2459770fcc257101", + "parentId": "66cbb77a896120cfb104872d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } + ] + }, + { + "Id": "mix_stuff (97) [90997932-7320-4c80-b914-3c8853d5a41a]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -442.772, + "y": 15.855, + "z": -402.068 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104872a", - "_tpl": "60194943740c5d77f6705eea", - "parentId": "66cbb77a896120cfb1048728", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048731", + "Items": [ + { + "_id": "66cbb77a896120cfb1048731", + "_tpl": "65702591c5d7d4cb4d07857c", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048732", + "_tpl": "5c925fa22e221601da359b7b", + "parentId": "66cbb77a896120cfb1048731", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_stuff (95) [e1656049-2992-4f4b-90c0-2bc20422457b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": 282.959961, - "y": 24.113, - "z": -441.307983 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104872d", - "Items": [ - { - "_id": "66cbb77a896120cfb104872d", - "_tpl": "657025a4bfc87b3a34093250", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mix_stuff (98) [439f329a-6101-471f-add9-61c9580bfda2]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -442.777, + "y": 16.412, + "z": -403.47998 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104872e", - "_tpl": "58864a4f2459770fcc257101", - "parentId": "66cbb77a896120cfb104872d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048735", + "Items": [ + { + "_id": "66cbb77a896120cfb1048735", + "_tpl": "65702610cfc010a0f5006a41", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048736", + "_tpl": "573719df2459775a626ccbc2", + "parentId": "66cbb77a896120cfb1048735", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mix_stuff (97) [90997932-7320-4c80-b914-3c8853d5a41a]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -442.772, - "y": 15.855, - "z": -402.068 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048731", - "Items": [ - { - "_id": "66cbb77a896120cfb1048731", - "_tpl": "65702591c5d7d4cb4d07857c", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mods (1) [4b91bac0-6183-41c0-a5f7-0fb1877487af]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 296.19104, + "y": 23.765, + "z": -504.032959 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048732", - "_tpl": "5c925fa22e221601da359b7b", - "parentId": "66cbb77a896120cfb1048731", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048738", + "Items": [ + { + "_id": "66cbb77a896120cfb1048738", + "_tpl": "593d493f86f7745e6b2ceb22", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mix_stuff (98) [439f329a-6101-471f-add9-61c9580bfda2]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -442.777, - "y": 16.412, - "z": -403.47998 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048735", - "Items": [ - { - "_id": "66cbb77a896120cfb1048735", - "_tpl": "65702610cfc010a0f5006a41", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "mods (10) [672b6b02-da2d-4417-bceb-a849d16b70de]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 279.279053, + "y": 23.902, + "z": -435.879028 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048736", - "_tpl": "573719df2459775a626ccbc2", - "parentId": "66cbb77a896120cfb1048735", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 50 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104873a", + "Items": [ + { + "_id": "66cbb77a896120cfb104873a", + "_tpl": "5c82342f2e221644f31c060e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods (1) [4b91bac0-6183-41c0-a5f7-0fb1877487af]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 296.19104, - "y": 23.765, - "z": -504.032959 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048738", - "Items": [ - { - "_id": "66cbb77a896120cfb1048738", - "_tpl": "593d493f86f7745e6b2ceb22", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods (12) [99eaa0b2-e3e1-4db8-bc0d-00bfdd9038f5]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 279.401, + "y": 23.902, + "z": -435.552 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104873c", + "Items": [ + { + "_id": "66cbb77a896120cfb104873c", + "_tpl": "5b3b99475acfc432ff4dcbee", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods (10) [672b6b02-da2d-4417-bceb-a849d16b70de]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 279.279053, - "y": 23.902, - "z": -435.879028 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104873a", - "Items": [ - { - "_id": "66cbb77a896120cfb104873a", - "_tpl": "5c82342f2e221644f31c060e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods (2) [10f603b8-b3f9-480b-82ae-11369ad7071c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 296.281, + "y": 23.765, + "z": -504.651978 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104873e", + "Items": [ + { + "_id": "66cbb77a896120cfb104873e", + "_tpl": "59db7e1086f77448be30ddf3", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods (12) [99eaa0b2-e3e1-4db8-bc0d-00bfdd9038f5]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 279.401, - "y": 23.902, - "z": -435.552 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104873c", - "Items": [ - { - "_id": "66cbb77a896120cfb104873c", - "_tpl": "5b3b99475acfc432ff4dcbee", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods (3) [e87fa72b-e70c-4d48-a052-c336b119847e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 296.003052, + "y": 23.765, + "z": -504.376953 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048740", + "Items": [ + { + "_id": "66cbb77a896120cfb1048740", + "_tpl": "6386120cd6baa055ad1e201c", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods (2) [10f603b8-b3f9-480b-82ae-11369ad7071c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 296.281, - "y": 23.765, - "z": -504.651978 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104873e", - "Items": [ - { - "_id": "66cbb77a896120cfb104873e", - "_tpl": "59db7e1086f77448be30ddf3", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods (4) [1e480ece-4bfb-4233-8210-f812c7aa074b]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 272.661, + "y": 23.827, + "z": -512.444946 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048742", + "Items": [ + { + "_id": "66cbb77a896120cfb1048742", + "_tpl": "5649d9a14bdc2d79388b4580", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods (3) [e87fa72b-e70c-4d48-a052-c336b119847e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 296.003052, - "y": 23.765, - "z": -504.376953 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048740", - "Items": [ - { - "_id": "66cbb77a896120cfb1048740", - "_tpl": "6386120cd6baa055ad1e201c", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods (6) [6af01bf8-0ddc-4524-96b2-41f26ec7e73e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 272.267944, + "y": 23.827, + "z": -513.093 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048744", + "Items": [ + { + "_id": "66cbb77a896120cfb1048744", + "_tpl": "5de8f2d5b74cd90030650c72", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods (4) [1e480ece-4bfb-4233-8210-f812c7aa074b]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 272.661, - "y": 23.827, - "z": -512.444946 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048742", - "Items": [ - { - "_id": "66cbb77a896120cfb1048742", - "_tpl": "5649d9a14bdc2d79388b4580", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods (7) [e9c209e0-65e2-46f8-9cf4-85a989812f3d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 272.088, + "y": 23.827, + "z": -512.840942 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048746", + "Items": [ + { + "_id": "66cbb77a896120cfb1048746", + "_tpl": "593d490386f7745ee97a1555", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods (6) [6af01bf8-0ddc-4524-96b2-41f26ec7e73e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 272.267944, - "y": 23.827, - "z": -513.093 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048744", - "Items": [ - { - "_id": "66cbb77a896120cfb1048744", - "_tpl": "5de8f2d5b74cd90030650c72", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods (8) [c0374d47-082c-4a7e-b5dd-822be7b0a615]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 279.552, + "y": 23.902, + "z": -436.123047 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048748", + "Items": [ + { + "_id": "66cbb77a896120cfb1048748", + "_tpl": "5ab3afb2d8ce87001660304d", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods (7) [e9c209e0-65e2-46f8-9cf4-85a989812f3d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 272.088, - "y": 23.827, - "z": -512.840942 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048746", - "Items": [ - { - "_id": "66cbb77a896120cfb1048746", - "_tpl": "593d490386f7745ee97a1555", - "upd": { - "StackObjectsCount": 1 + { + "Id": "mods [6e002c7b-030c-49c2-8f19-e0a6cae6e671]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 296.64502, + "y": 23.765, + "z": -504.922974 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104874a", + "Items": [ + { + "_id": "66cbb77a896120cfb104874a", + "_tpl": "5a9ea27ca2750c00137fa672", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "mods (8) [c0374d47-082c-4a7e-b5dd-822be7b0a615]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 279.552, - "y": 23.902, - "z": -436.123047 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048748", - "Items": [ - { - "_id": "66cbb77a896120cfb1048748", - "_tpl": "5ab3afb2d8ce87001660304d", - "upd": { - "StackObjectsCount": 1 + { + "Id": "money1 (18) [82f9ea15-fee5-44ae-b902-1568c78d18ae]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -450.434, + "y": 15.57, + "z": -389.276978 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104874c", + "Items": [ + { + "_id": "66cbb77a896120cfb104874c", + "_tpl": "5696686a4bdc2da3298b456a", + "upd": { + "StackObjectsCount": 50 + } } - } - ] - }, - { - "Id": "mods [6e002c7b-030c-49c2-8f19-e0a6cae6e671]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 296.64502, - "y": 23.765, - "z": -504.922974 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104874a", - "Items": [ - { - "_id": "66cbb77a896120cfb104874a", - "_tpl": "5a9ea27ca2750c00137fa672", - "upd": { - "StackObjectsCount": 1 + { + "Id": "money1 (7) [87ce9837-b82b-4baf-aa96-0b1cba5a3210]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -464.954, + "y": 16.052, + "z": -364.55896 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104874e", + "Items": [ + { + "_id": "66cbb77a896120cfb104874e", + "_tpl": "5d235b4d86f7742e017bc88a", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "money1 (18) [82f9ea15-fee5-44ae-b902-1568c78d18ae]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -450.434, - "y": 15.57, - "z": -389.276978 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104874c", - "Items": [ - { - "_id": "66cbb77a896120cfb104874c", - "_tpl": "5696686a4bdc2da3298b456a", - "upd": { - "StackObjectsCount": 50 + { + "Id": "quest_flyers [1a9a239f-90f0-4050-a8fa-d5718189abb3]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 296.6609, + "y": 23.434, + "z": -505.749 + }, + "Rotation": { + "x": 0.466113776, + "y": 272.196533, + "z": 358.978119 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048750", + "Items": [ + { + "_id": "66cbb77a896120cfb1048750", + "_tpl": "664a5775f3d3570fba06be64", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "money1 (7) [87ce9837-b82b-4baf-aa96-0b1cba5a3210]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -464.954, - "y": 16.052, - "z": -364.55896 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104874e", - "Items": [ - { - "_id": "66cbb77a896120cfb104874e", - "_tpl": "5d235b4d86f7742e017bc88a", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "quest_flyers [1a9a239f-90f0-4050-a8fa-d5718189abb3]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 296.6609, - "y": 23.434, - "z": -505.749 - }, - "Rotation": { - "x": 0.466113776, - "y": 272.196533, - "z": 358.978119 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048750", - "Items": [ - { - "_id": "66cbb77a896120cfb1048750", - "_tpl": "664a5775f3d3570fba06be64", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "quest_flyers2 [8f5b8bfd-5841-4144-822b-356c7b4cbe8e]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 283.205078, - "y": 23.3589, - "z": -508.9973 - }, - "Rotation": { - "x": 0.466113776, - "y": 272.196533, - "z": 358.978119 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048752", - "Items": [ - { - "_id": "66cbb77a896120cfb1048752", - "_tpl": "664b69c5a082271bc46c4e11", - "upd": { - "StackObjectsCount": 1 - } - } - ] - }, - { - "Id": "quest_flyers3 [cd027797-edc5-4959-bbab-31ce6a2045e5]", - "IsContainer": false, - "useGravity": false, - "randomRotation": false, - "Position": { - "x": 306.2661, - "y": 23.964, - "z": -461.195 - }, - "Rotation": { - "x": 0.466113776, - "y": 272.196533, - "z": 358.978119 - }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048754", - "Items": [ - { - "_id": "66cbb77a896120cfb1048754", - "_tpl": "664b69e8e1238e506d3630af", - "upd": { - "StackObjectsCount": 1 + { + "Id": "quest_flyers2 [8f5b8bfd-5841-4144-822b-356c7b4cbe8e]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 283.205078, + "y": 23.3589, + "z": -508.9973 + }, + "Rotation": { + "x": 0.466113776, + "y": 272.196533, + "z": 358.978119 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048752", + "Items": [ + { + "_id": "66cbb77a896120cfb1048752", + "_tpl": "664b69c5a082271bc46c4e11", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "repair_mix_stuff (1) [9771a8ee-912d-4034-bf84-46cdb0f427cc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -7.74597168, - "y": 8.483, - "z": -114.330017 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048756", - "Items": [ - { - "_id": "66cbb77a896120cfb1048756", - "_tpl": "62a0a0bb621468534a797ad5", - "upd": { - "StackObjectsCount": 1 + { + "Id": "quest_flyers3 [cd027797-edc5-4959-bbab-31ce6a2045e5]", + "IsContainer": false, + "useGravity": false, + "randomRotation": false, + "Position": { + "x": 306.2661, + "y": 23.964, + "z": -461.195 + }, + "Rotation": { + "x": 0.466113776, + "y": 272.196533, + "z": 358.978119 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048754", + "Items": [ + { + "_id": "66cbb77a896120cfb1048754", + "_tpl": "664b69e8e1238e506d3630af", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "repair_mix_stuff (3) [8f850778-0d19-4601-8612-399a3848dabe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -572.329956, - "y": 16.497, - "z": -185.099976 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104875a", - "Items": [ - { - "_id": "66cbb77a896120cfb104875a", - "_tpl": "5737292724597765e5728562", - "upd": { - "StackObjectsCount": 1 + { + "Id": "repair_mix_stuff (1) [9771a8ee-912d-4034-bf84-46cdb0f427cc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -7.74597168, + "y": 8.483, + "z": -114.330017 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048756", + "Items": [ + { + "_id": "66cbb77a896120cfb1048756", + "_tpl": "62a0a0bb621468534a797ad5", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "repair_mix_stuff (3) [8f850778-0d19-4601-8612-399a3848dabe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -572.329956, + "y": 16.497, + "z": -185.099976 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104875b", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb77a896120cfb104875a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104875a", + "Items": [ + { + "_id": "66cbb77a896120cfb104875a", + "_tpl": "5737292724597765e5728562", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104875b", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb77a896120cfb104875a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb77a896120cfb104875c", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "66cbb77a896120cfb104875a", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 60 + } } + ] + }, + { + "Id": "repair_mix_stuff (6) [855815d8-d034-434d-b890-99dba1fe027d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -8.362976, + "y": 8.499, + "z": -113.23999 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb104875c", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "66cbb77a896120cfb104875a", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104875e", + "Items": [ + { + "_id": "66cbb77a896120cfb104875e", + "_tpl": "5d40419286f774318526545f", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "repair_mix_stuff (6) [855815d8-d034-434d-b890-99dba1fe027d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -8.362976, - "y": 8.499, - "z": -113.23999 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104875e", - "Items": [ - { - "_id": "66cbb77a896120cfb104875e", - "_tpl": "5d40419286f774318526545f", - "upd": { - "StackObjectsCount": 1 + { + "Id": "small_budka_stuff_stuff (1) [ce2dc12a-ba48-4ee9-a95f-3db6b001d527]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -475.338, + "y": 14.878, + "z": -178.182983 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048761", + "Items": [ + { + "_id": "66cbb77a896120cfb1048761", + "_tpl": "657025bbcfc010a0f5006a35", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048762", + "_tpl": "5a26abfac4a28232980eabff", + "parentId": "66cbb77a896120cfb1048761", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } } - } - ] - }, - { - "Id": "small_budka_stuff_stuff (1) [ce2dc12a-ba48-4ee9-a95f-3db6b001d527]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -475.338, - "y": 14.878, - "z": -178.182983 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048761", - "Items": [ - { - "_id": "66cbb77a896120cfb1048761", - "_tpl": "657025bbcfc010a0f5006a35", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "small_budka_stuff_stuff (2) [539def21-4c9a-4147-9cf4-f69bae9fbccc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -475.135, + "y": 14.878, + "z": -178.55603 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048762", - "_tpl": "5a26abfac4a28232980eabff", - "parentId": "66cbb77a896120cfb1048761", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048766", + "Items": [ + { + "_id": "66cbb77a896120cfb1048766", + "_tpl": "6570265bcfc010a0f5006a56", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb1048767", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbb77a896120cfb1048766", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "66cbb77a896120cfb1048768", + "_tpl": "59e6906286f7746c9f75e847", + "parentId": "66cbb77a896120cfb1048766", + "slotId": "cartridges", + "location": 1, + "upd": { + "StackObjectsCount": 40 + } } - } - ] - }, - { - "Id": "small_budka_stuff_stuff (2) [539def21-4c9a-4147-9cf4-f69bae9fbccc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -475.135, - "y": 14.878, - "z": -178.55603 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048766", - "Items": [ - { - "_id": "66cbb77a896120cfb1048766", - "_tpl": "6570265bcfc010a0f5006a56", - "upd": { - "StackObjectsCount": 1 - } + { + "Id": "tools (12) [eb524370-85da-45e7-a883-0f9187054e42]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -553.849, + "y": 16.783, + "z": -202.04303 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048767", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbb77a896120cfb1048766", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104876a", + "Items": [ + { + "_id": "66cbb77a896120cfb104876a", + "_tpl": "61bf83814088ec1a363d7097", + "upd": { + "StackObjectsCount": 1 + } } + ] + }, + { + "Id": "tools (13) [4a5c579f-28b2-4dcd-b1d3-690bcd3c943e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -535.867, + "y": 15.715, + "z": -212.797 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - { - "_id": "66cbb77a896120cfb1048768", - "_tpl": "59e6906286f7746c9f75e847", - "parentId": "66cbb77a896120cfb1048766", - "slotId": "cartridges", - "location": 1, - "upd": { - "StackObjectsCount": 40 + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104876c", + "Items": [ + { + "_id": "66cbb77a896120cfb104876c", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (12) [eb524370-85da-45e7-a883-0f9187054e42]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -553.849, - "y": 16.783, - "z": -202.04303 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104876a", - "Items": [ - { - "_id": "66cbb77a896120cfb104876a", - "_tpl": "61bf83814088ec1a363d7097", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools (14) [bcefad72-5bc4-46bd-84fc-c8492be2bac3]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -535.547, + "y": 15.762, + "z": -211.960022 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104876e", + "Items": [ + { + "_id": "66cbb77a896120cfb104876e", + "_tpl": "590c311186f77424d1667482", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (13) [4a5c579f-28b2-4dcd-b1d3-690bcd3c943e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -535.867, - "y": 15.715, - "z": -212.797 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104876c", - "Items": [ - { - "_id": "66cbb77a896120cfb104876c", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools (24) [d644edad-a5cd-41d1-ae89-cda8a225515c]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -124.875, + "y": 11.395, + "z": -688.781 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048770", + "Items": [ + { + "_id": "66cbb77a896120cfb1048770", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (14) [bcefad72-5bc4-46bd-84fc-c8492be2bac3]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -535.547, - "y": 15.762, - "z": -211.960022 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104876e", - "Items": [ - { - "_id": "66cbb77a896120cfb104876e", - "_tpl": "590c311186f77424d1667482", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools (29) [02905c92-7e5e-4924-a96c-6594ac37af92]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -55.0830078, + "y": 8.342, + "z": -756.136963 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048772", + "Items": [ + { + "_id": "66cbb77a896120cfb1048772", + "_tpl": "590c311186f77424d1667482", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (24) [d644edad-a5cd-41d1-ae89-cda8a225515c]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -124.875, - "y": 11.395, - "z": -688.781 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048770", - "Items": [ - { - "_id": "66cbb77a896120cfb1048770", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools (30) [5ecc57a7-2bfd-4173-8262-0253bb4a0258]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 228.035034, + "y": 20.311, + "z": -710.671 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048774", + "Items": [ + { + "_id": "66cbb77a896120cfb1048774", + "_tpl": "5af04b6486f774195a3ebb49", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (29) [02905c92-7e5e-4924-a96c-6594ac37af92]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -55.0830078, - "y": 8.342, - "z": -756.136963 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048772", - "Items": [ - { - "_id": "66cbb77a896120cfb1048772", - "_tpl": "590c311186f77424d1667482", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools (31) [043c3659-3546-4263-9303-2487bfb2a4fe]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": 228.030029, + "y": 20.855, + "z": -710.668945 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048776", + "Items": [ + { + "_id": "66cbb77a896120cfb1048776", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (30) [5ecc57a7-2bfd-4173-8262-0253bb4a0258]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 228.035034, - "y": 20.311, - "z": -710.671 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048774", - "Items": [ - { - "_id": "66cbb77a896120cfb1048774", - "_tpl": "5af04b6486f774195a3ebb49", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools (44) [e7bcccc2-2e57-4fba-a11b-017c184dc67e]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -498.241, + "y": 16.164, + "z": -405.738037 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048778", + "Items": [ + { + "_id": "66cbb77a896120cfb1048778", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (31) [043c3659-3546-4263-9303-2487bfb2a4fe]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": 228.030029, - "y": 20.855, - "z": -710.668945 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048776", - "Items": [ - { - "_id": "66cbb77a896120cfb1048776", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools (45) [acff4076-9fa3-4cee-b28f-6a9f60e907eb]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -442.023, + "y": 16.403, + "z": -412.052 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104877a", + "Items": [ + { + "_id": "66cbb77a896120cfb104877a", + "_tpl": "63a0b208f444d32d6f03ea1e", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (44) [e7bcccc2-2e57-4fba-a11b-017c184dc67e]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -498.241, - "y": 16.164, - "z": -405.738037 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048778", - "Items": [ - { - "_id": "66cbb77a896120cfb1048778", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools (5) [fcbb8a5e-3b05-4103-98c6-be4ab19ba826]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -205.997986, + "y": -1.0, + "z": 217.75 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104877c", + "Items": [ + { + "_id": "66cbb77a896120cfb104877c", + "_tpl": "5d1b317c86f7742523398392", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (45) [acff4076-9fa3-4cee-b28f-6a9f60e907eb]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -442.023, - "y": 16.403, - "z": -412.052 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104877a", - "Items": [ - { - "_id": "66cbb77a896120cfb104877a", - "_tpl": "63a0b208f444d32d6f03ea1e", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools (8) [c0ba90b5-4c04-433f-a6ca-8a5a4fab8c19]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -562.967041, + "y": 21.556, + "z": -216.015015 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb104877e", + "Items": [ + { + "_id": "66cbb77a896120cfb104877e", + "_tpl": "62a0a098de7ac8199358053b", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (5) [fcbb8a5e-3b05-4103-98c6-be4ab19ba826]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -205.997986, - "y": -1.0, - "z": 217.75 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104877c", - "Items": [ - { - "_id": "66cbb77a896120cfb104877c", - "_tpl": "5d1b317c86f7742523398392", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_new (10) [0cab5f48-909b-40b0-bf13-8645fb52973d]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -299.09, + "y": 14.48, + "z": -70.82 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048780", + "Items": [ + { + "_id": "66cbb77a896120cfb1048780", + "_tpl": "5d1b32c186f774252167a530", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools (8) [c0ba90b5-4c04-433f-a6ca-8a5a4fab8c19]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -562.967041, - "y": 21.556, - "z": -216.015015 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb104877e", - "Items": [ - { - "_id": "66cbb77a896120cfb104877e", - "_tpl": "62a0a098de7ac8199358053b", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_new (2) [b4fc6a18-45d0-4295-94f6-b213a7c9a9fc]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -266.4, + "y": 12.52, + "z": -45.47 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048782", + "Items": [ + { + "_id": "66cbb77a896120cfb1048782", + "_tpl": "5d4042a986f7743185265463", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_new (10) [0cab5f48-909b-40b0-bf13-8645fb52973d]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -299.09, - "y": 14.48, - "z": -70.82 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048780", - "Items": [ - { - "_id": "66cbb77a896120cfb1048780", - "_tpl": "5d1b32c186f774252167a530", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_new (7) [c65d3f60-2d03-4652-8edd-4f6b7a623ab1]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -287.9, + "y": 12.91, + "z": -61.27 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048784", + "Items": [ + { + "_id": "66cbb77a896120cfb1048784", + "_tpl": "619cbfccbedcde2f5b3f7bdd", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_new (2) [b4fc6a18-45d0-4295-94f6-b213a7c9a9fc]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -266.4, - "y": 12.52, - "z": -45.47 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048782", - "Items": [ - { - "_id": "66cbb77a896120cfb1048782", - "_tpl": "5d4042a986f7743185265463", - "upd": { - "StackObjectsCount": 1 + { + "Id": "tools_new (8) [a6a16cd0-42a3-412c-9ebc-ad78e12373c9]", + "IsContainer": false, + "useGravity": true, + "randomRotation": true, + "Position": { + "x": -287.9, + "y": 14.48, + "z": -67.39 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048786", + "Items": [ + { + "_id": "66cbb77a896120cfb1048786", + "_tpl": "590c5bbd86f774785762df04", + "upd": { + "StackObjectsCount": 1 + } } - } - ] - }, - { - "Id": "tools_new (7) [c65d3f60-2d03-4652-8edd-4f6b7a623ab1]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -287.9, - "y": 12.91, - "z": -61.27 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + ] }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048784", - "Items": [ - { - "_id": "66cbb77a896120cfb1048784", - "_tpl": "619cbfccbedcde2f5b3f7bdd", - "upd": { - "StackObjectsCount": 1 + { + "Id": "varios_mix_stuff [b49682b7-b395-4817-9a94-360185c0ee69]", + "IsContainer": false, + "useGravity": true, + "randomRotation": false, + "Position": { + "x": -22.5750122, + "y": 7.216, + "z": -77.9979858 + }, + "Rotation": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "IsGroupPosition": false, + "GroupPositions": [], + "IsAlwaysSpawn": false, + "Root": "66cbb77a896120cfb1048789", + "Items": [ + { + "_id": "66cbb77a896120cfb1048789", + "_tpl": "5c11279ad174af029d64592b", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "66cbb77a896120cfb104878a", + "_tpl": "5c0d5ae286f7741e46554302", + "parentId": "66cbb77a896120cfb1048789", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } } + ] + } + ], + "Banners": [ + { + "id": "5803a58524597710ca36fcb2", + "pic": { + "path": "CONTENT\/banners\/banner_terragroup.jpg", + "rcid": "" } - ] - }, - { - "Id": "tools_new (8) [a6a16cd0-42a3-412c-9ebc-ad78e12373c9]", - "IsContainer": false, - "useGravity": true, - "randomRotation": true, - "Position": { - "x": -287.9, - "y": 14.48, - "z": -67.39 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048786", - "Items": [ - { - "_id": "66cbb77a896120cfb1048786", - "_tpl": "590c5bbd86f774785762df04", - "upd": { - "StackObjectsCount": 1 - } + { + "id": "5c1b857086f77465f465faa4", + "pic": { + "path": "CONTENT\/banners\/banner_scavraider.jpg", + "rcid": "" } - ] - }, - { - "Id": "varios_mix_stuff [b49682b7-b395-4817-9a94-360185c0ee69]", - "IsContainer": false, - "useGravity": true, - "randomRotation": false, - "Position": { - "x": -22.5750122, - "y": 7.216, - "z": -77.9979858 - }, - "Rotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "IsGroupPosition": false, - "GroupPositions": [], - "IsAlwaysSpawn": false, - "Root": "66cbb77a896120cfb1048789", - "Items": [ - { - "_id": "66cbb77a896120cfb1048789", - "_tpl": "5c11279ad174af029d64592b", - "upd": { - "StackObjectsCount": 1 - } - }, - { - "_id": "66cbb77a896120cfb104878a", - "_tpl": "5c0d5ae286f7741e46554302", - "parentId": "66cbb77a896120cfb1048789", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } + { + "id": "64c0ad6af99768b777048f4e", + "pic": { + "path": "CONTENT\/banners\/banner_emissary.jpg", + "rcid": "" } - ] - } - ], - "Banners": [ - { - "id": "5803a58524597710ca36fcb2", - "pic": { - "path": "CONTENT\/banners\/banner_terragroup.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT\/banners\/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT\/banners\/banner_emissary.jpg", - "rcid": "" } - } - ] + ] + } } } \ No newline at end of file